body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.9rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-7 {
  font-family: 'Ubuntu', sans-serif;
  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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #1e6393 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffde4f !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1e6393 !important;
  border-color: #1e6393 !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: #0f334b !important;
  border-color: #0f334b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0f334b !important;
  border-color: #0f334b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1e6393 !important;
  border-color: #1e6393 !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: #0f334b !important;
  border-color: #0f334b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0f334b !important;
  border-color: #0f334b !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: #ffde4f !important;
  border-color: #ffde4f !important;
  color: #4f4000 !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: #000000 !important;
  background-color: #f7c900 !important;
  border-color: #f7c900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4f4000 !important;
  background-color: #f7c900 !important;
  border-color: #f7c900 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1e6393;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0f334b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1e6393 !important;
  border-color: #1e6393 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1e6393;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0f334b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1e6393 !important;
  border-color: #1e6393 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: transparent!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: transparent;
  color: #ffde4f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f7c900 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4f4000 !important;
  background-color: #ffde4f !important;
  border-color: #ffde4f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1e6393 !important;
}
.text-secondary {
  color: #1e6393 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffde4f !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0d2a3e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0d2a3e !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: #e8bc00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1e6393;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffde4f;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1e6393;
  border-color: #1e6393;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1e6393;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #54a4dc;
}
.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: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #1e6393 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #1e6393;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1e6393;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1e6393;
}
.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: #1e6393;
  border-bottom-color: #1e6393;
}
.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: #ffffff !important;
  background-color: #1e6393 !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: #1e6393 !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='%231e6393' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-uNi0vxSWA4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNi0vxSWA4 nav.navbar {
  position: fixed;
}
.cid-uNi0vxSWA4 .nav-link {
  position: relative;
}
.cid-uNi0vxSWA4 .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uNi0vxSWA4 .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-uNi0vxSWA4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNi0vxSWA4 .dropdown-menu {
  padding: 0;
}
.cid-uNi0vxSWA4 .dropdown-item:hover,
.cid-uNi0vxSWA4 .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-uNi0vxSWA4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uNi0vxSWA4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNi0vxSWA4 .container {
  display: flex;
  margin: auto;
}
.cid-uNi0vxSWA4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uNi0vxSWA4 .navbar-caption {
  padding-right: 4rem;
}
.cid-uNi0vxSWA4 .dropdown-menu,
.cid-uNi0vxSWA4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uNi0vxSWA4 .nav-item:focus,
.cid-uNi0vxSWA4 .nav-link:focus {
  outline: none;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNi0vxSWA4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNi0vxSWA4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNi0vxSWA4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uNi0vxSWA4 .navbar.opened {
  transition: all .3s;
}
.cid-uNi0vxSWA4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uNi0vxSWA4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uNi0vxSWA4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNi0vxSWA4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNi0vxSWA4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNi0vxSWA4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uNi0vxSWA4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNi0vxSWA4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNi0vxSWA4 .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: 55%;
}
.cid-uNi0vxSWA4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNi0vxSWA4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uNi0vxSWA4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uNi0vxSWA4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNi0vxSWA4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNi0vxSWA4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNi0vxSWA4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNi0vxSWA4 .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: 55%;
  }
  .cid-uNi0vxSWA4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uNi0vxSWA4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNi0vxSWA4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNi0vxSWA4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNi0vxSWA4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNi0vxSWA4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uNi0vxSWA4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNi0vxSWA4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uNi0vxSWA4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uNi0vxSWA4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNi0vxSWA4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNi0vxSWA4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNi0vxSWA4 .dropdown-item.active,
.cid-uNi0vxSWA4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uNi0vxSWA4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNi0vxSWA4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNi0vxSWA4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNi0vxSWA4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNi0vxSWA4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNi0vxSWA4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNi0vxSWA4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNi0vxSWA4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNi0vxSWA4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uNi0vxSWA4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uNi0vxSWA4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNi0vxSWA4 .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-uNi0vxSWA4 .navbar {
    height: 77px;
  }
  .cid-uNi0vxSWA4 .navbar.opened {
    height: auto;
  }
  .cid-uNi0vxSWA4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNhTcx5jBn .modal-body .close {
  background: #1b1b1b;
}
.cid-uNhTcx5jBn .modal-body .close span {
  font-style: normal;
}
.cid-uNhTcx5jBn .carousel-inner > .active,
.cid-uNhTcx5jBn .carousel-inner > .next,
.cid-uNhTcx5jBn .carousel-inner > .prev {
  display: flex;
}
.cid-uNhTcx5jBn .carousel-control .icon-next,
.cid-uNhTcx5jBn .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uNhTcx5jBn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uNhTcx5jBn .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNhTcx5jBn .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uNhTcx5jBn .boxed-slider > div {
  position: relative;
}
.cid-uNhTcx5jBn .container img {
  width: 100%;
}
.cid-uNhTcx5jBn .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uNhTcx5jBn .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNhTcx5jBn .mbr-table-cell {
  padding: 0;
}
.cid-uNhTcx5jBn .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNhTcx5jBn .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNhTcx5jBn .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uNhTcx5jBn .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uNhTcx5jBn .carousel-item.active.right,
.cid-uNhTcx5jBn .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNhTcx5jBn .carousel-item.active.left,
.cid-uNhTcx5jBn .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uNhTcx5jBn .carousel-item.active,
.cid-uNhTcx5jBn .carousel-item.next.left,
.cid-uNhTcx5jBn .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
  z-index: 11;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-control:hover {
  background-color: #1e6393;
}
@media (max-width: 767px) {
  .cid-uNhTcx5jBn .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uNhTcx5jBn .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-indicators li.active,
.cid-uNhTcx5jBn .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #1e6393;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-indicators li::after,
.cid-uNhTcx5jBn .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uNhTcx5jBn .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uNhTcx5jBn .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uNhTcx5jBn .mbr-slider > .container img {
  width: 100%;
}
.cid-uNhTcx5jBn .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uNhTcx5jBn .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uNhTcx5jBn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uNhTcx5jBn .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uNhTcx5jBn .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uNhTcx5jBn .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uNhTcx5jBn .full-screen .slider-fullscreen-image {
  min-height: 87vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uNhTcx5jBn .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uNhTcx5jBn .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uNhTcx5jBn .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 87vh;
  padding: 0;
}
.cid-uNhTcx5jBn .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uNhTcx5jBn .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uNhTcx5jBn .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uNhTcx5jBn H2 {
  text-align: justify;
  color: #ffffff;
  text-shadow: 3px 3px 15px #4b525b;
}
.cid-uNhTcx5jBn P {
  text-align: justify;
  color: #ffffff;
  text-shadow: 2px 2px 13px #4b525b;
}
#custom-html-di {
  /* === Container === */
  /* === Track === */
  /* === Each Item === */
  /* === Icon === */
  /* === Keyframes for smooth infinite scroll === */
}
#custom-html-di body {
  margin: 0;
  font-family: Arial, sans-serif;
}
#custom-html-di .marquee {
  position: relative;
  overflow: hidden;
  background: #1e6393;
  height: 60px;
  display: flex;
  align-items: center;
}
#custom-html-di .marquee-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}
#custom-html-di .marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* fills full height */
  padding: 0 30px;
  color: #f8fcff;
  text-decoration: none;
  font-family: Ubuntu, Arial;
  font-size: 22px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#custom-html-di .marquee-item:hover {
  background-color: #1b5984;
  /* full bar height hover */
}
#custom-html-di .marquee-item img {
  width: 34px;
  height: 30px;
  margin-right: 10px;
  object-fit: contain;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cid-v18Z9L9Hys {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9fdff;
}
.cid-v18Z9L9Hys img {
  width: 100%;
}
.cid-v18Z9L9Hys .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #1e6393;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-v18Z9L9Hys .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v18Z9L9Hys .main-title {
  color: #084671;
  font-size: 40px;
  text-align: center;
}
.cid-v18Z9L9Hys .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
  margin-bottom: 21px;
}
.cid-v18Z9L9Hys .mbr-text {
  color: #606060;
}
.cid-v18Z9L9Hys .cards .card {
  margin-bottom: 34px;
}
.cid-v18Z9L9Hys .cards .card .card-title {
  font-weight: 600;
  color: #404040;
  margin-bottom: 16px;
}
.cid-v18Z9L9Hys .cards .card .mbr-text {
  color: #606060;
}
@media (max-width: 768px) {
  .cid-v18Z9L9Hys .card {
    text-align: left;
  }
  .cid-v18Z9L9Hys .card .card-title {
    text-align: left;
  }
}
.cid-v18Z9L9Hys .mbr-fallback-image.disabled {
  display: none;
}
.cid-v18Z9L9Hys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1x3vD1Bas {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1x3vD1Bas .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-v1x3vD1Bas .mbr-section-title {
  font-size: 60px;
  color: #1e6393;
  text-align: center;
}
.cid-v1x3vD1Bas .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: #3290d1;
}
.cid-v1x3vD1Bas .mbr-section-subtitle {
  color: #f3f4ef;
}
#custom-html-7m {
  /* Type valid CSS here */
  /*=================  Start Design  =================*/
  /*=================  End Design  =================*/
  /*Start Responsive*/
}
#custom-html-7m html {
  font-size: 62.5%;
}
#custom-html-7m body {
  font-size: 1.6rem;
}
#custom-html-7m h1,
#custom-html-7m h2,
#custom-html-7m h3,
#custom-html-7m h4,
#custom-html-7m h5,
#custom-html-7m h6,
#custom-html-7m p {
  margin: 0;
  padding: 0;
}
#custom-html-7m ul {
  margin: 0;
  padding: 00;
  list-style: none;
}
#custom-html-7m ul li a,
#custom-html-7m a {
  text-decoration: none;
}
#custom-html-7m .buttons_main {
  padding: 55px 0px 120px 0px;
}
#custom-html-7m .buttons ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
#custom-html-7m .buttons ul li {
  flex: 0 0 calc(30%);
}
#custom-html-7m .buttons ul li a {
  font-family: 'Ubuntu', Arial;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  align-items: center;
  background: #f2f7fa;
  padding: 25px 27px;
  gap: 27px;
  color: #1e6393;
  height: 100%;
  transition: 0.4s;
}
#custom-html-7m .buttons ul li a:hover {
  background: #dfe9ef;
  cursor: pointer;
}
#custom-html-7m .icon {
  transform: scale(1);
  transition: transform 0.4s ease-in-out;
}
#custom-html-7m .buttons ul li a:hover .icon {
  transform: scale(1.2);
}
#custom-html-7m .buttons ul li a img {
  width: 52px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
@media all and (min-width: 1700px) {
  #custom-html-7m .container,
  #custom-html-7m .container-lg,
  #custom-html-7m .container-md,
  #custom-html-7m .container-sm,
  #custom-html-7m .container-xl,
  #custom-html-7m .container-xxl {
    max-width: 1500px;
  }
}
@media all and (max-width: 1199px) {
  #custom-html-7m .buttons ul li {
    flex: 0 0 calc(40%);
  }
}
@media all and (max-width: 992px) {
  #custom-html-7m .buttons ul li {
    flex: 0 0 100%;
  }
}
@media all and (max-width: 575px) {
  #custom-html-7m .container,
  #custom-html-7m .container-fluid,
  #custom-html-7m .container-lg,
  #custom-html-7m .container-md,
  #custom-html-7m .container-sm,
  #custom-html-7m .container-xl,
  #custom-html-7m .container-xxl {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-v257GeiWEd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
}
.cid-v257GeiWEd .mbr-iconfont {
  font-size: 4rem;
  color: #f2faff;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-v257GeiWEd .card-title {
  position: relative;
  cursor: pointer;
  color: #ffffff;
}
.cid-v257GeiWEd .card-title:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: 0px;
  opacity: 0.1;
  left: 0;
}
.cid-v257GeiWEd .card-title:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.cid-v257GeiWEd .card-title:hover:before {
  width: 100%;
}
.cid-v257GeiWEd .card:hover {
  cursor: pointer;
}
.cid-v257GeiWEd .card:hover .card-title:before {
  width: 100%;
}
.cid-v257GeiWEd .card-text {
  color: #f2faff;
}
.cid-v257GeiWEd .main-title {
  color: #ffffff;
}
.cid-v25vdIELDC {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/yeastar-at-a-flance-bg.webp");
}
.cid-v25vdIELDC .link-wrap {
  width: 100%;
}
.cid-v25vdIELDC .card-box,
.cid-v25vdIELDC .img-wrapper {
  width: 50%;
}
.cid-v25vdIELDC img {
  margin: auto;
  width: 50%;
}
.cid-v25vdIELDC .link {
  display: inline-block;
}
.cid-v25vdIELDC .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-v25vdIELDC .link a:before {
  position: absolute;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-v25vdIELDC .link a:hover {
  text-decoration: underline;
}
.cid-v25vdIELDC .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-v25vdIELDC .card-wrapper {
  padding: 3rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v25vdIELDC .link,
.cid-v25vdIELDC .link-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v25vdIELDC .card {
    margin-bottom: 2rem;
  }
  .cid-v25vdIELDC img {
    width: 100%;
  }
  .cid-v25vdIELDC .card-wrapper {
    flex-direction: column;
  }
  .cid-v25vdIELDC .card-box,
  .cid-v25vdIELDC .img-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-v25vdIELDC .card-wrapper {
    padding: 3rem 1rem;
  }
  .cid-v25vdIELDC .card-box,
  .cid-v25vdIELDC .img-wrapper {
    width: 100%;
  }
}
.cid-v25vdIELDC .card-subtitle {
  color: #0077ff;
}
.cid-v25vdIELDC .mbr-text,
.cid-v25vdIELDC .link-wrap {
  color: #606060;
}
.cid-v25vdIELDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v25vdIELDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v25vdIELDC .card-title,
.cid-v25vdIELDC .card-box {
  color: #1e6393;
  text-align: right;
}
.cid-v1wuF1XZAH {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-v1wuF1XZAH .google-map {
  height: 25rem;
  position: relative;
}
.cid-v1wuF1XZAH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v1wuF1XZAH .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-v1wuF1XZAH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v1wuF1XZAH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v1wuF1XZAH .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-v1wuF1XZAH .wrapper .row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
}
.cid-v1wuF1XZAH .wrapper .row .btn {
  border-radius: 30px;
  padding: 0.8rem 3rem !important;
}
.cid-v1wuF1XZAH .wrapper .row .title {
  color: #133996;
}
.cid-v1wuF1XZAH .wrapper .form-container {
  padding: 3rem;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-v1wuF1XZAH .content-panel {
  padding: 3rem;
  background: linear-gradient(45deg, #11507c, #3e87b9);
  height: 100%;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cid-v1wuF1XZAH .mbr-text {
  color: #efefef;
}
.cid-v1wuF1XZAH .form-control {
  border-radius: 10px !important;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-v1wuF1XZAH textarea.form-control {
  min-height: 170px;
}
.cid-v1wuF1XZAH .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cid-v1wuF1XZAH .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-v1wuF1XZAH .social-list .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
  border-style: dotted;
}
.cid-v1wuF1XZAH .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-v1wuF1XZAH .social-list a {
  margin: 0;
  opacity: 0.7;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v1wuF1XZAH .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v1wuF1XZAH .container {
    max-width: 80% !important;
  }
  .cid-v1wuF1XZAH .wrapper {
    margin-top: 0;
    border-radius: 40px;
  }
  .cid-v1wuF1XZAH .wrapper .main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-v1wuF1XZAH .wrapper .main-row .text-block .content-panel {
    border-radius: 0 0 30px 30px !important;
  }
  .cid-v1wuF1XZAH .wrapper .main-row .text-block .content-panel .social-list {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-v1wuF1XZAH .form-container {
    border-radius: 30px 30px 0 0 !important;
  }
}
.cid-v1wuF1XZAH .wrapper .row .title {
  color: #1769a2;
}
.cid-uNQUPXEngW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uNQUPXEngW .item:focus,
.cid-uNQUPXEngW span:focus {
  outline: none;
}
.cid-uNQUPXEngW .item-wrapper {
  position: relative;
}
.cid-uNQUPXEngW .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uNQUPXEngW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 40%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-uNQUPXEngW .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-uNQUPXEngW .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-uNQUPXEngW .embla__slide {
    min-width: 375px;
  }
}
.cid-uNQUPXEngW .embla__button--next,
.cid-uNQUPXEngW .embla__button--prev {
  display: flex;
}
.cid-uNQUPXEngW .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #1e6393;
  color: #1e6393;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uNQUPXEngW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNQUPXEngW .embla__button:hover {
  background-color: #1e6393;
  color: #1e6393;
  transform: scale(1.05);
}
.cid-uNQUPXEngW .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNQUPXEngW .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNQUPXEngW .embla__button {
    top: auto;
  }
}
.cid-uNQUPXEngW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uNQUPXEngW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uNQUPXEngW .embla {
  position: relative;
  width: 100%;
}
.cid-uNQUPXEngW .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uNQUPXEngW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNQUPXEngW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNQUPXEngW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNQUPXEngW .shadow {
  padding: 44px 32px 52px;
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  height: 100%;
}
.cid-uNQUPXEngW .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  padding: 20px 20px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-uNQUPXEngW .wrap-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  background-size: cover;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.cid-uNQUPXEngW .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-uNQUPXEngW .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-uNQUPXEngW .shadow:hover .number,
.cid-uNQUPXEngW .shadow:hover .card-title {
  color: #47b5ed !important;
}
.cid-uNQUPXEngW .shadow:hover .wrap-img {
  padding: 15px 15px 30px;
}
.cid-uNQUPXEngW .shadow:hover .wrap-img::after {
  transform: scale(1.05);
}
.cid-uNQUPXEngW .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
}
.cid-uNQUPXEngW .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-uNQUPXEngW H3 {
  color: #1d1d1f;
}
.cid-uNQUPXEngW .card-subtitle {
  text-align: left;
  color: #14142b;
}
.cid-uNQUPXEngW .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-uNQUPXEngW .iconfont-wrapper .mbr-iconfont {
  color: #ff9417;
}
.cid-uNQUPXEngW .card-text {
  margin-bottom: 16px;
  text-align: left;
}
.cid-uNQUPXEngW .mbr-iconfont::before {
  font-size: 25px;
}
.cid-uNQUPXEngW .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-uNQUPXEngW .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-uNQUPXEngW .people {
  align-items: center;
}
.cid-uNQUPXEngW img {
  border-radius: 10%;
  height: 128px;
  width: 128px;
  margin: 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uNQUPXEngW .row.title-block {
    flex-direction: column;
  }
  .cid-uNQUPXEngW .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uNQUPXEngW .mbr-section-title {
    text-align: center;
  }
}
.cid-uNQUPXEngW .card-subtitle,
.cid-uNQUPXEngW .card-subtitle2 {
  display: inline;
}
@media (max-width: 1040px) {
  .cid-uNQUPXEngW .people {
    flex-direction: column;
  }
  .cid-uNQUPXEngW .card-text,
  .cid-uNQUPXEngW .align,
  .cid-uNQUPXEngW .iconfont-wrapper {
    text-align: center;
  }
  .cid-uNQUPXEngW img {
    margin-bottom: 20px !important;
  }
}
.cid-uNQUPXEngW .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 400px) {
  .cid-uNQUPXEngW .button-align {
    margin-top: 20px;
  }
}
.cid-uNQUPXEngW .btn {
  margin-top: 20px;
}
.cid-uNQUPXEngW a.btn > span {
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uNQUPXEngW .shadow {
    padding-top: 40px;
    padding-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .cid-uNQUPXEngW .shadow {
    padding: 33px 25px 36px;
  }
}
.cid-uNQUPXEngW .mbr-section-title {
  text-align: justify;
}
.cid-uNQUPXEngW .mbr-section-subtitle,
.cid-uNQUPXEngW .button-align {
  color: #1e6393;
}
.cid-sqK4TBOCvV {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sqK4TBOCvV .container {
  max-width: 1400px;
}
.cid-sqK4TBOCvV .card-img2 span {
  padding-top: 6px;
}
.cid-sqK4TBOCvV .soc-item a {
  padding-top: 5px;
}
.cid-sqK4TBOCvV .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-sqK4TBOCvV .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sqK4TBOCvV .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sqK4TBOCvV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sqK4TBOCvV svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sqK4TBOCvV #e2_shape {
  fill: #ffffff !important;
}
.cid-sqK4TBOCvV .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-sqK4TBOCvV .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sqK4TBOCvV .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sqK4TBOCvV .card-img {
  width: auto;
}
.cid-sqK4TBOCvV .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sqK4TBOCvV .soc-item span {
  font-size: 1.4rem;
}
.cid-sqK4TBOCvV .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-sqK4TBOCvV .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sqK4TBOCvV .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sqK4TBOCvV .media-wrap {
  margin-bottom: 1rem;
}
.cid-sqK4TBOCvV .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sqK4TBOCvV img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-sqK4TBOCvV .item {
    justify-content: center;
  }
  .cid-sqK4TBOCvV .quote::after {
    left: 60px;
  }
}
.cid-sqK4TBOCvV .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sqK4TBOCvV .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqK4TBOCvV .text1 {
  color: #ffffff;
}
.cid-sqK4TBOCvV .item-title {
  color: #ffffff;
}
.cid-sqK4TBOCvV H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-sqK4TBOCvV .theme {
  color: #ffffff;
}
.cid-sqK4TBOCvV .copyright > p {
  color: #ff3366;
}
.cid-sqK4TBOCvV .text2 {
  color: #ffffff;
}
.cid-uNi0vxSWA4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uNi0vxSWA4 nav.navbar {
  position: fixed;
}
.cid-uNi0vxSWA4 .nav-link {
  position: relative;
}
.cid-uNi0vxSWA4 .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uNi0vxSWA4 .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-uNi0vxSWA4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNi0vxSWA4 .dropdown-menu {
  padding: 0;
}
.cid-uNi0vxSWA4 .dropdown-item:hover,
.cid-uNi0vxSWA4 .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-uNi0vxSWA4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uNi0vxSWA4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNi0vxSWA4 .container {
  display: flex;
  margin: auto;
}
.cid-uNi0vxSWA4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uNi0vxSWA4 .navbar-caption {
  padding-right: 4rem;
}
.cid-uNi0vxSWA4 .dropdown-menu,
.cid-uNi0vxSWA4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uNi0vxSWA4 .nav-item:focus,
.cid-uNi0vxSWA4 .nav-link:focus {
  outline: none;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uNi0vxSWA4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNi0vxSWA4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNi0vxSWA4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNi0vxSWA4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uNi0vxSWA4 .navbar.opened {
  transition: all .3s;
}
.cid-uNi0vxSWA4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uNi0vxSWA4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uNi0vxSWA4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uNi0vxSWA4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNi0vxSWA4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNi0vxSWA4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uNi0vxSWA4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNi0vxSWA4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNi0vxSWA4 .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: 55%;
}
.cid-uNi0vxSWA4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNi0vxSWA4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uNi0vxSWA4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uNi0vxSWA4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNi0vxSWA4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNi0vxSWA4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNi0vxSWA4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNi0vxSWA4 .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: 55%;
  }
  .cid-uNi0vxSWA4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uNi0vxSWA4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNi0vxSWA4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNi0vxSWA4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNi0vxSWA4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNi0vxSWA4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uNi0vxSWA4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uNi0vxSWA4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uNi0vxSWA4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uNi0vxSWA4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNi0vxSWA4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNi0vxSWA4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNi0vxSWA4 .dropdown-item.active,
.cid-uNi0vxSWA4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uNi0vxSWA4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNi0vxSWA4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNi0vxSWA4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNi0vxSWA4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uNi0vxSWA4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNi0vxSWA4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNi0vxSWA4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNi0vxSWA4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uNi0vxSWA4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uNi0vxSWA4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uNi0vxSWA4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uNi0vxSWA4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uNi0vxSWA4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNi0vxSWA4 .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-uNi0vxSWA4 .navbar {
    height: 77px;
  }
  .cid-uNi0vxSWA4 .navbar.opened {
    height: auto;
  }
  .cid-uNi0vxSWA4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaRrW4G8B6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/todos20primry20care20copy-1584x672.jpg");
}
.cid-vaRrW4G8B6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRrW4G8B6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaRrW4G8B6 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vaRrW4G8B6 .col {
    width: 40%;
  }
}
.cid-vaRrW4G8B6 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vaRrW4G8B6 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vaRrW4G8B6 .card-wrapper .mbr-section-title,
.cid-vaRrW4G8B6 .card-wrapper .mbr-section-subtitle,
.cid-vaRrW4G8B6 .card-wrapper .mbr-text,
.cid-vaRrW4G8B6 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vaRrW4G8B6 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e6393;
  opacity: 0.8;
}
.cid-vaRrW4G8B6 .mbr-section-title {
  color: #ffffff;
}
.cid-vaRrW4G8B6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vaRrW4G8B6 .mbr-text,
.cid-vaRrW4G8B6 .mbr-section-btn {
  color: #ffffff;
}
.cid-vaooVSorPK {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vaooVSorPK .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vaooVSorPK .mbr-text {
  color: #084671;
}
.cid-vaRGnbcF2V {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vaRGnbcF2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRGnbcF2V .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-vaRGnbcF2V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vaRGnbcF2V .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vaRGnbcF2V .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vaRGnbcF2V .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vaRGnbcF2V .mbr-section-title {
  color: #084671;
}
.cid-vaRGnbcF2V .mbr-text,
.cid-vaRGnbcF2V .mbr-section-btn {
  color: #606060;
}
.cid-vaRGj2NM5u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vaRGj2NM5u .mbr-section-subtitle {
  color: #084671;
}
.cid-vaRGj2NM5u .mbr-text {
  color: #606060;
}
.cid-v8SVuoauy6 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v8SVuoauy6 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v8SVuoauy6 .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-v8SVuoauy6 .image-wrapper {
  height: 100%;
}
.cid-v8SVuoauy6 .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v8SVuoauy6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-v8SVuoauy6 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v8SVuoauy6 .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-v8SVuoauy6 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v8SVuoauy6 .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-v8SVuoauy6 .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8SVuoauy6 .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-v8SVuoauy6 .mbr-text,
.cid-v8SVuoauy6 .social-row {
  color: #545454;
}
.cid-v8SVuoauy6 .card-subtitle {
  color: #545454;
}
.cid-v8SVuoauy6 .card-title {
  color: #07436c;
}
.cid-v8SYwc1eHa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v8SYwc1eHa .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v8SYwc1eHa .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-v8SYwc1eHa .image-wrapper {
  height: 100%;
}
.cid-v8SYwc1eHa .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v8SYwc1eHa .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-v8SYwc1eHa .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v8SYwc1eHa .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-v8SYwc1eHa .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v8SYwc1eHa .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-v8SYwc1eHa .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8SYwc1eHa .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-v8SYwc1eHa .mbr-text,
.cid-v8SYwc1eHa .social-row {
  color: #545454;
}
.cid-v8SYwc1eHa .card-subtitle {
  color: #545454;
}
.cid-v8SYwc1eHa .card-title {
  color: #07436c;
}
.cid-v8T0vB2K1c {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v8T0vB2K1c .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v8T0vB2K1c .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-v8T0vB2K1c .image-wrapper {
  height: 100%;
}
.cid-v8T0vB2K1c .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v8T0vB2K1c .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-v8T0vB2K1c .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v8T0vB2K1c .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-v8T0vB2K1c .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v8T0vB2K1c .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-v8T0vB2K1c .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8T0vB2K1c .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-v8T0vB2K1c .mbr-text,
.cid-v8T0vB2K1c .social-row {
  color: #545454;
}
.cid-v8T0vB2K1c .card-subtitle {
  color: #545454;
}
.cid-v8T0vB2K1c .card-title {
  color: #07436c;
}
.cid-v8T5LSpvGg {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v8T5LSpvGg .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v8T5LSpvGg .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-v8T5LSpvGg .image-wrapper {
  height: 100%;
}
.cid-v8T5LSpvGg .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v8T5LSpvGg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-v8T5LSpvGg .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v8T5LSpvGg .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-v8T5LSpvGg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v8T5LSpvGg .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-v8T5LSpvGg .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8T5LSpvGg .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-v8T5LSpvGg .mbr-text,
.cid-v8T5LSpvGg .social-row {
  color: #545454;
}
.cid-v8T5LSpvGg .card-subtitle {
  color: #545454;
}
.cid-v8T5LSpvGg .card-title {
  color: #07436c;
}
.cid-v8YYtEyPoF {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v8YYtEyPoF .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v8YYtEyPoF .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-v8YYtEyPoF .image-wrapper {
  height: 100%;
}
.cid-v8YYtEyPoF .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v8YYtEyPoF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-v8YYtEyPoF .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v8YYtEyPoF .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-v8YYtEyPoF .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v8YYtEyPoF .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-v8YYtEyPoF .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8YYtEyPoF .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-v8YYtEyPoF .mbr-text,
.cid-v8YYtEyPoF .social-row {
  color: #545454;
}
.cid-v8YYtEyPoF .card-subtitle {
  color: #545454;
}
.cid-v8YYtEyPoF .card-title {
  color: #07436c;
}
.cid-v94kxrDxVd {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v94kxrDxVd .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v94kxrDxVd .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-v94kxrDxVd .image-wrapper {
  height: 100%;
}
.cid-v94kxrDxVd .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v94kxrDxVd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-v94kxrDxVd .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v94kxrDxVd .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-v94kxrDxVd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v94kxrDxVd .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-v94kxrDxVd .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v94kxrDxVd .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-v94kxrDxVd .mbr-text,
.cid-v94kxrDxVd .social-row {
  color: #545454;
}
.cid-v94kxrDxVd .card-subtitle {
  color: #545454;
}
.cid-v94kxrDxVd .card-title {
  color: #07436c;
}
.cid-v94onh6O7a {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v94onh6O7a .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v94onh6O7a .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-v94onh6O7a .image-wrapper {
  height: 100%;
}
.cid-v94onh6O7a .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v94onh6O7a .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-v94onh6O7a .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v94onh6O7a .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-v94onh6O7a .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-v94onh6O7a .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-v94onh6O7a .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v94onh6O7a .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-v94onh6O7a .mbr-text,
.cid-v94onh6O7a .social-row {
  color: #545454;
}
.cid-v94onh6O7a .card-subtitle {
  color: #545454;
}
.cid-v94onh6O7a .card-title {
  color: #07436c;
}
.cid-vaoDQCQdVd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vaoDQCQdVd blockquote {
  border-color: #084671;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vaoDQCQdVd .mbr-text {
  color: #084671;
  text-align: center;
}
.cid-vaooTkEyDO {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vaooTkEyDO .container {
  max-width: 1400px;
}
.cid-vaooTkEyDO .card-img2 span {
  padding-top: 6px;
}
.cid-vaooTkEyDO .soc-item a {
  padding-top: 5px;
}
.cid-vaooTkEyDO .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vaooTkEyDO .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vaooTkEyDO .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vaooTkEyDO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vaooTkEyDO svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vaooTkEyDO #e2_shape {
  fill: #ffffff !important;
}
.cid-vaooTkEyDO .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vaooTkEyDO .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vaooTkEyDO .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vaooTkEyDO .card-img {
  width: auto;
}
.cid-vaooTkEyDO .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vaooTkEyDO .soc-item span {
  font-size: 1.4rem;
}
.cid-vaooTkEyDO .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vaooTkEyDO .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vaooTkEyDO .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vaooTkEyDO .media-wrap {
  margin-bottom: 1rem;
}
.cid-vaooTkEyDO .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vaooTkEyDO img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vaooTkEyDO .item {
    justify-content: center;
  }
  .cid-vaooTkEyDO .quote::after {
    left: 60px;
  }
}
.cid-vaooTkEyDO .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vaooTkEyDO .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vaooTkEyDO .text1 {
  color: #ffffff;
}
.cid-vaooTkEyDO .item-title {
  color: #ffffff;
}
.cid-vaooTkEyDO H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vaooTkEyDO .theme {
  color: #ffffff;
}
.cid-vaooTkEyDO .copyright > p {
  color: #ff3366;
}
.cid-vaooTkEyDO .text2 {
  color: #ffffff;
}
.cid-vanXCLUQ1S {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vanXCLUQ1S nav.navbar {
  position: fixed;
}
.cid-vanXCLUQ1S .nav-link {
  position: relative;
}
.cid-vanXCLUQ1S .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-vanXCLUQ1S .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-vanXCLUQ1S .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vanXCLUQ1S .dropdown-menu {
  padding: 0;
}
.cid-vanXCLUQ1S .dropdown-item:hover,
.cid-vanXCLUQ1S .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-vanXCLUQ1S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-vanXCLUQ1S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vanXCLUQ1S .container {
  display: flex;
  margin: auto;
}
.cid-vanXCLUQ1S .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vanXCLUQ1S .navbar-caption {
  padding-right: 4rem;
}
.cid-vanXCLUQ1S .dropdown-menu,
.cid-vanXCLUQ1S .navbar.opened {
  background: #ffffff !important;
}
.cid-vanXCLUQ1S .nav-item:focus,
.cid-vanXCLUQ1S .nav-link:focus {
  outline: none;
}
.cid-vanXCLUQ1S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vanXCLUQ1S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vanXCLUQ1S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vanXCLUQ1S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vanXCLUQ1S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vanXCLUQ1S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vanXCLUQ1S .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vanXCLUQ1S .navbar.opened {
  transition: all .3s;
}
.cid-vanXCLUQ1S .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-vanXCLUQ1S .navbar .navbar-logo img {
  width: auto;
}
.cid-vanXCLUQ1S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vanXCLUQ1S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vanXCLUQ1S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vanXCLUQ1S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vanXCLUQ1S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vanXCLUQ1S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vanXCLUQ1S .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: 55%;
}
.cid-vanXCLUQ1S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vanXCLUQ1S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vanXCLUQ1S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vanXCLUQ1S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vanXCLUQ1S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vanXCLUQ1S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vanXCLUQ1S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vanXCLUQ1S .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: 55%;
  }
  .cid-vanXCLUQ1S .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vanXCLUQ1S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vanXCLUQ1S .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vanXCLUQ1S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vanXCLUQ1S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vanXCLUQ1S .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vanXCLUQ1S .navbar.navbar-short {
  min-height: 60px;
}
.cid-vanXCLUQ1S .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vanXCLUQ1S .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vanXCLUQ1S .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vanXCLUQ1S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vanXCLUQ1S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vanXCLUQ1S .dropdown-item.active,
.cid-vanXCLUQ1S .dropdown-item:active {
  background-color: transparent;
}
.cid-vanXCLUQ1S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vanXCLUQ1S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vanXCLUQ1S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vanXCLUQ1S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vanXCLUQ1S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vanXCLUQ1S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vanXCLUQ1S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vanXCLUQ1S .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vanXCLUQ1S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vanXCLUQ1S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-vanXCLUQ1S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vanXCLUQ1S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vanXCLUQ1S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vanXCLUQ1S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vanXCLUQ1S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vanXCLUQ1S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vanXCLUQ1S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vanXCLUQ1S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vanXCLUQ1S .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vanXCLUQ1S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vanXCLUQ1S .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-vanXCLUQ1S .navbar {
    height: 77px;
  }
  .cid-vanXCLUQ1S .navbar.opened {
    height: auto;
  }
  .cid-vanXCLUQ1S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaRB4qO5vD {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/gemini-generated-image-uxg783uxg783uxg7-1584x672.png");
}
.cid-vaRB4qO5vD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRB4qO5vD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaRB4qO5vD .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vaRB4qO5vD .col {
    width: 40%;
  }
}
.cid-vaRB4qO5vD .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vaRB4qO5vD .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vaRB4qO5vD .card-wrapper .mbr-section-title,
.cid-vaRB4qO5vD .card-wrapper .mbr-section-subtitle,
.cid-vaRB4qO5vD .card-wrapper .mbr-text,
.cid-vaRB4qO5vD .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vaRB4qO5vD .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e6393;
  opacity: 0.8;
}
.cid-vaRB4qO5vD .mbr-section-title {
  color: #ffffff;
}
.cid-vaRB4qO5vD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vaRB4qO5vD .mbr-text,
.cid-vaRB4qO5vD .mbr-section-btn {
  color: #ffffff;
}
.cid-vanXCMRLKC {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vanXCMRLKC .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vanXCMRLKC .mbr-text {
  color: #084671;
}
.cid-vanXCN8xXJ {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vanXCN8xXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vanXCN8xXJ .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-vanXCN8xXJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vanXCN8xXJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vanXCN8xXJ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vanXCN8xXJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vanXCN8xXJ .mbr-section-title {
  color: #084671;
}
.cid-vanXCN8xXJ .mbr-text,
.cid-vanXCN8xXJ .mbr-section-btn {
  color: #606060;
}
.cid-vanXCNsgSW {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vanXCNsgSW .mbr-section-subtitle {
  color: #084671;
}
.cid-vanXCNsgSW .mbr-text {
  color: #606060;
}
.cid-vanXCNJfaA {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vanXCNJfaA .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vanXCNJfaA .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vanXCNJfaA .image-wrapper {
  height: 100%;
}
.cid-vanXCNJfaA .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vanXCNJfaA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vanXCNJfaA .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vanXCNJfaA .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vanXCNJfaA .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vanXCNJfaA .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vanXCNJfaA .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vanXCNJfaA .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vanXCNJfaA .mbr-text,
.cid-vanXCNJfaA .social-row {
  color: #545454;
}
.cid-vanXCNJfaA .card-subtitle {
  color: #545454;
}
.cid-vanXCNJfaA .card-title {
  color: #07436c;
}
.cid-vanXCO8vEH {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vanXCO8vEH .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vanXCO8vEH .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vanXCO8vEH .image-wrapper {
  height: 100%;
}
.cid-vanXCO8vEH .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vanXCO8vEH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vanXCO8vEH .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vanXCO8vEH .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vanXCO8vEH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vanXCO8vEH .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vanXCO8vEH .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vanXCO8vEH .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vanXCO8vEH .mbr-text,
.cid-vanXCO8vEH .social-row {
  color: #545454;
}
.cid-vanXCO8vEH .card-subtitle {
  color: #545454;
}
.cid-vanXCO8vEH .card-title {
  color: #07436c;
}
.cid-vanXCOyMV8 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-vanXCOyMV8 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vanXCOyMV8 .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vanXCOyMV8 .image-wrapper {
  height: 100%;
}
.cid-vanXCOyMV8 .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vanXCOyMV8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vanXCOyMV8 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vanXCOyMV8 .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vanXCOyMV8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vanXCOyMV8 .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vanXCOyMV8 .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vanXCOyMV8 .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vanXCOyMV8 .mbr-text,
.cid-vanXCOyMV8 .social-row {
  color: #545454;
}
.cid-vanXCOyMV8 .card-subtitle {
  color: #545454;
}
.cid-vanXCOyMV8 .card-title {
  color: #07436c;
}
.cid-vaojI8wmdY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vaojI8wmdY blockquote {
  border-color: #084671;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vaojI8wmdY .mbr-text {
  color: #084671;
  text-align: center;
}
.cid-vanXCOXaLN {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vanXCOXaLN .container {
  max-width: 1400px;
}
.cid-vanXCOXaLN .card-img2 span {
  padding-top: 6px;
}
.cid-vanXCOXaLN .soc-item a {
  padding-top: 5px;
}
.cid-vanXCOXaLN .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vanXCOXaLN .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vanXCOXaLN .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vanXCOXaLN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vanXCOXaLN svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vanXCOXaLN #e2_shape {
  fill: #ffffff !important;
}
.cid-vanXCOXaLN .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vanXCOXaLN .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vanXCOXaLN .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vanXCOXaLN .card-img {
  width: auto;
}
.cid-vanXCOXaLN .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vanXCOXaLN .soc-item span {
  font-size: 1.4rem;
}
.cid-vanXCOXaLN .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vanXCOXaLN .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vanXCOXaLN .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vanXCOXaLN .media-wrap {
  margin-bottom: 1rem;
}
.cid-vanXCOXaLN .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vanXCOXaLN img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vanXCOXaLN .item {
    justify-content: center;
  }
  .cid-vanXCOXaLN .quote::after {
    left: 60px;
  }
}
.cid-vanXCOXaLN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vanXCOXaLN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vanXCOXaLN .text1 {
  color: #ffffff;
}
.cid-vanXCOXaLN .item-title {
  color: #ffffff;
}
.cid-vanXCOXaLN H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vanXCOXaLN .theme {
  color: #ffffff;
}
.cid-vanXCOXaLN .copyright > p {
  color: #ff3366;
}
.cid-vanXCOXaLN .text2 {
  color: #ffffff;
}
.cid-vbqNUjC3lu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vbqNUjC3lu nav.navbar {
  position: fixed;
}
.cid-vbqNUjC3lu .nav-link {
  position: relative;
}
.cid-vbqNUjC3lu .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-vbqNUjC3lu .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-vbqNUjC3lu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbqNUjC3lu .dropdown-menu {
  padding: 0;
}
.cid-vbqNUjC3lu .dropdown-item:hover,
.cid-vbqNUjC3lu .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-vbqNUjC3lu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-vbqNUjC3lu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbqNUjC3lu .container {
  display: flex;
  margin: auto;
}
.cid-vbqNUjC3lu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vbqNUjC3lu .navbar-caption {
  padding-right: 4rem;
}
.cid-vbqNUjC3lu .dropdown-menu,
.cid-vbqNUjC3lu .navbar.opened {
  background: #ffffff !important;
}
.cid-vbqNUjC3lu .nav-item:focus,
.cid-vbqNUjC3lu .nav-link:focus {
  outline: none;
}
.cid-vbqNUjC3lu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbqNUjC3lu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbqNUjC3lu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbqNUjC3lu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbqNUjC3lu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbqNUjC3lu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbqNUjC3lu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vbqNUjC3lu .navbar.opened {
  transition: all .3s;
}
.cid-vbqNUjC3lu .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-vbqNUjC3lu .navbar .navbar-logo img {
  width: auto;
}
.cid-vbqNUjC3lu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbqNUjC3lu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbqNUjC3lu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbqNUjC3lu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vbqNUjC3lu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbqNUjC3lu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbqNUjC3lu .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: 55%;
}
.cid-vbqNUjC3lu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbqNUjC3lu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vbqNUjC3lu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vbqNUjC3lu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbqNUjC3lu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbqNUjC3lu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbqNUjC3lu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbqNUjC3lu .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: 55%;
  }
  .cid-vbqNUjC3lu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbqNUjC3lu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbqNUjC3lu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbqNUjC3lu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbqNUjC3lu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vbqNUjC3lu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vbqNUjC3lu .navbar.navbar-short {
  min-height: 60px;
}
.cid-vbqNUjC3lu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbqNUjC3lu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbqNUjC3lu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbqNUjC3lu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbqNUjC3lu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbqNUjC3lu .dropdown-item.active,
.cid-vbqNUjC3lu .dropdown-item:active {
  background-color: transparent;
}
.cid-vbqNUjC3lu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbqNUjC3lu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbqNUjC3lu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbqNUjC3lu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vbqNUjC3lu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbqNUjC3lu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbqNUjC3lu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbqNUjC3lu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbqNUjC3lu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vbqNUjC3lu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-vbqNUjC3lu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vbqNUjC3lu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vbqNUjC3lu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vbqNUjC3lu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vbqNUjC3lu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbqNUjC3lu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vbqNUjC3lu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vbqNUjC3lu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbqNUjC3lu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vbqNUjC3lu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbqNUjC3lu .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-vbqNUjC3lu .navbar {
    height: 77px;
  }
  .cid-vbqNUjC3lu .navbar.opened {
    height: auto;
  }
  .cid-vbqNUjC3lu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbqNUjZSa7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/dental-3.webp");
}
.cid-vbqNUjZSa7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbqNUjZSa7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbqNUjZSa7 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vbqNUjZSa7 .col {
    width: 40%;
  }
}
.cid-vbqNUjZSa7 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vbqNUjZSa7 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vbqNUjZSa7 .card-wrapper .mbr-section-title,
.cid-vbqNUjZSa7 .card-wrapper .mbr-section-subtitle,
.cid-vbqNUjZSa7 .card-wrapper .mbr-text,
.cid-vbqNUjZSa7 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vbqNUjZSa7 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e6393;
  opacity: 0.8;
}
.cid-vbqNUjZSa7 .mbr-section-title {
  color: #ffffff;
}
.cid-vbqNUjZSa7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vbqNUjZSa7 .mbr-text,
.cid-vbqNUjZSa7 .mbr-section-btn {
  color: #ffffff;
}
.cid-vbqNUkhJEF {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbqNUkhJEF .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vbqNUkhJEF .mbr-text {
  color: #084671;
}
.cid-vbqNUkuWTb {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vbqNUkuWTb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbqNUkuWTb .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-vbqNUkuWTb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vbqNUkuWTb .row {
  flex-direction: row-reverse;
}
.cid-vbqNUkuWTb .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vbqNUkuWTb .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vbqNUkuWTb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vbqNUkuWTb .mbr-section-title {
  color: #084671;
}
.cid-vbqNUkuWTb .mbr-text,
.cid-vbqNUkuWTb .mbr-section-btn {
  color: #606060;
}
.cid-vbqNUkMmjr {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbqNUkMmjr .mbr-section-subtitle {
  color: #084671;
}
.cid-vbqNUkMmjr .mbr-text {
  color: #606060;
}
.cid-vbqNUl2H70 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbqNUl2H70 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbqNUl2H70 .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbqNUl2H70 .image-wrapper {
  height: 100%;
}
.cid-vbqNUl2H70 .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbqNUl2H70 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbqNUl2H70 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbqNUl2H70 .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbqNUl2H70 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbqNUl2H70 .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbqNUl2H70 .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbqNUl2H70 .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbqNUl2H70 .mbr-text,
.cid-vbqNUl2H70 .social-row {
  color: #545454;
}
.cid-vbqNUl2H70 .card-subtitle {
  color: #545454;
}
.cid-vbqNUl2H70 .card-title {
  color: #07436c;
}
.cid-vbqNUloHbh {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbqNUloHbh .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbqNUloHbh .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbqNUloHbh .image-wrapper {
  height: 100%;
}
.cid-vbqNUloHbh .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbqNUloHbh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbqNUloHbh .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbqNUloHbh .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbqNUloHbh .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbqNUloHbh .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbqNUloHbh .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbqNUloHbh .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbqNUloHbh .mbr-text,
.cid-vbqNUloHbh .social-row {
  color: #545454;
}
.cid-vbqNUloHbh .card-subtitle {
  color: #545454;
}
.cid-vbqNUloHbh .card-title {
  color: #07436c;
}
.cid-vbqNUlLMMq {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbqNUlLMMq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbqNUlLMMq .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbqNUlLMMq .image-wrapper {
  height: 100%;
}
.cid-vbqNUlLMMq .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbqNUlLMMq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbqNUlLMMq .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbqNUlLMMq .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbqNUlLMMq .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbqNUlLMMq .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbqNUlLMMq .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbqNUlLMMq .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbqNUlLMMq .mbr-text,
.cid-vbqNUlLMMq .social-row {
  color: #545454;
}
.cid-vbqNUlLMMq .card-subtitle {
  color: #545454;
}
.cid-vbqNUlLMMq .card-title {
  color: #07436c;
}
.cid-vbr0JSyeCo {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbr0JSyeCo .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbr0JSyeCo .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbr0JSyeCo .image-wrapper {
  height: 100%;
}
.cid-vbr0JSyeCo .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbr0JSyeCo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbr0JSyeCo .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbr0JSyeCo .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbr0JSyeCo .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbr0JSyeCo .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbr0JSyeCo .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbr0JSyeCo .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbr0JSyeCo .mbr-text,
.cid-vbr0JSyeCo .social-row {
  color: #545454;
}
.cid-vbr0JSyeCo .card-subtitle {
  color: #545454;
}
.cid-vbr0JSyeCo .card-title {
  color: #07436c;
}
.cid-vbrdkIi9fp {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbrdkIi9fp .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbrdkIi9fp .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbrdkIi9fp .image-wrapper {
  height: 100%;
}
.cid-vbrdkIi9fp .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbrdkIi9fp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbrdkIi9fp .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbrdkIi9fp .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbrdkIi9fp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbrdkIi9fp .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbrdkIi9fp .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbrdkIi9fp .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbrdkIi9fp .mbr-text,
.cid-vbrdkIi9fp .social-row {
  color: #545454;
}
.cid-vbrdkIi9fp .card-subtitle {
  color: #545454;
}
.cid-vbrdkIi9fp .card-title {
  color: #07436c;
}
.cid-vbwuyk8UPK {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwuyk8UPK .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbwuyk8UPK .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbwuyk8UPK .image-wrapper {
  height: 100%;
}
.cid-vbwuyk8UPK .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbwuyk8UPK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbwuyk8UPK .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbwuyk8UPK .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbwuyk8UPK .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbwuyk8UPK .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbwuyk8UPK .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbwuyk8UPK .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbwuyk8UPK .mbr-text,
.cid-vbwuyk8UPK .social-row {
  color: #545454;
}
.cid-vbwuyk8UPK .card-subtitle {
  color: #545454;
}
.cid-vbwuyk8UPK .card-title {
  color: #07436c;
}
.cid-vbwyxJzUUA {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwyxJzUUA .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbwyxJzUUA .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbwyxJzUUA .image-wrapper {
  height: 100%;
}
.cid-vbwyxJzUUA .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbwyxJzUUA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbwyxJzUUA .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbwyxJzUUA .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbwyxJzUUA .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbwyxJzUUA .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbwyxJzUUA .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbwyxJzUUA .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbwyxJzUUA .mbr-text,
.cid-vbwyxJzUUA .social-row {
  color: #545454;
}
.cid-vbwyxJzUUA .card-subtitle {
  color: #545454;
}
.cid-vbwyxJzUUA .card-title {
  color: #07436c;
}
.cid-vbwCpX46JC {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwCpX46JC .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbwCpX46JC .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbwCpX46JC .image-wrapper {
  height: 100%;
}
.cid-vbwCpX46JC .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbwCpX46JC .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbwCpX46JC .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbwCpX46JC .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbwCpX46JC .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbwCpX46JC .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbwCpX46JC .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbwCpX46JC .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbwCpX46JC .mbr-text,
.cid-vbwCpX46JC .social-row {
  color: #545454;
}
.cid-vbwCpX46JC .card-subtitle {
  color: #545454;
}
.cid-vbwCpX46JC .card-title {
  color: #07436c;
}
.cid-vbwEqQ8JTF {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwEqQ8JTF .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbwEqQ8JTF .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbwEqQ8JTF .image-wrapper {
  height: 100%;
}
.cid-vbwEqQ8JTF .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbwEqQ8JTF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbwEqQ8JTF .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbwEqQ8JTF .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbwEqQ8JTF .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbwEqQ8JTF .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbwEqQ8JTF .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbwEqQ8JTF .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbwEqQ8JTF .mbr-text,
.cid-vbwEqQ8JTF .social-row {
  color: #545454;
}
.cid-vbwEqQ8JTF .card-subtitle {
  color: #545454;
}
.cid-vbwEqQ8JTF .card-title {
  color: #07436c;
}
.cid-vbwGZ0RCJk {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwGZ0RCJk .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vbwGZ0RCJk .mbr-text {
  color: #084671;
}
.cid-vbwHHgdG9X {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwHHgdG9X .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbwHHgdG9X .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbwHHgdG9X .image-wrapper {
  height: 100%;
}
.cid-vbwHHgdG9X .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbwHHgdG9X .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbwHHgdG9X .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbwHHgdG9X .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbwHHgdG9X .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbwHHgdG9X .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbwHHgdG9X .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbwHHgdG9X .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbwHHgdG9X .mbr-text,
.cid-vbwHHgdG9X .social-row {
  color: #545454;
}
.cid-vbwHHgdG9X .card-subtitle {
  color: #545454;
}
.cid-vbwHHgdG9X .card-title {
  color: #07436c;
}
.cid-vbwJBGOJ42 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwJBGOJ42 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbwJBGOJ42 .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbwJBGOJ42 .image-wrapper {
  height: 100%;
}
.cid-vbwJBGOJ42 .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbwJBGOJ42 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbwJBGOJ42 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbwJBGOJ42 .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbwJBGOJ42 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbwJBGOJ42 .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbwJBGOJ42 .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbwJBGOJ42 .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbwJBGOJ42 .mbr-text,
.cid-vbwJBGOJ42 .social-row {
  color: #545454;
}
.cid-vbwJBGOJ42 .card-subtitle {
  color: #545454;
}
.cid-vbwJBGOJ42 .card-title {
  color: #07436c;
}
.cid-vbwLIbq8iS {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbwLIbq8iS .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbwLIbq8iS .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbwLIbq8iS .image-wrapper {
  height: 100%;
}
.cid-vbwLIbq8iS .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbwLIbq8iS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbwLIbq8iS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbwLIbq8iS .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbwLIbq8iS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbwLIbq8iS .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbwLIbq8iS .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbwLIbq8iS .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbwLIbq8iS .mbr-text,
.cid-vbwLIbq8iS .social-row {
  color: #545454;
}
.cid-vbwLIbq8iS .card-subtitle {
  color: #545454;
}
.cid-vbwLIbq8iS .card-title {
  color: #07436c;
}
.cid-vbqNUm9jrf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbqNUm9jrf blockquote {
  border-color: #084671;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vbqNUm9jrf .mbr-text {
  color: #084671;
  text-align: center;
}
.cid-vbqNUmqpvG {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vbqNUmqpvG .container {
  max-width: 1400px;
}
.cid-vbqNUmqpvG .card-img2 span {
  padding-top: 6px;
}
.cid-vbqNUmqpvG .soc-item a {
  padding-top: 5px;
}
.cid-vbqNUmqpvG .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vbqNUmqpvG .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vbqNUmqpvG .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vbqNUmqpvG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbqNUmqpvG svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vbqNUmqpvG #e2_shape {
  fill: #ffffff !important;
}
.cid-vbqNUmqpvG .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vbqNUmqpvG .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vbqNUmqpvG .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbqNUmqpvG .card-img {
  width: auto;
}
.cid-vbqNUmqpvG .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vbqNUmqpvG .soc-item span {
  font-size: 1.4rem;
}
.cid-vbqNUmqpvG .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vbqNUmqpvG .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vbqNUmqpvG .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbqNUmqpvG .media-wrap {
  margin-bottom: 1rem;
}
.cid-vbqNUmqpvG .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vbqNUmqpvG img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vbqNUmqpvG .item {
    justify-content: center;
  }
  .cid-vbqNUmqpvG .quote::after {
    left: 60px;
  }
}
.cid-vbqNUmqpvG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vbqNUmqpvG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vbqNUmqpvG .text1 {
  color: #ffffff;
}
.cid-vbqNUmqpvG .item-title {
  color: #ffffff;
}
.cid-vbqNUmqpvG H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vbqNUmqpvG .theme {
  color: #ffffff;
}
.cid-vbqNUmqpvG .copyright > p {
  color: #ff3366;
}
.cid-vbqNUmqpvG .text2 {
  color: #ffffff;
}
.cid-vbCqjOREa1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vbCqjOREa1 nav.navbar {
  position: fixed;
}
.cid-vbCqjOREa1 .nav-link {
  position: relative;
}
.cid-vbCqjOREa1 .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-vbCqjOREa1 .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-vbCqjOREa1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbCqjOREa1 .dropdown-menu {
  padding: 0;
}
.cid-vbCqjOREa1 .dropdown-item:hover,
.cid-vbCqjOREa1 .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-vbCqjOREa1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-vbCqjOREa1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbCqjOREa1 .container {
  display: flex;
  margin: auto;
}
.cid-vbCqjOREa1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vbCqjOREa1 .navbar-caption {
  padding-right: 4rem;
}
.cid-vbCqjOREa1 .dropdown-menu,
.cid-vbCqjOREa1 .navbar.opened {
  background: #ffffff !important;
}
.cid-vbCqjOREa1 .nav-item:focus,
.cid-vbCqjOREa1 .nav-link:focus {
  outline: none;
}
.cid-vbCqjOREa1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbCqjOREa1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbCqjOREa1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbCqjOREa1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbCqjOREa1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbCqjOREa1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbCqjOREa1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vbCqjOREa1 .navbar.opened {
  transition: all .3s;
}
.cid-vbCqjOREa1 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-vbCqjOREa1 .navbar .navbar-logo img {
  width: auto;
}
.cid-vbCqjOREa1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbCqjOREa1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbCqjOREa1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbCqjOREa1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vbCqjOREa1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbCqjOREa1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbCqjOREa1 .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: 55%;
}
.cid-vbCqjOREa1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbCqjOREa1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vbCqjOREa1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vbCqjOREa1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbCqjOREa1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbCqjOREa1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbCqjOREa1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbCqjOREa1 .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: 55%;
  }
  .cid-vbCqjOREa1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbCqjOREa1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbCqjOREa1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbCqjOREa1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbCqjOREa1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vbCqjOREa1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vbCqjOREa1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vbCqjOREa1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbCqjOREa1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbCqjOREa1 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbCqjOREa1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbCqjOREa1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbCqjOREa1 .dropdown-item.active,
.cid-vbCqjOREa1 .dropdown-item:active {
  background-color: transparent;
}
.cid-vbCqjOREa1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbCqjOREa1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbCqjOREa1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbCqjOREa1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vbCqjOREa1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbCqjOREa1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbCqjOREa1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbCqjOREa1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbCqjOREa1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vbCqjOREa1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-vbCqjOREa1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vbCqjOREa1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vbCqjOREa1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vbCqjOREa1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vbCqjOREa1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbCqjOREa1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vbCqjOREa1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vbCqjOREa1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbCqjOREa1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vbCqjOREa1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbCqjOREa1 .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-vbCqjOREa1 .navbar {
    height: 77px;
  }
  .cid-vbCqjOREa1 .navbar.opened {
    height: auto;
  }
  .cid-vbCqjOREa1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbCqjPlSTl {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/obgyn-heo.webp");
}
.cid-vbCqjPlSTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbCqjPlSTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbCqjPlSTl .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vbCqjPlSTl .col {
    width: 40%;
  }
}
.cid-vbCqjPlSTl .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vbCqjPlSTl .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vbCqjPlSTl .card-wrapper .mbr-section-title,
.cid-vbCqjPlSTl .card-wrapper .mbr-section-subtitle,
.cid-vbCqjPlSTl .card-wrapper .mbr-text,
.cid-vbCqjPlSTl .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vbCqjPlSTl .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #b05c5c;
  opacity: 0.8;
}
.cid-vbCqjPlSTl .mbr-section-title {
  color: #ffffff;
}
.cid-vbCqjPlSTl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vbCqjPlSTl .mbr-text,
.cid-vbCqjPlSTl .mbr-section-btn {
  color: #ffffff;
}
.cid-vbCqjPCcGW {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbCqjPCcGW .line {
  background-color: #b05c5c;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vbCqjPCcGW .mbr-text {
  color: #9b4545;
}
.cid-vbCqjPPjjt {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vbCqjPPjjt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbCqjPPjjt .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-vbCqjPPjjt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vbCqjPPjjt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vbCqjPPjjt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vbCqjPPjjt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vbCqjPPjjt .mbr-section-title {
  color: #9b4545;
}
.cid-vbCqjPPjjt .mbr-text,
.cid-vbCqjPPjjt .mbr-section-btn {
  color: #606060;
}
.cid-vbCqjQ6k7P {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbCqjQ6k7P .mbr-section-subtitle {
  color: #9b4545;
}
.cid-vbCqjQ6k7P .mbr-text {
  color: #606060;
}
.cid-vbCqjQncpS {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbCqjQncpS .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbCqjQncpS .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbCqjQncpS .image-wrapper {
  height: 100%;
}
.cid-vbCqjQncpS .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbCqjQncpS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbCqjQncpS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbCqjQncpS .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbCqjQncpS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbCqjQncpS .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbCqjQncpS .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbCqjQncpS .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbCqjQncpS .mbr-text,
.cid-vbCqjQncpS .social-row {
  color: #545454;
}
.cid-vbCqjQncpS .card-subtitle {
  color: #717171;
}
.cid-vbCqjQncpS .card-title {
  color: #873c3c;
}
.cid-vbI3tEdLGW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbI3tEdLGW .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbI3tEdLGW .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbI3tEdLGW .image-wrapper {
  height: 100%;
}
.cid-vbI3tEdLGW .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbI3tEdLGW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbI3tEdLGW .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbI3tEdLGW .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbI3tEdLGW .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbI3tEdLGW .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbI3tEdLGW .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbI3tEdLGW .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbI3tEdLGW .mbr-text,
.cid-vbI3tEdLGW .social-row {
  color: #545454;
}
.cid-vbI3tEdLGW .card-subtitle {
  color: #717171;
}
.cid-vbI3tEdLGW .card-title {
  color: #873c3c;
}
.cid-vbI74in1QT {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbI74in1QT .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbI74in1QT .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbI74in1QT .image-wrapper {
  height: 100%;
}
.cid-vbI74in1QT .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbI74in1QT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbI74in1QT .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbI74in1QT .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbI74in1QT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbI74in1QT .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbI74in1QT .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbI74in1QT .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbI74in1QT .mbr-text,
.cid-vbI74in1QT .social-row {
  color: #545454;
}
.cid-vbI74in1QT .card-subtitle {
  color: #717171;
}
.cid-vbI74in1QT .card-title {
  color: #873c3c;
}
.cid-vbI9J1G7dD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbI9J1G7dD .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbI9J1G7dD .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbI9J1G7dD .image-wrapper {
  height: 100%;
}
.cid-vbI9J1G7dD .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbI9J1G7dD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbI9J1G7dD .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbI9J1G7dD .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbI9J1G7dD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbI9J1G7dD .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbI9J1G7dD .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbI9J1G7dD .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbI9J1G7dD .mbr-text,
.cid-vbI9J1G7dD .social-row {
  color: #545454;
}
.cid-vbI9J1G7dD .card-subtitle {
  color: #717171;
}
.cid-vbI9J1G7dD .card-title {
  color: #873c3c;
}
.cid-vbCqjRxPkd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbCqjRxPkd blockquote {
  border-color: #b05c5c;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vbCqjRxPkd .mbr-text {
  color: #a52f2f;
  text-align: center;
}
.cid-vbCqjROdjG {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vbCqjROdjG .container {
  max-width: 1400px;
}
.cid-vbCqjROdjG .card-img2 span {
  padding-top: 6px;
}
.cid-vbCqjROdjG .soc-item a {
  padding-top: 5px;
}
.cid-vbCqjROdjG .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vbCqjROdjG .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vbCqjROdjG .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vbCqjROdjG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbCqjROdjG svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vbCqjROdjG #e2_shape {
  fill: #ffffff !important;
}
.cid-vbCqjROdjG .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vbCqjROdjG .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vbCqjROdjG .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbCqjROdjG .card-img {
  width: auto;
}
.cid-vbCqjROdjG .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vbCqjROdjG .soc-item span {
  font-size: 1.4rem;
}
.cid-vbCqjROdjG .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vbCqjROdjG .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vbCqjROdjG .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbCqjROdjG .media-wrap {
  margin-bottom: 1rem;
}
.cid-vbCqjROdjG .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vbCqjROdjG img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vbCqjROdjG .item {
    justify-content: center;
  }
  .cid-vbCqjROdjG .quote::after {
    left: 60px;
  }
}
.cid-vbCqjROdjG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vbCqjROdjG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vbCqjROdjG .text1 {
  color: #ffffff;
}
.cid-vbCqjROdjG .item-title {
  color: #ffffff;
}
.cid-vbCqjROdjG H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vbCqjROdjG .theme {
  color: #ffffff;
}
.cid-vbCqjROdjG .copyright > p {
  color: #ff3366;
}
.cid-vbCqjROdjG .text2 {
  color: #ffffff;
}
.cid-vbII8WR28w {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vbII8WR28w nav.navbar {
  position: fixed;
}
.cid-vbII8WR28w .nav-link {
  position: relative;
}
.cid-vbII8WR28w .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-vbII8WR28w .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-vbII8WR28w .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbII8WR28w .dropdown-menu {
  padding: 0;
}
.cid-vbII8WR28w .dropdown-item:hover,
.cid-vbII8WR28w .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-vbII8WR28w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-vbII8WR28w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbII8WR28w .container {
  display: flex;
  margin: auto;
}
.cid-vbII8WR28w .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vbII8WR28w .navbar-caption {
  padding-right: 4rem;
}
.cid-vbII8WR28w .dropdown-menu,
.cid-vbII8WR28w .navbar.opened {
  background: #ffffff !important;
}
.cid-vbII8WR28w .nav-item:focus,
.cid-vbII8WR28w .nav-link:focus {
  outline: none;
}
.cid-vbII8WR28w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbII8WR28w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbII8WR28w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbII8WR28w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbII8WR28w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbII8WR28w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbII8WR28w .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vbII8WR28w .navbar.opened {
  transition: all .3s;
}
.cid-vbII8WR28w .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-vbII8WR28w .navbar .navbar-logo img {
  width: auto;
}
.cid-vbII8WR28w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbII8WR28w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbII8WR28w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbII8WR28w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vbII8WR28w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbII8WR28w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbII8WR28w .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: 55%;
}
.cid-vbII8WR28w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbII8WR28w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vbII8WR28w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vbII8WR28w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbII8WR28w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbII8WR28w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbII8WR28w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbII8WR28w .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: 55%;
  }
  .cid-vbII8WR28w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbII8WR28w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbII8WR28w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbII8WR28w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbII8WR28w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vbII8WR28w .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vbII8WR28w .navbar.navbar-short {
  min-height: 60px;
}
.cid-vbII8WR28w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbII8WR28w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbII8WR28w .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbII8WR28w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbII8WR28w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbII8WR28w .dropdown-item.active,
.cid-vbII8WR28w .dropdown-item:active {
  background-color: transparent;
}
.cid-vbII8WR28w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbII8WR28w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbII8WR28w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbII8WR28w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vbII8WR28w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbII8WR28w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbII8WR28w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbII8WR28w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbII8WR28w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vbII8WR28w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-vbII8WR28w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vbII8WR28w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vbII8WR28w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vbII8WR28w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vbII8WR28w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbII8WR28w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vbII8WR28w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vbII8WR28w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbII8WR28w .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vbII8WR28w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbII8WR28w .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-vbII8WR28w .navbar {
    height: 77px;
  }
  .cid-vbII8WR28w .navbar.opened {
    height: auto;
  }
  .cid-vbII8WR28w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbII8Y2Tv0 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/ophtalmology-1783x667.jpg");
}
.cid-vbII8Y2Tv0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbII8Y2Tv0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbII8Y2Tv0 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vbII8Y2Tv0 .col {
    width: 40%;
  }
}
.cid-vbII8Y2Tv0 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vbII8Y2Tv0 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vbII8Y2Tv0 .card-wrapper .mbr-section-title,
.cid-vbII8Y2Tv0 .card-wrapper .mbr-section-subtitle,
.cid-vbII8Y2Tv0 .card-wrapper .mbr-text,
.cid-vbII8Y2Tv0 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vbII8Y2Tv0 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e6393;
  opacity: 0.8;
}
.cid-vbII8Y2Tv0 .mbr-section-title {
  color: #ffffff;
}
.cid-vbII8Y2Tv0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vbII8Y2Tv0 .mbr-text,
.cid-vbII8Y2Tv0 .mbr-section-btn {
  color: #ffffff;
}
.cid-vbII8YQ4Wq {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbII8YQ4Wq .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vbII8YQ4Wq .mbr-text {
  color: #084671;
}
.cid-vbII8Zn772 {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vbII8Zn772 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbII8Zn772 .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-vbII8Zn772 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vbII8Zn772 .row {
  flex-direction: row-reverse;
}
.cid-vbII8Zn772 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vbII8Zn772 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vbII8Zn772 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vbII8Zn772 .mbr-section-title {
  color: #084671;
}
.cid-vbII8Zn772 .mbr-text,
.cid-vbII8Zn772 .mbr-section-btn {
  color: #606060;
}
.cid-vbII90hvIY {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbII90hvIY .mbr-section-subtitle {
  color: #084671;
}
.cid-vbII90hvIY .mbr-text {
  color: #606060;
}
.cid-vbII90Zf7Q {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbII90Zf7Q .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vbII90Zf7Q .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vbII90Zf7Q .image-wrapper {
  height: 100%;
}
.cid-vbII90Zf7Q .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vbII90Zf7Q .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vbII90Zf7Q .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vbII90Zf7Q .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vbII90Zf7Q .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vbII90Zf7Q .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vbII90Zf7Q .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbII90Zf7Q .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vbII90Zf7Q .mbr-text,
.cid-vbII90Zf7Q .social-row {
  color: #545454;
}
.cid-vbII90Zf7Q .card-subtitle {
  color: #545454;
}
.cid-vbII90Zf7Q .card-title {
  color: #07436c;
}
.cid-vbII98oHwY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbII98oHwY blockquote {
  border-color: #084671;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vbII98oHwY .mbr-text {
  color: #084671;
  text-align: center;
}
.cid-vbII98V3Tz {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vbII98V3Tz .container {
  max-width: 1400px;
}
.cid-vbII98V3Tz .card-img2 span {
  padding-top: 6px;
}
.cid-vbII98V3Tz .soc-item a {
  padding-top: 5px;
}
.cid-vbII98V3Tz .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vbII98V3Tz .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vbII98V3Tz .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vbII98V3Tz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbII98V3Tz svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vbII98V3Tz #e2_shape {
  fill: #ffffff !important;
}
.cid-vbII98V3Tz .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vbII98V3Tz .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vbII98V3Tz .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbII98V3Tz .card-img {
  width: auto;
}
.cid-vbII98V3Tz .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vbII98V3Tz .soc-item span {
  font-size: 1.4rem;
}
.cid-vbII98V3Tz .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vbII98V3Tz .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vbII98V3Tz .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbII98V3Tz .media-wrap {
  margin-bottom: 1rem;
}
.cid-vbII98V3Tz .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vbII98V3Tz img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vbII98V3Tz .item {
    justify-content: center;
  }
  .cid-vbII98V3Tz .quote::after {
    left: 60px;
  }
}
.cid-vbII98V3Tz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vbII98V3Tz .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vbII98V3Tz .text1 {
  color: #ffffff;
}
.cid-vbII98V3Tz .item-title {
  color: #ffffff;
}
.cid-vbII98V3Tz H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vbII98V3Tz .theme {
  color: #ffffff;
}
.cid-vbII98V3Tz .copyright > p {
  color: #ff3366;
}
.cid-vbII98V3Tz .text2 {
  color: #ffffff;
}
.cid-vchCeTktqm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vchCeTktqm nav.navbar {
  position: fixed;
}
.cid-vchCeTktqm .nav-link {
  position: relative;
}
.cid-vchCeTktqm .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-vchCeTktqm .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-vchCeTktqm .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vchCeTktqm .dropdown-menu {
  padding: 0;
}
.cid-vchCeTktqm .dropdown-item:hover,
.cid-vchCeTktqm .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-vchCeTktqm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-vchCeTktqm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vchCeTktqm .container {
  display: flex;
  margin: auto;
}
.cid-vchCeTktqm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vchCeTktqm .navbar-caption {
  padding-right: 4rem;
}
.cid-vchCeTktqm .dropdown-menu,
.cid-vchCeTktqm .navbar.opened {
  background: #ffffff !important;
}
.cid-vchCeTktqm .nav-item:focus,
.cid-vchCeTktqm .nav-link:focus {
  outline: none;
}
.cid-vchCeTktqm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vchCeTktqm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vchCeTktqm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vchCeTktqm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vchCeTktqm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vchCeTktqm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vchCeTktqm .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vchCeTktqm .navbar.opened {
  transition: all .3s;
}
.cid-vchCeTktqm .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-vchCeTktqm .navbar .navbar-logo img {
  width: auto;
}
.cid-vchCeTktqm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vchCeTktqm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vchCeTktqm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vchCeTktqm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vchCeTktqm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vchCeTktqm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vchCeTktqm .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: 55%;
}
.cid-vchCeTktqm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vchCeTktqm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vchCeTktqm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vchCeTktqm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vchCeTktqm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vchCeTktqm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vchCeTktqm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vchCeTktqm .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: 55%;
  }
  .cid-vchCeTktqm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vchCeTktqm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vchCeTktqm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vchCeTktqm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vchCeTktqm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vchCeTktqm .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vchCeTktqm .navbar.navbar-short {
  min-height: 60px;
}
.cid-vchCeTktqm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vchCeTktqm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vchCeTktqm .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vchCeTktqm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vchCeTktqm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vchCeTktqm .dropdown-item.active,
.cid-vchCeTktqm .dropdown-item:active {
  background-color: transparent;
}
.cid-vchCeTktqm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vchCeTktqm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vchCeTktqm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vchCeTktqm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vchCeTktqm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vchCeTktqm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vchCeTktqm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vchCeTktqm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vchCeTktqm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vchCeTktqm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-vchCeTktqm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vchCeTktqm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vchCeTktqm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vchCeTktqm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vchCeTktqm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vchCeTktqm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vchCeTktqm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vchCeTktqm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vchCeTktqm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vchCeTktqm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vchCeTktqm .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-vchCeTktqm .navbar {
    height: 77px;
  }
  .cid-vchCeTktqm .navbar.opened {
    height: auto;
  }
  .cid-vchCeTktqm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vchCeV2yj6 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/entbh.webp");
}
.cid-vchCeV2yj6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vchCeV2yj6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vchCeV2yj6 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vchCeV2yj6 .col {
    width: 40%;
  }
}
.cid-vchCeV2yj6 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vchCeV2yj6 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vchCeV2yj6 .card-wrapper .mbr-section-title,
.cid-vchCeV2yj6 .card-wrapper .mbr-section-subtitle,
.cid-vchCeV2yj6 .card-wrapper .mbr-text,
.cid-vchCeV2yj6 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vchCeV2yj6 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e6393;
  opacity: 0.8;
}
.cid-vchCeV2yj6 .mbr-section-title {
  color: #ffffff;
}
.cid-vchCeV2yj6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vchCeV2yj6 .mbr-text,
.cid-vchCeV2yj6 .mbr-section-btn {
  color: #ffffff;
}
.cid-vchCeVzEZB {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vchCeVzEZB .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vchCeVzEZB .mbr-text {
  color: #084671;
}
.cid-vchCeVQnpO {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vchCeVQnpO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vchCeVQnpO .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-vchCeVQnpO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vchCeVQnpO .row {
  flex-direction: row-reverse;
}
.cid-vchCeVQnpO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vchCeVQnpO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vchCeVQnpO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vchCeVQnpO .mbr-section-title {
  color: #084671;
}
.cid-vchCeVQnpO .mbr-text,
.cid-vchCeVQnpO .mbr-section-btn {
  color: #606060;
}
.cid-vchCeWgN6T {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vchCeWgN6T .mbr-section-subtitle {
  color: #084671;
}
.cid-vchCeWgN6T .mbr-text {
  color: #606060;
}
.cid-vchCeWJ4vN {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vchCeWJ4vN .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vchCeWJ4vN .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vchCeWJ4vN .image-wrapper {
  height: 100%;
}
.cid-vchCeWJ4vN .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vchCeWJ4vN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vchCeWJ4vN .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vchCeWJ4vN .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vchCeWJ4vN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vchCeWJ4vN .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vchCeWJ4vN .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vchCeWJ4vN .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vchCeWJ4vN .mbr-text,
.cid-vchCeWJ4vN .social-row {
  color: #545454;
}
.cid-vchCeWJ4vN .card-subtitle {
  color: #545454;
}
.cid-vchCeWJ4vN .card-title {
  color: #07436c;
}
.cid-vchCeXgTEO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vchCeXgTEO blockquote {
  border-color: #084671;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vchCeXgTEO .mbr-text {
  color: #084671;
  text-align: center;
}
.cid-vchCeXI8dX {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vchCeXI8dX .container {
  max-width: 1400px;
}
.cid-vchCeXI8dX .card-img2 span {
  padding-top: 6px;
}
.cid-vchCeXI8dX .soc-item a {
  padding-top: 5px;
}
.cid-vchCeXI8dX .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vchCeXI8dX .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vchCeXI8dX .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vchCeXI8dX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vchCeXI8dX svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vchCeXI8dX #e2_shape {
  fill: #ffffff !important;
}
.cid-vchCeXI8dX .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vchCeXI8dX .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vchCeXI8dX .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vchCeXI8dX .card-img {
  width: auto;
}
.cid-vchCeXI8dX .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vchCeXI8dX .soc-item span {
  font-size: 1.4rem;
}
.cid-vchCeXI8dX .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vchCeXI8dX .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vchCeXI8dX .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vchCeXI8dX .media-wrap {
  margin-bottom: 1rem;
}
.cid-vchCeXI8dX .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vchCeXI8dX img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vchCeXI8dX .item {
    justify-content: center;
  }
  .cid-vchCeXI8dX .quote::after {
    left: 60px;
  }
}
.cid-vchCeXI8dX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vchCeXI8dX .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vchCeXI8dX .text1 {
  color: #ffffff;
}
.cid-vchCeXI8dX .item-title {
  color: #ffffff;
}
.cid-vchCeXI8dX H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vchCeXI8dX .theme {
  color: #ffffff;
}
.cid-vchCeXI8dX .copyright > p {
  color: #ff3366;
}
.cid-vchCeXI8dX .text2 {
  color: #ffffff;
}
.cid-vcFdWcbvJE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vcFdWcbvJE nav.navbar {
  position: fixed;
}
.cid-vcFdWcbvJE .nav-link {
  position: relative;
}
.cid-vcFdWcbvJE .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-vcFdWcbvJE .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-vcFdWcbvJE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vcFdWcbvJE .dropdown-menu {
  padding: 0;
}
.cid-vcFdWcbvJE .dropdown-item:hover,
.cid-vcFdWcbvJE .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-vcFdWcbvJE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-vcFdWcbvJE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vcFdWcbvJE .container {
  display: flex;
  margin: auto;
}
.cid-vcFdWcbvJE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vcFdWcbvJE .navbar-caption {
  padding-right: 4rem;
}
.cid-vcFdWcbvJE .dropdown-menu,
.cid-vcFdWcbvJE .navbar.opened {
  background: #ffffff !important;
}
.cid-vcFdWcbvJE .nav-item:focus,
.cid-vcFdWcbvJE .nav-link:focus {
  outline: none;
}
.cid-vcFdWcbvJE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vcFdWcbvJE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vcFdWcbvJE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vcFdWcbvJE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vcFdWcbvJE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vcFdWcbvJE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vcFdWcbvJE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vcFdWcbvJE .navbar.opened {
  transition: all .3s;
}
.cid-vcFdWcbvJE .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-vcFdWcbvJE .navbar .navbar-logo img {
  width: auto;
}
.cid-vcFdWcbvJE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vcFdWcbvJE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vcFdWcbvJE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vcFdWcbvJE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vcFdWcbvJE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vcFdWcbvJE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vcFdWcbvJE .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: 55%;
}
.cid-vcFdWcbvJE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vcFdWcbvJE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vcFdWcbvJE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vcFdWcbvJE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vcFdWcbvJE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vcFdWcbvJE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vcFdWcbvJE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vcFdWcbvJE .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: 55%;
  }
  .cid-vcFdWcbvJE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vcFdWcbvJE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vcFdWcbvJE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vcFdWcbvJE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vcFdWcbvJE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vcFdWcbvJE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vcFdWcbvJE .navbar.navbar-short {
  min-height: 60px;
}
.cid-vcFdWcbvJE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vcFdWcbvJE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vcFdWcbvJE .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vcFdWcbvJE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vcFdWcbvJE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vcFdWcbvJE .dropdown-item.active,
.cid-vcFdWcbvJE .dropdown-item:active {
  background-color: transparent;
}
.cid-vcFdWcbvJE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vcFdWcbvJE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vcFdWcbvJE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vcFdWcbvJE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vcFdWcbvJE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vcFdWcbvJE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vcFdWcbvJE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vcFdWcbvJE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vcFdWcbvJE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vcFdWcbvJE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-vcFdWcbvJE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vcFdWcbvJE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vcFdWcbvJE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vcFdWcbvJE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vcFdWcbvJE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vcFdWcbvJE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vcFdWcbvJE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vcFdWcbvJE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vcFdWcbvJE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vcFdWcbvJE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vcFdWcbvJE .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-vcFdWcbvJE .navbar {
    height: 77px;
  }
  .cid-vcFdWcbvJE .navbar.opened {
    height: auto;
  }
  .cid-vcFdWcbvJE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vcFdWcuXfQ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/allergy.webp");
}
.cid-vcFdWcuXfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcFdWcuXfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vcFdWcuXfQ .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vcFdWcuXfQ .col {
    width: 40%;
  }
}
.cid-vcFdWcuXfQ .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vcFdWcuXfQ .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vcFdWcuXfQ .card-wrapper .mbr-section-title,
.cid-vcFdWcuXfQ .card-wrapper .mbr-section-subtitle,
.cid-vcFdWcuXfQ .card-wrapper .mbr-text,
.cid-vcFdWcuXfQ .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vcFdWcuXfQ .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e6393;
  opacity: 0.8;
}
.cid-vcFdWcuXfQ .mbr-section-title {
  color: #ffffff;
}
.cid-vcFdWcuXfQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vcFdWcuXfQ .mbr-text,
.cid-vcFdWcuXfQ .mbr-section-btn {
  color: #ffffff;
}
.cid-vcFdWcI1Bj {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vcFdWcI1Bj .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vcFdWcI1Bj .mbr-text {
  color: #084671;
}
.cid-vcFdWcQAI5 {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vcFdWcQAI5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcFdWcQAI5 .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-vcFdWcQAI5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vcFdWcQAI5 .row {
  flex-direction: row-reverse;
}
.cid-vcFdWcQAI5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vcFdWcQAI5 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vcFdWcQAI5 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vcFdWcQAI5 .mbr-section-title {
  color: #084671;
}
.cid-vcFdWcQAI5 .mbr-text,
.cid-vcFdWcQAI5 .mbr-section-btn {
  color: #606060;
}
.cid-vcFdWd39z7 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vcFdWd39z7 .mbr-section-subtitle {
  color: #084671;
}
.cid-vcFdWd39z7 .mbr-text {
  color: #606060;
}
.cid-vcFdWdedkB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vcFdWdedkB .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vcFdWdedkB .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vcFdWdedkB .image-wrapper {
  height: 100%;
}
.cid-vcFdWdedkB .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vcFdWdedkB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vcFdWdedkB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vcFdWdedkB .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vcFdWdedkB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vcFdWdedkB .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vcFdWdedkB .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vcFdWdedkB .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vcFdWdedkB .mbr-text,
.cid-vcFdWdedkB .social-row {
  color: #545454;
}
.cid-vcFdWdedkB .card-subtitle {
  color: #545454;
}
.cid-vcFdWdedkB .card-title {
  color: #07436c;
}
.cid-vcFdWdwlgG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vcFdWdwlgG blockquote {
  border-color: #084671;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vcFdWdwlgG .mbr-text {
  color: #084671;
  text-align: center;
}
.cid-vcFdWdIUql {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vcFdWdIUql .container {
  max-width: 1400px;
}
.cid-vcFdWdIUql .card-img2 span {
  padding-top: 6px;
}
.cid-vcFdWdIUql .soc-item a {
  padding-top: 5px;
}
.cid-vcFdWdIUql .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vcFdWdIUql .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vcFdWdIUql .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vcFdWdIUql .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vcFdWdIUql svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vcFdWdIUql #e2_shape {
  fill: #ffffff !important;
}
.cid-vcFdWdIUql .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vcFdWdIUql .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vcFdWdIUql .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vcFdWdIUql .card-img {
  width: auto;
}
.cid-vcFdWdIUql .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vcFdWdIUql .soc-item span {
  font-size: 1.4rem;
}
.cid-vcFdWdIUql .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vcFdWdIUql .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vcFdWdIUql .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vcFdWdIUql .media-wrap {
  margin-bottom: 1rem;
}
.cid-vcFdWdIUql .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vcFdWdIUql img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vcFdWdIUql .item {
    justify-content: center;
  }
  .cid-vcFdWdIUql .quote::after {
    left: 60px;
  }
}
.cid-vcFdWdIUql .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vcFdWdIUql .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vcFdWdIUql .text1 {
  color: #ffffff;
}
.cid-vcFdWdIUql .item-title {
  color: #ffffff;
}
.cid-vcFdWdIUql H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vcFdWdIUql .theme {
  color: #ffffff;
}
.cid-vcFdWdIUql .copyright > p {
  color: #ff3366;
}
.cid-vcFdWdIUql .text2 {
  color: #ffffff;
}
.cid-vd3SyIDGZS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vd3SyIDGZS nav.navbar {
  position: fixed;
}
.cid-vd3SyIDGZS .nav-link {
  position: relative;
}
.cid-vd3SyIDGZS .nav-link:before {
  content: '';
  bottom: -2px;
  left: 5px;
  width: 0%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-vd3SyIDGZS .nav-link:hover:before {
  width: 50%;
  opacity: 1;
}
.cid-vd3SyIDGZS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd3SyIDGZS .dropdown-menu {
  padding: 0;
}
.cid-vd3SyIDGZS .dropdown-item:hover,
.cid-vd3SyIDGZS .dropdown-item:focus {
  background: #1e6393 !important;
  color: white !important;
}
.cid-vd3SyIDGZS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-vd3SyIDGZS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd3SyIDGZS .container {
  display: flex;
  margin: auto;
}
.cid-vd3SyIDGZS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vd3SyIDGZS .navbar-caption {
  padding-right: 4rem;
}
.cid-vd3SyIDGZS .dropdown-menu,
.cid-vd3SyIDGZS .navbar.opened {
  background: #ffffff !important;
}
.cid-vd3SyIDGZS .nav-item:focus,
.cid-vd3SyIDGZS .nav-link:focus {
  outline: none;
}
.cid-vd3SyIDGZS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd3SyIDGZS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vd3SyIDGZS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vd3SyIDGZS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd3SyIDGZS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd3SyIDGZS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd3SyIDGZS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-vd3SyIDGZS .navbar.opened {
  transition: all .3s;
}
.cid-vd3SyIDGZS .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-vd3SyIDGZS .navbar .navbar-logo img {
  width: auto;
}
.cid-vd3SyIDGZS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd3SyIDGZS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd3SyIDGZS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd3SyIDGZS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vd3SyIDGZS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd3SyIDGZS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd3SyIDGZS .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: 55%;
}
.cid-vd3SyIDGZS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd3SyIDGZS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vd3SyIDGZS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vd3SyIDGZS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd3SyIDGZS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd3SyIDGZS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd3SyIDGZS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd3SyIDGZS .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: 55%;
  }
  .cid-vd3SyIDGZS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vd3SyIDGZS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd3SyIDGZS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vd3SyIDGZS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vd3SyIDGZS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd3SyIDGZS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vd3SyIDGZS .navbar.navbar-short {
  min-height: 60px;
}
.cid-vd3SyIDGZS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vd3SyIDGZS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vd3SyIDGZS .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vd3SyIDGZS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vd3SyIDGZS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd3SyIDGZS .dropdown-item.active,
.cid-vd3SyIDGZS .dropdown-item:active {
  background-color: transparent;
}
.cid-vd3SyIDGZS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd3SyIDGZS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd3SyIDGZS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd3SyIDGZS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vd3SyIDGZS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vd3SyIDGZS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd3SyIDGZS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vd3SyIDGZS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vd3SyIDGZS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vd3SyIDGZS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-vd3SyIDGZS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vd3SyIDGZS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vd3SyIDGZS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vd3SyIDGZS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vd3SyIDGZS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vd3SyIDGZS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vd3SyIDGZS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vd3SyIDGZS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vd3SyIDGZS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vd3SyIDGZS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd3SyIDGZS .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-vd3SyIDGZS .navbar {
    height: 77px;
  }
  .cid-vd3SyIDGZS .navbar.opened {
    height: auto;
  }
  .cid-vd3SyIDGZS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd3SyIVjx5 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/endo2.webp");
}
.cid-vd3SyIVjx5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd3SyIVjx5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd3SyIVjx5 .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-vd3SyIVjx5 .col {
    width: 40%;
  }
}
.cid-vd3SyIVjx5 .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-vd3SyIVjx5 .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-vd3SyIVjx5 .card-wrapper .mbr-section-title,
.cid-vd3SyIVjx5 .card-wrapper .mbr-section-subtitle,
.cid-vd3SyIVjx5 .card-wrapper .mbr-text,
.cid-vd3SyIVjx5 .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-vd3SyIVjx5 .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e6393;
  opacity: 0.8;
}
.cid-vd3SyIVjx5 .mbr-section-title {
  color: #ffffff;
}
.cid-vd3SyIVjx5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vd3SyIVjx5 .mbr-text,
.cid-vd3SyIVjx5 .mbr-section-btn {
  color: #ffffff;
}
.cid-vd3SyJ7GcI {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyJ7GcI .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vd3SyJ7GcI .mbr-text {
  color: #084671;
}
.cid-vd3SyJilyd {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-vd3SyJilyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd3SyJilyd .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-vd3SyJilyd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vd3SyJilyd .row {
  flex-direction: row-reverse;
}
.cid-vd3SyJilyd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-vd3SyJilyd .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyJilyd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vd3SyJilyd .mbr-section-title {
  color: #084671;
}
.cid-vd3SyJilyd .mbr-text,
.cid-vd3SyJilyd .mbr-section-btn {
  color: #606060;
}
.cid-vd3SyJuHJS {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyJuHJS .mbr-section-subtitle {
  color: #084671;
}
.cid-vd3SyJuHJS .mbr-text {
  color: #606060;
}
.cid-vd3SyJEcMf {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyJEcMf .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyJEcMf .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyJEcMf .image-wrapper {
  height: 100%;
}
.cid-vd3SyJEcMf .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyJEcMf .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyJEcMf .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyJEcMf .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyJEcMf .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyJEcMf .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyJEcMf .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyJEcMf .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyJEcMf .mbr-text,
.cid-vd3SyJEcMf .social-row {
  color: #545454;
}
.cid-vd3SyJEcMf .card-subtitle {
  color: #545454;
}
.cid-vd3SyJEcMf .card-title {
  color: #07436c;
}
.cid-vd3SyJT91u {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyJT91u .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyJT91u .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyJT91u .image-wrapper {
  height: 100%;
}
.cid-vd3SyJT91u .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyJT91u .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyJT91u .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyJT91u .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyJT91u .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyJT91u .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyJT91u .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyJT91u .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyJT91u .mbr-text,
.cid-vd3SyJT91u .social-row {
  color: #545454;
}
.cid-vd3SyJT91u .card-subtitle {
  color: #545454;
}
.cid-vd3SyJT91u .card-title {
  color: #07436c;
}
.cid-vd3SyK9eDP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyK9eDP .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyK9eDP .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyK9eDP .image-wrapper {
  height: 100%;
}
.cid-vd3SyK9eDP .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyK9eDP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyK9eDP .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyK9eDP .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyK9eDP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyK9eDP .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyK9eDP .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyK9eDP .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyK9eDP .mbr-text,
.cid-vd3SyK9eDP .social-row {
  color: #545454;
}
.cid-vd3SyK9eDP .card-subtitle {
  color: #545454;
}
.cid-vd3SyK9eDP .card-title {
  color: #07436c;
}
.cid-vd3SyKoNqE {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyKoNqE .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyKoNqE .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyKoNqE .image-wrapper {
  height: 100%;
}
.cid-vd3SyKoNqE .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyKoNqE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyKoNqE .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyKoNqE .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyKoNqE .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyKoNqE .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyKoNqE .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyKoNqE .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyKoNqE .mbr-text,
.cid-vd3SyKoNqE .social-row {
  color: #545454;
}
.cid-vd3SyKoNqE .card-subtitle {
  color: #545454;
}
.cid-vd3SyKoNqE .card-title {
  color: #07436c;
}
.cid-vd3SyKGaUy {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyKGaUy .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyKGaUy .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyKGaUy .image-wrapper {
  height: 100%;
}
.cid-vd3SyKGaUy .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyKGaUy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyKGaUy .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyKGaUy .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyKGaUy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyKGaUy .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyKGaUy .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyKGaUy .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyKGaUy .mbr-text,
.cid-vd3SyKGaUy .social-row {
  color: #545454;
}
.cid-vd3SyKGaUy .card-subtitle {
  color: #545454;
}
.cid-vd3SyKGaUy .card-title {
  color: #07436c;
}
.cid-vd3SyKX7cg {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyKX7cg .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyKX7cg .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyKX7cg .image-wrapper {
  height: 100%;
}
.cid-vd3SyKX7cg .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyKX7cg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyKX7cg .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyKX7cg .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyKX7cg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyKX7cg .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyKX7cg .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyKX7cg .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyKX7cg .mbr-text,
.cid-vd3SyKX7cg .social-row {
  color: #545454;
}
.cid-vd3SyKX7cg .card-subtitle {
  color: #545454;
}
.cid-vd3SyKX7cg .card-title {
  color: #07436c;
}
.cid-vd3SyLfXzw {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyLfXzw .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyLfXzw .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyLfXzw .image-wrapper {
  height: 100%;
}
.cid-vd3SyLfXzw .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyLfXzw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyLfXzw .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyLfXzw .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyLfXzw .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyLfXzw .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyLfXzw .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyLfXzw .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyLfXzw .mbr-text,
.cid-vd3SyLfXzw .social-row {
  color: #545454;
}
.cid-vd3SyLfXzw .card-subtitle {
  color: #545454;
}
.cid-vd3SyLfXzw .card-title {
  color: #07436c;
}
.cid-vd3SyLNKzk {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyLNKzk .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyLNKzk .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyLNKzk .image-wrapper {
  height: 100%;
}
.cid-vd3SyLNKzk .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyLNKzk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyLNKzk .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyLNKzk .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyLNKzk .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyLNKzk .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyLNKzk .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyLNKzk .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyLNKzk .mbr-text,
.cid-vd3SyLNKzk .social-row {
  color: #545454;
}
.cid-vd3SyLNKzk .card-subtitle {
  color: #545454;
}
.cid-vd3SyLNKzk .card-title {
  color: #07436c;
}
.cid-vd3SyMm9hm {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyMm9hm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyMm9hm .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyMm9hm .image-wrapper {
  height: 100%;
}
.cid-vd3SyMm9hm .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyMm9hm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyMm9hm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyMm9hm .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyMm9hm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyMm9hm .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyMm9hm .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyMm9hm .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyMm9hm .mbr-text,
.cid-vd3SyMm9hm .social-row {
  color: #545454;
}
.cid-vd3SyMm9hm .card-subtitle {
  color: #545454;
}
.cid-vd3SyMm9hm .card-title {
  color: #07436c;
}
.cid-vd3SyMFDLc {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyMFDLc .line {
  background-color: #1f567b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vd3SyMFDLc .mbr-text {
  color: #084671;
}
.cid-vd3SyMSQeG {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyMSQeG .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyMSQeG .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyMSQeG .image-wrapper {
  height: 100%;
}
.cid-vd3SyMSQeG .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyMSQeG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyMSQeG .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyMSQeG .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyMSQeG .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyMSQeG .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyMSQeG .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyMSQeG .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyMSQeG .mbr-text,
.cid-vd3SyMSQeG .social-row {
  color: #545454;
}
.cid-vd3SyMSQeG .card-subtitle {
  color: #545454;
}
.cid-vd3SyMSQeG .card-title {
  color: #07436c;
}
.cid-vd3SyNbFOI {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyNbFOI .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyNbFOI .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyNbFOI .image-wrapper {
  height: 100%;
}
.cid-vd3SyNbFOI .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyNbFOI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyNbFOI .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyNbFOI .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyNbFOI .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyNbFOI .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyNbFOI .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyNbFOI .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyNbFOI .mbr-text,
.cid-vd3SyNbFOI .social-row {
  color: #545454;
}
.cid-vd3SyNbFOI .card-subtitle {
  color: #545454;
}
.cid-vd3SyNbFOI .card-title {
  color: #07436c;
}
.cid-vd3SyNvx4o {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyNvx4o .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vd3SyNvx4o .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-vd3SyNvx4o .image-wrapper {
  height: 100%;
}
.cid-vd3SyNvx4o .image-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-vd3SyNvx4o .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-vd3SyNvx4o .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vd3SyNvx4o .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-vd3SyNvx4o .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-vd3SyNvx4o .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-vd3SyNvx4o .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd3SyNvx4o .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-vd3SyNvx4o .mbr-text,
.cid-vd3SyNvx4o .social-row {
  color: #545454;
}
.cid-vd3SyNvx4o .card-subtitle {
  color: #545454;
}
.cid-vd3SyNvx4o .card-title {
  color: #07436c;
}
.cid-vd3SyNOIjE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd3SyNOIjE blockquote {
  border-color: #084671;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-vd3SyNOIjE .mbr-text {
  color: #084671;
  text-align: center;
}
.cid-vd3SyO7eMx {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/cmadc-628x392.jpg");
  position: relative;
  overflow: hidden;
}
.cid-vd3SyO7eMx .container {
  max-width: 1400px;
}
.cid-vd3SyO7eMx .card-img2 span {
  padding-top: 6px;
}
.cid-vd3SyO7eMx .soc-item a {
  padding-top: 5px;
}
.cid-vd3SyO7eMx .btn {
  padding: 0.4rem 0.6rem !important;
  margin: 0.5rem !important;
  border-radius: 10px !important;
  letter-spacing: 0px;
}
.cid-vd3SyO7eMx .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-vd3SyO7eMx .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-vd3SyO7eMx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vd3SyO7eMx svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-vd3SyO7eMx #e2_shape {
  fill: #ffffff !important;
}
.cid-vd3SyO7eMx .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.cid-vd3SyO7eMx .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-vd3SyO7eMx .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #084b79;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vd3SyO7eMx .card-img {
  width: auto;
}
.cid-vd3SyO7eMx .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-vd3SyO7eMx .soc-item span {
  font-size: 1.4rem;
}
.cid-vd3SyO7eMx .soc-item:hover span {
  color: #1e6393 !important;
}
.cid-vd3SyO7eMx .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-vd3SyO7eMx .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vd3SyO7eMx .media-wrap {
  margin-bottom: 1rem;
}
.cid-vd3SyO7eMx .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-vd3SyO7eMx img {
  height: 4rem;
  width: auto;
}
@media (max-width: 576px) {
  .cid-vd3SyO7eMx .item {
    justify-content: center;
  }
  .cid-vd3SyO7eMx .quote::after {
    left: 60px;
  }
}
.cid-vd3SyO7eMx .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-vd3SyO7eMx .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vd3SyO7eMx .text1 {
  color: #ffffff;
}
.cid-vd3SyO7eMx .item-title {
  color: #ffffff;
}
.cid-vd3SyO7eMx H5 {
  color: #ffffff;
  text-align: justify;
}
.cid-vd3SyO7eMx .theme {
  color: #ffffff;
}
.cid-vd3SyO7eMx .copyright > p {
  color: #ff3366;
}
.cid-vd3SyO7eMx .text2 {
  color: #ffffff;
}
