body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #bfce2f !important;
}
.bg-success {
  background-color: #bfce2f !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bfce2f !important;
  border-color: #bfce2f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7e871f !important;
  border-color: #7e871f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7e871f !important;
  border-color: #7e871f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #065341 !important;
  border-color: #065341 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000202 !important;
  border-color: #000202 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000202 !important;
  border-color: #000202 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #bfce2f !important;
  border-color: #bfce2f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #7e871f !important;
  border-color: #7e871f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7e871f !important;
  border-color: #7e871f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bfce2f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #7e871f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bfce2f !important;
  border-color: #bfce2f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #065341;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000202 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #065341 !important;
  border-color: #065341 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bfce2f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #7e871f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bfce2f !important;
  border-color: #bfce2f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #bfce2f !important;
}
.text-secondary {
  color: #065341 !important;
}
.text-success {
  color: #bfce2f !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #727b1c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #727b1c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bfce2f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bfce2f;
  border-color: #bfce2f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bfce2f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f2f5d4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f2f5d4;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bfce2f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #bfce2f;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bfce2f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bfce2f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #bfce2f;
  border-bottom-color: #bfce2f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bfce2f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #065341 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23bfce2f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tf1fbDV2Q1 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1fbDV2Q1 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1fbDV2Q1 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1fbDV2Q1 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1fbDV2Q1 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1fbDV2Q1 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1fbDV2Q1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1fbDV2Q1 .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1fbDV2Q1 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse.show,
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1fbDV2Q1 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1fbDV2Q1 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1fbDV2Q1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1fbDV2Q1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1fbDV2Q1 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1fbDV2Q1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1fbDV2Q1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1fbDV2Q1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1fbDV2Q1 .dropdown-item.active,
.cid-tf1fbDV2Q1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1fbDV2Q1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1fbDV2Q1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1fbDV2Q1 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1fbDV2Q1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1fbDV2Q1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1fbDV2Q1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1fbDV2Q1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1fbDV2Q1 .navbar-buttons {
  text-align: center;
}
.cid-tf1fbDV2Q1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1fbDV2Q1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1fbDV2Q1 a.nav-link:focus {
  outline: none;
}
.cid-tf1fbDV2Q1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1fbDV2Q1 .nav-link:hover,
.cid-tf1fbDV2Q1 .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1fbDV2Q1 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1fbDV2Q1 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sYZo4z2rz4 {
  background-image: url("../../images/website-photo-1920x1080.jpg");
}
.cid-sYZo4z2rz4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYZo4z2rz4 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-sYZo4z2rz4 .mbr-section-title {
  color: #ffffff;
}
.cid-sYZo4z2rz4 .mbr-text,
.cid-sYZo4z2rz4 .mbr-section-btn {
  color: #ffffff;
}
.cid-teW4hpkPlu {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7; 
}
.cid-teW4hpkPlu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-teW4hpkPlu .row {
    flex-direction: column-reverse;
  }
  .cid-teW4hpkPlu .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-teW4hpkPlu .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-teW4hpkPlu .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-teW4hpkPlu .image-wrapper img {
  width: 100%;
  /*box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;*/
  object-fit: cover;
  border-radius: 3rem;
}
.cid-teW4hpkPlu .card-title {
  color: #065341;
}
.cid-teW4hpkPlu .mbr-text,
.cid-teW4hpkPlu .mbr-section-btn {
  color: #414042;
}
.cid-teW4hpkPlu .mbr-fallback-image.disabled {
  display: none;
}
.cid-teW4hpkPlu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWnOKtESX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  /*background-image: url("../../images/demo-2000x1335.jpg");*/
}
.cid2-teWnOKtESX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/intro-bg-2.jpg");
}
.cid-teWnOKtESX .card-wrapper {
  background: #19331D;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-teWnOKtESX .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-teWnOKtESX .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teWnOKtESX .card-wrapper {
    padding: 4rem;
  }
}
.cid-teWnOKtESX .mbr-text,
.cid-teWnOKtESX .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-teWnOKtESX .card-title,
.cid-teWnOKtESX .card-box {
  text-align: center;
}
.cid-teWoHZmzIp {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-teWoHZmzIp .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-teWoHZmzIp .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-teWoHZmzIp .mbr-section-title {
  margin: 0;
  color: #065341;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}
.cid-teWoHZmzIp .mbr-section-title.display-2 {
  font-size: 38px;
  line-height: 1.26;
  letter-spacing: -0.5px;
}
.cid-teWoHZmzIp .mbr-section-text {
  line-height: 1.5;
  color: #414042;
  font-weight: 400;
}
.cid-teWoHZmzIp .mbr-section-text.display-7 {
  font-size: 16px;
}
.cid-teWoHZmzIp .display-2 {
  font-size: 38px;
}
.cid-teWoHZmzIp .wrapper {
  border-radius: 0.25rem;
  padding: 1rem;
  background: #ffffff;
  margin-bottom: 10px;
}
.cid-teWoHZmzIp .wrapper .img {
  margin-bottom: 20px;
}
.cid-teWoHZmzIp .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #4f87fb;
  border-radius: 50%;
}
.cid-teWoHZmzIp .wrapper .mbr-card-title {
  color: #065341;
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cid-teWoHZmzIp .wrapper .mbr-card-title.display-7 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.cid-teWoHZmzIp .wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-teWoHZmzIp .wrapper .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cid-teWoHZmzIp * {
    text-align: left;
  }
}
.cid-teWoHZmzIp .mbr-card-title,
.cid-teWoHZmzIp .img {
  color: #065341;
}
.cid-teWoHZmzIp .wrapper .mbr-text,
.cid-teWoHZmzIp .img {
  color: #414042;
}
.cid-teWqo2tgUF {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-teWqo2tgUF .mbr-text,
.cid-teWqo2tgUF .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-teWqo2tgUF .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-teWqo2tgUF .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-teWqo2tgUF * {
    text-align: center;
  }
  .cid-teWqo2tgUF .buttons-wrap {
    justify-content: center;
  }
}
.cid-teWqo2tgUF .mbr-section-title,
.cid-teWqo2tgUF .mbr-section-btn {
  text-align: left;
  color: #065341;
}
.cid-tehRhBDLqJ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tehRhBDLqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tehRhBDLqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tehRhBDLqJ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tehRhBDLqJ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tehRhBDLqJ .row {
    text-align: center;
  }
  .cid-tehRhBDLqJ .row > div {
    margin: auto;
  }
  .cid-tehRhBDLqJ .social-row {
    justify-content: center;
  }
}
.cid-tehRhBDLqJ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tehRhBDLqJ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tehRhBDLqJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tehRhBDLqJ .list {
    margin-bottom: 0rem;
  }
}
.cid-tehRhBDLqJ .mbr-text {
  color: #ffffff;
}
.cid-tehRhBDLqJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tehRhBDLqJ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tehRhBDLqJ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-teiuL2DFY2 {
  background-image: url("../../images/website-photo-2000x1187.jpg");
}
.cid-teiuL2DFY2 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-teiuL2DFY2 .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-teiuL2DFY2 .mbr-section-title {
  color: #000000;
}
.cid-teiuL2DFY2 .mbr-text,
.cid-teiuL2DFY2 .mbr-section-btn {
  color: #414042;
}
.cid-teiy67lMWF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #065341;
}
.cid-teiy67lMWF .mbr-fallback-image.disabled {
  display: none;
}
.cid-teiy67lMWF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teiy67lMWF .mbr-section-title {
  color: #ffffff;
}
.cid-teiy67lMWF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-teiy67lMWF .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tmuMqjhiSp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tmuMqjhiSp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmuMqjhiSp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmuMqjhiSp .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tmuMqjhiSp .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmuMqjhiSp .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tmuMqjhiSp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmuMqjhiSp .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tmuMqjhiSp .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tmuMqjhiSp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tmuMqjhiSp .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tmuMqjhiSp .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tmuMqjhiSp .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tmuMqjhiSp .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tmuMqjhiSp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmuMqjhiSp .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tmuMqjhiSp .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tmuMqjhiSp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tmuMqjhiSp .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tmuMqjhiSp .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-thSqhfz3WA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-thSqhfz3WA .video-wrapper iframe {
  width: 100%;
}
.cid-thSqhfz3WA .mbr-section-title,
.cid-thSqhfz3WA .mbr-section-subtitle,
.cid-thSqhfz3WA .mbr-text {
  text-align: center;
}
.cid-teW7eADtE2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teW7eADtE2 .mbr-iconfont {
  color: #ffe161;
}
.cid-teW7eADtE2 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-teW7eADtE2 .mbr-text {
  margin: 1.5rem 0;
}
.cid-teW7eADtE2 .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-teW7eADtE2 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-teW7eADtE2 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-teW7eADtE2 .mbr-section-subtitle,
.cid-teW7eADtE2 .mbr-text,
.cid-teW7eADtE2 .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-teW7eADtE2 .mbr-text,
.cid-teW7eADtE2 .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-teW7eADtE2 .card-title {
  color: #065341;
}
.cid-teW7hJMBnU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teW7hJMBnU .mbr-iconfont {
  color: #ffe161;
}
.cid-teW7hJMBnU .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-teW7hJMBnU .mbr-text {
  margin: 1.5rem 0;
}
.cid-teW7hJMBnU .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-teW7hJMBnU .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-teW7hJMBnU .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-teW7hJMBnU .mbr-section-subtitle,
.cid-teW7hJMBnU .mbr-text,
.cid-teW7hJMBnU .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-teW7hJMBnU .mbr-text,
.cid-teW7hJMBnU .social-links .mbr-iconfont {
  text-align: center;
  color: #232323;
}
.cid-teW7hJMBnU .card-title {
  color: #065341;
}
.cid-teW7llmv74 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teW7llmv74 .mbr-iconfont {
  color: #ffe161;
}
.cid-teW7llmv74 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-teW7llmv74 .mbr-text {
  margin: 1.5rem 0;
}
.cid-teW7llmv74 .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-teW7llmv74 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-teW7llmv74 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-teW7llmv74 .mbr-section-subtitle,
.cid-teW7llmv74 .mbr-text,
.cid-teW7llmv74 .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-teW7llmv74 .mbr-text,
.cid-teW7llmv74 .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-teW7llmv74 .card-title {
  color: #065341;
}
.cid-teW7fQpEka {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teW7fQpEka .mbr-iconfont {
  color: #ffe161;
}
.cid-teW7fQpEka .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-teW7fQpEka .mbr-text {
  margin: 1.5rem 0;
}
.cid-teW7fQpEka .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-teW7fQpEka .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-teW7fQpEka .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-teW7fQpEka .mbr-section-subtitle,
.cid-teW7fQpEka .mbr-text,
.cid-teW7fQpEka .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-teW7fQpEka .mbr-text,
.cid-teW7fQpEka .social-links .mbr-iconfont {
  text-align: center;
  color: #232323;
}
.cid-tgOxs3yUom {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tgOxs3yUom .mbr-iconfont {
  color: #ffe161;
}
.cid-tgOxs3yUom .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tgOxs3yUom .mbr-text {
  margin: 1.5rem 0;
}
.cid-tgOxs3yUom .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tgOxs3yUom .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tgOxs3yUom .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tgOxs3yUom .mbr-section-subtitle,
.cid-tgOxs3yUom .mbr-text,
.cid-tgOxs3yUom .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tgOxs3yUom .mbr-text,
.cid-tgOxs3yUom .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tgOxs3yUom .card-title {
  color: #065341;
}
.cid-tfv3e3VJFH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tfv3e3VJFH .mbr-iconfont {
  color: #ffe161;
}
.cid-tfv3e3VJFH .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tfv3e3VJFH .mbr-text {
  margin: 1.5rem 0;
}
.cid-tfv3e3VJFH .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tfv3e3VJFH .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tfv3e3VJFH .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tfv3e3VJFH .mbr-section-subtitle,
.cid-tfv3e3VJFH .mbr-text,
.cid-tfv3e3VJFH .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tfv3e3VJFH .mbr-text,
.cid-tfv3e3VJFH .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tfv3e3VJFH .card-title {
  color: #065341;
}
.cid-tfNMMF0OTa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tfNMMF0OTa .mbr-iconfont {
  color: #ffe161;
}
.cid-tfNMMF0OTa .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tfNMMF0OTa .mbr-text {
  margin: 1.5rem 0;
}
.cid-tfNMMF0OTa .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tfNMMF0OTa .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tfNMMF0OTa .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tfNMMF0OTa .mbr-section-subtitle,
.cid-tfNMMF0OTa .mbr-text,
.cid-tfNMMF0OTa .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tfNMMF0OTa .mbr-text,
.cid-tfNMMF0OTa .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tfNMMF0OTa .card-title {
  color: #065341;
}
.cid-thjq0btuew {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-thjq0btuew .mbr-iconfont {
  color: #ffe161;
}
.cid-thjq0btuew .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-thjq0btuew .mbr-text {
  margin: 1.5rem 0;
}
.cid-thjq0btuew .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-thjq0btuew .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-thjq0btuew .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thjq0btuew .mbr-section-subtitle,
.cid-thjq0btuew .mbr-text,
.cid-thjq0btuew .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-thjq0btuew .mbr-text,
.cid-thjq0btuew .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-thjq0btuew .card-title {
  color: #065341;
}
.cid-thQqteeACc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-thQqteeACc .mbr-iconfont {
  color: #ffe161;
}
.cid-thQqteeACc .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-thQqteeACc .mbr-text {
  margin: 1.5rem 0;
}
.cid-thQqteeACc .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-thQqteeACc .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-thQqteeACc .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-thQqteeACc .mbr-section-subtitle,
.cid-thQqteeACc .mbr-text,
.cid-thQqteeACc .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-thQqteeACc .mbr-text,
.cid-thQqteeACc .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-thQqteeACc .card-title {
  color: #065341;
}
.cid-tjQpmv8X0W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tjQpmv8X0W .mbr-iconfont {
  color: #ffe161;
}
.cid-tjQpmv8X0W .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tjQpmv8X0W .mbr-text {
  margin: 1.5rem 0;
}
.cid-tjQpmv8X0W .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tjQpmv8X0W .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tjQpmv8X0W .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tjQpmv8X0W .mbr-section-subtitle,
.cid-tjQpmv8X0W .mbr-text,
.cid-tjQpmv8X0W .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tjQpmv8X0W .mbr-text,
.cid-tjQpmv8X0W .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tjQpmv8X0W .card-title {
  color: #065341;
}
.cid-tjQpC5qu45 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tjQpC5qu45 .mbr-iconfont {
  color: #ffe161;
}
.cid-tjQpC5qu45 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tjQpC5qu45 .mbr-text {
  margin: 1.5rem 0;
}
.cid-tjQpC5qu45 .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tjQpC5qu45 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tjQpC5qu45 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tjQpC5qu45 .mbr-section-subtitle,
.cid-tjQpC5qu45 .mbr-text,
.cid-tjQpC5qu45 .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tjQpC5qu45 .mbr-text,
.cid-tjQpC5qu45 .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tjQpC5qu45 .card-title {
  color: #065341;
}
.cid-tk6WbtzAGn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tk6WbtzAGn .mbr-iconfont {
  color: #ffe161;
}
.cid-tk6WbtzAGn .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tk6WbtzAGn .mbr-text {
  margin: 1.5rem 0;
}
.cid-tk6WbtzAGn .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tk6WbtzAGn .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tk6WbtzAGn .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tk6WbtzAGn .mbr-section-subtitle,
.cid-tk6WbtzAGn .mbr-text,
.cid-tk6WbtzAGn .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tk6WbtzAGn .mbr-text,
.cid-tk6WbtzAGn .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tk6WbtzAGn .card-title {
  color: #065341;
}
.cid-tkojkXp3gF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkojkXp3gF .mbr-iconfont {
  color: #ffe161;
}
.cid-tkojkXp3gF .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tkojkXp3gF .mbr-text {
  margin: 1.5rem 0;
}
.cid-tkojkXp3gF .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tkojkXp3gF .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tkojkXp3gF .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tkojkXp3gF .mbr-section-subtitle,
.cid-tkojkXp3gF .mbr-text,
.cid-tkojkXp3gF .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tkojkXp3gF .mbr-text,
.cid-tkojkXp3gF .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tkojkXp3gF .card-title {
  color: #065341;
}
.cid-tkB5aze5nS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkB5aze5nS .mbr-iconfont {
  color: #ffe161;
}
.cid-tkB5aze5nS .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tkB5aze5nS .mbr-text {
  margin: 1.5rem 0;
}
.cid-tkB5aze5nS .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tkB5aze5nS .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tkB5aze5nS .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tkB5aze5nS .mbr-section-subtitle,
.cid-tkB5aze5nS .mbr-text,
.cid-tkB5aze5nS .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tkB5aze5nS .mbr-text,
.cid-tkB5aze5nS .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tkB5aze5nS .card-title {
  color: #065341;
}
.cid-teW7jBuVK3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-teW7jBuVK3 .mbr-iconfont {
  color: #ffe161;
}
.cid-teW7jBuVK3 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-teW7jBuVK3 .mbr-text {
  margin: 1.5rem 0;
}
.cid-teW7jBuVK3 .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-teW7jBuVK3 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-teW7jBuVK3 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-teW7jBuVK3 .mbr-section-subtitle,
.cid-teW7jBuVK3 .mbr-text,
.cid-teW7jBuVK3 .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-teW7jBuVK3 .mbr-text,
.cid-teW7jBuVK3 .social-links .mbr-iconfont {
  color: #414042;
}
.cid-teW7jBuVK3 .card-title {
  color: #065341;
}
.cid-teW7qm9Aov {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-teW7qm9Aov .mbr-iconfont {
  color: #ffe161;
}
.cid-teW7qm9Aov .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-teW7qm9Aov .mbr-text {
  margin: 1.5rem 0;
}
.cid-teW7qm9Aov .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-teW7qm9Aov .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-teW7qm9Aov .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-teW7qm9Aov .mbr-section-subtitle,
.cid-teW7qm9Aov .mbr-text,
.cid-teW7qm9Aov .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-teW7qm9Aov .mbr-text,
.cid-teW7qm9Aov .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-teW7qm9Aov .card-title {
  color: #065341;
}
.cid-tghTFDkuN9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tghTFDkuN9 .mbr-iconfont {
  color: #ffe161;
}
.cid-tghTFDkuN9 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tghTFDkuN9 .mbr-text {
  margin: 1.5rem 0;
}
.cid-tghTFDkuN9 .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tghTFDkuN9 .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tghTFDkuN9 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tghTFDkuN9 .mbr-section-subtitle,
.cid-tghTFDkuN9 .mbr-text,
.cid-tghTFDkuN9 .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-tghTFDkuN9 .mbr-text,
.cid-tghTFDkuN9 .social-links .mbr-iconfont {
  text-align: center;
  color: #414042;
}
.cid-tghTFDkuN9 .card-title {
  color: #065341;
}
.cid-teWcxKAXzS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #065341;
}
.cid-teWcxKAXzS .nav-tabs .nav-item.open .nav-link:focus,
.cid-teWcxKAXzS .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-teWcxKAXzS .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #ffd400;
}
@media (max-width: 767px) {
  .cid-teWcxKAXzS .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-teWcxKAXzS .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-teWcxKAXzS .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-teWcxKAXzS .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-teWcxKAXzS .nav-link,
.cid-teWcxKAXzS .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-teWcxKAXzS .nav-tabs .nav-link.active {
  color: #ffd400;
  border-bottom: 3px solid #ffd400;
}
.cid-teWcxKAXzS H4 {
  text-align: center;
  color: #ffffff;
}
.cid-teWcxKAXzS H3 {
  text-align: center;
  color: #ffffff;
}
.cid-teWcxKAXzS P {
  color: #ffffff;
}
.cid-teWdPyDNOy {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #065341;
}
.cid-teWdPyDNOy .nav-tabs .nav-item.open .nav-link:focus,
.cid-teWdPyDNOy .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-teWdPyDNOy .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #ffd400;
}
@media (max-width: 767px) {
  .cid-teWdPyDNOy .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-teWdPyDNOy .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-teWdPyDNOy .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-teWdPyDNOy .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-teWdPyDNOy .nav-link,
.cid-teWdPyDNOy .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-teWdPyDNOy .nav-tabs .nav-link.active {
  color: #ffd400;
  border-bottom: 3px solid #ffd400;
}
.cid-teWdPyDNOy H4 {
  text-align: center;
  color: #ffffff;
}
.cid-teWdPyDNOy H3 {
  text-align: center;
  color: #ffffff;
}
.cid-teWdPyDNOy P {
  color: #ffffff;
}
.cid-tfpBJkofFz {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../images/website-photo-large-1-2000x1187.jpg");
}
.cid-tfpBJkofFz .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tfpBJkofFz .row {
  justify-content: center;
}
.cid-tfpBJkofFz .card-text {
  color: #263d5a;
}
.cid-tfpBJkofFz .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  margin: 0;
  padding: 1rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
.cid-tfpBJkofFz .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tfpBJkofFz .inner {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  padding: 2rem 1rem;
  box-shadow: none;
  backdrop-filter: blur(0px);
}
.cid-tfpBJkofFz .card-box {
  padding: 1rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tfpBJkofFz .card {
    padding-bottom: 2rem;
  }
}
.cid-tfpBJkofFz .card-title,
.cid-tfpBJkofFz .iconfont-wrapper {
  color: #263d5a;
  text-align: center;
}
.cid-tfpBJkofFz .card-subtitle {
  color: #263d5a;
}
.cid-tfpBJkofFz .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tfpBJkofFz .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-teWikTS9ag {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/about-meta.png");
}
.cid-teWikTS9ag .wrapper {
  background-color: #065341;
  background-size: cover;
  border-radius: 30px;
  position: relative;
}
.cid-teWikTS9ag .wrapper img {
  width: 70%;
  margin: 0 auto;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-teWikTS9ag .wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-teWikTS9ag .wrapper {
    padding: 6rem;
  }
}
.cid-teWikTS9ag .mbr-overlay {
  border-radius: 30px;
  min-height: 100%;
}
.cid-teWikTS9ag H3 {
  text-align: center;
}
.cid-teWjfKItat {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWjfKItat .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-teWjfKItat .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-teWjfKItat .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #bfce2f;
}
.cid-teWjfKItat .panel-body,
.cid-teWjfKItat .card-header {
  padding: 1rem 0;
}
.cid-teWjfKItat .panel-title-edit {
  color: #000000;
}
.cid-teWjBt2leq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teWjBt2leq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-teWjBt2leq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-teWjBt2leq .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #bfce2f;
}
.cid-teWjBt2leq .panel-body,
.cid-teWjBt2leq .card-header {
  padding: 1rem 0;
}
.cid-teWjBt2leq .panel-title-edit {
  color: #000000;
}
.cid-teWkQzXHuX {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-teWkQzXHuX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-teWkQzXHuX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-teWkQzXHuX .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #bfce2f;
}
.cid-teWkQzXHuX .panel-body,
.cid-teWkQzXHuX .card-header {
  padding: 1rem 0;
}
.cid-teWkQzXHuX .panel-title-edit {
  color: #000000;
}
.cid-teWsq15ahX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-teWsq15ahX .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWsq15ahX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWsq15ahX .col-title {
  margin-bottom: 2.5rem;
}
.cid-teWsq15ahX .mbr-section-title {
  color: #065341;
}
.cid-teWsq15ahX .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-teWsq15ahX .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-teWsq15ahX .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-teWsq15ahX .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-teWsq15ahX .mbr-section-btn {
  margin-top: 46px;
}
.cid-teWsq15ahX .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-teWsJL7Ple {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-teWsJL7Ple .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWsJL7Ple .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWsJL7Ple .col-title {
  margin-bottom: 2.5rem;
}
.cid-teWsJL7Ple .mbr-section-title {
  color: #065341;
}
.cid-teWsJL7Ple .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-teWsJL7Ple .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-teWsJL7Ple .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-teWsJL7Ple .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-teWsJL7Ple .mbr-section-btn {
  margin-top: 46px;
}
.cid-teWsJL7Ple .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-teWsTf25Ll {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-teWsTf25Ll .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWsTf25Ll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWsTf25Ll .col-title {
  margin-bottom: 2.5rem;
}
.cid-teWsTf25Ll .mbr-section-title {
  color: #065341;
}
.cid-teWsTf25Ll .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-teWsTf25Ll .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-teWsTf25Ll .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-teWsTf25Ll .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-teWsTf25Ll .mbr-section-btn {
  margin-top: 46px;
}
.cid-teWsTf25Ll .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-teWtER4zUP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-teWtER4zUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWtER4zUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWtER4zUP .col-title {
  margin-bottom: 2.5rem;
}
.cid-teWtER4zUP .mbr-section-title {
  color: #065341;
}
.cid-teWtER4zUP .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-teWtER4zUP .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-teWtER4zUP .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-teWtER4zUP .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-teWtER4zUP .mbr-section-btn {
  margin-top: 46px;
}
.cid-teWtER4zUP .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-teWtXYn6gs {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-teWtXYn6gs .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWtXYn6gs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWtXYn6gs .col-title {
  margin-bottom: 2.5rem;
}
.cid-teWtXYn6gs .mbr-section-title {
  color: #065341;
}
.cid-teWtXYn6gs .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-teWtXYn6gs .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-teWtXYn6gs .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-teWtXYn6gs .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-teWtXYn6gs .mbr-section-btn {
  margin-top: 46px;
}
.cid-teWtXYn6gs .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-teWuaNtzjG {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-teWuaNtzjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWuaNtzjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWuaNtzjG .col-title {
  margin-bottom: 2.5rem;
}
.cid-teWuaNtzjG .mbr-section-title {
  color: #065341;
}
.cid-teWuaNtzjG .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-teWuaNtzjG .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-teWuaNtzjG .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-teWuaNtzjG .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-teWuaNtzjG .mbr-section-btn {
  margin-top: 46px;
}
.cid-teWuaNtzjG .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-teWuTxdsuD {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-teWuTxdsuD .mbr-fallback-image.disabled {
  display: none;
}
.cid-teWuTxdsuD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teWuTxdsuD .col-title {
  margin-bottom: 2.5rem;
}
.cid-teWuTxdsuD .mbr-section-title {
  color: #065341;
}
.cid-teWuTxdsuD .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-teWuTxdsuD .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-teWuTxdsuD .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-teWuTxdsuD .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-teWuTxdsuD .mbr-section-btn {
  margin-top: 46px;
}
.cid-teWuTxdsuD .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-tk6WQhzYTN {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tk6WQhzYTN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tk6WQhzYTN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tk6WQhzYTN .col-title {
  margin-bottom: 2.5rem;
}
.cid-tk6WQhzYTN .mbr-section-title {
  color: #065341;
}
.cid-tk6WQhzYTN .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1rem;
}
.cid-tk6WQhzYTN .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-tk6WQhzYTN .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 108px;
}
.cid-tk6WQhzYTN .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tk6WQhzYTN .mbr-section-btn {
  margin-top: 46px;
}
.cid-tk6WQhzYTN .bg-img {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 50%;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-teiuL88EMT {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-teiuL88EMT .mbr-fallback-image.disabled {
  display: none;
}
.cid-teiuL88EMT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teiuL88EMT .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-teiuL88EMT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-teiuL88EMT .row {
    text-align: center;
  }
  .cid-teiuL88EMT .row > div {
    margin: auto;
  }
  .cid-teiuL88EMT .social-row {
    justify-content: center;
  }
}
.cid-teiuL88EMT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-teiuL88EMT .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-teiuL88EMT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teiuL88EMT .list {
    margin-bottom: 0rem;
  }
}
.cid-teiuL88EMT .mbr-text {
  color: #ffffff;
}
.cid-teiuL88EMT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-teiuL88EMT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-teiuL88EMT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1fbDV2Q1 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1fbDV2Q1 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1fbDV2Q1 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1fbDV2Q1 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1fbDV2Q1 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1fbDV2Q1 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1fbDV2Q1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1fbDV2Q1 .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1fbDV2Q1 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse.show,
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1fbDV2Q1 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1fbDV2Q1 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1fbDV2Q1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1fbDV2Q1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1fbDV2Q1 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1fbDV2Q1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1fbDV2Q1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1fbDV2Q1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1fbDV2Q1 .dropdown-item.active,
.cid-tf1fbDV2Q1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1fbDV2Q1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1fbDV2Q1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1fbDV2Q1 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1fbDV2Q1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1fbDV2Q1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1fbDV2Q1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1fbDV2Q1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1fbDV2Q1 .navbar-buttons {
  text-align: center;
}
.cid-tf1fbDV2Q1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1fbDV2Q1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1fbDV2Q1 a.nav-link:focus {
  outline: none;
}
.cid-tf1fbDV2Q1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1fbDV2Q1 .nav-link:hover,
.cid-tf1fbDV2Q1 .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1fbDV2Q1 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1fbDV2Q1 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-teW1888w58 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #065341;
}
.cid-teW1888w58 h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-teW1888w58 .mbr-section-subtitle {
  color: #767676;
}
.cid-teW1888w58 .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-teW1888w58 .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-teW1888w58 .article-title-left {
  color: #ffffff;
  text-align: center;
}
.cid-teW1888w58 .article-title-right {
  color: #ffffff;
  text-align: center;
}
.cid-teW1888w58 .mbr-text-left {
  color: #ffffff;
  text-align: center;
}
.cid-teW1888w58 .mbr-text-right {
  color: #ffffff;
  text-align: center;
}
.cid-tf1gG2oVMK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tf1gG2oVMK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tf1gG2oVMK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tf1gG2oVMK .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-tf1gG2oVMK .mbr-section-title {
  text-align: center;
}
.cid-teW3eEU3MN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #065341;
}
.cid-teW3eEU3MN .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #ffffff;
}
.cid-teW3eEU3MN .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-teW3eEU3MN .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-teW3eEU3MN .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-teW3eEU3MN .col-12 {
    flex-direction: row-reverse;
  }
  .cid-teW3eEU3MN .col-12,
  .cid-teW3eEU3MN .col-md-12 {
    padding: 0;
  }
}
.cid-teW3eEU3MN .si img {
  width: auto;
}
.cid-teW3eEU3MN .mbr-section-title {
  color: #ffffff;
}
.cid-tf1lcIGHtv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tf1lcIGHtv .card {
  height: auto;
  background-color: transparent;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
  transition: all 0.6s ease;
}
.cid-tf1lcIGHtv .card:hover {
  transform: scale(1.03);
}
.cid-tf1lcIGHtv .card-padding {
  padding: 0.72rem 0.75rem;
}
.cid-tf1lcIGHtv .title-section {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .cid-tf1lcIGHtv .title-section {
    padding: 0 6rem;
    margin-bottom: 4rem;
  }
}
.cid-tf1lcIGHtv .img-container {
  display: flex;
  justify-content: center;
}
.cid-tf1lcIGHtv .card-img-top {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-tf1lcIGHtv .mbr-section-subtitle {
  text-align: center;
}
.cid-tf1lcIGHtv .mbr-text {
  text-align: center;
}
.cid-tf1lcIGHtv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf1lcIGHtv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf1lcIGHtv .mbr-section-title {
  text-align: center;
}
.cid-teVZRYo0qr {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-teVZRYo0qr .mbr-fallback-image.disabled {
  display: none;
}
.cid-teVZRYo0qr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teVZRYo0qr .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-teVZRYo0qr .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-teVZRYo0qr .row {
    text-align: center;
  }
  .cid-teVZRYo0qr .row > div {
    margin: auto;
  }
  .cid-teVZRYo0qr .social-row {
    justify-content: center;
  }
}
.cid-teVZRYo0qr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-teVZRYo0qr .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-teVZRYo0qr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-teVZRYo0qr .list {
    margin-bottom: 0rem;
  }
}
.cid-teVZRYo0qr .mbr-text {
  color: #ffffff;
}
.cid-teVZRYo0qr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-teVZRYo0qr .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-teVZRYo0qr div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1fbDV2Q1 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1fbDV2Q1 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1fbDV2Q1 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1fbDV2Q1 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1fbDV2Q1 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1fbDV2Q1 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1fbDV2Q1 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1fbDV2Q1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1fbDV2Q1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1fbDV2Q1 .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1fbDV2Q1 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse.show,
  .cid-tf1fbDV2Q1 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1fbDV2Q1 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1fbDV2Q1 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1fbDV2Q1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1fbDV2Q1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1fbDV2Q1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1fbDV2Q1 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1fbDV2Q1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1fbDV2Q1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1fbDV2Q1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1fbDV2Q1 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1fbDV2Q1 .dropdown-item.active,
.cid-tf1fbDV2Q1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1fbDV2Q1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1fbDV2Q1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1fbDV2Q1 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1fbDV2Q1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1fbDV2Q1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1fbDV2Q1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1fbDV2Q1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1fbDV2Q1 .navbar-buttons {
  text-align: center;
}
.cid-tf1fbDV2Q1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1fbDV2Q1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1fbDV2Q1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1fbDV2Q1 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1fbDV2Q1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1fbDV2Q1 a.nav-link:focus {
  outline: none;
}
.cid-tf1fbDV2Q1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1fbDV2Q1 .nav-link:hover,
.cid-tf1fbDV2Q1 .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1fbDV2Q1 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1fbDV2Q1 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tf1nSHqg4Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #065341;
}
.cid-tf1nSHqg4Y .row {
  align-items: center;
  width: 100%;
}
.cid-tf1nSHqg4Y .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tf1nSHqg4Y .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tf1nSHqg4Y .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tf1nSHqg4Y .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
}
@media (max-width: 991px) {
  .cid-tf1nSHqg4Y .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tf1nSHqg4Y .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tf1nSHqg4Y .content-container {
    padding: 2rem !important;
  }
}
.cid-tf1nSHqg4Y .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1nSHqg4Y .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tf1nSHqg4Y .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tf1nSHqg4Y .img-container {
    padding-right: 0;
  }
}
.cid-tf1nSHqg4Y .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tf1nSHqg4Y .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1nSHqg4Y .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tf1nSHqg4Y .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tf1nSHqg4Y .text-container {
    padding-left: 0;
  }
}
.cid-tf1nSHqg4Y .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tf1nSHqg4Y .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tf1nSHqg4Y .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tf1nSHqg4Y .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tf1nSHqg4Y .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tf1nq6Cm12 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tf1nq6Cm12 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf1nq6Cm12 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf1nq6Cm12 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf1nq6Cm12 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf1nq6Cm12 .row {
    text-align: center;
  }
  .cid-tf1nq6Cm12 .row > div {
    margin: auto;
  }
  .cid-tf1nq6Cm12 .social-row {
    justify-content: center;
  }
}
.cid-tf1nq6Cm12 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf1nq6Cm12 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf1nq6Cm12 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf1nq6Cm12 .list {
    margin-bottom: 0rem;
  }
}
.cid-tf1nq6Cm12 .mbr-text {
  color: #ffffff;
}
.cid-tf1nq6Cm12 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf1nq6Cm12 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf1nq6Cm12 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1nq76KMl .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1nq76KMl .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1nq76KMl .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1nq76KMl .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1nq76KMl .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1nq76KMl .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1nq76KMl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1nq76KMl .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1nq76KMl .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1nq76KMl .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1nq76KMl .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1nq76KMl .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1nq76KMl .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1nq76KMl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1nq76KMl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1nq76KMl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1nq76KMl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1nq76KMl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1nq76KMl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1nq76KMl .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1nq76KMl .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1nq76KMl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1nq76KMl .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1nq76KMl .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1nq76KMl .navbar.opened .navbar-collapse.show,
  .cid-tf1nq76KMl .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1nq76KMl .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1nq76KMl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1nq76KMl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1nq76KMl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1nq76KMl .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1nq76KMl .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1nq76KMl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1nq76KMl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1nq76KMl .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1nq76KMl .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1nq76KMl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1nq76KMl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1nq76KMl .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1nq76KMl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1nq76KMl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1nq76KMl .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1nq76KMl .dropdown-item.active,
.cid-tf1nq76KMl .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1nq76KMl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1nq76KMl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1nq76KMl .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1nq76KMl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1nq76KMl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1nq76KMl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1nq76KMl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1nq76KMl .navbar-buttons {
  text-align: center;
}
.cid-tf1nq76KMl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1nq76KMl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1nq76KMl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1nq76KMl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1nq76KMl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1nq76KMl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1nq76KMl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1nq76KMl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1nq76KMl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1nq76KMl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1nq76KMl .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1nq76KMl a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1nq76KMl a.nav-link:focus {
  outline: none;
}
.cid-tf1nq76KMl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1nq76KMl .nav-link:hover,
.cid-tf1nq76KMl .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1nq76KMl .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1nq76KMl .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tf1oJa2PUX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #065341;
}
.cid-tf1oJa2PUX .row {
  align-items: center;
  width: 100%;
}
.cid-tf1oJa2PUX .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tf1oJa2PUX .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tf1oJa2PUX .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tf1oJa2PUX .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
}
@media (max-width: 991px) {
  .cid-tf1oJa2PUX .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tf1oJa2PUX .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tf1oJa2PUX .content-container {
    padding: 2rem !important;
  }
}
.cid-tf1oJa2PUX .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1oJa2PUX .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tf1oJa2PUX .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tf1oJa2PUX .img-container {
    padding-right: 0;
  }
}
.cid-tf1oJa2PUX .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tf1oJa2PUX .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1oJa2PUX .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tf1oJa2PUX .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tf1oJa2PUX .text-container {
    padding-left: 0;
  }
}
.cid-tf1oJa2PUX .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tf1oJa2PUX .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tf1oJa2PUX .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tf1oJa2PUX .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tf1oJa2PUX .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tf1oJazU4v {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tf1oJazU4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf1oJazU4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf1oJazU4v .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf1oJazU4v .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf1oJazU4v .row {
    text-align: center;
  }
  .cid-tf1oJazU4v .row > div {
    margin: auto;
  }
  .cid-tf1oJazU4v .social-row {
    justify-content: center;
  }
}
.cid-tf1oJazU4v .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf1oJazU4v .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf1oJazU4v .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf1oJazU4v .list {
    margin-bottom: 0rem;
  }
}
.cid-tf1oJazU4v .mbr-text {
  color: #ffffff;
}
.cid-tf1oJazU4v .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf1oJazU4v .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf1oJazU4v div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1oJb3RF7 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1oJb3RF7 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1oJb3RF7 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1oJb3RF7 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1oJb3RF7 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1oJb3RF7 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1oJb3RF7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1oJb3RF7 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1oJb3RF7 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1oJb3RF7 .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1oJb3RF7 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1oJb3RF7 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1oJb3RF7 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1oJb3RF7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1oJb3RF7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1oJb3RF7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1oJb3RF7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1oJb3RF7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1oJb3RF7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1oJb3RF7 .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1oJb3RF7 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1oJb3RF7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1oJb3RF7 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1oJb3RF7 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1oJb3RF7 .navbar.opened .navbar-collapse.show,
  .cid-tf1oJb3RF7 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1oJb3RF7 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1oJb3RF7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1oJb3RF7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1oJb3RF7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1oJb3RF7 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1oJb3RF7 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1oJb3RF7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1oJb3RF7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1oJb3RF7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1oJb3RF7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1oJb3RF7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1oJb3RF7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1oJb3RF7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1oJb3RF7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1oJb3RF7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1oJb3RF7 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1oJb3RF7 .dropdown-item.active,
.cid-tf1oJb3RF7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1oJb3RF7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1oJb3RF7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1oJb3RF7 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1oJb3RF7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1oJb3RF7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1oJb3RF7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1oJb3RF7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1oJb3RF7 .navbar-buttons {
  text-align: center;
}
.cid-tf1oJb3RF7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1oJb3RF7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1oJb3RF7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1oJb3RF7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1oJb3RF7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1oJb3RF7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1oJb3RF7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1oJb3RF7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1oJb3RF7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1oJb3RF7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1oJb3RF7 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1oJb3RF7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1oJb3RF7 a.nav-link:focus {
  outline: none;
}
.cid-tf1oJb3RF7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1oJb3RF7 .nav-link:hover,
.cid-tf1oJb3RF7 .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1oJb3RF7 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1oJb3RF7 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tf1p93Dgru {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #065341;
}
.cid-tf1p93Dgru .row {
  align-items: center;
  width: 100%;
}
.cid-tf1p93Dgru .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tf1p93Dgru .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tf1p93Dgru .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tf1p93Dgru .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
}
@media (max-width: 991px) {
  .cid-tf1p93Dgru .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tf1p93Dgru .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tf1p93Dgru .content-container {
    padding: 2rem !important;
  }
}
.cid-tf1p93Dgru .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1p93Dgru .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tf1p93Dgru .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tf1p93Dgru .img-container {
    padding-right: 0;
  }
}
.cid-tf1p93Dgru .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tf1p93Dgru .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1p93Dgru .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tf1p93Dgru .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tf1p93Dgru .text-container {
    padding-left: 0;
  }
}
.cid-tf1p93Dgru .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tf1p93Dgru .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tf1p93Dgru .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tf1p93Dgru .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tf1p93Dgru .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tf1p94dtpr {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tf1p94dtpr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf1p94dtpr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf1p94dtpr .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf1p94dtpr .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf1p94dtpr .row {
    text-align: center;
  }
  .cid-tf1p94dtpr .row > div {
    margin: auto;
  }
  .cid-tf1p94dtpr .social-row {
    justify-content: center;
  }
}
.cid-tf1p94dtpr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf1p94dtpr .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf1p94dtpr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf1p94dtpr .list {
    margin-bottom: 0rem;
  }
}
.cid-tf1p94dtpr .mbr-text {
  color: #ffffff;
}
.cid-tf1p94dtpr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf1p94dtpr .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf1p94dtpr div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1p94VV3x .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1p94VV3x .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1p94VV3x .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1p94VV3x .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1p94VV3x .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1p94VV3x .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1p94VV3x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1p94VV3x .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1p94VV3x .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1p94VV3x .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1p94VV3x .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1p94VV3x .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1p94VV3x .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1p94VV3x .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1p94VV3x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1p94VV3x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1p94VV3x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1p94VV3x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1p94VV3x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1p94VV3x .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1p94VV3x .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1p94VV3x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1p94VV3x .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1p94VV3x .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1p94VV3x .navbar.opened .navbar-collapse.show,
  .cid-tf1p94VV3x .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1p94VV3x .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1p94VV3x .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1p94VV3x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1p94VV3x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1p94VV3x .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1p94VV3x .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1p94VV3x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1p94VV3x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1p94VV3x .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1p94VV3x .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1p94VV3x .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1p94VV3x .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1p94VV3x .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1p94VV3x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1p94VV3x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1p94VV3x .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1p94VV3x .dropdown-item.active,
.cid-tf1p94VV3x .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1p94VV3x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1p94VV3x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1p94VV3x .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1p94VV3x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1p94VV3x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1p94VV3x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1p94VV3x ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1p94VV3x .navbar-buttons {
  text-align: center;
}
.cid-tf1p94VV3x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1p94VV3x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1p94VV3x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1p94VV3x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1p94VV3x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1p94VV3x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1p94VV3x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1p94VV3x nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1p94VV3x nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1p94VV3x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1p94VV3x .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1p94VV3x a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1p94VV3x a.nav-link:focus {
  outline: none;
}
.cid-tf1p94VV3x .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1p94VV3x .nav-link:hover,
.cid-tf1p94VV3x .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1p94VV3x .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1p94VV3x .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tf1psF4JjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #065341;
}
.cid-tf1psF4JjM .row {
  align-items: center;
  width: 100%;
}
.cid-tf1psF4JjM .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tf1psF4JjM .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tf1psF4JjM .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tf1psF4JjM .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
}
@media (max-width: 991px) {
  .cid-tf1psF4JjM .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tf1psF4JjM .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tf1psF4JjM .content-container {
    padding: 2rem !important;
  }
}
.cid-tf1psF4JjM .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1psF4JjM .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tf1psF4JjM .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tf1psF4JjM .img-container {
    padding-right: 0;
  }
}
.cid-tf1psF4JjM .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tf1psF4JjM .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1psF4JjM .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tf1psF4JjM .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tf1psF4JjM .text-container {
    padding-left: 0;
  }
}
.cid-tf1psF4JjM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tf1psF4JjM .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tf1psF4JjM .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tf1psF4JjM .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tf1psF4JjM .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tf1psFBfrM {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tf1psFBfrM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf1psFBfrM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf1psFBfrM .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf1psFBfrM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf1psFBfrM .row {
    text-align: center;
  }
  .cid-tf1psFBfrM .row > div {
    margin: auto;
  }
  .cid-tf1psFBfrM .social-row {
    justify-content: center;
  }
}
.cid-tf1psFBfrM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf1psFBfrM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf1psFBfrM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf1psFBfrM .list {
    margin-bottom: 0rem;
  }
}
.cid-tf1psFBfrM .mbr-text {
  color: #ffffff;
}
.cid-tf1psFBfrM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf1psFBfrM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf1psFBfrM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1psG766K .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1psG766K .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1psG766K .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1psG766K .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1psG766K .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1psG766K .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1psG766K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1psG766K .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1psG766K .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1psG766K .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1psG766K .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1psG766K .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1psG766K .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1psG766K .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1psG766K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1psG766K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1psG766K .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1psG766K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1psG766K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1psG766K .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1psG766K .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1psG766K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1psG766K .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1psG766K .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1psG766K .navbar.opened .navbar-collapse.show,
  .cid-tf1psG766K .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1psG766K .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1psG766K .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1psG766K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1psG766K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1psG766K .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1psG766K .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1psG766K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1psG766K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1psG766K .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1psG766K .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1psG766K .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1psG766K .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1psG766K .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1psG766K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1psG766K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1psG766K .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1psG766K .dropdown-item.active,
.cid-tf1psG766K .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1psG766K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1psG766K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1psG766K .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1psG766K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1psG766K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1psG766K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1psG766K ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1psG766K .navbar-buttons {
  text-align: center;
}
.cid-tf1psG766K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1psG766K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1psG766K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1psG766K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1psG766K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1psG766K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1psG766K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1psG766K nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1psG766K nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1psG766K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1psG766K .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1psG766K a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1psG766K a.nav-link:focus {
  outline: none;
}
.cid-tf1psG766K .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1psG766K .nav-link:hover,
.cid-tf1psG766K .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1psG766K .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1psG766K .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tf1ulldDFF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #065341;
}
.cid-tf1ulldDFF .row {
  align-items: center;
  width: 100%;
}
.cid-tf1ulldDFF .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tf1ulldDFF .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tf1ulldDFF .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tf1ulldDFF .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
}
@media (max-width: 991px) {
  .cid-tf1ulldDFF .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tf1ulldDFF .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tf1ulldDFF .content-container {
    padding: 2rem !important;
  }
}
.cid-tf1ulldDFF .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1ulldDFF .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tf1ulldDFF .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tf1ulldDFF .img-container {
    padding-right: 0;
  }
}
.cid-tf1ulldDFF .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tf1ulldDFF .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1ulldDFF .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tf1ulldDFF .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tf1ulldDFF .text-container {
    padding-left: 0;
  }
}
.cid-tf1ulldDFF .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tf1ulldDFF .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tf1ulldDFF .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tf1ulldDFF .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tf1ulldDFF .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tf1ullIncQ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tf1ullIncQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf1ullIncQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf1ullIncQ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf1ullIncQ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf1ullIncQ .row {
    text-align: center;
  }
  .cid-tf1ullIncQ .row > div {
    margin: auto;
  }
  .cid-tf1ullIncQ .social-row {
    justify-content: center;
  }
}
.cid-tf1ullIncQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf1ullIncQ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf1ullIncQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf1ullIncQ .list {
    margin-bottom: 0rem;
  }
}
.cid-tf1ullIncQ .mbr-text {
  color: #ffffff;
}
.cid-tf1ullIncQ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf1ullIncQ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf1ullIncQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1ulmgKLp .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1ulmgKLp .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1ulmgKLp .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1ulmgKLp .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1ulmgKLp .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1ulmgKLp .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1ulmgKLp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1ulmgKLp .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1ulmgKLp .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1ulmgKLp .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1ulmgKLp .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1ulmgKLp .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1ulmgKLp .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1ulmgKLp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1ulmgKLp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1ulmgKLp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1ulmgKLp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1ulmgKLp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1ulmgKLp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1ulmgKLp .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1ulmgKLp .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1ulmgKLp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1ulmgKLp .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1ulmgKLp .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1ulmgKLp .navbar.opened .navbar-collapse.show,
  .cid-tf1ulmgKLp .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1ulmgKLp .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1ulmgKLp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1ulmgKLp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1ulmgKLp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1ulmgKLp .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1ulmgKLp .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1ulmgKLp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1ulmgKLp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1ulmgKLp .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1ulmgKLp .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1ulmgKLp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1ulmgKLp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1ulmgKLp .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1ulmgKLp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1ulmgKLp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1ulmgKLp .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1ulmgKLp .dropdown-item.active,
.cid-tf1ulmgKLp .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1ulmgKLp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1ulmgKLp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1ulmgKLp .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1ulmgKLp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1ulmgKLp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1ulmgKLp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1ulmgKLp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1ulmgKLp .navbar-buttons {
  text-align: center;
}
.cid-tf1ulmgKLp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1ulmgKLp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1ulmgKLp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1ulmgKLp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1ulmgKLp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1ulmgKLp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1ulmgKLp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1ulmgKLp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1ulmgKLp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1ulmgKLp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1ulmgKLp .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1ulmgKLp a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1ulmgKLp a.nav-link:focus {
  outline: none;
}
.cid-tf1ulmgKLp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1ulmgKLp .nav-link:hover,
.cid-tf1ulmgKLp .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1ulmgKLp .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1ulmgKLp .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tf1uJM6Lu6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #065341;
}
.cid-tf1uJM6Lu6 .row {
  align-items: center;
  width: 100%;
}
.cid-tf1uJM6Lu6 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tf1uJM6Lu6 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tf1uJM6Lu6 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tf1uJM6Lu6 .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #f3f4ef;
}
@media (max-width: 991px) {
  .cid-tf1uJM6Lu6 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tf1uJM6Lu6 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tf1uJM6Lu6 .content-container {
    padding: 2rem !important;
  }
}
.cid-tf1uJM6Lu6 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1uJM6Lu6 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tf1uJM6Lu6 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tf1uJM6Lu6 .img-container {
    padding-right: 0;
  }
}
.cid-tf1uJM6Lu6 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tf1uJM6Lu6 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tf1uJM6Lu6 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tf1uJM6Lu6 .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tf1uJM6Lu6 .text-container {
    padding-left: 0;
  }
}
.cid-tf1uJM6Lu6 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tf1uJM6Lu6 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-tf1uJM6Lu6 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tf1uJM6Lu6 .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tf1uJM6Lu6 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tf1uJMJQa9 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tf1uJMJQa9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tf1uJMJQa9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tf1uJMJQa9 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tf1uJMJQa9 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tf1uJMJQa9 .row {
    text-align: center;
  }
  .cid-tf1uJMJQa9 .row > div {
    margin: auto;
  }
  .cid-tf1uJMJQa9 .social-row {
    justify-content: center;
  }
}
.cid-tf1uJMJQa9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tf1uJMJQa9 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tf1uJMJQa9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tf1uJMJQa9 .list {
    margin-bottom: 0rem;
  }
}
.cid-tf1uJMJQa9 .mbr-text {
  color: #ffffff;
}
.cid-tf1uJMJQa9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tf1uJMJQa9 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tf1uJMJQa9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tf1uJNkHna .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-tf1uJNkHna .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-tf1uJNkHna .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-tf1uJNkHna .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tf1uJNkHna .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-tf1uJNkHna .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tf1uJNkHna .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tf1uJNkHna .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-tf1uJNkHna .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-tf1uJNkHna .navbar.collapsed.opened .navbar-collapse.show,
.cid-tf1uJNkHna .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-tf1uJNkHna .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-tf1uJNkHna .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-tf1uJNkHna .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tf1uJNkHna .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tf1uJNkHna .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tf1uJNkHna .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tf1uJNkHna .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tf1uJNkHna .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tf1uJNkHna .navbar {
    flex-wrap: nowrap;
  }
  .cid-tf1uJNkHna .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-tf1uJNkHna .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tf1uJNkHna .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-tf1uJNkHna .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-tf1uJNkHna .navbar.opened .navbar-collapse.show,
  .cid-tf1uJNkHna .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-tf1uJNkHna .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-tf1uJNkHna .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tf1uJNkHna .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tf1uJNkHna .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tf1uJNkHna .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tf1uJNkHna .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tf1uJNkHna .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tf1uJNkHna .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-tf1uJNkHna .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-tf1uJNkHna .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tf1uJNkHna .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tf1uJNkHna .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tf1uJNkHna .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tf1uJNkHna .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tf1uJNkHna .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tf1uJNkHna .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tf1uJNkHna .dropdown-item.active,
.cid-tf1uJNkHna .dropdown-item:active {
  background-color: transparent;
}
.cid-tf1uJNkHna .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tf1uJNkHna .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tf1uJNkHna .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tf1uJNkHna .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tf1uJNkHna .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tf1uJNkHna .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tf1uJNkHna ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tf1uJNkHna .navbar-buttons {
  text-align: center;
}
.cid-tf1uJNkHna button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tf1uJNkHna button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tf1uJNkHna button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tf1uJNkHna button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1uJNkHna button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tf1uJNkHna button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tf1uJNkHna nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1uJNkHna nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tf1uJNkHna nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tf1uJNkHna nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tf1uJNkHna .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tf1uJNkHna a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-tf1uJNkHna a.nav-link:focus {
  outline: none;
}
.cid-tf1uJNkHna .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tf1uJNkHna .nav-link:hover,
.cid-tf1uJNkHna .dropdown-item:hover {
  color: #ffd400 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tf1uJNkHna .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-tf1uJNkHna .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
