.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Bellota Text', display;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Bellota Text', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Bellota Text', display;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Bellota Text', display;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Bellota Text', display;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #40b0bf !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #012b3a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !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: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: #012b3a !important;
  border-color: #012b3a !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #40b0bf;
  color: #40b0bf;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #012b3a;
  color: #012b3a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #012b3a !important;
  border-color: #012b3a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #40b0bf !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #012b3a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #266a73 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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: #000000 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #40b0bf;
}
.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: #012b3a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #40b0bf;
  border-color: #40b0bf;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #40b0bf;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #25c3fb;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Bellota Text', display;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #40b0bf !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Bellota Text', display;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #40b0bf;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #40b0bf;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #40b0bf;
}
.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: #40b0bf;
  border-bottom-color: #40b0bf;
}
.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: #40b0bf !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: #e43f3f !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='%2340b0bf' %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-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGGqnN35o8 {
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uGGqnN35o8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGGqnN35o8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGGqnN35o8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uGGqnN35o8 .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uGGqnN35o8 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uGGqnN35o8 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uGGqnN35o8 .container {
    padding: 0 12px;
  }
}
.cid-uGGqnN35o8 .row {
  justify-content: center;
}
.cid-uGGqnN35o8 .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uGGqnN35o8 .title-wrapper {
    margin-bottom: 56px;
  }
}
.cid-uGGqnN35o8 .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uGGqnN35o8 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uGGqnN35o8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uGGqnN35o8 .item {
    margin-bottom: 16px;
  }
}
.cid-uGGqnN35o8 .item .item-wrapper {
  width: 100%;
}
.cid-uGGqnN35o8 .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGGqnN35o8 .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uGGqnN35o8 .item .item-wrapper .card-box .desc-wrapper {
  margin-bottom: 16px;
}
.cid-uGGqnN35o8 .item .item-wrapper .card-box .desc-wrapper .desc-wrap {
  padding: 8px 12px;
  border: 1px solid #f5f5f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}
.cid-uGGqnN35o8 .item .item-wrapper .card-box .desc-wrapper .desc-wrap .mbr-iconfont {
  font-size: 16px;
  color: #000000;
  margin-right: 4px;
}
.cid-uGGqnN35o8 .item .item-wrapper .card-box .desc-wrapper .desc-wrap .item-desc {
  margin-bottom: 0;
}
.cid-uGGqnN35o8 .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uGGqnN35o8 .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uGGqnN35o8 .item.features-without-image .item-wrapper {
  padding: 48px;
  background-color: #f5f5f7;
  border-radius: 32px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uGGqnN35o8 .item.features-without-image .item-wrapper {
    padding: 24px;
  }
}
.cid-uGGqnN35o8 .item-menu-overlay .btn-wrapper {
  margin-top: 0;
}
.cid-uGGqnN35o8 .mbr-section-title {
  color: #1D1D1F;
  text-align: center;
}
.cid-uGGqnN35o8 .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-uGGqnN35o8 .item-title {
  color: #1D1D1F;
}
.cid-uGGqnN35o8 .item-desc {
  color: #1D1D1F;
}
.cid-uGGqnN35o8 .item-text {
  color: #1D1D1F;
}
.cid-uAD95gh7xN {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/appleton-header-image-1516x528.jpg");
}
.cid-uAD95gh7xN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAD95gh7xN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAD95gh7xN .card-wrapper {
  padding: 4rem;
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uAD95gh7xN .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-uAD95gh7xN .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-uAD95gh7xN .card-wrapper {
    padding: 1rem;
  }
}
.cid-uAD95gh7xN ul {
  list-style: none;
}
.cid-uAD95gh7xN li {
  position: relative;
}
.cid-uAD95gh7xN li:before {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #40b0bf;
  font-size: 0.8rem;
}
.cid-uAD95gh7xN .mbr-section-btn {
  width: 100%;
}
.cid-uAD95gh7xN .btn {
  width: 100%;
}
.cid-uADbhVzniQ {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-uADbhVzniQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uADbhVzniQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uADbhVzniQ .link {
  color: #2299aa;
}
.cid-uADbhVzniQ .link P {
  text-align: center;
}
.cid-uGA6qXed02 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGA6qXed02 .item:focus,
.cid-uGA6qXed02 span:focus {
  outline: none;
}
.cid-uGA6qXed02 .item-wrapper {
  position: relative;
}
.cid-uGA6qXed02 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGA6qXed02 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uGA6qXed02 .container {
    padding: 0 24px;
  }
}
.cid-uGA6qXed02 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uGA6qXed02 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uGA6qXed02 .embla__slide .slide-content {
  width: 100%;
}
.cid-uGA6qXed02 .embla__slide .slide-content .item-wrapper {
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uGA6qXed02 .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uGA6qXed02 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uGA6qXed02 .embla__button--next,
.cid-uGA6qXed02 .embla__button--prev {
  display: flex;
}
.cid-uGA6qXed02 .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #e43f3f !important;
  color: #40b0bf;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uGA6qXed02 .embla__button {
    display: none;
  }
}
.cid-uGA6qXed02 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uGA6qXed02 .embla__button:hover {
  opacity: .85 !important;
  color: #40b0bf !important;
}
.cid-uGA6qXed02 .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uGA6qXed02 .embla__button.embla__button--next {
  right: 32px;
}
.cid-uGA6qXed02 .embla {
  position: relative;
  width: 100%;
}
.cid-uGA6qXed02 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uGA6qXed02 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uGA6qXed02 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uGA6qXed02 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGABth0FHV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGABth0FHV .item:focus,
.cid-uGABth0FHV span:focus {
  outline: none;
}
.cid-uGABth0FHV .item-wrapper {
  position: relative;
}
.cid-uGABth0FHV .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGABth0FHV .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uGABth0FHV .container {
    padding: 0 24px;
  }
}
.cid-uGABth0FHV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uGABth0FHV .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uGABth0FHV .embla__slide .slide-content {
  width: 100%;
}
.cid-uGABth0FHV .embla__slide .slide-content .item-wrapper {
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uGABth0FHV .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uGABth0FHV .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uGABth0FHV .embla__button--next,
.cid-uGABth0FHV .embla__button--prev {
  display: flex;
}
.cid-uGABth0FHV .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #e43f3f !important;
  color: #40b0bf;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uGABth0FHV .embla__button {
    display: none;
  }
}
.cid-uGABth0FHV .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uGABth0FHV .embla__button:hover {
  opacity: .85 !important;
  color: #40b0bf !important;
}
.cid-uGABth0FHV .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uGABth0FHV .embla__button.embla__button--next {
  right: 32px;
}
.cid-uGABth0FHV .embla {
  position: relative;
  width: 100%;
}
.cid-uGABth0FHV .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uGABth0FHV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uGABth0FHV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uGABth0FHV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uFgiZOgHDI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFgiZOgHDI blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uFgehI9yIy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uFgehI9yIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFgehI9yIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFgehI9yIy .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uFgehI9yIy .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uFgehI9yIy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uFgehI9yIy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uFgehI9yIy .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uFgehI9yIy .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uFgehI9yIy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uFgehI9yIy .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uFgehI9yIy .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFgehI9yIy .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uFgjQFGkaJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFgjQFGkaJ blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uFgm1n5LnW {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGsXqatCxY {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGsO7kauZC {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGsO7kauZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGsO7kauZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGsNrIFF2O {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uGsNrIFF2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGsNrIFF2O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGsNrIFF2O .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uGsNrIFF2O .row {
  flex-direction: row-reverse;
}
.cid-uGsNrIFF2O img {
  width: 100%;
}
.cid-uGsOt9rk7y {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGsOt9rk7y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGsOt9rk7y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGAB8yunBF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGAB8yunBF .item:focus,
.cid-uGAB8yunBF span:focus {
  outline: none;
}
.cid-uGAB8yunBF .item-wrapper {
  position: relative;
}
.cid-uGAB8yunBF .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGAB8yunBF .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uGAB8yunBF .container {
    padding: 0 24px;
  }
}
.cid-uGAB8yunBF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uGAB8yunBF .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uGAB8yunBF .embla__slide .slide-content {
  width: 100%;
}
.cid-uGAB8yunBF .embla__slide .slide-content .item-wrapper {
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uGAB8yunBF .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uGAB8yunBF .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uGAB8yunBF .embla__button--next,
.cid-uGAB8yunBF .embla__button--prev {
  display: flex;
}
.cid-uGAB8yunBF .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #e43f3f !important;
  color: #40b0bf;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uGAB8yunBF .embla__button {
    display: none;
  }
}
.cid-uGAB8yunBF .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uGAB8yunBF .embla__button:hover {
  opacity: .85 !important;
  color: #40b0bf !important;
}
.cid-uGAB8yunBF .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uGAB8yunBF .embla__button.embla__button--next {
  right: 32px;
}
.cid-uGAB8yunBF .embla {
  position: relative;
  width: 100%;
}
.cid-uGAB8yunBF .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uGAB8yunBF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uGAB8yunBF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uGAB8yunBF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGpat7mXe1 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGpat7mXe1 blockquote {
  border-color: #e43f3f;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uGpaVxF7OO {
  padding-top: 1rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-uGpaVxF7OO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGpaVxF7OO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGpaVxF7OO .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uGpaVxF7OO .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGpaVxF7OO .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uGpaVxF7OO .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uGpaVxF7OO .row .row {
    flex-direction: column-reverse;
  }
  .cid-uGpaVxF7OO .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uGpaVxF7OO .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGpaVxF7OO .card-subtitle {
  color: #e6c63b;
}
.cid-uGpaVxF7OO .mbr-text {
  color: #555555;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uH7Ic3AEYh {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uH7Ic3AEYh .item-img,
.cid-uH7Ic3AEYh .img-wrap,
.cid-uH7Ic3AEYh img {
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
}
.cid-uH7Ic3AEYh img,
.cid-uH7Ic3AEYh .item-img {
  width: 230px;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 230px;
  height: 230px;
}
@media (max-width: 1600px) {
  .cid-uH7Ic3AEYh img,
  .cid-uH7Ic3AEYh .item-img {
    width: 180px;
    min-height: 180px;
    height: 180px;
  }
}
.cid-uH7Ic3AEYh .item-img {
  border: 1px solid transparent;
  transition: all 0.3s;
}
.cid-uH7Ic3AEYh .item:focus,
.cid-uH7Ic3AEYh span:focus {
  outline: none;
}
.cid-uH7Ic3AEYh .img-wrap {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-uH7Ic3AEYh .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uH7Ic3AEYh .item {
    margin-bottom: 1rem;
  }
}
.cid-uH7Ic3AEYh h5 {
  margin: 0;
}
.cid-uH7Ic3AEYh .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uH7Ic3AEYh .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-uH7Ic3AEYh .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uH7Ic3AEYh .item-wrapper:hover .item-img {
  border: 1px solid lightgray;
}
.cid-uH7Ic3AEYh .item-wrapper:hover .img-wrap {
  margin: 10px;
}
@media (max-width: 992px) {
  .cid-uH7Ic3AEYh .item-wrapper {
    height: auto;
  }
}
.cid-uH7Ic3AEYh .mbr-section-title {
  color: #4e423d;
  text-align: center;
}
.cid-uH7Ic3AEYh .item-title {
  text-align: center;
}
.cid-uH7Ic3AEYh .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uH7Ic3AEYh .mbr-text,
.cid-uH7Ic3AEYh .item .mbr-section-btn {
  text-align: center;
}
.cid-uH7Ic3AEYh .mbr-section-subtitle,
.cid-uH7Ic3AEYh .mbr-section-head .mbr-section-btn {
  text-align: center;
}
.cid-uDnjVF1jmc {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDnjVF1jmc img {
  width: 120px;
  margin: auto;
}
.cid-uDnjVF1jmc .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uDnjVF1jmc .card {
    max-width: 12.5%;
  }
}
.cid-uGoXZNj9YK {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGoXZNj9YK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGoXZNj9YK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGoXZNj9YK .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uGoXZNj9YK .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uGoXZNj9YK .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGoXZNj9YK .card-wrapper {
    padding: 4rem;
  }
}
.cid-uGoXZNj9YK .mbr-text,
.cid-uGoXZNj9YK .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-uGoXZNj9YK .card-title,
.cid-uGoXZNj9YK .card-box {
  text-align: left;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uDmJvzimCT {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uDmJvzimCT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDmJvzimCT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDmJvzimCT .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDmJvzimCT .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uDmJvzimCT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDmJvzimCT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDmJvzimCT .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDmJvzimCT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDmJvzimCT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDmJvzimCT .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDmJvzimCT .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDmJvzimCT .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGp1V4HhYe {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGp1V4HhYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGp1V4HhYe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGp1V4HhYe .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGp1V4HhYe .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGp1V4HhYe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGp1V4HhYe .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGp1V4HhYe .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGp1V4HhYe .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGp1V4HhYe .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGp1V4HhYe .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGp1V4HhYe .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGp1V4HhYe .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGp2loOf9P {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGp2loOf9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGp2loOf9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGp2loOf9P .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGp2loOf9P .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGp2loOf9P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGp2loOf9P .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGp2loOf9P .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGp2loOf9P .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGp2loOf9P .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGp2loOf9P .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGp2loOf9P .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGp2loOf9P .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGp2KP5QzE {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGp2KP5QzE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGp2KP5QzE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGp2KP5QzE .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGp2KP5QzE .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGp2KP5QzE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGp2KP5QzE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGp2KP5QzE .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGp2KP5QzE .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGp2KP5QzE .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGp2KP5QzE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGp2KP5QzE .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGp2KP5QzE .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGp35X5rFR {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGp35X5rFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGp35X5rFR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGp35X5rFR .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGp35X5rFR .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGp35X5rFR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGp35X5rFR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGp35X5rFR .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGp35X5rFR .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGp35X5rFR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGp35X5rFR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGp35X5rFR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGp35X5rFR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGp3k7JqJ1 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGp3k7JqJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGp3k7JqJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGp3k7JqJ1 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGp3k7JqJ1 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGp3k7JqJ1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGp3k7JqJ1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGp3k7JqJ1 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGp3k7JqJ1 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGp3k7JqJ1 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGp3k7JqJ1 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGp3k7JqJ1 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGp3k7JqJ1 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGp3uvf9XV {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uGp3uvf9XV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGp3uvf9XV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGp3uvf9XV .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uGp3uvf9XV .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uGp3uvf9XV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGp3uvf9XV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uGp3uvf9XV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uGp3uvf9XV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uGp3uvf9XV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGp3uvf9XV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uGp3uvf9XV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGp3uvf9XV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uH3OoYVdp3 {
  background-color: #2299aa;
}
.cid-uH3OoYVdp3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3OoYVdp3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3OoYVdp3 .container-text {
  position: sticky;
  top: 0;
  align-items: stretch;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.cid-uH3OoYVdp3 .col-text {
  position: relative;
}
.cid-uH3OoYVdp3 .bg-frame {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 150vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
}
.cid-uH3OoYVdp3 .text-row {
  align-items: center;
  flex-grow: 1;
}
.cid-uH3OoYVdp3 .text-wrap {
  position: relative;
  z-index: 3;
}
.cid-uH3OoYVdp3 .label-text {
  color: #181817;
}
.cid-uH3OoYVdp3 .mbr-section-title {
  color: #181817;
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .cid-uH3OoYVdp3 .mbr-section-title.display-1 {
    font-size: 14rem !important;
  }
}
.cid-uH3OoYVdp3 .mbr-section-subtitle {
  color: #181817;
}
.cid-uH3OoYVdp3 .text-grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  -ms-grid-columns: 2fr 3fr 2fr 5fr;
  grid-template-columns: 2fr 3fr 2fr 5fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  margin-top: 16px;
}
.cid-uH3OoYVdp3 .mbr-text {
  color: #181817;
  opacity: 0.8;
  margin-bottom: 1rem;
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-uH3OoYVdp3 .mbr-text {
    grid-column-start: 1;
  }
}
@media (max-width: 575px) {
  .cid-uH3OoYVdp3 .mbr-text {
    grid-column-end: 4;
  }
}
.cid-uH3OoYVdp3 .card-container {
  width: 50%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uH3OoYVdp3 .card-container {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-uH3OoYVdp3 .card-container {
    width: 100%;
  }
}
.cid-uH3OoYVdp3 .card {
  width: 100%;
  padding: 0 0 70px;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .cid-uH3OoYVdp3 .card {
    padding: 0 0 48px;
    margin-bottom: 64px;
  }
}
@media (max-width: 991px) {
  .cid-uH3OoYVdp3 .card {
    padding: 0 0 60px;
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .cid-uH3OoYVdp3 .card {
    padding: 0 0 60px;
    margin-bottom: 32px;
  }
}
.cid-uH3OoYVdp3 .card-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 45px;
  border-radius: 0.25rem;
  background-color: #232323;
}
@media (max-width: 1199px) {
  .cid-uH3OoYVdp3 .card-wrap {
    padding: 32px;
  }
}
@media (max-width: 991px) {
  .cid-uH3OoYVdp3 .card-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uH3OoYVdp3 .card-wrap {
    padding: 24px 24px 48px;
  }
}
.cid-uH3OoYVdp3 .card-text-box {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-uH3OoYVdp3 .card-text {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .cid-uH3OoYVdp3 .card-text {
    margin-bottom: 2rem;
  }
}
.cid-uH3OoYVdp3 .card-title {
  color: #e43f3f;
  margin-bottom: 4px;
}
.cid-uH3OoYVdp3 .card-subtitle {
  color: #bbbbbb;
  margin-bottom: 0;
}
.cid-uH3OoYVdp3 .card-img-box {
  position: absolute;
  bottom: -70px;
  right: 45px;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uH3OoYVdp3 .card-img-box {
    width: 96px;
    bottom: -48px;
    right: 32px;
  }
}
@media (max-width: 991px) {
  .cid-uH3OoYVdp3 .card-img-box {
    width: 120px;
    bottom: -60px;
    right: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uH3OoYVdp3 .card-img-box {
    width: 80px;
    bottom: -40px;
    right: 24px;
  }
}
.cid-uH3OoYVdp3 .card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBY8wl3iIP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uBY8wl3iIP .item-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-uBY8wl3iIP .item-wrapper {
  background: #ffffff;
  margin-bottom: 2rem;
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uBY8wl3iIP .item-wrapper {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uBY8wl3iIP .item-wrapper {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}
.cid-uBY8wl3iIP .card-title,
.cid-uBY8wl3iIP .iconfont-wrapper {
  color: #000000;
}
.cid-uBY8wl3iIP .card-text {
  color: #000000;
  text-align: left;
}
.cid-uBY8wl3iIP .content-head {
  max-width: 800px;
}
.cid-uBY8wl3iIP .mbr-section-title {
  color: #000000;
}
.cid-uBY8wl3iIP .card-title,
.cid-uBY8wl3iIP .img-wrapper {
  text-align: center;
}
.cid-uBY8wl3iIP .img-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uBYjfxvBhS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uAE1SDEtG1 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAE1SDEtG1 .item:focus,
.cid-uAE1SDEtG1 span:focus {
  outline: none;
}
.cid-uAE1SDEtG1 .item {
  cursor: pointer;
}
.cid-uAE1SDEtG1 .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uAE1SDEtG1 .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uAE1SDEtG1 .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-uAE1SDEtG1 .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 23s;
}
.cid-uAE1SDEtG1 .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #353535;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uAE1SDEtG1 .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 40s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uAE1SDEtG1 .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 16s;
}
.cid-uAE1SDEtG1 .mbr-section-title,
.cid-uAE1SDEtG1 .mbr-section-subtitle {
  color: #000000;
}
.cid-uAE3wW2wEl {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uAE3wW2wEl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAE3wW2wEl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAE3wW2wEl .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uAE3wW2wEl .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAE3wW2wEl .img-wrapper {
  width: 10rem;
  padding-right: 1.5rem;
}
.cid-uAE3wW2wEl .content-head {
  max-width: 800px;
}
.cid-uAE3wW2wEl .mbr-section-title {
  color: #2299aa;
}
.cid-uBXDA9DwCs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1439.png");
}
.cid-uBXDA9DwCs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBXDA9DwCs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBXDA9DwCs .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uBXDA9DwCs .icon-box {
  background: #40b0bf;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uBXDA9DwCs .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uBXDA9DwCs .card {
    margin-bottom: 2rem;
  }
  .cid-uBXDA9DwCs .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uBXDA9DwCs .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBXDA9DwCs .icon-text {
  text-align: left;
}
.cid-uAEilU0dYN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAEilU0dYN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAEilU0dYN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAEilU0dYN .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uAEilU0dYN .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAEilU0dYN .mbr-iconfont {
  font-size: 3rem;
  color: #2299aa;
  padding-right: 1.5rem;
}
.cid-uAEilU0dYN img,
.cid-uAEilU0dYN .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uAEilU0dYN .content-head {
  max-width: 800px;
}
.cid-uBXTUQH2ur {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBXTUQH2ur .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBXTUQH2ur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBXTUQH2ur .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uBXTUQH2ur .container {
    max-width: 1400px;
  }
}
.cid-uBXTUQH2ur .card {
  margin: auto;
}
.cid-uBXTUQH2ur .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #353535;
  margin-bottom: 2rem;
}
.cid-uBXTUQH2ur .item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uBXTUQH2ur .row {
  justify-content: center;
}
.cid-uBXXYJmstz {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBXXYJmstz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBXXYJmstz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBXXYJmstz ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uBXXYJmstz li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uBXXYJmstz ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #2299aa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uBXXYJmstz H3 {
  text-align: center;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGzNMTFAnn {
  z-index: 1000;
  width: 100%;
}
.cid-uGzNMTFAnn nav.navbar {
  position: fixed;
}
.cid-uGzNMTFAnn .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGzNMTFAnn .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGzNMTFAnn .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzNMTFAnn .nav-link,
.cid-uGzNMTFAnn .dropdown-item {
  font-weight: 700;
}
.cid-uGzNMTFAnn .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGzNMTFAnn .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGzNMTFAnn .container {
  display: flex;
  margin: auto;
}
.cid-uGzNMTFAnn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzNMTFAnn .navbar-caption,
.cid-uGzNMTFAnn .dropdown-item {
  background-image: none;
}
.cid-uGzNMTFAnn .dropdown-menu,
.cid-uGzNMTFAnn .navbar.opened {
  background: #000000 !important;
}
.cid-uGzNMTFAnn .nav-item:focus,
.cid-uGzNMTFAnn .nav-link:focus {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzNMTFAnn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzNMTFAnn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzNMTFAnn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzNMTFAnn .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGzNMTFAnn .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzNMTFAnn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzNMTFAnn .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzNMTFAnn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar.collapsed {
  justify-content: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzNMTFAnn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzNMTFAnn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGzNMTFAnn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzNMTFAnn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzNMTFAnn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzNMTFAnn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzNMTFAnn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGzNMTFAnn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzNMTFAnn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzNMTFAnn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzNMTFAnn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzNMTFAnn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzNMTFAnn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGzNMTFAnn .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzNMTFAnn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzNMTFAnn .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzNMTFAnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzNMTFAnn .dropdown-item.active,
.cid-uGzNMTFAnn .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzNMTFAnn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzNMTFAnn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGzNMTFAnn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzNMTFAnn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzNMTFAnn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzNMTFAnn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzNMTFAnn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzNMTFAnn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzNMTFAnn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzNMTFAnn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzNMTFAnn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzNMTFAnn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGzNMTFAnn .navbar {
    height: 70px;
  }
  .cid-uGzNMTFAnn .navbar.opened {
    height: auto;
  }
  .cid-uGzNMTFAnn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzNMTFAnn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGzNMTFAnn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGpye67iTK {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uGpye67iTK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGpye67iTK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGpye67iTK .mbr-text,
.cid-uGpye67iTK .mbr-section-btn {
  color: #000000;
}
.cid-uGpye67iTK .mbr-section-title {
  color: #2299aa;
}
.cid-uGptY3qPeG {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uGptY3qPeG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGptY3qPeG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uGptY3qPeG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uGptY3qPeG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uGptY3qPeG textarea {
  min-height: 10rem;
}
.cid-uGpw1Wts8u {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background: #ffffff;
}
.cid-uGpw1Wts8u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGpw1Wts8u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uGpw1Wts8u .row {
    flex-direction: column-reverse;
  }
  .cid-uGpw1Wts8u .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uGpw1Wts8u .google-map {
  height: 100%;
  position: relative;
}
.cid-uGpw1Wts8u .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGpw1Wts8u .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGpw1Wts8u .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGpw1Wts8u .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGpw1Wts8u .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uGpw1Wts8u .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uGpw1Wts8u .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uGpw1Wts8u .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGpw1Wts8u .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uGpw1Wts8u .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #40b0bf;
}
.cid-uGGw13NPRu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGGw13NPRu .item:focus,
.cid-uGGw13NPRu span:focus {
  outline: none;
}
.cid-uGGw13NPRu .item-wrapper {
  position: relative;
}
.cid-uGGw13NPRu .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGGw13NPRu .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uGGw13NPRu .container {
    padding: 0 24px;
  }
}
.cid-uGGw13NPRu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uGGw13NPRu .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uGGw13NPRu .embla__slide .slide-content {
  width: 100%;
}
.cid-uGGw13NPRu .embla__slide .slide-content .item-wrapper {
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uGGw13NPRu .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uGGw13NPRu .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uGGw13NPRu .embla__button--next,
.cid-uGGw13NPRu .embla__button--prev {
  display: flex;
}
.cid-uGGw13NPRu .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #e43f3f !important;
  color: #40b0bf;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uGGw13NPRu .embla__button {
    display: none;
  }
}
.cid-uGGw13NPRu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uGGw13NPRu .embla__button:hover {
  opacity: .85 !important;
  color: #40b0bf !important;
}
.cid-uGGw13NPRu .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uGGw13NPRu .embla__button.embla__button--next {
  right: 32px;
}
.cid-uGGw13NPRu .embla {
  position: relative;
  width: 100%;
}
.cid-uGGw13NPRu .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uGGw13NPRu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uGGw13NPRu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uGGw13NPRu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uGAi1Z3wcZ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGAi1Z3wcZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGAi1Z3wcZ .wrapper {
  max-width: 350px;
}
.cid-uGAi1Z3wcZ .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;
}
@media (max-width: 767px) {
  .cid-uGAi1Z3wcZ .row {
    text-align: center;
  }
  .cid-uGAi1Z3wcZ .social-row {
    justify-content: center;
  }
}
.cid-uGAi1Z3wcZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGAi1Z3wcZ .list {
    margin-bottom: 0rem;
  }
}
.cid-uGAi1Z3wcZ .mbr-text {
  color: #ffffff;
}
.cid-uGAi1Z3wcZ .mbr-iconfont {
  color: black;
}
.cid-uGXB5aiJYb {
  z-index: 1000;
  width: 100%;
}
.cid-uGXB5aiJYb nav.navbar {
  position: fixed;
}
.cid-uGXB5aiJYb .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGXB5aiJYb .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGXB5aiJYb .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGXB5aiJYb .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGXB5aiJYb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGXB5aiJYb .nav-link,
.cid-uGXB5aiJYb .dropdown-item {
  font-weight: 700;
}
.cid-uGXB5aiJYb .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGXB5aiJYb .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGXB5aiJYb .container {
  display: flex;
  margin: auto;
}
.cid-uGXB5aiJYb .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGXB5aiJYb .navbar-caption,
.cid-uGXB5aiJYb .dropdown-item {
  background-image: none;
}
.cid-uGXB5aiJYb .dropdown-menu,
.cid-uGXB5aiJYb .navbar.opened {
  background: #000000 !important;
}
.cid-uGXB5aiJYb .nav-item:focus,
.cid-uGXB5aiJYb .nav-link:focus {
  outline: none;
}
.cid-uGXB5aiJYb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGXB5aiJYb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGXB5aiJYb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGXB5aiJYb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGXB5aiJYb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGXB5aiJYb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGXB5aiJYb .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGXB5aiJYb .navbar.opened {
  transition: all 0.3s;
}
.cid-uGXB5aiJYb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGXB5aiJYb .navbar .navbar-logo img {
  width: auto;
}
.cid-uGXB5aiJYb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGXB5aiJYb .navbar.collapsed {
  justify-content: center;
}
.cid-uGXB5aiJYb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGXB5aiJYb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGXB5aiJYb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGXB5aiJYb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGXB5aiJYb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGXB5aiJYb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGXB5aiJYb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGXB5aiJYb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGXB5aiJYb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGXB5aiJYb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGXB5aiJYb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGXB5aiJYb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGXB5aiJYb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGXB5aiJYb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGXB5aiJYb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGXB5aiJYb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGXB5aiJYb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGXB5aiJYb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGXB5aiJYb .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGXB5aiJYb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGXB5aiJYb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGXB5aiJYb .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGXB5aiJYb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGXB5aiJYb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGXB5aiJYb .dropdown-item.active,
.cid-uGXB5aiJYb .dropdown-item:active {
  background-color: transparent;
}
.cid-uGXB5aiJYb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGXB5aiJYb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGXB5aiJYb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGXB5aiJYb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGXB5aiJYb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGXB5aiJYb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGXB5aiJYb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGXB5aiJYb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGXB5aiJYb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGXB5aiJYb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGXB5aiJYb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGXB5aiJYb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGXB5aiJYb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGXB5aiJYb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGXB5aiJYb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGXB5aiJYb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGXB5aiJYb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGXB5aiJYb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGXB5aiJYb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGXB5aiJYb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGXB5aiJYb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGXB5aiJYb .navbar {
    height: 70px;
  }
  .cid-uGXB5aiJYb .navbar.opened {
    height: auto;
  }
  .cid-uGXB5aiJYb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGXB5aiJYb .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGXB5aiJYb .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGXEbcMPaZ {
  padding-top: 12rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uGXEbcMPaZ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uGXEbcMPaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGXEbcMPaZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGXEbcMPaZ .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uGXEbcMPaZ .content-wrap .card {
  justify-content: space-between;
}
.cid-uGXEbcMPaZ .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uGXEbcMPaZ .content-wrapper {
    padding: 0;
  }
}
.cid-uGXEbcMPaZ .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uGXEbcMPaZ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uGXEbcMPaZ .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uGXEbcMPaZ .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uGXEbcMPaZ .mbr-desc,
.cid-uGXEbcMPaZ .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uGXEbcMPaZ .mbr-section-title,
.cid-uGXEbcMPaZ .mbr-section-btn {
  color: #2299aa;
}
.cid-uGXCcB1l8k {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGXCcB1l8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGXCcB1l8k .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uGXCcB1l8k .card-margin {
    margin-top: -1px;
  }
}
@media (max-width: 992px) {
  .cid-uGXCcB1l8k .card-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-uGXCcB1l8k .item {
  border-bottom: 1px solid #40b0bf;
  max-width: 300px;
}
.cid-uGXCcB1l8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGXCcB1l8k .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uGXCcB1l8k .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uGXCcB1l8k .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uGXCcB1l8k .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uGXCcB1l8k .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uGXCcB1l8k .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGXCcB1l8k .image-wrapper {
    padding: 1rem;
  }
}
.cid-uGXCcB1l8k .mbr-section-title {
  color: #221b35;
  text-align: center;
}
.cid-uGXCcB1l8k .mbr-text,
.cid-uGXCcB1l8k .mbr-section-btn {
  color: #221b35;
  text-align: center;
}
.cid-uGXCcB1l8k .mbr-item-title {
  text-align: center;
}
.cid-uGXFiKntFx {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGXLgqHDRK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGXLgqHDRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGXLgqHDRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGXLgqHDRK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uGXLgqHDRK .row {
  flex-direction: row-reverse;
}
.cid-uGXLgqHDRK img {
  width: 100%;
}
.cid-uGXB5c6942 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGXB5c6942 .item:focus,
.cid-uGXB5c6942 span:focus {
  outline: none;
}
.cid-uGXB5c6942 .item-wrapper {
  position: relative;
}
.cid-uGXB5c6942 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGXB5c6942 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uGXB5c6942 .container {
    padding: 0 24px;
  }
}
.cid-uGXB5c6942 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uGXB5c6942 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uGXB5c6942 .embla__slide .slide-content {
  width: 100%;
}
.cid-uGXB5c6942 .embla__slide .slide-content .item-wrapper {
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uGXB5c6942 .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uGXB5c6942 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uGXB5c6942 .embla__button--next,
.cid-uGXB5c6942 .embla__button--prev {
  display: flex;
}
.cid-uGXB5c6942 .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #e43f3f !important;
  color: #40b0bf;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uGXB5c6942 .embla__button {
    display: none;
  }
}
.cid-uGXB5c6942 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uGXB5c6942 .embla__button:hover {
  opacity: .85 !important;
  color: #40b0bf !important;
}
.cid-uGXB5c6942 .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uGXB5c6942 .embla__button.embla__button--next {
  right: 32px;
}
.cid-uGXB5c6942 .embla {
  position: relative;
  width: 100%;
}
.cid-uGXB5c6942 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uGXB5c6942 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uGXB5c6942 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uGXB5c6942 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uGXB5crV2p {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGXB5crV2p .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGXB5crV2p .wrapper {
  max-width: 350px;
}
.cid-uGXB5crV2p .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;
}
@media (max-width: 767px) {
  .cid-uGXB5crV2p .row {
    text-align: center;
  }
  .cid-uGXB5crV2p .social-row {
    justify-content: center;
  }
}
.cid-uGXB5crV2p .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGXB5crV2p .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGXB5crV2p .list {
    margin-bottom: 0rem;
  }
}
.cid-uGXB5crV2p .mbr-text {
  color: #ffffff;
}
.cid-uGXB5crV2p .mbr-iconfont {
  color: black;
}
.cid-uGXSRoV0VZ {
  z-index: 1000;
  width: 100%;
}
.cid-uGXSRoV0VZ nav.navbar {
  position: fixed;
}
.cid-uGXSRoV0VZ .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uGXSRoV0VZ .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uGXSRoV0VZ .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uGXSRoV0VZ .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uGXSRoV0VZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGXSRoV0VZ .nav-link,
.cid-uGXSRoV0VZ .dropdown-item {
  font-weight: 700;
}
.cid-uGXSRoV0VZ .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uGXSRoV0VZ .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uGXSRoV0VZ .container {
  display: flex;
  margin: auto;
}
.cid-uGXSRoV0VZ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGXSRoV0VZ .navbar-caption,
.cid-uGXSRoV0VZ .dropdown-item {
  background-image: none;
}
.cid-uGXSRoV0VZ .dropdown-menu,
.cid-uGXSRoV0VZ .navbar.opened {
  background: #000000 !important;
}
.cid-uGXSRoV0VZ .nav-item:focus,
.cid-uGXSRoV0VZ .nav-link:focus {
  outline: none;
}
.cid-uGXSRoV0VZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uGXSRoV0VZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGXSRoV0VZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGXSRoV0VZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGXSRoV0VZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGXSRoV0VZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGXSRoV0VZ .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uGXSRoV0VZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uGXSRoV0VZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGXSRoV0VZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uGXSRoV0VZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGXSRoV0VZ .navbar.collapsed {
  justify-content: center;
}
.cid-uGXSRoV0VZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGXSRoV0VZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGXSRoV0VZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uGXSRoV0VZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGXSRoV0VZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGXSRoV0VZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGXSRoV0VZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGXSRoV0VZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGXSRoV0VZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGXSRoV0VZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGXSRoV0VZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGXSRoV0VZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGXSRoV0VZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGXSRoV0VZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGXSRoV0VZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGXSRoV0VZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGXSRoV0VZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGXSRoV0VZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGXSRoV0VZ .navbar.navbar-short {
  min-height: 106px;
}
.cid-uGXSRoV0VZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGXSRoV0VZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGXSRoV0VZ .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGXSRoV0VZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGXSRoV0VZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGXSRoV0VZ .dropdown-item.active,
.cid-uGXSRoV0VZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uGXSRoV0VZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGXSRoV0VZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGXSRoV0VZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGXSRoV0VZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGXSRoV0VZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGXSRoV0VZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGXSRoV0VZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGXSRoV0VZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGXSRoV0VZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGXSRoV0VZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uGXSRoV0VZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGXSRoV0VZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGXSRoV0VZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGXSRoV0VZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGXSRoV0VZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGXSRoV0VZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGXSRoV0VZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGXSRoV0VZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGXSRoV0VZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGXSRoV0VZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGXSRoV0VZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGXSRoV0VZ .navbar {
    height: 70px;
  }
  .cid-uGXSRoV0VZ .navbar.opened {
    height: auto;
  }
  .cid-uGXSRoV0VZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGXSRoV0VZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uGXSRoV0VZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uGXUIysgiC {
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-uGXUIysgiC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGXUIysgiC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGXUIysgiC .row {
  justify-content: center;
}
.cid-uGXUIysgiC .image-wrapper {
  position: relative;
}
.cid-uGXUIysgiC .image-wrapper .main-image img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGXUIysgiC .image-wrapper .main-image img {
    height: 350px;
  }
}
.cid-uGXUIysgiC .image-wrapper .logo-wrap img {
  position: absolute;
  top: -3rem;
  right: 8rem;
  transform: rotate(8deg);
  object-fit: cover;
  z-index: 1;
  height: 130px;
  width: 130px;
}
@media (max-width: 992px) {
  .cid-uGXUIysgiC .image-wrapper .logo-wrap img {
    position: static;
    transform: none;
    margin: 16px auto 0;
  }
}
.cid-uGXUIysgiC .image-wrapper .image-wrap img {
  position: absolute;
  top: 2rem;
  left: -4rem;
  transform: rotate(-8deg);
  object-fit: cover;
  z-index: 1;
  height: 170px;
  width: 230px;
}
@media (max-width: 992px) {
  .cid-uGXUIysgiC .image-wrapper .image-wrap img {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 16px;
    height: 350px;
  }
}
.cid-uGXSRruFcS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGXSRruFcS .item:focus,
.cid-uGXSRruFcS span:focus {
  outline: none;
}
.cid-uGXSRruFcS .item-wrapper {
  position: relative;
}
.cid-uGXSRruFcS .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGXSRruFcS .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uGXSRruFcS .container {
    padding: 0 24px;
  }
}
.cid-uGXSRruFcS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .cid-uGXSRruFcS .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uGXSRruFcS .embla__slide .slide-content {
  width: 100%;
}
.cid-uGXSRruFcS .embla__slide .slide-content .item-wrapper {
  border-radius: .5rem !important;
  position: relative;
  overflow: hidden;
}
.cid-uGXSRruFcS .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-uGXSRruFcS .embla__slide .slide-content .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
.cid-uGXSRruFcS .embla__button--next,
.cid-uGXSRruFcS .embla__button--prev {
  display: flex;
}
.cid-uGXSRruFcS .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #e43f3f !important;
  color: #40b0bf;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uGXSRruFcS .embla__button {
    display: none;
  }
}
.cid-uGXSRruFcS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uGXSRruFcS .embla__button:hover {
  opacity: .85 !important;
  color: #40b0bf !important;
}
.cid-uGXSRruFcS .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uGXSRruFcS .embla__button.embla__button--next {
  right: 32px;
}
.cid-uGXSRruFcS .embla {
  position: relative;
  width: 100%;
}
.cid-uGXSRruFcS .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uGXSRruFcS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uGXSRruFcS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uGXSRruFcS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uGXSRs32Vi {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGXSRs32Vi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGXSRs32Vi .wrapper {
  max-width: 350px;
}
.cid-uGXSRs32Vi .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;
}
@media (max-width: 767px) {
  .cid-uGXSRs32Vi .row {
    text-align: center;
  }
  .cid-uGXSRs32Vi .social-row {
    justify-content: center;
  }
}
.cid-uGXSRs32Vi .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uGXSRs32Vi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGXSRs32Vi .list {
    margin-bottom: 0rem;
  }
}
.cid-uGXSRs32Vi .mbr-text {
  color: #ffffff;
}
.cid-uGXSRs32Vi .mbr-iconfont {
  color: black;
}
.cid-uH7KLquAi5 {
  z-index: 1000;
  width: 100%;
}
.cid-uH7KLquAi5 nav.navbar {
  position: fixed;
}
.cid-uH7KLquAi5 .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uH7KLquAi5 .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uH7KLquAi5 .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uH7KLquAi5 .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uH7KLquAi5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uH7KLquAi5 .nav-link,
.cid-uH7KLquAi5 .dropdown-item {
  font-weight: 700;
}
.cid-uH7KLquAi5 .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uH7KLquAi5 .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uH7KLquAi5 .container {
  display: flex;
  margin: auto;
}
.cid-uH7KLquAi5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH7KLquAi5 .navbar-caption,
.cid-uH7KLquAi5 .dropdown-item {
  background-image: none;
}
.cid-uH7KLquAi5 .dropdown-menu,
.cid-uH7KLquAi5 .navbar.opened {
  background: #000000 !important;
}
.cid-uH7KLquAi5 .nav-item:focus,
.cid-uH7KLquAi5 .nav-link:focus {
  outline: none;
}
.cid-uH7KLquAi5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uH7KLquAi5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH7KLquAi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH7KLquAi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH7KLquAi5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH7KLquAi5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH7KLquAi5 .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uH7KLquAi5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uH7KLquAi5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH7KLquAi5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uH7KLquAi5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH7KLquAi5 .navbar.collapsed {
  justify-content: center;
}
.cid-uH7KLquAi5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH7KLquAi5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH7KLquAi5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uH7KLquAi5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH7KLquAi5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uH7KLquAi5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH7KLquAi5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH7KLquAi5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uH7KLquAi5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH7KLquAi5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH7KLquAi5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH7KLquAi5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uH7KLquAi5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uH7KLquAi5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH7KLquAi5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH7KLquAi5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uH7KLquAi5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH7KLquAi5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uH7KLquAi5 .navbar.navbar-short {
  min-height: 106px;
}
.cid-uH7KLquAi5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uH7KLquAi5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uH7KLquAi5 .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uH7KLquAi5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH7KLquAi5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH7KLquAi5 .dropdown-item.active,
.cid-uH7KLquAi5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uH7KLquAi5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH7KLquAi5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH7KLquAi5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH7KLquAi5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uH7KLquAi5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH7KLquAi5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH7KLquAi5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH7KLquAi5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uH7KLquAi5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH7KLquAi5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uH7KLquAi5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH7KLquAi5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH7KLquAi5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH7KLquAi5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH7KLquAi5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH7KLquAi5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH7KLquAi5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH7KLquAi5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH7KLquAi5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uH7KLquAi5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH7KLquAi5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uH7KLquAi5 .navbar {
    height: 70px;
  }
  .cid-uH7KLquAi5 .navbar.opened {
    height: auto;
  }
  .cid-uH7KLquAi5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH7KLquAi5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uH7KLquAi5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uH7KLrl59U {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH7KLrl59U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH7KLrl59U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH7KLrl59U .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uH7KLrl59U .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uH7KLrl59U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH7KLrl59U .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uH7KLrl59U .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uH7KLrl59U .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uH7KLrl59U .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uH7KLrl59U .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uH7KLrl59U .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH7KLrl59U .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uH7KLrMdY4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uH7KLrMdY4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH7KLrMdY4 .wrapper {
  max-width: 350px;
}
.cid-uH7KLrMdY4 .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;
}
@media (max-width: 767px) {
  .cid-uH7KLrMdY4 .row {
    text-align: center;
  }
  .cid-uH7KLrMdY4 .social-row {
    justify-content: center;
  }
}
.cid-uH7KLrMdY4 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH7KLrMdY4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH7KLrMdY4 .list {
    margin-bottom: 0rem;
  }
}
.cid-uH7KLrMdY4 .mbr-text {
  color: #ffffff;
}
.cid-uH7KLrMdY4 .mbr-iconfont {
  color: black;
}
.cid-uH7KOhfbdw {
  z-index: 1000;
  width: 100%;
}
.cid-uH7KOhfbdw nav.navbar {
  position: fixed;
}
.cid-uH7KOhfbdw .dropdown-menu {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-uH7KOhfbdw .navbar:not(.collapsed) .dropdown-item {
    border-bottom: 1px solid #e6e6e6;
  }
  .cid-uH7KOhfbdw .navbar:not(.collapsed) .dropdown-item:last-child {
    border: 0;
  }
}
.cid-uH7KOhfbdw .nav-dropdown .link {
  padding: 0.7rem 0 !important;
  margin: 0rem 2rem !important;
}
.cid-uH7KOhfbdw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uH7KOhfbdw .nav-link,
.cid-uH7KOhfbdw .dropdown-item {
  font-weight: 700;
}
.cid-uH7KOhfbdw .nav-link {
  position: relative;
  background-size: 100% 0% !important;
  background-position: 0 70% !important;
  transition: background-size 0.2s ease-in !important;
  background-image: linear-gradient(120deg, #40b0bf 0%, #40b0bf 100%) !important;
}
.cid-uH7KOhfbdw .nav-link:hover {
  background-size: 100% 80% !important;
  opacity: 1;
  transition: background-size 0.2s ease-in !important;
}
.cid-uH7KOhfbdw .container {
  display: flex;
  margin: auto;
}
.cid-uH7KOhfbdw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH7KOhfbdw .navbar-caption,
.cid-uH7KOhfbdw .dropdown-item {
  background-image: none;
}
.cid-uH7KOhfbdw .dropdown-menu,
.cid-uH7KOhfbdw .navbar.opened {
  background: #000000 !important;
}
.cid-uH7KOhfbdw .nav-item:focus,
.cid-uH7KOhfbdw .nav-link:focus {
  outline: none;
}
.cid-uH7KOhfbdw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
}
.cid-uH7KOhfbdw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH7KOhfbdw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH7KOhfbdw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH7KOhfbdw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH7KOhfbdw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH7KOhfbdw .navbar {
  min-height: 106px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uH7KOhfbdw .navbar.opened {
  transition: all 0.3s;
}
.cid-uH7KOhfbdw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH7KOhfbdw .navbar .navbar-logo img {
  width: auto;
}
.cid-uH7KOhfbdw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH7KOhfbdw .navbar.collapsed {
  justify-content: center;
}
.cid-uH7KOhfbdw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH7KOhfbdw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH7KOhfbdw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uH7KOhfbdw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH7KOhfbdw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uH7KOhfbdw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH7KOhfbdw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH7KOhfbdw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uH7KOhfbdw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH7KOhfbdw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH7KOhfbdw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH7KOhfbdw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uH7KOhfbdw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uH7KOhfbdw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH7KOhfbdw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH7KOhfbdw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uH7KOhfbdw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH7KOhfbdw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uH7KOhfbdw .navbar.navbar-short {
  min-height: 106px;
}
.cid-uH7KOhfbdw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uH7KOhfbdw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uH7KOhfbdw .navbar-brand {
  min-height: 106px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uH7KOhfbdw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH7KOhfbdw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH7KOhfbdw .dropdown-item.active,
.cid-uH7KOhfbdw .dropdown-item:active {
  background-color: transparent;
}
.cid-uH7KOhfbdw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH7KOhfbdw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH7KOhfbdw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH7KOhfbdw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uH7KOhfbdw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH7KOhfbdw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH7KOhfbdw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH7KOhfbdw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uH7KOhfbdw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH7KOhfbdw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2299aa;
}
.cid-uH7KOhfbdw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH7KOhfbdw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH7KOhfbdw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH7KOhfbdw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH7KOhfbdw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH7KOhfbdw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH7KOhfbdw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH7KOhfbdw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH7KOhfbdw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uH7KOhfbdw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH7KOhfbdw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uH7KOhfbdw .navbar {
    height: 70px;
  }
  .cid-uH7KOhfbdw .navbar.opened {
    height: auto;
  }
  .cid-uH7KOhfbdw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH7KOhfbdw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uH7KOhfbdw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uH7KOilDzg {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uH7KOilDzg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH7KOilDzg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH7KOilDzg .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uH7KOilDzg .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uH7KOilDzg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH7KOilDzg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uH7KOilDzg .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uH7KOilDzg .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uH7KOilDzg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uH7KOilDzg .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uH7KOilDzg .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH7KOilDzg .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uH7KOjT26z {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uH7KOjT26z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH7KOjT26z .wrapper {
  max-width: 350px;
}
.cid-uH7KOjT26z .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;
}
@media (max-width: 767px) {
  .cid-uH7KOjT26z .row {
    text-align: center;
  }
  .cid-uH7KOjT26z .social-row {
    justify-content: center;
  }
}
.cid-uH7KOjT26z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH7KOjT26z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH7KOjT26z .list {
    margin-bottom: 0rem;
  }
}
.cid-uH7KOjT26z .mbr-text {
  color: #ffffff;
}
.cid-uH7KOjT26z .mbr-iconfont {
  color: black;
}
