body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 1px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.475rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.944rem;
    font-size: calc( 1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 6px 20px;
  border-radius: 0;
}
.btn-sm {
  padding: 6px 20px;
  border-radius: 0;
}
.btn-md {
  padding: 6px 20px;
  border-radius: 0;
}
.btn-lg {
  padding: 6px 20px;
  border-radius: 0;
}
.bg-primary {
  background-color: #0000cc !important;
}
.bg-success {
  background-color: #008000 !important;
}
.bg-info {
  background-color: #fcf600 !important;
}
.bg-warning {
  background-color: #f1f1f2 !important;
}
.bg-danger {
  background-color: #5f5e5e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0000cc !important;
  border-color: #0000cc !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: #000075 !important;
  border-color: #000075 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000075 !important;
  border-color: #000075 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c10000 !important;
  border-color: #c10000 !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: #6a0000 !important;
  border-color: #6a0000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6a0000 !important;
  border-color: #6a0000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fcf600 !important;
  border-color: #fcf600 !important;
  color: #000000 !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: #a5a100 !important;
  border-color: #a5a100 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #a5a100 !important;
  border-color: #a5a100 !important;
}
.btn-success,
.btn-success:active {
  background-color: #008000 !important;
  border-color: #008000 !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: #002900 !important;
  border-color: #002900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #002900 !important;
  border-color: #002900 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f1f1f2 !important;
  border-color: #f1f1f2 !important;
  color: #6e6e76 !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: #ffffff !important;
  background-color: #c4c4c8 !important;
  border-color: #c4c4c8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #6e6e76 !important;
  background-color: #c4c4c8 !important;
  border-color: #c4c4c8 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #5f5e5e !important;
  border-color: #5f5e5e !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: #333333 !important;
  border-color: #333333 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !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: #0000cc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000075 !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: #0000cc !important;
  border-color: #0000cc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c10000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6a0000 !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: #c10000 !important;
  border-color: #c10000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fcf600;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a5a100 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #000000 !important;
  background-color: #fcf600 !important;
  border-color: #fcf600 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #008000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #002900 !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: #008000 !important;
  border-color: #008000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f1f1f2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c4c4c8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #6e6e76 !important;
  background-color: #f1f1f2 !important;
  border-color: #f1f1f2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5f5e5e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #333333 !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: #5f5e5e !important;
  border-color: #5f5e5e !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: #0000cc !important;
}
.text-secondary {
  color: #c10000 !important;
}
.text-success {
  color: #008000 !important;
}
.text-info {
  color: #fcf600 !important;
}
.text-warning {
  color: #f1f1f2 !important;
}
.text-danger {
  color: #5f5e5e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000066 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5b0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #001a00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #969200 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #bcbcc1 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2c2b2b !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: #0000cc;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fcf600;
}
.alert-warning {
  background-color: #f1f1f2;
}
.alert-danger {
  background-color: #5f5e5e;
}
.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: #0000cc;
  border-color: #0000cc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0000cc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9999ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #00ff00;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fffec9;
}
.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: #9f9e9e;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 1px;
  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: #0000cc !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #0000cc;
}
/* 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: #0000cc;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0000cc;
}
.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: #0000cc;
  border-bottom-color: #0000cc;
}
.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: #0000cc !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: #c10000 !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='%230000cc' %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: #002b7f solid 3px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tgtLjX3wZi {
  z-index: 1000;
  width: 100%;
}
.cid-tgtLjX3wZi .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-tgtLjX3wZi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-tgtLjX3wZi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tgtLjX3wZi .menu_box .navbar.opened,
  .cid-tgtLjX3wZi .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tgtLjX3wZi nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tgtLjX3wZi .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tgtLjX3wZi .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tgtLjX3wZi .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tgtLjX3wZi .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tgtLjX3wZi .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tgtLjX3wZi .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-tgtLjX3wZi .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tgtLjX3wZi .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tgtLjX3wZi .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tgtLjX3wZi .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tgtLjX3wZi .offcanvas-body .mbr-text,
  .cid-tgtLjX3wZi .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tgtLjX3wZi .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tgtLjX3wZi .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tgtLjX3wZi .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-tgtLjX3wZi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tgtLjX3wZi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tgtLjX3wZi .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tgtLjX3wZi .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tgtLjX3wZi ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tgtLjX3wZi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tgtLjX3wZi .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tgtLjX3wZi .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tgtLjX3wZi li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tgtLjX3wZi li.nav-item:hover {
    opacity: .8;
  }
  .cid-tgtLjX3wZi .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tgtLjX3wZi .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tgtLjX3wZi .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tgtLjX3wZi .nav-item {
    margin: 0 !important;
  }
}
.cid-tgtLjX3wZi .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tgtLjX3wZi .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tgtLjX3wZi .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tgtLjX3wZi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tgtLjX3wZi .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tgtLjX3wZi .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tgtLjX3wZi .offcanvas_box {
    display: none;
  }
}
.cid-tgtLjX3wZi .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tgtLjX3wZi .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tgtLjX3wZi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgtLjX3wZi .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-tgtLjX3wZi .container {
  display: flex;
  margin: auto;
}
.cid-tgtLjX3wZi .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tgtLjX3wZi .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tgtLjX3wZi .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-tgtLjX3wZi .navbar-caption {
  color: #1e4381;
}
.cid-tgtLjX3wZi .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tgtLjX3wZi .navbar-nav {
    margin: 0;
  }
}
.cid-tgtLjX3wZi .dropdown-menu,
.cid-tgtLjX3wZi .navbar.opened {
  background-color: true !important;
}
.cid-tgtLjX3wZi .nav-item:focus,
.cid-tgtLjX3wZi .nav-link:focus {
  outline: none;
}
.cid-tgtLjX3wZi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgtLjX3wZi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgtLjX3wZi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgtLjX3wZi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgtLjX3wZi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgtLjX3wZi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgtLjX3wZi .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tgtLjX3wZi .navbar.opened {
  transition: all 0.3s;
}
.cid-tgtLjX3wZi .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tgtLjX3wZi .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-tgtLjX3wZi .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tgtLjX3wZi .navbar.collapsed {
  justify-content: center;
}
.cid-tgtLjX3wZi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgtLjX3wZi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tgtLjX3wZi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgtLjX3wZi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgtLjX3wZi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgtLjX3wZi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tgtLjX3wZi .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tgtLjX3wZi .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tgtLjX3wZi .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tgtLjX3wZi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgtLjX3wZi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgtLjX3wZi .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tgtLjX3wZi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgtLjX3wZi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgtLjX3wZi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgtLjX3wZi .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tgtLjX3wZi .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tgtLjX3wZi .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tgtLjX3wZi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgtLjX3wZi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgtLjX3wZi .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tgtLjX3wZi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgtLjX3wZi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgtLjX3wZi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgtLjX3wZi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tgtLjX3wZi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgtLjX3wZi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgtLjX3wZi .dropdown-item.active,
.cid-tgtLjX3wZi .dropdown-item:active {
  background-color: transparent;
}
.cid-tgtLjX3wZi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgtLjX3wZi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgtLjX3wZi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgtLjX3wZi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgtLjX3wZi ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tgtLjX3wZi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgtLjX3wZi button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tgtLjX3wZi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-tgtLjX3wZi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgtLjX3wZi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgtLjX3wZi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgtLjX3wZi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgtLjX3wZi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgtLjX3wZi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgtLjX3wZi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgtLjX3wZi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgtLjX3wZi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tgtLjX3wZi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tgtLjX3wZi .navbar {
    height: 70px;
  }
  .cid-tgtLjX3wZi .navbar.opened {
    height: auto;
  }
  .cid-tgtLjX3wZi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgtLjX3wZi .mbr-section-btn .btn,
.cid-tgtLjX3wZi .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-tgtLjX3wZi .mbr-section-btn .btn:hover,
.cid-tgtLjX3wZi .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-tgtLjX3wZi .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tgtLjX3wZi .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tgtLjX3wZi .navbar-caption:hover {
  color: #0000cc;
}
.cid-tgtLjX3wZi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgtLjX3wZi .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tgtLjX3wZi .text_widget {
  color: #ffffff;
}
.cid-tgtLjX3wZi .mbr-section-subtitle,
.cid-tgtLjX3wZi .text_widget {
  text-align: left;
}
.cid-tgtLjX3wZi a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tgtLkgIPdI {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #cccccb;
}
.cid-tgtLkgIPdI .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tgtLkgIPdI .row {
    padding: 0 12px;
  }
}
.cid-tgtLkgIPdI .row::after {
  content: '';
  display: block;
  background: #1111a2;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tgtLkgIPdI .row::after {
    display: none;
  }
}
.cid-tgtLkgIPdI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtLkgIPdI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtLkgIPdI .image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tgtLkgIPdI .image-wrapper {
    padding: 0 0 60px;
  }
}
.cid-tgtLkgIPdI .image-wrapper::before {
  content: '';
  display: block;
  background-color: #008000;
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 5% 100% 5% 5%;
  padding: 0px 0px 0px 0px;
}
@media (max-width: 992px) {
  .cid-tgtLkgIPdI .image-wrapper::before {
    display: none;
  }
}
.cid-tgtLkgIPdI .image-wrapper::after {
  content: '';
  display: block;
  background-color: #fcf600;
  position: absolute;
  top: 120px;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 5% 5% 100% 5%;
  padding: 10px 10px 10px 10px;
}
@media (max-width: 992px) {
  .cid-tgtLkgIPdI .image-wrapper::after {
    display: none;
  }
}
.cid-tgtLkgIPdI .image-wrapper img {
  width: 100%;
  height: 626px;
  object-fit: cover;
  border-radius: 5% 5% 20% 5%;
}
.cid-tgtLkgIPdI .title {
  display: flex;
  align-items: center;
}
.cid-tgtLkgIPdI .title-wrapper {
  z-index: 1;
}
.cid-tgtLkgIPdI .title-wrapper .mbr-section-subtitle {
  margin-bottom: 15px;
}
.cid-tgtLkgIPdI .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
.cid-tgtLkgIPdI .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tgtLkgIPdI .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #008000;
  box-shadow: none;
}
.cid-tgtLkgIPdI .title-wrapper .mbr-section-btn .btn:hover {
  background: #008000 !important;
  box-shadow: none !important;
}
.cid-tgtLkgIPdI .mbr-section-title {
  color: #1e4381;
}
.cid-tgtLkgIPdI .mbr-section-subtitle {
  color: #f3722f;
}
.cid-tgtLkgIPdI .mbr-text {
  color: #000000;
}
.cid-tgtLkgIPdI .mbr-section-title,
.cid-tgtLkgIPdI .mbr-section-btn {
  color: #1111a2;
}
.cid-v53GLN0Q0L {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f1f1f2;
}
.cid-v53GLN0Q0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v53GLN0Q0L .row {
  padding: 0 110px;
  position: relative;
  z-index: 99;
  justify-content: center;
  display: flex;
}
@media (max-width: 992px) {
  .cid-v53GLN0Q0L .row {
    padding: 0 12px;
  }
}
.cid-v53GLN0Q0L .row::after {
  content: '';
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0;
  background: #ffffff;
  border-radius: 100% 5% 5% 5%;
  left: 80px;
  margin: 10px 10px 10px 10px ;
  background-color: #008000;
}
@media (max-width: 992px) {
  .cid-v53GLN0Q0L .row::after {
    display: none;
  }
}
.cid-v53GLN0Q0L .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 5% 5% 5% 100%;
  margin: 10px 10px 10px 0px ;
  background-color: #c10000;
}
.cid-v53GLN0Q0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v53GLN0Q0L .item1 {
  padding: 10px;
  min-height: 500px;
  z-index: 01;
}
.cid-v53GLN0Q0L .item1 .item-wrapper {
  position: relative;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-v53GLN0Q0L .item1 .item-wrapper:hover::before {
  opacity: .7;
}
.cid-v53GLN0Q0L .item1 .item-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c10000;
  opacity: .9;
  transition: all .3s ease;
  border-radius: 0 0 20% 0;
  z-index: 1;
}
.cid-v53GLN0Q0L .item1 .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.cid-v53GLN0Q0L .item1 .item-wrapper .text-wrapper {
  z-index: 1;
}
.cid-v53GLN0Q0L .item1 .item-wrapper .text-wrapper .mbr-card-title {
  margin-bottom: 8px;
}
.cid-v53GLN0Q0L .item1 .item-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v53GLN0Q0L .item1 .item-wrapper .mbr-section-btn {
  z-index: 1;
}
.cid-v53GLN0Q0L .item1 .item-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #008000;
  box-shadow: none;
  margin-bottom: 0;
}
.cid-v53GLN0Q0L .item1 .item-wrapper .mbr-section-btn .btn:hover {
  background: #008000 !important;
  box-shadow: none !important;
}
.cid-v53GLN0Q0L .item2 {
  padding: 10px;
  min-height: 500px;
  z-index: 1;
}
.cid-v53GLN0Q0L .item2 .item-wrapper {
  position: relative;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-v53GLN0Q0L .item2 .item-wrapper:hover::before {
  opacity: .7;
}
.cid-v53GLN0Q0L .item2 .item-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #008000;
  opacity: .9;
  transition: all .3s ease;
  border-radius: 0 0 20% 0;
  z-index: 1;
}
.cid-v53GLN0Q0L .item2 .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.cid-v53GLN0Q0L .item2 .item-wrapper .text-wrapper {
  z-index: 1;
}
.cid-v53GLN0Q0L .item2 .item-wrapper .text-wrapper .mbr-card-title {
  margin-bottom: 8px;
}
.cid-v53GLN0Q0L .item2 .item-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v53GLN0Q0L .item2 .item-wrapper .mbr-section-btn {
  z-index: 1;
}
.cid-v53GLN0Q0L .item2 .item-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #008000;
  box-shadow: none;
  margin-bottom: 0;
}
.cid-v53GLN0Q0L .item2 .item-wrapper .mbr-section-btn .btn:hover {
  background: #008000 !important;
  box-shadow: none !important;
}
.cid-v53GLN0Q0L .item3 {
  padding: 10px;
  min-height: 500px;
  z-index: 1;
}
.cid-v53GLN0Q0L .item3 .item-wrapper {
  position: relative;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-v53GLN0Q0L .item3 .item-wrapper:hover::before {
  opacity: .7;
}
.cid-v53GLN0Q0L .item3 .item-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1111a2;
  opacity: .9;
  transition: all .3s ease;
  border-radius: 0 0 20% 0;
  z-index: 1;
}
.cid-v53GLN0Q0L .item3 .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.cid-v53GLN0Q0L .item3 .item-wrapper .text-wrapper {
  z-index: 1;
}
.cid-v53GLN0Q0L .item3 .item-wrapper .text-wrapper .mbr-card-title {
  margin-bottom: 8px;
}
.cid-v53GLN0Q0L .item3 .item-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v53GLN0Q0L .item3 .item-wrapper .mbr-section-btn {
  z-index: 1;
}
.cid-v53GLN0Q0L .item3 .item-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #008000;
  box-shadow: none;
  margin-bottom: 0;
}
.cid-v53GLN0Q0L .item3 .item-wrapper .mbr-section-btn .btn:hover {
  background: #008000 !important;
  box-shadow: none !important;
}
.cid-v53GLN0Q0L .mbr-card-title {
  color: #ffffff;
}
.cid-v53GLN0Q0L .mbr-text {
  color: #ffffff;
}
.cid-v53GLN0Q0L .mbr-card-title,
.cid-v53GLN0Q0L .mbr-section-btn {
  color: #fcf600;
}
.cid-v5gL9rPmoD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v5gL9rPmoD .row {
  justify-content: center;
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5gL9rPmoD .row {
    padding: 0 12px;
  }
}
.cid-v5gL9rPmoD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5gL9rPmoD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5gL9rPmoD .card-wrapper {
  margin-bottom: 35px;
}
.cid-v5gL9rPmoD .card-wrapper .mbr-number {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v5gL9rPmoD .card-wrapper .mbr-number {
    margin-bottom: 0;
  }
}
.cid-v5gL9rPmoD .card-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .cid-v5gL9rPmoD .card-wrapper .mbr-section-title {
    margin-bottom: 0;
  }
}
.cid-v5gL9rPmoD .card-wrapper .mbr-text {
  margin: 0;
}
.cid-v5gL9rPmoD .mbr-number {
  color: #c10000;
}
.cid-v5gL9rPmoD .mbr-section-title {
  color: #1111a2;
}
.cid-v5gL9rPmoD .mbr-text {
  color: #000000;
}
.cid-tgtLZhdhTA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5372a6;
}
.cid-tgtLZhdhTA .row {
  padding: 0 110px;
  justify-content: center;
}
.cid-tgtLZhdhTA .row::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 100% 5% 5% 5%;
  margin: 10px 0px 10px 20px ;
  background-color: #fcf600;
}
.cid-tgtLZhdhTA .row::after {
  content: '';
  position: absolute;
  top: 0;
  right: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 5% 5% 5% 100%;
  margin: 10px 10px 10px 20px ;
  background-color: #1111a2;
}
@media (max-width: 992px) {
  .cid-tgtLZhdhTA .row {
    padding: 0 12px;
  }
}
.cid-tgtLZhdhTA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtLZhdhTA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtLZhdhTA .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-tgtLZhdhTA .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tgtLZhdhTA .desc-wrapper {
  position: relative;
}
.cid-tgtLZhdhTA .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tgtLZhdhTA .desc-wrapper .mbr-desc span {
  color: #c10000;
}
.cid-tgtLZhdhTA .cards {
  margin-top: 30px;
}
.cid-tgtLZhdhTA .cards::before {
  display: none;
}
.cid-tgtLZhdhTA .cards::after {
  display: none;
}
.cid-tgtLZhdhTA .cards .card {
  margin-bottom: 30px;
}
.cid-tgtLZhdhTA .cards .card .mbr-number {
  margin-bottom: 10px;
}
.cid-tgtLZhdhTA .cards .card .mbr-card-title {
  margin-bottom: 8px;
}
.cid-tgtLZhdhTA .mbr-section-title {
  color: #c10000;
}
.cid-tgtLZhdhTA .mbr-text {
  color: #ffffff;
}
.cid-tgtLZhdhTA .mbr-desc {
  color: #ffffff;
}
.cid-tgtLZhdhTA .mbr-number {
  color: #ee2947;
}
.cid-tgtLZhdhTA .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tgtLZhdhTA .mbr-card-text {
  color: #ffffff;
  text-align: center;
}
.cid-tgtPdzlFVO {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tgtPdzlFVO .row {
  padding: 0 110px;
  display: flex;
  justify-content: center;
}
.cid-tgtPdzlFVO .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 5% 5% 5% 100%;
  margin: 10px 10px 10px 0px ;
  background-color: #1111a2;
}
.cid-tgtPdzlFVO .row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 100% 5% 5% 5%;
  margin: 10px 10px 10px 10px ;
  background-color: #fcf600;
}
@media (max-width: 992px) {
  .cid-tgtPdzlFVO .row {
    padding: 0 12px;
  }
}
.cid-tgtPdzlFVO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtPdzlFVO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtPdzlFVO .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tgtPdzlFVO .card {
  margin-bottom: 25px;
}
.cid-tgtPdzlFVO .card .mbr-card-title {
  margin-bottom: 10px;
}
.cid-tgtPdzlFVO .card .mbr-text {
  margin-bottom: 0;
}
.cid-tgtPdzlFVO .mbr-section-title {
  color: #c10000;
}
.cid-tgtPdzlFVO .mbr-card-title {
  color: #008000;
}
.cid-tgtPdzlFVO .mbr-text {
  color: #000000;
}
.cid-tgtNQcUxy4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e4381;
}
.cid-tgtNQcUxy4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtNQcUxy4 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .row {
    padding: 0 12px;
  }
}
.cid-tgtNQcUxy4 .row::after {
  content: '';
  display: block;
  position: absolute;
  width: 38%;
  height: 80%;
  right: 0;
  top: 0;
  background: #1e4381;
  border-radius: 0 0 100% 0;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .row::after {
    display: none;
  }
}
.cid-tgtNQcUxy4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtNQcUxy4 .image-wrapper {
  padding: 0 30px 0 80px;
  position: relative;
}
.cid-tgtNQcUxy4 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #fcf600;
  position: absolute;
  top: 0;
  left: -1rem;
  width: 152px;
  height: 80px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .image-wrapper::before {
    display: none;
  }
}
.cid-tgtNQcUxy4 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #c10000;
  position: absolute;
  top: 80px;
  left: -1rem;
  width: 152px;
  height: 80px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .image-wrapper::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.cid-tgtNQcUxy4 .image-wrapper img {
  max-width: 460px;
  min-width: 300px;
  height: 460px;
  object-fit: cover;
  border-radius: 0 250px 250px 250px;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .image-wrapper img {
    min-width: auto;
    height: 400px;
  }
}
.cid-tgtNQcUxy4 .text-wrapper {
  padding-left: 40px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .text-wrapper {
    padding: 0;
  }
}
.cid-tgtNQcUxy4 .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .text-wrapper .mbr-section-title {
    margin: 10px 0 20px;
  }
}
.cid-tgtNQcUxy4 .text-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .text-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-tgtNQcUxy4 .text-wrapper .row.items {
  padding: 0;
}
.cid-tgtNQcUxy4 .text-wrapper .row.items::after {
  display: none;
}
.cid-tgtNQcUxy4 .text-wrapper .row.items .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tgtNQcUxy4 .text-wrapper .row.items .item {
    margin-bottom: 20px;
  }
}
.cid-tgtNQcUxy4 .text-wrapper .row.items .item .mbr-number {
  margin: 0;
}
.cid-tgtNQcUxy4 .text-wrapper .row.items .item .mbr-text {
  margin: 0;
}
.cid-tgtNQcUxy4 .text-wrapper .row.items .item .mbr-desc {
  margin: 0;
}
.cid-tgtNQcUxy4 .mbr-section-title {
  color: #fcf600;
}
.cid-tgtNQcUxy4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgtNQcUxy4 .mbr-number {
  color: #c10000;
  text-align: left;
}
.cid-tgtNQcUxy4 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tgtNQcUxy4 .mbr-desc {
  color: #1e4381;
}
.cid-tgtNStCV7I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tgtNStCV7I .row {
  padding: 0 110px;
  position: relative;
}
.cid-tgtNStCV7I .row::before {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  display: block;
  width: 45%;
  height: 140%;
  background-color: #cccccb;
  border-radius: 0 0 100% 0;
  right: auto;
  left: 0;
  border-radius: 0 0 0 100%;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .row::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .row {
    padding: 0 12px;
  }
}
.cid-tgtNStCV7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtNStCV7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtNStCV7I .image {
  position: relative;
}
.cid-tgtNStCV7I .image::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  top: -4rem;
  left: 6rem;
  width: 100px;
  height: 100px;
  z-index: 2;
  left: auto;
  right: 6rem;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .image::before {
    display: none;
  }
}
.cid-tgtNStCV7I .image::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  top: -2.7rem;
  left: 7.3rem;
  width: 60px;
  height: 60px;
  border-radius: 0 100% 0 0;
  z-index: 3;
  left: auto;
  right: 7.3rem;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .image::after {
    display: none;
  }
}
.cid-tgtNStCV7I .image-wrapper {
  position: relative;
  padding-right: 85px;
  padding-right: 0;
  padding-left: 85px;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.cid-tgtNStCV7I .image-wrapper img {
  max-width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 0 0 0 75%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 75% 0;
}
.cid-tgtNStCV7I .image-wrapper::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  right: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #ee2947;
  right: auto;
  left: 0;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .image-wrapper::before {
    display: none;
  }
}
.cid-tgtNStCV7I .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  background-color: #f3722f;
  border-radius: 100%;
  right: auto;
  left: 3rem;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .image-wrapper::after {
    display: none;
  }
}
.cid-tgtNStCV7I .text-wrapper {
  padding-left: 40px;
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .text-wrapper {
    padding: 0;
  }
}
.cid-tgtNStCV7I .text-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-tgtNStCV7I .text-wrapper .mbr-section-title {
    margin: 10px 0;
  }
}
.cid-tgtNStCV7I .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tgtNStCV7I .mbr-section-title {
  color: #008000;
}
.cid-tgtNStCV7I .mbr-text {
  color: #000000;
}
.cid-tgtLOX35BO {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #162148;
}
.cid-tgtLOX35BO .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #1111a2;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-tgtLOX35BO .position-relative::after {
    display: none;
  }
}
.cid-tgtLOX35BO .item:focus,
.cid-tgtLOX35BO span:focus {
  outline: none;
}
.cid-tgtLOX35BO .item-wrapper {
  position: relative;
}
.cid-tgtLOX35BO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-tgtLOX35BO .embla__slide {
    min-width: 95%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tgtLOX35BO .embla__button--next,
.cid-tgtLOX35BO .embla__button--prev {
  display: flex;
}
.cid-tgtLOX35BO .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #fcf600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tgtLOX35BO .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tgtLOX35BO .embla__button:hover {
  background: transparent;
  color: #fcf600;
}
.cid-tgtLOX35BO .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-tgtLOX35BO .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-tgtLOX35BO .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-tgtLOX35BO .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-tgtLOX35BO .embla__button {
    top: auto;
  }
}
.cid-tgtLOX35BO .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tgtLOX35BO .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-tgtLOX35BO .embla__viewport {
    width: 100%;
  }
}
.cid-tgtLOX35BO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tgtLOX35BO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tgtLOX35BO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tgtLOX35BO .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-tgtLOX35BO .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-tgtLOX35BO .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-tgtLOX35BO .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-tgtLOX35BO .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-tgtLOX35BO .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-tgtLOX35BO .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tgtLOX35BO .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-tgtLOX35BO .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #1111a2;
}
.cid-tgtLOX35BO .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tgtLOX35BO .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tgtLOX35BO .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-tgtLOX35BO .slide-content .item-text {
    padding: 0 67px;
  }
}
@media (max-width: 425px) {
  .cid-tgtLOX35BO .slide-content .item-text {
    padding: 0 90px;
    font-size: 80%;
  }
}
.cid-tgtLOX35BO .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-tgtLOX35BO .slide-content .item-text span {
    display: none;
  }
}
.cid-tgtLOX35BO .slide-content .item-text .mbr-text {
  margin-bottom: 0;
  font-size: 80%;
}
.cid-tgtLOX35BO .mbr-name {
  color: #fcf600;
}
.cid-tgtLOX35BO .mbr-desc {
  color: #ffffff;
}
.cid-tgtLOX35BO .mbr-text {
  color: #ffffff;
}
.cid-v5cA07mqbv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bcbfca;
}
.cid-v5cA07mqbv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5cA07mqbv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5cA07mqbv .image-wrapper {
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-v5cA07mqbv .image-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v5cA07mqbv .image-wrapper {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.cid-v5cA07mqbv .image-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 15% 5% 15% 5%;
}
@media (max-width: 992px) {
  .cid-v5cA07mqbv .image-wrapper img {
    height: 300px;
  }
}
.cid-v5cA07mqbv .content-wrapper .mbr-label {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v5cA07mqbv .content-wrapper .mbr-label {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card {
  position: relative;
  padding: 0 0 15px 0;
  background-color: transparent;
  border-bottom: 1px solid #c10000;
  border-radius: 0 !important;
  margin-bottom: 20px;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card:last-child {
  border-bottom: none;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header .panel-title {
  width: 100%;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header .panel-title .title-wrap {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .panel-title-edit {
  margin-bottom: 0;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #c10000;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header .panel-title .title-wrap .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper {
  background-color: #e2fa0e;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .title-wrap .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #000000;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin-top: 15px;
}
.cid-v5cA07mqbv .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v5cA07mqbv .mbr-label {
  color: #c10000;
}
.cid-v5cA07mqbv .panel-title-edit {
  color: #000000;
}
.cid-v5cA07mqbv .panel-text {
  color: #000000;
}
.cid-v6ZxlVDV2E {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f1f1f2;
}
.cid-v6ZxlVDV2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6ZxlVDV2E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6ZxlVDV2E .row {
  padding: 1rem;
}
.cid-v6ZxlVDV2E .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-v6ZxlVDV2E .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v6ZxlVDV2E .title-wrapper {
    padding: 0;
  }
}
.cid-v6ZxlVDV2E .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v6ZxlVDV2E .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v6ZxlVDV2E .cards .card {
  margin-bottom: 20px;
}
.cid-v6ZxlVDV2E .cards .card .mbr-number {
  margin: 0;
}
.cid-v6ZxlVDV2E .cards .card .mbr-desc {
  margin: 0;
}
.cid-v6ZxlVDV2E .mbr-section-title {
  color: #ee2947;
}
.cid-v6ZxlVDV2E .mbr-text {
  color: #1e4381;
}
.cid-v6ZxlVDV2E .mbr-number {
  color: #ee2947;
}
.cid-v6ZxlVDV2E .mbr-desc {
  color: #1e4381;
}
.cid-v4ScjqoskI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v4ScjqoskI .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v4ScjqoskI .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v4ScjqoskI .container-fluid {
    padding: 0 24px;
  }
}
.cid-v4ScjqoskI .container {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v4ScjqoskI .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v4ScjqoskI .container {
    padding: 0 24px;
  }
}
.cid-v4ScjqoskI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-v4ScjqoskI .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v4ScjqoskI .embla__slide .slide-content {
  width: 100%;
}
.cid-v4ScjqoskI .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-v4ScjqoskI .embla__button--next,
.cid-v4ScjqoskI .embla__button--prev {
  display: flex;
}
.cid-v4ScjqoskI .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #c10000 !important;
  color: #0000cc !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-v4ScjqoskI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v4ScjqoskI .embla__button:hover {
  opacity: .5 !important;
}
.cid-v4ScjqoskI .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-v4ScjqoskI .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-v4ScjqoskI .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-v4ScjqoskI .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v4ScjqoskI .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v4ScjqoskI .embla {
    padding: 0;
  }
}
.cid-v4ScjqoskI .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v4ScjqoskI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v4ScjqoskI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v4ScjqoskI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#custom-html-18 {
  /* Type valid CSS here */
}
#custom-html-18 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-18 p {
  font-size: 60px;
  color: #777;
}
#custom-html-18 .row {
  padding: 0 110px;
  position: relative;
  z-index: 99;
  justify-content: center;
  display: flex;
}
@media (max-width: 992px) {
  #custom-html-18 .row {
    padding: 0 12px;
  }
}
#custom-html-18 .row::after {
  content: '';
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0;
  border-radius: 100% 5% 5% 5%;
  left: 80px;
  margin: 10px 10px 10px 10px ;
  background-color: #008000;
}
@media (max-width: 992px) {
  #custom-html-18 .row::after {
    display: none;
  }
}
#custom-html-18 .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 5% 5% 5% 100%;
  margin: 10px 10px 10px 0px ;
  background-color: #c10000;
}
.cid-v4OzeT9XcV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ee2947;
}
.cid-v4OzeT9XcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4OzeT9XcV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4OzeT9XcV .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-v4OzeT9XcV .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v4OzeT9XcV .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v4OzeT9XcV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v4OzeT9XcV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v4OzeT9XcV .content-head {
  max-width: 800px;
}
.cid-v4OzeT9XcV .mbr-section-title {
  color: #ffffff;
}
.cid-v5PHnS0tAd.popup-builder {
  background-color: #ffffff;
}
.cid-v5PHnS0tAd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5PHnS0tAd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5PHnS0tAd .modal-content,
.cid-v5PHnS0tAd .modal-dialog {
  height: auto;
}
.cid-v5PHnS0tAd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5PHnS0tAd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5PHnS0tAd .form-wrapper .mbr-form .form-group,
  .cid-v5PHnS0tAd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5PHnS0tAd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5PHnS0tAd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5PHnS0tAd .mbr-text {
  text-align: center;
}
.cid-v5PHnS0tAd .pt-0 {
  padding-top: 0 !important;
}
.cid-v5PHnS0tAd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5PHnS0tAd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5PHnS0tAd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5PHnS0tAd .modal-open {
  overflow: hidden;
}
.cid-v5PHnS0tAd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5PHnS0tAd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5PHnS0tAd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5PHnS0tAd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5PHnS0tAd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5PHnS0tAd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5PHnS0tAd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5PHnS0tAd .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v5PHnS0tAd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5PHnS0tAd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  background-color: #000;
}
.cid-v5PHnS0tAd .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5PHnS0tAd .modal-backdrop.show {
  opacity: .5;
}
.cid-v5PHnS0tAd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5PHnS0tAd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5PHnS0tAd .modal-header {
    padding: 1rem;
  }
}
.cid-v5PHnS0tAd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5PHnS0tAd .modal-header .close svg {
  fill: #353535;
}
.cid-v5PHnS0tAd .modal-header .close:hover {
  opacity: 1;
}
.cid-v5PHnS0tAd .modal-header .close:focus {
  outline: none;
}
.cid-v5PHnS0tAd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5PHnS0tAd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5PHnS0tAd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5PHnS0tAd .modal-body {
    padding: 1rem;
  }
}
.cid-v5PHnS0tAd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5PHnS0tAd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5PHnS0tAd .modal-footer {
    padding: 1rem;
  }
}
.cid-v5PHnS0tAd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5PHnS0tAd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5PHnS0tAd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5PHnS0tAd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5PHnS0tAd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5PHnS0tAd .modal-lg,
  .cid-v5PHnS0tAd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5PHnS0tAd .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5PHnS0tAd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5PHnS0tAd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5PHnS0tAd .form-group {
  margin-bottom: 1rem;
}
.cid-v5PHnS0tAd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5PHnS0tAd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5PHnS0tAd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5PHnS0tAd .mbr-section-btn {
  margin: 0;
}
.cid-v5PHnS0tAd .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5PLgTLXlr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v5PLgTLXlr .container-fluid,
.cid-v5PLgTLXlr .container {
  position: relative;
}
.cid-v5PLgTLXlr .container-fluid::before,
.cid-v5PLgTLXlr .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .container-fluid::before,
  .cid-v5PLgTLXlr .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .container-fluid::before,
  .cid-v5PLgTLXlr .container::before {
    display: none;
  }
}
.cid-v5PLgTLXlr .media-wrap1 {
  height: 300px;
}
.cid-v5PLgTLXlr .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PLgTLXlr .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v5PLgTLXlr .media-wrap2 {
  height: 300px;
}
.cid-v5PLgTLXlr .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PLgTLXlr .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v5PLgTLXlr .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v5PLgTLXlr .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v5PLgTLXlr .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v5PLgTLXlr .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v5PLgTLXlr .list .item-wrap:hover {
  opacity: .7;
}
.cid-v5PLgTLXlr .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .copyright {
    background-color: #232323;
  }
}
.cid-v5PLgTLXlr .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .mbr-text {
  color: #bcbfca;
}
.cid-v5PLgTLXlr .mbr-desc {
  color: #ffffff;
}
.cid-v5PLgTLXlr .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v5PLgTLXlr .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v5PLgTLXlr .mbr-text,
.cid-v5PLgTLXlr .icon-wrapper {
  color: #ffffff;
}
.cid-tgtEvN42mR {
  z-index: 1000;
  width: 100%;
}
.cid-tgtEvN42mR .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-tgtEvN42mR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-tgtEvN42mR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tgtEvN42mR .menu_box .navbar.opened,
  .cid-tgtEvN42mR .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tgtEvN42mR nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tgtEvN42mR .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tgtEvN42mR .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tgtEvN42mR .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tgtEvN42mR .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tgtEvN42mR .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tgtEvN42mR .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-tgtEvN42mR .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tgtEvN42mR .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tgtEvN42mR .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tgtEvN42mR .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tgtEvN42mR .offcanvas-body .mbr-text,
  .cid-tgtEvN42mR .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tgtEvN42mR .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tgtEvN42mR .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tgtEvN42mR .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-tgtEvN42mR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tgtEvN42mR .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tgtEvN42mR .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tgtEvN42mR .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tgtEvN42mR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tgtEvN42mR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tgtEvN42mR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tgtEvN42mR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tgtEvN42mR li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tgtEvN42mR li.nav-item:hover {
    opacity: .8;
  }
  .cid-tgtEvN42mR .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tgtEvN42mR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tgtEvN42mR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tgtEvN42mR .nav-item {
    margin: 0 !important;
  }
}
.cid-tgtEvN42mR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tgtEvN42mR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tgtEvN42mR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tgtEvN42mR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tgtEvN42mR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tgtEvN42mR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tgtEvN42mR .offcanvas_box {
    display: none;
  }
}
.cid-tgtEvN42mR .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tgtEvN42mR .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tgtEvN42mR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tgtEvN42mR .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-tgtEvN42mR .container {
  display: flex;
  margin: auto;
}
.cid-tgtEvN42mR .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tgtEvN42mR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tgtEvN42mR .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-tgtEvN42mR .navbar-caption {
  color: #1e4381;
}
.cid-tgtEvN42mR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tgtEvN42mR .navbar-nav {
    margin: 0;
  }
}
.cid-tgtEvN42mR .dropdown-menu,
.cid-tgtEvN42mR .navbar.opened {
  background-color: true !important;
}
.cid-tgtEvN42mR .nav-item:focus,
.cid-tgtEvN42mR .nav-link:focus {
  outline: none;
}
.cid-tgtEvN42mR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tgtEvN42mR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tgtEvN42mR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tgtEvN42mR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tgtEvN42mR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tgtEvN42mR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tgtEvN42mR .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tgtEvN42mR .navbar.opened {
  transition: all 0.3s;
}
.cid-tgtEvN42mR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tgtEvN42mR .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-tgtEvN42mR .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tgtEvN42mR .navbar.collapsed {
  justify-content: center;
}
.cid-tgtEvN42mR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tgtEvN42mR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tgtEvN42mR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tgtEvN42mR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tgtEvN42mR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tgtEvN42mR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tgtEvN42mR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tgtEvN42mR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tgtEvN42mR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tgtEvN42mR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tgtEvN42mR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tgtEvN42mR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tgtEvN42mR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tgtEvN42mR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tgtEvN42mR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tgtEvN42mR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tgtEvN42mR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tgtEvN42mR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tgtEvN42mR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tgtEvN42mR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tgtEvN42mR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tgtEvN42mR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tgtEvN42mR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tgtEvN42mR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tgtEvN42mR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tgtEvN42mR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tgtEvN42mR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tgtEvN42mR .dropdown-item.active,
.cid-tgtEvN42mR .dropdown-item:active {
  background-color: transparent;
}
.cid-tgtEvN42mR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tgtEvN42mR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tgtEvN42mR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tgtEvN42mR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tgtEvN42mR ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tgtEvN42mR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tgtEvN42mR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tgtEvN42mR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-tgtEvN42mR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tgtEvN42mR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgtEvN42mR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tgtEvN42mR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tgtEvN42mR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgtEvN42mR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tgtEvN42mR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tgtEvN42mR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tgtEvN42mR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tgtEvN42mR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tgtEvN42mR .navbar {
    height: 70px;
  }
  .cid-tgtEvN42mR .navbar.opened {
    height: auto;
  }
  .cid-tgtEvN42mR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tgtEvN42mR .mbr-section-btn .btn,
.cid-tgtEvN42mR .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-tgtEvN42mR .mbr-section-btn .btn:hover,
.cid-tgtEvN42mR .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-tgtEvN42mR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tgtEvN42mR .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tgtEvN42mR .navbar-caption:hover {
  color: #0000cc;
}
.cid-tgtEvN42mR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgtEvN42mR .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tgtEvN42mR .text_widget {
  color: #ffffff;
}
.cid-tgtEvN42mR .mbr-section-subtitle,
.cid-tgtEvN42mR .text_widget {
  text-align: left;
}
.cid-tgtEvN42mR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tgtEUsSL8X {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f1f1f2;
}
.cid-tgtEUsSL8X .row::after {
  content: '';
  display: block;
  background: #ee2947;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .row::after {
    display: none;
  }
}
.cid-tgtEUsSL8X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtEUsSL8X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtEUsSL8X .image {
  position: relative;
}
.cid-tgtEUsSL8X .image::before {
  content: '';
  display: block;
  background: #1111a2;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 0 0 10rem 0;
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .image::before {
    display: none;
  }
}
.cid-tgtEUsSL8X .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-tgtEUsSL8X .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #fcf600;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .image-wrapper::before {
    display: none;
  }
}
.cid-tgtEUsSL8X .image-wrapper::after {
  content: '';
  display: block;
  background: #008000;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .image-wrapper::after {
    display: none;
  }
}
.cid-tgtEUsSL8X .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 50% 0 0;
  z-index: 1;
}
.cid-tgtEUsSL8X .title {
  display: flex;
  align-items: center;
}
.cid-tgtEUsSL8X .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-tgtEUsSL8X .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tgtEUsSL8X .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tgtEUsSL8X .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-tgtEUsSL8X .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-tgtEUsSL8X .mbr-section-title {
  color: #1111a2;
}
.cid-tgtEUsSL8X .mbr-text {
  color: #000000;
}
.cid-tgtG3xWxwQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #c10000;
}
.cid-tgtG3xWxwQ .container,
.cid-tgtG3xWxwQ .container-fluid {
  position: relative;
}
.cid-tgtG3xWxwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtG3xWxwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtG3xWxwQ .item:first-child {
  padding-right: 0;
  padding-right: 16px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tgtG3xWxwQ .item:first-child {
    padding: 0 12px;
  }
}
@media (max-width: 991px) {
  .cid-tgtG3xWxwQ .item:first-child {
    padding: 0 12px;
  }
}
.cid-tgtG3xWxwQ .item:last-child {
  padding-left: 0;
  padding-left: 16px;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tgtG3xWxwQ .item:last-child {
    padding: 0 12px;
  }
}
@media (max-width: 991px) {
  .cid-tgtG3xWxwQ .item:last-child {
    padding: 0 12px;
  }
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper {
  background-color: #1e4381;
  height: 100%;
  padding: 70px 16px 80px 110px;
  z-index: 1;
  position: relative;
  padding: 70px 110px 80px 16px;
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper {
    padding: 70px 12px 80px;
  }
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper {
    padding: 70px 12px 80px;
  }
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #1111a2;
  display: none;
  left: auto;
  right: 0;
  border-radius: 0 0 0 100%;
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper::before {
    display: none;
  }
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
  display: none;
  left: auto;
  right: 80px;
  border-radius: 0 0 0 100%;
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper::after {
    display: none;
  }
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-number {
  margin-bottom: 20px;
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-section-title {
  margin: 0 -110px 25px 0;
  margin: 0 0 25px -110px;
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-section-title {
    margin: 0 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-section-title {
    margin: 0 0 25px;
  }
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #fcf600;
  box-shadow: none;
  position: relative;
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-section-btn .btn span {
  position: absolute;
  right: -9%;
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-section-btn .btn:hover {
  color: #0000cc !important;
  background: #fcf600 !important;
  box-shadow: none !important;
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .title-wrapper .mbr-section-btn .btn:hover span {
  color: #fcf600;
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .image-wrapper {
  position: relative;
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .image-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: #000000;
  opacity: .2;
  border-radius: 0 0 300px 0;
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .image-wrapper::before {
    border-radius: 0 0 100px 0;
  }
}
.cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .image-wrapper img {
  width: 100%;
  max-height: 500px;
  border-radius: 0 0 300px 0;
  border-radius: 0 0 0 300px;
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .image-wrapper img {
    border-radius: 0 0 100px 0;
  }
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .tab-content .tab-pane .row .item .image-wrapper img {
    border-radius: 0 0 0 100px;
  }
}
.cid-tgtG3xWxwQ .nav-tabs {
  position: absolute;
  right: 110px;
  top: 9rem;
  display: block;
  border: none;
  right: auto;
  left: 110px;
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .nav-tabs {
    bottom: 5rem;
    left: 12px;
    right: auto;
    top: auto;
  }
}
@media (max-width: 992px) {
  .cid-tgtG3xWxwQ .nav-tabs {
    bottom: 5rem;
    right: 12px;
    left: auto;
    top: auto;
  }
}
.cid-tgtG3xWxwQ .nav-tabs .nav-item {
  margin-bottom: 30px;
}
.cid-tgtG3xWxwQ .nav-tabs .nav-item .nav-link {
  padding: 7px 15px;
  color: #ffffff;
  border-radius: 0;
}
.cid-tgtG3xWxwQ .nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
}
.cid-tgtG3xWxwQ .mbr-section-title {
  color: #fcf600;
}
.cid-tgtG3xWxwQ .mbr-number {
  color: #ffffff;
}
.cid-tgtF8CAjgl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c10000;
}
.cid-tgtF8CAjgl .row {
  position: relative;
}
.cid-tgtF8CAjgl .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-tgtF8CAjgl .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-tgtF8CAjgl .row::after {
    display: none;
  }
}
.cid-tgtF8CAjgl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtF8CAjgl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtF8CAjgl .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-tgtF8CAjgl .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-tgtF8CAjgl .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-tgtF8CAjgl .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tgtF8CAjgl .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-tgtF8CAjgl .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-tgtF8CAjgl .mbr-section-title {
  color: #ffffff;
}
.cid-tgtF8CAjgl .mbr-section-title,
.cid-tgtF8CAjgl .mbr-section-btn {
  text-align: center;
}
.cid-tgtFkoPfsq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-tgtFkoPfsq .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tgtFkoPfsq .row {
    padding: 0 12px;
  }
}
.cid-tgtFkoPfsq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtFkoPfsq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtFkoPfsq .image-wrapper {
  position: relative;
}
.cid-tgtFkoPfsq .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-tgtFkoPfsq .image-wrapper::before {
    display: none;
  }
}
.cid-tgtFkoPfsq .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-tgtFkoPfsq .image-wrapper::after {
    display: none;
  }
}
.cid-tgtFkoPfsq .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-tgtFkoPfsq .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-tgtFkoPfsq .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-tgtFkoPfsq .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-tgtFkoPfsq .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tgtFkoPfsq .mbr-section-title {
  color: #c10000;
}
.cid-tgtFkoPfsq .mbr-text {
  color: #1e4381;
}
.cid-tgtFviLZrc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #355893;
}
.cid-tgtFviLZrc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgtFviLZrc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgtFviLZrc .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tgtFviLZrc .row {
    padding: 0 12px;
  }
}
.cid-tgtFviLZrc .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #355893;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-tgtFviLZrc .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-tgtFviLZrc .row::after {
    display: none;
  }
}
.cid-tgtFviLZrc .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-tgtFviLZrc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tgtFviLZrc .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-tgtFviLZrc .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tgtFviLZrc .text-wrapper {
    padding: 0;
  }
}
.cid-tgtFviLZrc .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tgtFviLZrc .mbr-section-title {
  color: #000000;
}
.cid-tgtFviLZrc .mbr-text {
  color: #ffffff;
}
.cid-v5soCqaDaC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5soCqaDaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5soCqaDaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5soCqaDaC .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5soCqaDaC .row {
    padding: 0 12px;
  }
}
.cid-v5soCqaDaC .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5soCqaDaC .text-wrapper {
    padding: 0;
  }
}
.cid-v5soCqaDaC .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5soCqaDaC .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5soCqaDaC .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5soCqaDaC .image {
  position: relative;
}
.cid-v5soCqaDaC .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5soCqaDaC .image::before {
    display: none;
  }
}
.cid-v5soCqaDaC .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5soCqaDaC .image::after {
    display: none;
  }
}
.cid-v5soCqaDaC .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5soCqaDaC .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5soCqaDaC .image-wrapper img {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5soCqaDaC .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5soCqaDaC .image-wrapper video {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5soCqaDaC .image-wrapper video {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5soCqaDaC .mbr-section-title {
  color: #1e4381;
}
.cid-v5soCqaDaC .mbr-text {
  color: #1e4381;
}
.cid-v5sy4nuZLr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5sy4nuZLr .row {
  position: relative;
}
.cid-v5sy4nuZLr .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #c10000;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5sy4nuZLr .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #c10000;
  }
}
@media (max-width: 768px) {
  .cid-v5sy4nuZLr .row::after {
    display: none;
  }
}
.cid-v5sy4nuZLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sy4nuZLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sy4nuZLr .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5sy4nuZLr .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5sy4nuZLr .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-v5sy4nuZLr .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5sy4nuZLr .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5sy4nuZLr .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5sy4nuZLr .mbr-section-title {
  color: #ffffff;
}
.cid-v5sy4nuZLr .mbr-section-title,
.cid-v5sy4nuZLr .mbr-section-btn {
  text-align: center;
}
.cid-v5sy5hgTMW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5sy5hgTMW .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5sy5hgTMW .row {
    padding: 0 12px;
  }
}
.cid-v5sy5hgTMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sy5hgTMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sy5hgTMW .image-wrapper {
  position: relative;
}
.cid-v5sy5hgTMW .image-wrapper::before {
  content: '';
  display: block;
  background-color: #008000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5sy5hgTMW .image-wrapper::before {
    display: none;
  }
}
.cid-v5sy5hgTMW .image-wrapper::after {
  content: '';
  display: block;
  background-color: #c10000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5sy5hgTMW .image-wrapper::after {
    display: none;
  }
}
.cid-v5sy5hgTMW .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5sy5hgTMW .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5sy5hgTMW .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5sy5hgTMW .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5sy5hgTMW .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5sy5hgTMW .mbr-section-title {
  color: #1111a2;
}
.cid-v5sy5hgTMW .mbr-text {
  color: #1e4381;
}
.cid-v5sy5WNlbP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #355893;
}
.cid-v5sy5WNlbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sy5WNlbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sy5WNlbP .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5sy5WNlbP .row {
    padding: 0 12px;
  }
}
.cid-v5sy5WNlbP .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #355893;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5sy5WNlbP .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5sy5WNlbP .row::after {
    display: none;
  }
}
.cid-v5sy5WNlbP .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5sy5WNlbP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5sy5WNlbP .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5sy5WNlbP .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5sy5WNlbP .text-wrapper {
    padding: 0;
  }
}
.cid-v5sy5WNlbP .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5sy5WNlbP .mbr-section-title {
  color: #000000;
}
.cid-v5sy5WNlbP .mbr-text {
  color: #ffffff;
}
.cid-v5sy6Qxwor {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5sy6Qxwor .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sy6Qxwor .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sy6Qxwor .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5sy6Qxwor .row {
    padding: 0 12px;
  }
}
.cid-v5sy6Qxwor .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5sy6Qxwor .text-wrapper {
    padding: 0;
  }
}
.cid-v5sy6Qxwor .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5sy6Qxwor .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5sy6Qxwor .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5sy6Qxwor .image {
  position: relative;
}
.cid-v5sy6Qxwor .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #008000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5sy6Qxwor .image::before {
    display: none;
  }
}
.cid-v5sy6Qxwor .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #008000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5sy6Qxwor .image::after {
    display: none;
  }
}
.cid-v5sy6Qxwor .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5sy6Qxwor .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5sy6Qxwor .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5sy6Qxwor .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5sy6Qxwor .mbr-section-title {
  color: #1111a2;
}
.cid-v5sy6Qxwor .mbr-text {
  color: #1e4381;
}
.cid-v5syb7SCwS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1111a2;
}
.cid-v5syb7SCwS .row {
  position: relative;
}
.cid-v5syb7SCwS .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5syb7SCwS .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #008000;
  }
}
@media (max-width: 768px) {
  .cid-v5syb7SCwS .row::after {
    display: none;
  }
}
.cid-v5syb7SCwS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5syb7SCwS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5syb7SCwS .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5syb7SCwS .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5syb7SCwS .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5syb7SCwS .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5syb7SCwS .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5syb7SCwS .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5syb7SCwS .mbr-section-title {
  color: #ffffff;
}
.cid-v5syb7SCwS .mbr-section-title,
.cid-v5syb7SCwS .mbr-section-btn {
  text-align: center;
}
.cid-v5sybQHsbD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5sybQHsbD .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5sybQHsbD .row {
    padding: 0 12px;
  }
}
.cid-v5sybQHsbD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sybQHsbD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sybQHsbD .image-wrapper {
  position: relative;
}
.cid-v5sybQHsbD .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5sybQHsbD .image-wrapper::before {
    display: none;
  }
}
.cid-v5sybQHsbD .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5sybQHsbD .image-wrapper::after {
    display: none;
  }
}
.cid-v5sybQHsbD .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5sybQHsbD .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5sybQHsbD .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5sybQHsbD .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5sybQHsbD .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5sybQHsbD .mbr-section-title {
  color: #1111a2;
}
.cid-v5sybQHsbD .mbr-text {
  color: #1e4381;
}
.cid-v5syctMxC7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #355893;
}
.cid-v5syctMxC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5syctMxC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5syctMxC7 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5syctMxC7 .row {
    padding: 0 12px;
  }
}
.cid-v5syctMxC7 .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #355893;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5syctMxC7 .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5syctMxC7 .row::after {
    display: none;
  }
}
.cid-v5syctMxC7 .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5syctMxC7 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5syctMxC7 .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5syctMxC7 .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5syctMxC7 .text-wrapper {
    padding: 0;
  }
}
.cid-v5syctMxC7 .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5syctMxC7 .mbr-section-title {
  color: #000000;
}
.cid-v5syctMxC7 .mbr-text {
  color: #ffffff;
}
.cid-v5syduhdFb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5syduhdFb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5syduhdFb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5syduhdFb .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5syduhdFb .row {
    padding: 0 12px;
  }
}
.cid-v5syduhdFb .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5syduhdFb .text-wrapper {
    padding: 0;
  }
}
.cid-v5syduhdFb .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5syduhdFb .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5syduhdFb .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5syduhdFb .image {
  position: relative;
}
.cid-v5syduhdFb .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5syduhdFb .image::before {
    display: none;
  }
}
.cid-v5syduhdFb .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5syduhdFb .image::after {
    display: none;
  }
}
.cid-v5syduhdFb .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5syduhdFb .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5syduhdFb .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5syduhdFb .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5syduhdFb .mbr-section-title {
  color: #1111a2;
}
.cid-v5syduhdFb .mbr-text {
  color: #1e4381;
}
.cid-v5sGC8nDVn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.webp");
}
.cid-v5sGC8nDVn .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5sGC8nDVn .row {
    padding: 0 12px;
  }
}
.cid-v5sGC8nDVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sGC8nDVn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sGC8nDVn .title-container {
  display: flex;
  justify-content: center;
}
.cid-v5sGC8nDVn .title-container .title-wrapper {
  max-width: 750px;
  padding: 40px 35px;
  background-color: #ffffff;
}
.cid-v5sGC8nDVn .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5sGC8nDVn .title-container .title-wrapper .mbr-section-subtitle {
  margin-bottom: 8px;
}
.cid-v5sGC8nDVn .mbr-section-title {
  color: #ee2947;
  text-align: center;
}
.cid-v5sGC8nDVn .mbr-section-subtitle {
  color: #1e4381;
  text-align: center;
}
.cid-v5sGz2KffE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v5sGz2KffE .row {
  padding: 0 110px;
  display: flex;
  justify-content: center;
}
.cid-v5sGz2KffE .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5sGz2KffE .row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
@media (max-width: 992px) {
  .cid-v5sGz2KffE .row {
    padding: 0 12px;
  }
}
.cid-v5sGz2KffE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sGz2KffE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sGz2KffE .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-v5sGz2KffE .card {
  margin-bottom: 25px;
}
.cid-v5sGz2KffE .card .mbr-card-title {
  margin-bottom: 10px;
}
.cid-v5sGz2KffE .card .mbr-text {
  margin-bottom: 0;
}
.cid-v5sGz2KffE .mbr-section-title {
  color: #1111a2;
}
.cid-v5sGz2KffE .mbr-card-title {
  color: #ee2947;
}
.cid-v5sGz2KffE .mbr-text {
  color: #1e4381;
}
.cid-v7gpkGK9Rq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #162148;
}
.cid-v7gpkGK9Rq .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #1111a2;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-v7gpkGK9Rq .position-relative::after {
    display: none;
  }
}
.cid-v7gpkGK9Rq .item:focus,
.cid-v7gpkGK9Rq span:focus {
  outline: none;
}
.cid-v7gpkGK9Rq .item-wrapper {
  position: relative;
}
.cid-v7gpkGK9Rq .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-v7gpkGK9Rq .embla__slide {
    min-width: 95%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7gpkGK9Rq .embla__button--next,
.cid-v7gpkGK9Rq .embla__button--prev {
  display: flex;
}
.cid-v7gpkGK9Rq .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #fcf600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7gpkGK9Rq .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7gpkGK9Rq .embla__button:hover {
  background: transparent;
  color: #fcf600;
}
.cid-v7gpkGK9Rq .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpkGK9Rq .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-v7gpkGK9Rq .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpkGK9Rq .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-v7gpkGK9Rq .embla__button {
    top: auto;
  }
}
.cid-v7gpkGK9Rq .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-v7gpkGK9Rq .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-v7gpkGK9Rq .embla__viewport {
    width: 100%;
  }
}
.cid-v7gpkGK9Rq .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7gpkGK9Rq .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7gpkGK9Rq .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7gpkGK9Rq .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-v7gpkGK9Rq .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-v7gpkGK9Rq .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-v7gpkGK9Rq .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-v7gpkGK9Rq .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-v7gpkGK9Rq .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-v7gpkGK9Rq .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v7gpkGK9Rq .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-v7gpkGK9Rq .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #1111a2;
}
.cid-v7gpkGK9Rq .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v7gpkGK9Rq .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v7gpkGK9Rq .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-v7gpkGK9Rq .slide-content .item-text {
    padding: 0 67px;
  }
}
@media (max-width: 425px) {
  .cid-v7gpkGK9Rq .slide-content .item-text {
    padding: 0 90px;
    font-size: 80%;
  }
}
.cid-v7gpkGK9Rq .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-v7gpkGK9Rq .slide-content .item-text span {
    display: none;
  }
}
.cid-v7gpkGK9Rq .slide-content .item-text .mbr-text {
  margin-bottom: 0;
  font-size: 80%;
}
.cid-v7gpkGK9Rq .mbr-name {
  color: #fcf600;
}
.cid-v7gpkGK9Rq .mbr-desc {
  color: #ffffff;
}
.cid-v7gpkGK9Rq .mbr-text {
  color: #ffffff;
}
.cid-v5swN9iflP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v5swN9iflP .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v5swN9iflP .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v5swN9iflP .container-fluid {
    padding: 0 24px;
  }
}
.cid-v5swN9iflP .container {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5swN9iflP .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v5swN9iflP .container {
    padding: 0 24px;
  }
}
.cid-v5swN9iflP .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-v5swN9iflP .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v5swN9iflP .embla__slide .slide-content {
  width: 100%;
}
.cid-v5swN9iflP .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-v5swN9iflP .embla__button--next,
.cid-v5swN9iflP .embla__button--prev {
  display: flex;
}
.cid-v5swN9iflP .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #c10000 !important;
  color: #0000cc !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-v5swN9iflP .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v5swN9iflP .embla__button:hover {
  opacity: .5 !important;
}
.cid-v5swN9iflP .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-v5swN9iflP .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-v5swN9iflP .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-v5swN9iflP .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5swN9iflP .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-v5swN9iflP .embla {
    padding: 0;
  }
}
.cid-v5swN9iflP .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v5swN9iflP .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5swN9iflP .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5swN9iflP .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5PLgTLXlr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v5PLgTLXlr .container-fluid,
.cid-v5PLgTLXlr .container {
  position: relative;
}
.cid-v5PLgTLXlr .container-fluid::before,
.cid-v5PLgTLXlr .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .container-fluid::before,
  .cid-v5PLgTLXlr .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .container-fluid::before,
  .cid-v5PLgTLXlr .container::before {
    display: none;
  }
}
.cid-v5PLgTLXlr .media-wrap1 {
  height: 300px;
}
.cid-v5PLgTLXlr .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PLgTLXlr .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v5PLgTLXlr .media-wrap2 {
  height: 300px;
}
.cid-v5PLgTLXlr .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PLgTLXlr .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v5PLgTLXlr .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v5PLgTLXlr .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v5PLgTLXlr .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v5PLgTLXlr .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v5PLgTLXlr .list .item-wrap:hover {
  opacity: .7;
}
.cid-v5PLgTLXlr .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .copyright {
    background-color: #232323;
  }
}
.cid-v5PLgTLXlr .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .mbr-text {
  color: #bcbfca;
}
.cid-v5PLgTLXlr .mbr-desc {
  color: #ffffff;
}
.cid-v5PLgTLXlr .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v5PLgTLXlr .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v5PLgTLXlr .mbr-text,
.cid-v5PLgTLXlr .icon-wrapper {
  color: #ffffff;
}
.cid-v5XpjI6Uga.popup-builder {
  background-color: #ffffff;
}
.cid-v5XpjI6Uga.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5XpjI6Uga.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5XpjI6Uga .modal-content,
.cid-v5XpjI6Uga .modal-dialog {
  height: auto;
}
.cid-v5XpjI6Uga .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5XpjI6Uga .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5XpjI6Uga .form-wrapper .mbr-form .form-group,
  .cid-v5XpjI6Uga .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5XpjI6Uga .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5XpjI6Uga .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5XpjI6Uga .mbr-text {
  text-align: center;
}
.cid-v5XpjI6Uga .pt-0 {
  padding-top: 0 !important;
}
.cid-v5XpjI6Uga .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5XpjI6Uga .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5XpjI6Uga .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5XpjI6Uga .modal-open {
  overflow: hidden;
}
.cid-v5XpjI6Uga .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5XpjI6Uga .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5XpjI6Uga .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5XpjI6Uga .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5XpjI6Uga .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5XpjI6Uga .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5XpjI6Uga .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5XpjI6Uga .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v5XpjI6Uga .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5XpjI6Uga .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  background-color: #000;
}
.cid-v5XpjI6Uga .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5XpjI6Uga .modal-backdrop.show {
  opacity: .5;
}
.cid-v5XpjI6Uga .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5XpjI6Uga .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XpjI6Uga .modal-header {
    padding: 1rem;
  }
}
.cid-v5XpjI6Uga .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5XpjI6Uga .modal-header .close svg {
  fill: #353535;
}
.cid-v5XpjI6Uga .modal-header .close:hover {
  opacity: 1;
}
.cid-v5XpjI6Uga .modal-header .close:focus {
  outline: none;
}
.cid-v5XpjI6Uga .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5XpjI6Uga .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5XpjI6Uga .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XpjI6Uga .modal-body {
    padding: 1rem;
  }
}
.cid-v5XpjI6Uga .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5XpjI6Uga .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XpjI6Uga .modal-footer {
    padding: 1rem;
  }
}
.cid-v5XpjI6Uga .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5XpjI6Uga .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5XpjI6Uga .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5XpjI6Uga .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5XpjI6Uga .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5XpjI6Uga .modal-lg,
  .cid-v5XpjI6Uga .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5XpjI6Uga .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5XpjI6Uga .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5XpjI6Uga .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5XpjI6Uga .form-group {
  margin-bottom: 1rem;
}
.cid-v5XpjI6Uga .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5XpjI6Uga .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5XpjI6Uga .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5XpjI6Uga .mbr-section-btn {
  margin: 0;
}
.cid-v5XpjI6Uga .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5X1dHtSjW {
  z-index: 1000;
  width: 100%;
}
.cid-v5X1dHtSjW .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-v5X1dHtSjW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-v5X1dHtSjW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v5X1dHtSjW .menu_box .navbar.opened,
  .cid-v5X1dHtSjW .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v5X1dHtSjW nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v5X1dHtSjW .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v5X1dHtSjW .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5X1dHtSjW .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v5X1dHtSjW .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v5X1dHtSjW .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v5X1dHtSjW .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-v5X1dHtSjW .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v5X1dHtSjW .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v5X1dHtSjW .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v5X1dHtSjW .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v5X1dHtSjW .offcanvas-body .mbr-text,
  .cid-v5X1dHtSjW .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v5X1dHtSjW .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v5X1dHtSjW .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v5X1dHtSjW .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-v5X1dHtSjW .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v5X1dHtSjW .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v5X1dHtSjW .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v5X1dHtSjW .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v5X1dHtSjW ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v5X1dHtSjW .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v5X1dHtSjW .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-v5X1dHtSjW .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v5X1dHtSjW li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v5X1dHtSjW li.nav-item:hover {
    opacity: .8;
  }
  .cid-v5X1dHtSjW .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v5X1dHtSjW .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v5X1dHtSjW .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v5X1dHtSjW .nav-item {
    margin: 0 !important;
  }
}
.cid-v5X1dHtSjW .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v5X1dHtSjW .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-v5X1dHtSjW .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v5X1dHtSjW .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v5X1dHtSjW .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-v5X1dHtSjW .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v5X1dHtSjW .offcanvas_box {
    display: none;
  }
}
.cid-v5X1dHtSjW .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v5X1dHtSjW .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v5X1dHtSjW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v5X1dHtSjW .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-v5X1dHtSjW .container {
  display: flex;
  margin: auto;
}
.cid-v5X1dHtSjW .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-v5X1dHtSjW .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v5X1dHtSjW .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-v5X1dHtSjW .navbar-caption {
  color: #1e4381;
}
.cid-v5X1dHtSjW .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v5X1dHtSjW .navbar-nav {
    margin: 0;
  }
}
.cid-v5X1dHtSjW .dropdown-menu,
.cid-v5X1dHtSjW .navbar.opened {
  background-color: true !important;
}
.cid-v5X1dHtSjW .nav-item:focus,
.cid-v5X1dHtSjW .nav-link:focus {
  outline: none;
}
.cid-v5X1dHtSjW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5X1dHtSjW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5X1dHtSjW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5X1dHtSjW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5X1dHtSjW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5X1dHtSjW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5X1dHtSjW .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-v5X1dHtSjW .navbar.opened {
  transition: all 0.3s;
}
.cid-v5X1dHtSjW .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v5X1dHtSjW .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v5X1dHtSjW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v5X1dHtSjW .navbar.collapsed {
  justify-content: center;
}
.cid-v5X1dHtSjW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5X1dHtSjW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v5X1dHtSjW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5X1dHtSjW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5X1dHtSjW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5X1dHtSjW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v5X1dHtSjW .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v5X1dHtSjW .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v5X1dHtSjW .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v5X1dHtSjW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5X1dHtSjW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5X1dHtSjW .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v5X1dHtSjW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5X1dHtSjW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5X1dHtSjW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v5X1dHtSjW .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v5X1dHtSjW .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v5X1dHtSjW .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v5X1dHtSjW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5X1dHtSjW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5X1dHtSjW .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v5X1dHtSjW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5X1dHtSjW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5X1dHtSjW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v5X1dHtSjW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5X1dHtSjW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5X1dHtSjW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5X1dHtSjW .dropdown-item.active,
.cid-v5X1dHtSjW .dropdown-item:active {
  background-color: transparent;
}
.cid-v5X1dHtSjW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5X1dHtSjW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5X1dHtSjW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5X1dHtSjW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5X1dHtSjW ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v5X1dHtSjW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5X1dHtSjW button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-v5X1dHtSjW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-v5X1dHtSjW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5X1dHtSjW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5X1dHtSjW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5X1dHtSjW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5X1dHtSjW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5X1dHtSjW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5X1dHtSjW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5X1dHtSjW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5X1dHtSjW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v5X1dHtSjW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5X1dHtSjW .navbar {
    height: 70px;
  }
  .cid-v5X1dHtSjW .navbar.opened {
    height: auto;
  }
  .cid-v5X1dHtSjW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5X1dHtSjW .mbr-section-btn .btn,
.cid-v5X1dHtSjW .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-v5X1dHtSjW .mbr-section-btn .btn:hover,
.cid-v5X1dHtSjW .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-v5X1dHtSjW .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v5X1dHtSjW .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v5X1dHtSjW .navbar-caption:hover {
  color: #0000cc;
}
.cid-v5X1dHtSjW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v5X1dHtSjW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v5X1dHtSjW .text_widget {
  color: #ffffff;
}
.cid-v5X1dHtSjW .mbr-section-subtitle,
.cid-v5X1dHtSjW .text_widget {
  text-align: left;
}
.cid-v5X1dHtSjW a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v5X1dIARZx {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f1f1f2;
}
.cid-v5X1dIARZx .row::after {
  content: '';
  display: block;
  background: #349a34;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .row::after {
    display: none;
  }
}
.cid-v5X1dIARZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dIARZx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dIARZx .image {
  position: relative;
}
.cid-v5X1dIARZx .image::before {
  content: '';
  display: block;
  background: #c10000;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 0 0 10rem 0;
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .image::before {
    display: none;
  }
}
.cid-v5X1dIARZx .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-v5X1dIARZx .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #fcf600;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .image-wrapper::before {
    display: none;
  }
}
.cid-v5X1dIARZx .image-wrapper::after {
  content: '';
  display: block;
  background: #0000cc;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .image-wrapper::after {
    display: none;
  }
}
.cid-v5X1dIARZx .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 50% 0 0;
  z-index: 1;
}
.cid-v5X1dIARZx .title {
  display: flex;
  align-items: center;
}
.cid-v5X1dIARZx .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-v5X1dIARZx .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v5X1dIARZx .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v5X1dIARZx .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v5X1dIARZx .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-v5X1dIARZx .mbr-section-title {
  color: #c10000;
}
.cid-v5X1dIARZx .mbr-text {
  color: #000000;
}
.cid-v5X1dJrPL6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5X1dJrPL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dJrPL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dJrPL6 .row {
  padding: 1rem;
}
.cid-v5X1dJrPL6 .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-v5X1dJrPL6 .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5X1dJrPL6 .title-wrapper {
    padding: 0;
  }
}
.cid-v5X1dJrPL6 .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5X1dJrPL6 .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5X1dJrPL6 .cards .card {
  margin-bottom: 20px;
}
.cid-v5X1dJrPL6 .cards .card .mbr-number {
  margin: 0;
}
.cid-v5X1dJrPL6 .cards .card .mbr-desc {
  margin: 0;
}
.cid-v5X1dJrPL6 .mbr-section-title {
  color: #1111a2;
}
.cid-v5X1dJrPL6 .mbr-text {
  color: #000000;
}
.cid-v5X1dJrPL6 .mbr-number {
  color: #ee2947;
}
.cid-v5X1dJrPL6 .mbr-desc {
  color: #1e4381;
}
.cid-v5X1dKFHlb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0000cc;
}
.cid-v5X1dKFHlb .row {
  position: relative;
}
.cid-v5X1dKFHlb .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #c10000;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5X1dKFHlb .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #c10000;
  }
}
@media (max-width: 768px) {
  .cid-v5X1dKFHlb .row::after {
    display: none;
  }
}
.cid-v5X1dKFHlb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dKFHlb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dKFHlb .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5X1dKFHlb .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5X1dKFHlb .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #008000;
}
.cid-v5X1dKFHlb .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5X1dKFHlb .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5X1dKFHlb .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5X1dKFHlb .mbr-section-title {
  color: #ffffff;
}
.cid-v5X1dKFHlb .mbr-section-title,
.cid-v5X1dKFHlb .mbr-section-btn {
  text-align: center;
}
.cid-v5X1dLutoc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5X1dLutoc .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5X1dLutoc .row {
    padding: 0 12px;
  }
}
.cid-v5X1dLutoc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dLutoc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dLutoc .image-wrapper {
  position: relative;
}
.cid-v5X1dLutoc .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5X1dLutoc .image-wrapper::before {
    display: none;
  }
}
.cid-v5X1dLutoc .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5X1dLutoc .image-wrapper::after {
    display: none;
  }
}
.cid-v5X1dLutoc .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5X1dLutoc .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5X1dLutoc .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5X1dLutoc .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5X1dLutoc .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5X1dLutoc .mbr-section-title {
  color: #c10000;
}
.cid-v5X1dLutoc .mbr-text {
  color: #1e4381;
}
.cid-v5X1dMn28t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5372a6;
}
.cid-v5X1dMn28t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dMn28t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dMn28t .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5X1dMn28t .row {
    padding: 0 12px;
  }
}
.cid-v5X1dMn28t .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #355893;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5X1dMn28t .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5X1dMn28t .row::after {
    display: none;
  }
}
.cid-v5X1dMn28t .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5X1dMn28t .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5X1dMn28t .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5X1dMn28t .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5X1dMn28t .text-wrapper {
    padding: 0;
  }
}
.cid-v5X1dMn28t .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5X1dMn28t .mbr-section-title {
  color: #000000;
}
.cid-v5X1dMn28t .mbr-text {
  color: #ffffff;
}
.cid-v5X1dNlPzg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5X1dNlPzg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dNlPzg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dNlPzg .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5X1dNlPzg .row {
    padding: 0 12px;
  }
}
.cid-v5X1dNlPzg .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5X1dNlPzg .text-wrapper {
    padding: 0;
  }
}
.cid-v5X1dNlPzg .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5X1dNlPzg .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5X1dNlPzg .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5X1dNlPzg .image {
  position: relative;
}
.cid-v5X1dNlPzg .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5X1dNlPzg .image::before {
    display: none;
  }
}
.cid-v5X1dNlPzg .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5X1dNlPzg .image::after {
    display: none;
  }
}
.cid-v5X1dNlPzg .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5X1dNlPzg .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5X1dNlPzg .image-wrapper img {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5X1dNlPzg .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5X1dNlPzg .image-wrapper video {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5X1dNlPzg .image-wrapper video {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5X1dNlPzg .mbr-section-title {
  color: #1e4381;
}
.cid-v5X1dNlPzg .mbr-text {
  color: #1e4381;
}
.cid-v5X1dOfv8M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1111a2;
}
.cid-v5X1dOfv8M .row {
  position: relative;
}
.cid-v5X1dOfv8M .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #c10000;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5X1dOfv8M .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #c10000;
  }
}
@media (max-width: 768px) {
  .cid-v5X1dOfv8M .row::after {
    display: none;
  }
}
.cid-v5X1dOfv8M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dOfv8M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dOfv8M .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5X1dOfv8M .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5X1dOfv8M .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-v5X1dOfv8M .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5X1dOfv8M .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5X1dOfv8M .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5X1dOfv8M .mbr-section-title {
  color: #ffffff;
}
.cid-v5X1dOfv8M .mbr-section-title,
.cid-v5X1dOfv8M .mbr-section-btn {
  text-align: center;
}
.cid-v5X1dP8FsH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5X1dP8FsH .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5X1dP8FsH .row {
    padding: 0 12px;
  }
}
.cid-v5X1dP8FsH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dP8FsH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dP8FsH .image-wrapper {
  position: relative;
}
.cid-v5X1dP8FsH .image-wrapper::before {
  content: '';
  display: block;
  background-color: #008000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5X1dP8FsH .image-wrapper::before {
    display: none;
  }
}
.cid-v5X1dP8FsH .image-wrapper::after {
  content: '';
  display: block;
  background-color: #c10000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5X1dP8FsH .image-wrapper::after {
    display: none;
  }
}
.cid-v5X1dP8FsH .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5X1dP8FsH .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5X1dP8FsH .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5X1dP8FsH .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5X1dP8FsH .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5X1dP8FsH .mbr-section-title {
  color: #1111a2;
}
.cid-v5X1dP8FsH .mbr-text {
  color: #1e4381;
}
.cid-v5X1dQ2qO4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5372a6;
}
.cid-v5X1dQ2qO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dQ2qO4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dQ2qO4 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5X1dQ2qO4 .row {
    padding: 0 12px;
  }
}
.cid-v5X1dQ2qO4 .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #355893;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5X1dQ2qO4 .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5X1dQ2qO4 .row::after {
    display: none;
  }
}
.cid-v5X1dQ2qO4 .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5X1dQ2qO4 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5X1dQ2qO4 .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5X1dQ2qO4 .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5X1dQ2qO4 .text-wrapper {
    padding: 0;
  }
}
.cid-v5X1dQ2qO4 .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5X1dQ2qO4 .mbr-section-title {
  color: #000000;
}
.cid-v5X1dQ2qO4 .mbr-text {
  color: #ffffff;
}
.cid-v5X1dR01oZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5X1dR01oZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dR01oZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dR01oZ .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5X1dR01oZ .row {
    padding: 0 12px;
  }
}
.cid-v5X1dR01oZ .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5X1dR01oZ .text-wrapper {
    padding: 0;
  }
}
.cid-v5X1dR01oZ .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5X1dR01oZ .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5X1dR01oZ .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5X1dR01oZ .image {
  position: relative;
}
.cid-v5X1dR01oZ .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #008000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5X1dR01oZ .image::before {
    display: none;
  }
}
.cid-v5X1dR01oZ .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #008000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5X1dR01oZ .image::after {
    display: none;
  }
}
.cid-v5X1dR01oZ .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5X1dR01oZ .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5X1dR01oZ .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5X1dR01oZ .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5X1dR01oZ .mbr-section-title {
  color: #1111a2;
}
.cid-v5X1dR01oZ .mbr-text {
  color: #1e4381;
}
.cid-v5X1dS0PVj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1111a2;
}
.cid-v5X1dS0PVj .row {
  position: relative;
}
.cid-v5X1dS0PVj .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #c10000;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5X1dS0PVj .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #c10000;
  }
}
@media (max-width: 768px) {
  .cid-v5X1dS0PVj .row::after {
    display: none;
  }
}
.cid-v5X1dS0PVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dS0PVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dS0PVj .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5X1dS0PVj .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5X1dS0PVj .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5X1dS0PVj .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5X1dS0PVj .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5X1dS0PVj .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5X1dS0PVj .mbr-section-title {
  color: #ffffff;
}
.cid-v5X1dS0PVj .mbr-section-title,
.cid-v5X1dS0PVj .mbr-section-btn {
  text-align: center;
}
.cid-v5X1dSXi22 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5X1dSXi22 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5X1dSXi22 .row {
    padding: 0 12px;
  }
}
.cid-v5X1dSXi22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dSXi22 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dSXi22 .image-wrapper {
  position: relative;
}
.cid-v5X1dSXi22 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5X1dSXi22 .image-wrapper::before {
    display: none;
  }
}
.cid-v5X1dSXi22 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5X1dSXi22 .image-wrapper::after {
    display: none;
  }
}
.cid-v5X1dSXi22 .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5X1dSXi22 .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5X1dSXi22 .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5X1dSXi22 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5X1dSXi22 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5X1dSXi22 .mbr-section-title {
  color: #1111a2;
}
.cid-v5X1dSXi22 .mbr-text {
  color: #1e4381;
}
.cid-v5X1dTWGrH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5372a6;
}
.cid-v5X1dTWGrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dTWGrH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dTWGrH .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5X1dTWGrH .row {
    padding: 0 12px;
  }
}
.cid-v5X1dTWGrH .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #355893;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5X1dTWGrH .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #ffffff;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5X1dTWGrH .row::after {
    display: none;
  }
}
.cid-v5X1dTWGrH .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5X1dTWGrH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5X1dTWGrH .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5X1dTWGrH .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5X1dTWGrH .text-wrapper {
    padding: 0;
  }
}
.cid-v5X1dTWGrH .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5X1dTWGrH .mbr-section-title {
  color: #000000;
}
.cid-v5X1dTWGrH .mbr-text {
  color: #ffffff;
}
.cid-v5X1dUWaXp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5X1dUWaXp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5X1dUWaXp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5X1dUWaXp .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5X1dUWaXp .row {
    padding: 0 12px;
  }
}
.cid-v5X1dUWaXp .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5X1dUWaXp .text-wrapper {
    padding: 0;
  }
}
.cid-v5X1dUWaXp .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5X1dUWaXp .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5X1dUWaXp .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5X1dUWaXp .image {
  position: relative;
}
.cid-v5X1dUWaXp .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5X1dUWaXp .image::before {
    display: none;
  }
}
.cid-v5X1dUWaXp .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5X1dUWaXp .image::after {
    display: none;
  }
}
.cid-v5X1dUWaXp .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5X1dUWaXp .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5X1dUWaXp .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5X1dUWaXp .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5X1dUWaXp .mbr-section-title {
  color: #1111a2;
}
.cid-v5X1dUWaXp .mbr-text {
  color: #1e4381;
}
.cid-v7gpLfsX3l {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #162148;
}
.cid-v7gpLfsX3l .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #1111a2;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-v7gpLfsX3l .position-relative::after {
    display: none;
  }
}
.cid-v7gpLfsX3l .item:focus,
.cid-v7gpLfsX3l span:focus {
  outline: none;
}
.cid-v7gpLfsX3l .item-wrapper {
  position: relative;
}
.cid-v7gpLfsX3l .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-v7gpLfsX3l .embla__slide {
    min-width: 95%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7gpLfsX3l .embla__button--next,
.cid-v7gpLfsX3l .embla__button--prev {
  display: flex;
}
.cid-v7gpLfsX3l .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #fcf600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7gpLfsX3l .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7gpLfsX3l .embla__button:hover {
  background: transparent;
  color: #fcf600;
}
.cid-v7gpLfsX3l .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpLfsX3l .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-v7gpLfsX3l .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpLfsX3l .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-v7gpLfsX3l .embla__button {
    top: auto;
  }
}
.cid-v7gpLfsX3l .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-v7gpLfsX3l .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-v7gpLfsX3l .embla__viewport {
    width: 100%;
  }
}
.cid-v7gpLfsX3l .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7gpLfsX3l .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7gpLfsX3l .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7gpLfsX3l .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-v7gpLfsX3l .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-v7gpLfsX3l .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-v7gpLfsX3l .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-v7gpLfsX3l .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-v7gpLfsX3l .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-v7gpLfsX3l .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v7gpLfsX3l .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-v7gpLfsX3l .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #1111a2;
}
.cid-v7gpLfsX3l .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v7gpLfsX3l .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v7gpLfsX3l .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-v7gpLfsX3l .slide-content .item-text {
    padding: 0 67px;
  }
}
@media (max-width: 425px) {
  .cid-v7gpLfsX3l .slide-content .item-text {
    padding: 0 90px;
    font-size: 80%;
  }
}
.cid-v7gpLfsX3l .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-v7gpLfsX3l .slide-content .item-text span {
    display: none;
  }
}
.cid-v7gpLfsX3l .slide-content .item-text .mbr-text {
  margin-bottom: 0;
  font-size: 80%;
}
.cid-v7gpLfsX3l .mbr-name {
  color: #fcf600;
}
.cid-v7gpLfsX3l .mbr-desc {
  color: #ffffff;
}
.cid-v7gpLfsX3l .mbr-text {
  color: #ffffff;
}
.cid-v5X1eC11Mv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v5X1eC11Mv .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v5X1eC11Mv .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v5X1eC11Mv .container-fluid {
    padding: 0 24px;
  }
}
.cid-v5X1eC11Mv .container {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5X1eC11Mv .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v5X1eC11Mv .container {
    padding: 0 24px;
  }
}
.cid-v5X1eC11Mv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-v5X1eC11Mv .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v5X1eC11Mv .embla__slide .slide-content {
  width: 100%;
}
.cid-v5X1eC11Mv .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-v5X1eC11Mv .embla__button--next,
.cid-v5X1eC11Mv .embla__button--prev {
  display: flex;
}
.cid-v5X1eC11Mv .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #c10000 !important;
  color: #0000cc !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-v5X1eC11Mv .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v5X1eC11Mv .embla__button:hover {
  opacity: .5 !important;
}
.cid-v5X1eC11Mv .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-v5X1eC11Mv .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-v5X1eC11Mv .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-v5X1eC11Mv .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5X1eC11Mv .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-v5X1eC11Mv .embla {
    padding: 0;
  }
}
.cid-v5X1eC11Mv .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v5X1eC11Mv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5X1eC11Mv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5X1eC11Mv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5X1eDPc9A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v5X1eDPc9A .container-fluid,
.cid-v5X1eDPc9A .container {
  position: relative;
}
.cid-v5X1eDPc9A .container-fluid::before,
.cid-v5X1eDPc9A .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5X1eDPc9A .container-fluid::before,
  .cid-v5X1eDPc9A .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .container-fluid::before,
  .cid-v5X1eDPc9A .container::before {
    display: none;
  }
}
.cid-v5X1eDPc9A .media-wrap1 {
  height: 300px;
}
.cid-v5X1eDPc9A .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5X1eDPc9A .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v5X1eDPc9A .media-wrap2 {
  height: 300px;
}
.cid-v5X1eDPc9A .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5X1eDPc9A .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v5X1eDPc9A .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5X1eDPc9A .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v5X1eDPc9A .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v5X1eDPc9A .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v5X1eDPc9A .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v5X1eDPc9A .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v5X1eDPc9A .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v5X1eDPc9A .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v5X1eDPc9A .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v5X1eDPc9A .list .item-wrap:hover {
  opacity: .7;
}
.cid-v5X1eDPc9A .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .copyright {
    background-color: #232323;
  }
}
.cid-v5X1eDPc9A .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5X1eDPc9A .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v5X1eDPc9A .mbr-text {
  color: #bcbfca;
}
.cid-v5X1eDPc9A .mbr-desc {
  color: #ffffff;
}
.cid-v5X1eDPc9A .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v5X1eDPc9A .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v5X1eDPc9A .mbr-text,
.cid-v5X1eDPc9A .icon-wrapper {
  color: #ffffff;
}
.cid-v5XpxU5jXB.popup-builder {
  background-color: #ffffff;
}
.cid-v5XpxU5jXB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5XpxU5jXB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5XpxU5jXB .modal-content,
.cid-v5XpxU5jXB .modal-dialog {
  height: auto;
}
.cid-v5XpxU5jXB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5XpxU5jXB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5XpxU5jXB .form-wrapper .mbr-form .form-group,
  .cid-v5XpxU5jXB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5XpxU5jXB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5XpxU5jXB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5XpxU5jXB .mbr-text {
  text-align: center;
}
.cid-v5XpxU5jXB .pt-0 {
  padding-top: 0 !important;
}
.cid-v5XpxU5jXB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5XpxU5jXB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5XpxU5jXB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5XpxU5jXB .modal-open {
  overflow: hidden;
}
.cid-v5XpxU5jXB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5XpxU5jXB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5XpxU5jXB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5XpxU5jXB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5XpxU5jXB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5XpxU5jXB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5XpxU5jXB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5XpxU5jXB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v5XpxU5jXB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5XpxU5jXB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  background-color: #000;
}
.cid-v5XpxU5jXB .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5XpxU5jXB .modal-backdrop.show {
  opacity: .5;
}
.cid-v5XpxU5jXB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5XpxU5jXB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XpxU5jXB .modal-header {
    padding: 1rem;
  }
}
.cid-v5XpxU5jXB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5XpxU5jXB .modal-header .close svg {
  fill: #353535;
}
.cid-v5XpxU5jXB .modal-header .close:hover {
  opacity: 1;
}
.cid-v5XpxU5jXB .modal-header .close:focus {
  outline: none;
}
.cid-v5XpxU5jXB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5XpxU5jXB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5XpxU5jXB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XpxU5jXB .modal-body {
    padding: 1rem;
  }
}
.cid-v5XpxU5jXB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5XpxU5jXB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XpxU5jXB .modal-footer {
    padding: 1rem;
  }
}
.cid-v5XpxU5jXB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5XpxU5jXB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5XpxU5jXB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5XpxU5jXB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5XpxU5jXB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5XpxU5jXB .modal-lg,
  .cid-v5XpxU5jXB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5XpxU5jXB .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5XpxU5jXB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5XpxU5jXB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5XpxU5jXB .form-group {
  margin-bottom: 1rem;
}
.cid-v5XpxU5jXB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5XpxU5jXB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5XpxU5jXB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5XpxU5jXB .mbr-section-btn {
  margin: 0;
}
.cid-v5XpxU5jXB .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5sdgzOF57 {
  z-index: 1000;
  width: 100%;
}
.cid-v5sdgzOF57 .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-v5sdgzOF57 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-v5sdgzOF57 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v5sdgzOF57 .menu_box .navbar.opened,
  .cid-v5sdgzOF57 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v5sdgzOF57 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v5sdgzOF57 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v5sdgzOF57 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5sdgzOF57 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v5sdgzOF57 .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v5sdgzOF57 .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v5sdgzOF57 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-v5sdgzOF57 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v5sdgzOF57 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v5sdgzOF57 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v5sdgzOF57 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v5sdgzOF57 .offcanvas-body .mbr-text,
  .cid-v5sdgzOF57 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v5sdgzOF57 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v5sdgzOF57 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v5sdgzOF57 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-v5sdgzOF57 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v5sdgzOF57 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v5sdgzOF57 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v5sdgzOF57 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v5sdgzOF57 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v5sdgzOF57 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v5sdgzOF57 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-v5sdgzOF57 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v5sdgzOF57 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v5sdgzOF57 li.nav-item:hover {
    opacity: .8;
  }
  .cid-v5sdgzOF57 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v5sdgzOF57 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v5sdgzOF57 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v5sdgzOF57 .nav-item {
    margin: 0 !important;
  }
}
.cid-v5sdgzOF57 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v5sdgzOF57 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-v5sdgzOF57 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v5sdgzOF57 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v5sdgzOF57 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-v5sdgzOF57 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v5sdgzOF57 .offcanvas_box {
    display: none;
  }
}
.cid-v5sdgzOF57 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v5sdgzOF57 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v5sdgzOF57 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v5sdgzOF57 .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-v5sdgzOF57 .container {
  display: flex;
  margin: auto;
}
.cid-v5sdgzOF57 .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-v5sdgzOF57 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v5sdgzOF57 .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-v5sdgzOF57 .navbar-caption {
  color: #1e4381;
}
.cid-v5sdgzOF57 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v5sdgzOF57 .navbar-nav {
    margin: 0;
  }
}
.cid-v5sdgzOF57 .dropdown-menu,
.cid-v5sdgzOF57 .navbar.opened {
  background-color: true !important;
}
.cid-v5sdgzOF57 .nav-item:focus,
.cid-v5sdgzOF57 .nav-link:focus {
  outline: none;
}
.cid-v5sdgzOF57 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5sdgzOF57 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5sdgzOF57 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5sdgzOF57 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5sdgzOF57 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5sdgzOF57 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5sdgzOF57 .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-v5sdgzOF57 .navbar.opened {
  transition: all 0.3s;
}
.cid-v5sdgzOF57 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v5sdgzOF57 .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v5sdgzOF57 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v5sdgzOF57 .navbar.collapsed {
  justify-content: center;
}
.cid-v5sdgzOF57 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5sdgzOF57 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v5sdgzOF57 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5sdgzOF57 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5sdgzOF57 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5sdgzOF57 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v5sdgzOF57 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v5sdgzOF57 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v5sdgzOF57 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v5sdgzOF57 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5sdgzOF57 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5sdgzOF57 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v5sdgzOF57 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5sdgzOF57 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5sdgzOF57 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v5sdgzOF57 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v5sdgzOF57 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v5sdgzOF57 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v5sdgzOF57 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5sdgzOF57 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5sdgzOF57 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v5sdgzOF57 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5sdgzOF57 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5sdgzOF57 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v5sdgzOF57 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5sdgzOF57 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5sdgzOF57 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5sdgzOF57 .dropdown-item.active,
.cid-v5sdgzOF57 .dropdown-item:active {
  background-color: transparent;
}
.cid-v5sdgzOF57 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5sdgzOF57 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5sdgzOF57 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5sdgzOF57 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5sdgzOF57 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v5sdgzOF57 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5sdgzOF57 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-v5sdgzOF57 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-v5sdgzOF57 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5sdgzOF57 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5sdgzOF57 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5sdgzOF57 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5sdgzOF57 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5sdgzOF57 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5sdgzOF57 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5sdgzOF57 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5sdgzOF57 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v5sdgzOF57 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5sdgzOF57 .navbar {
    height: 70px;
  }
  .cid-v5sdgzOF57 .navbar.opened {
    height: auto;
  }
  .cid-v5sdgzOF57 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5sdgzOF57 .mbr-section-btn .btn,
.cid-v5sdgzOF57 .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-v5sdgzOF57 .mbr-section-btn .btn:hover,
.cid-v5sdgzOF57 .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-v5sdgzOF57 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v5sdgzOF57 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v5sdgzOF57 .navbar-caption:hover {
  color: #0000cc;
}
.cid-v5sdgzOF57 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v5sdgzOF57 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v5sdgzOF57 .text_widget {
  color: #ffffff;
}
.cid-v5sdgzOF57 .mbr-section-subtitle,
.cid-v5sdgzOF57 .text_widget {
  text-align: left;
}
.cid-v5sdgzOF57 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v5sdgAC7v6 {
  background-color: #f1f1f2;
}
.cid-v5sdgAC7v6 .row::after {
  content: '';
  display: block;
  background: #ee2947;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .row::after {
    display: none;
  }
}
.cid-v5sdgAC7v6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sdgAC7v6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sdgAC7v6 .image {
  position: relative;
}
.cid-v5sdgAC7v6 .image::before {
  content: '';
  display: block;
  background: #1e4381;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 10rem 0;
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .image::before {
    display: none;
  }
}
.cid-v5sdgAC7v6 .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-v5sdgAC7v6 .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #ee2947;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .image-wrapper::before {
    display: none;
  }
}
.cid-v5sdgAC7v6 .image-wrapper::after {
  content: '';
  display: block;
  background: #f3722f;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .image-wrapper::after {
    display: none;
  }
}
.cid-v5sdgAC7v6 .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}
.cid-v5sdgAC7v6 .title {
  display: flex;
  align-items: center;
}
.cid-v5sdgAC7v6 .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-v5sdgAC7v6 .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v5sdgAC7v6 .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v5sdgAC7v6 .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v5sdgAC7v6 .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-v5sdgAC7v6 .mbr-section-title {
  color: #1e4381;
}
.cid-v5sdgAC7v6 .mbr-text {
  color: #1e4381;
}
.cid-v5sdgCfxXW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v5sdgCfxXW .row {
  justify-content: center;
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5sdgCfxXW .row {
    padding: 0 12px;
  }
}
.cid-v5sdgCfxXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5sdgCfxXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5sdgCfxXW .card-wrapper {
  margin-bottom: 35px;
}
.cid-v5sdgCfxXW .card-wrapper .mbr-number {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v5sdgCfxXW .card-wrapper .mbr-number {
    margin-bottom: 0;
  }
}
.cid-v5sdgCfxXW .card-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .cid-v5sdgCfxXW .card-wrapper .mbr-section-title {
    margin-bottom: 0;
  }
}
.cid-v5sdgCfxXW .card-wrapper .mbr-text {
  margin: 0;
}
.cid-v5sdgCfxXW .mbr-number {
  color: #ee2947;
}
.cid-v5sdgCfxXW .mbr-section-title {
  color: #1e4381;
}
.cid-v5sdgCfxXW .mbr-text {
  color: #1e4381;
}
.cid-v5PLgTLXlr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v5PLgTLXlr .container-fluid,
.cid-v5PLgTLXlr .container {
  position: relative;
}
.cid-v5PLgTLXlr .container-fluid::before,
.cid-v5PLgTLXlr .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .container-fluid::before,
  .cid-v5PLgTLXlr .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .container-fluid::before,
  .cid-v5PLgTLXlr .container::before {
    display: none;
  }
}
.cid-v5PLgTLXlr .media-wrap1 {
  height: 300px;
}
.cid-v5PLgTLXlr .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PLgTLXlr .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v5PLgTLXlr .media-wrap2 {
  height: 300px;
}
.cid-v5PLgTLXlr .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PLgTLXlr .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v5PLgTLXlr .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v5PLgTLXlr .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v5PLgTLXlr .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v5PLgTLXlr .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v5PLgTLXlr .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v5PLgTLXlr .list .item-wrap:hover {
  opacity: .7;
}
.cid-v5PLgTLXlr .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .copyright {
    background-color: #232323;
  }
}
.cid-v5PLgTLXlr .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PLgTLXlr .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v5PLgTLXlr .mbr-text {
  color: #bcbfca;
}
.cid-v5PLgTLXlr .mbr-desc {
  color: #ffffff;
}
.cid-v5PLgTLXlr .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v5PLgTLXlr .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v5PLgTLXlr .mbr-text,
.cid-v5PLgTLXlr .icon-wrapper {
  color: #ffffff;
}
.cid-v6Wdhe0E8O {
  z-index: 1000;
  width: 100%;
}
.cid-v6Wdhe0E8O .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-v6Wdhe0E8O .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-v6Wdhe0E8O .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v6Wdhe0E8O .menu_box .navbar.opened,
  .cid-v6Wdhe0E8O .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v6Wdhe0E8O nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v6Wdhe0E8O .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v6Wdhe0E8O .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v6Wdhe0E8O .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v6Wdhe0E8O .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v6Wdhe0E8O .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v6Wdhe0E8O .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-v6Wdhe0E8O .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v6Wdhe0E8O .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v6Wdhe0E8O .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v6Wdhe0E8O .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v6Wdhe0E8O .offcanvas-body .mbr-text,
  .cid-v6Wdhe0E8O .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v6Wdhe0E8O .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v6Wdhe0E8O .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v6Wdhe0E8O .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-v6Wdhe0E8O .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v6Wdhe0E8O .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v6Wdhe0E8O .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v6Wdhe0E8O .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v6Wdhe0E8O ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v6Wdhe0E8O .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v6Wdhe0E8O .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-v6Wdhe0E8O .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v6Wdhe0E8O li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v6Wdhe0E8O li.nav-item:hover {
    opacity: .8;
  }
  .cid-v6Wdhe0E8O .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v6Wdhe0E8O .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v6Wdhe0E8O .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v6Wdhe0E8O .nav-item {
    margin: 0 !important;
  }
}
.cid-v6Wdhe0E8O .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v6Wdhe0E8O .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-v6Wdhe0E8O .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v6Wdhe0E8O .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v6Wdhe0E8O .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-v6Wdhe0E8O .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v6Wdhe0E8O .offcanvas_box {
    display: none;
  }
}
.cid-v6Wdhe0E8O .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v6Wdhe0E8O .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v6Wdhe0E8O .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v6Wdhe0E8O .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-v6Wdhe0E8O .container {
  display: flex;
  margin: auto;
}
.cid-v6Wdhe0E8O .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-v6Wdhe0E8O .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v6Wdhe0E8O .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-v6Wdhe0E8O .navbar-caption {
  color: #1e4381;
}
.cid-v6Wdhe0E8O .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v6Wdhe0E8O .navbar-nav {
    margin: 0;
  }
}
.cid-v6Wdhe0E8O .dropdown-menu,
.cid-v6Wdhe0E8O .navbar.opened {
  background-color: true !important;
}
.cid-v6Wdhe0E8O .nav-item:focus,
.cid-v6Wdhe0E8O .nav-link:focus {
  outline: none;
}
.cid-v6Wdhe0E8O .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v6Wdhe0E8O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v6Wdhe0E8O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v6Wdhe0E8O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v6Wdhe0E8O .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v6Wdhe0E8O .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v6Wdhe0E8O .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-v6Wdhe0E8O .navbar.opened {
  transition: all 0.3s;
}
.cid-v6Wdhe0E8O .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v6Wdhe0E8O .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v6Wdhe0E8O .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v6Wdhe0E8O .navbar.collapsed {
  justify-content: center;
}
.cid-v6Wdhe0E8O .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v6Wdhe0E8O .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v6Wdhe0E8O .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v6Wdhe0E8O .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v6Wdhe0E8O .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v6Wdhe0E8O .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v6Wdhe0E8O .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6Wdhe0E8O .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v6Wdhe0E8O .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v6Wdhe0E8O .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v6Wdhe0E8O .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v6Wdhe0E8O .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v6Wdhe0E8O .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v6Wdhe0E8O .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v6Wdhe0E8O .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v6Wdhe0E8O .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v6Wdhe0E8O .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v6Wdhe0E8O .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v6Wdhe0E8O .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v6Wdhe0E8O .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v6Wdhe0E8O .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v6Wdhe0E8O .navbar.navbar-short {
  min-height: 60px;
}
.cid-v6Wdhe0E8O .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v6Wdhe0E8O .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v6Wdhe0E8O .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v6Wdhe0E8O .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v6Wdhe0E8O .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v6Wdhe0E8O .dropdown-item.active,
.cid-v6Wdhe0E8O .dropdown-item:active {
  background-color: transparent;
}
.cid-v6Wdhe0E8O .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v6Wdhe0E8O .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v6Wdhe0E8O .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v6Wdhe0E8O .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6Wdhe0E8O ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v6Wdhe0E8O .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v6Wdhe0E8O button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-v6Wdhe0E8O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-v6Wdhe0E8O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v6Wdhe0E8O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v6Wdhe0E8O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v6Wdhe0E8O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v6Wdhe0E8O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v6Wdhe0E8O nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v6Wdhe0E8O nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v6Wdhe0E8O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v6Wdhe0E8O a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v6Wdhe0E8O .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v6Wdhe0E8O .navbar {
    height: 70px;
  }
  .cid-v6Wdhe0E8O .navbar.opened {
    height: auto;
  }
  .cid-v6Wdhe0E8O .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v6Wdhe0E8O .mbr-section-btn .btn,
.cid-v6Wdhe0E8O .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-v6Wdhe0E8O .mbr-section-btn .btn:hover,
.cid-v6Wdhe0E8O .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-v6Wdhe0E8O .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v6Wdhe0E8O .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v6Wdhe0E8O .navbar-caption:hover {
  color: #0000cc;
}
.cid-v6Wdhe0E8O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v6Wdhe0E8O .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v6Wdhe0E8O .text_widget {
  color: #ffffff;
}
.cid-v6Wdhe0E8O .mbr-section-subtitle,
.cid-v6Wdhe0E8O .text_widget {
  text-align: left;
}
.cid-v6Wdhe0E8O a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v6Wdhez7yO {
  background-color: #5372a6;
}
.cid-v6Wdhez7yO .row::after {
  content: '';
  display: block;
  background: #008000;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .row::after {
    display: none;
  }
}
.cid-v6Wdhez7yO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Wdhez7yO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Wdhez7yO .image {
  position: relative;
}
.cid-v6Wdhez7yO .image::before {
  content: '';
  display: block;
  background: #c10000;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 10rem 0;
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .image::before {
    display: none;
  }
}
.cid-v6Wdhez7yO .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-v6Wdhez7yO .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #008000;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .image-wrapper::before {
    display: none;
  }
}
.cid-v6Wdhez7yO .image-wrapper::after {
  content: '';
  display: block;
  background: #1111a2;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .image-wrapper::after {
    display: none;
  }
}
.cid-v6Wdhez7yO .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
  z-index: 1;
}
.cid-v6Wdhez7yO .title {
  display: flex;
  align-items: center;
}
.cid-v6Wdhez7yO .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-v6Wdhez7yO .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v6Wdhez7yO .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v6Wdhez7yO .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v6Wdhez7yO .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-v6Wdhez7yO .mbr-section-title {
  color: #ffffff;
}
.cid-v6Wdhez7yO .mbr-text {
  color: #ffffff;
}
.cid-v6WdYZsTt9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f7;
}
.cid-v6WdYZsTt9 .row {
  padding: 0 110px;
}
.cid-v6WdYZsTt9 .row::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 0 20rem 0 0;
}
@media (max-width: 768px) {
  .cid-v6WdYZsTt9 .row::before {
    border-radius: 0 200px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-v6WdYZsTt9 .row {
    padding: 0 12px;
  }
}
.cid-v6WdYZsTt9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WdYZsTt9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WdYZsTt9 .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-v6WdYZsTt9 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v6WdYZsTt9 .title-wrapper .mbr-section-title {
    text-align: center;
  }
}
.cid-v6WdYZsTt9 .title-wrapper .mbr-section-title span {
  color: #ee2947;
}
.cid-v6WdYZsTt9 .row.items {
  padding: 0;
}
.cid-v6WdYZsTt9 .row.items .item {
  margin-bottom: 25px;
}
.cid-v6WdYZsTt9 .row.items .item .mbr-text {
  margin-bottom: 0;
  line-height: 175%;
}
.cid-v6WdYZsTt9 .row.items .item .link {
  display: block;
}
.cid-v6WdYZsTt9 .row.items .item .link .link-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-v6WdYZsTt9 .row.items .item .link .link-wrapper:hover span {
  opacity: .8;
}
.cid-v6WdYZsTt9 .row.items .item .link .link-wrapper:hover .mbr-link {
  opacity: .8;
}
.cid-v6WdYZsTt9 .row.items .item .link .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-v6WdYZsTt9 .row.items .item .link .link-wrapper span {
  font-size: 26px;
  padding: 0 0 0 5px;
  transition: all .3s ease;
  line-height: 175%;
}
.cid-v6WdYZsTt9 .mbr-section-title {
  color: #1e4381;
}
.cid-v6WdYZsTt9 .mbr-text {
  color: #1e4381;
}
.cid-v6WdYZsTt9 .mbr-link,
.cid-v6WdYZsTt9 .mbr-iconfont {
  color: #c10000;
}
.cid-v6WdhfjAZd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v6WdhfjAZd .container-fluid,
.cid-v6WdhfjAZd .container {
  position: relative;
}
.cid-v6WdhfjAZd .container-fluid::before,
.cid-v6WdhfjAZd .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v6WdhfjAZd .container-fluid::before,
  .cid-v6WdhfjAZd .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .container-fluid::before,
  .cid-v6WdhfjAZd .container::before {
    display: none;
  }
}
.cid-v6WdhfjAZd .media-wrap1 {
  height: 300px;
}
.cid-v6WdhfjAZd .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v6WdhfjAZd .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v6WdhfjAZd .media-wrap2 {
  height: 300px;
}
.cid-v6WdhfjAZd .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v6WdhfjAZd .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v6WdhfjAZd .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v6WdhfjAZd .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v6WdhfjAZd .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v6WdhfjAZd .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v6WdhfjAZd .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v6WdhfjAZd .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v6WdhfjAZd .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v6WdhfjAZd .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v6WdhfjAZd .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v6WdhfjAZd .list .item-wrap:hover {
  opacity: .7;
}
.cid-v6WdhfjAZd .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .copyright {
    background-color: #232323;
  }
}
.cid-v6WdhfjAZd .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v6WdhfjAZd .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v6WdhfjAZd .mbr-text {
  color: #bcbfca;
}
.cid-v6WdhfjAZd .mbr-desc {
  color: #ffffff;
}
.cid-v6WdhfjAZd .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v6WdhfjAZd .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v6WdhfjAZd .mbr-text,
.cid-v6WdhfjAZd .icon-wrapper {
  color: #ffffff;
}
.cid-v72cXmkMlW {
  z-index: 1000;
  width: 100%;
}
.cid-v72cXmkMlW .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-v72cXmkMlW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-v72cXmkMlW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v72cXmkMlW .menu_box .navbar.opened,
  .cid-v72cXmkMlW .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v72cXmkMlW nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v72cXmkMlW .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v72cXmkMlW .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cXmkMlW .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v72cXmkMlW .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v72cXmkMlW .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v72cXmkMlW .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-v72cXmkMlW .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v72cXmkMlW .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v72cXmkMlW .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v72cXmkMlW .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v72cXmkMlW .offcanvas-body .mbr-text,
  .cid-v72cXmkMlW .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v72cXmkMlW .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v72cXmkMlW .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v72cXmkMlW .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-v72cXmkMlW .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v72cXmkMlW .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v72cXmkMlW .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v72cXmkMlW .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v72cXmkMlW ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v72cXmkMlW .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v72cXmkMlW .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-v72cXmkMlW .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v72cXmkMlW li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v72cXmkMlW li.nav-item:hover {
    opacity: .8;
  }
  .cid-v72cXmkMlW .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v72cXmkMlW .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v72cXmkMlW .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v72cXmkMlW .nav-item {
    margin: 0 !important;
  }
}
.cid-v72cXmkMlW .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v72cXmkMlW .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-v72cXmkMlW .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v72cXmkMlW .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v72cXmkMlW .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-v72cXmkMlW .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v72cXmkMlW .offcanvas_box {
    display: none;
  }
}
.cid-v72cXmkMlW .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v72cXmkMlW .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v72cXmkMlW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v72cXmkMlW .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-v72cXmkMlW .container {
  display: flex;
  margin: auto;
}
.cid-v72cXmkMlW .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-v72cXmkMlW .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v72cXmkMlW .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-v72cXmkMlW .navbar-caption {
  color: #1e4381;
}
.cid-v72cXmkMlW .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v72cXmkMlW .navbar-nav {
    margin: 0;
  }
}
.cid-v72cXmkMlW .dropdown-menu,
.cid-v72cXmkMlW .navbar.opened {
  background-color: true !important;
}
.cid-v72cXmkMlW .nav-item:focus,
.cid-v72cXmkMlW .nav-link:focus {
  outline: none;
}
.cid-v72cXmkMlW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v72cXmkMlW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v72cXmkMlW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v72cXmkMlW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v72cXmkMlW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v72cXmkMlW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v72cXmkMlW .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-v72cXmkMlW .navbar.opened {
  transition: all 0.3s;
}
.cid-v72cXmkMlW .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v72cXmkMlW .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v72cXmkMlW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v72cXmkMlW .navbar.collapsed {
  justify-content: center;
}
.cid-v72cXmkMlW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v72cXmkMlW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v72cXmkMlW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v72cXmkMlW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v72cXmkMlW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v72cXmkMlW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v72cXmkMlW .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v72cXmkMlW .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v72cXmkMlW .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v72cXmkMlW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v72cXmkMlW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v72cXmkMlW .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v72cXmkMlW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v72cXmkMlW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v72cXmkMlW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v72cXmkMlW .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v72cXmkMlW .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v72cXmkMlW .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v72cXmkMlW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v72cXmkMlW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v72cXmkMlW .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v72cXmkMlW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v72cXmkMlW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v72cXmkMlW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v72cXmkMlW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v72cXmkMlW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v72cXmkMlW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v72cXmkMlW .dropdown-item.active,
.cid-v72cXmkMlW .dropdown-item:active {
  background-color: transparent;
}
.cid-v72cXmkMlW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v72cXmkMlW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v72cXmkMlW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v72cXmkMlW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v72cXmkMlW ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v72cXmkMlW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v72cXmkMlW button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-v72cXmkMlW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-v72cXmkMlW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v72cXmkMlW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v72cXmkMlW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v72cXmkMlW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v72cXmkMlW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v72cXmkMlW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v72cXmkMlW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v72cXmkMlW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v72cXmkMlW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v72cXmkMlW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v72cXmkMlW .navbar {
    height: 70px;
  }
  .cid-v72cXmkMlW .navbar.opened {
    height: auto;
  }
  .cid-v72cXmkMlW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v72cXmkMlW .mbr-section-btn .btn,
.cid-v72cXmkMlW .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-v72cXmkMlW .mbr-section-btn .btn:hover,
.cid-v72cXmkMlW .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-v72cXmkMlW .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v72cXmkMlW .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v72cXmkMlW .navbar-caption:hover {
  color: #0000cc;
}
.cid-v72cXmkMlW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v72cXmkMlW .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v72cXmkMlW .text_widget {
  color: #ffffff;
}
.cid-v72cXmkMlW .mbr-section-subtitle,
.cid-v72cXmkMlW .text_widget {
  text-align: left;
}
.cid-v72cXmkMlW a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v72cXnSusj {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f1f1f2;
}
.cid-v72cXnSusj .row::after {
  content: '';
  display: block;
  background: #ee2947;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .row::after {
    display: none;
  }
}
.cid-v72cXnSusj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXnSusj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXnSusj .image {
  position: relative;
}
.cid-v72cXnSusj .image::before {
  content: '';
  display: block;
  background: #1111a2;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 0 0 10rem 0;
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .image::before {
    display: none;
  }
}
.cid-v72cXnSusj .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-v72cXnSusj .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #fcf600;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .image-wrapper::before {
    display: none;
  }
}
.cid-v72cXnSusj .image-wrapper::after {
  content: '';
  display: block;
  background: #008000;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .image-wrapper::after {
    display: none;
  }
}
.cid-v72cXnSusj .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 50% 0 0;
  z-index: 1;
}
.cid-v72cXnSusj .title {
  display: flex;
  align-items: center;
}
.cid-v72cXnSusj .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-v72cXnSusj .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v72cXnSusj .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v72cXnSusj .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v72cXnSusj .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-v72cXnSusj .mbr-section-title {
  color: #008000;
}
.cid-v72cXnSusj .mbr-text {
  color: #000000;
}
.cid-v72cXoFKFo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXoFKFo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXoFKFo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXoFKFo .row {
  padding: 1rem;
}
.cid-v72cXoFKFo .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-v72cXoFKFo .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cXoFKFo .title-wrapper {
    padding: 0;
  }
}
.cid-v72cXoFKFo .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXoFKFo .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cXoFKFo .cards .card {
  margin-bottom: 20px;
}
.cid-v72cXoFKFo .cards .card .mbr-number {
  margin: 0;
}
.cid-v72cXoFKFo .cards .card .mbr-desc {
  margin: 0;
}
.cid-v72cXoFKFo .mbr-section-title {
  color: #008000;
}
.cid-v72cXoFKFo .mbr-text {
  color: #000000;
}
.cid-v72cXoFKFo .mbr-number {
  color: #ee2947;
}
.cid-v72cXoFKFo .mbr-desc {
  color: #1e4381;
}
.cid-v72cXpLDyG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cXpLDyG .row {
  position: relative;
}
.cid-v72cXpLDyG .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cXpLDyG .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72cXpLDyG .row::after {
    display: none;
  }
}
.cid-v72cXpLDyG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXpLDyG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXpLDyG .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cXpLDyG .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cXpLDyG .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-v72cXpLDyG .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cXpLDyG .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cXpLDyG .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cXpLDyG .mbr-section-title {
  color: #ffffff;
}
.cid-v72cXpLDyG .mbr-section-title,
.cid-v72cXpLDyG .mbr-section-btn {
  text-align: center;
}
.cid-v72cXqBqrC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXqBqrC .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXqBqrC .row {
    padding: 0 12px;
  }
}
.cid-v72cXqBqrC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXqBqrC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXqBqrC .image-wrapper {
  position: relative;
}
.cid-v72cXqBqrC .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cXqBqrC .image-wrapper::before {
    display: none;
  }
}
.cid-v72cXqBqrC .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cXqBqrC .image-wrapper::after {
    display: none;
  }
}
.cid-v72cXqBqrC .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cXqBqrC .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cXqBqrC .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cXqBqrC .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXqBqrC .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cXqBqrC .mbr-section-title {
  color: #c10000;
}
.cid-v72cXqBqrC .mbr-text {
  color: #1e4381;
}
.cid-v72cXrpJym {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cXrpJym .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXrpJym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXrpJym .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXrpJym .row {
    padding: 0 12px;
  }
}
.cid-v72cXrpJym .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cXrpJym .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cXrpJym .row::after {
    display: none;
  }
}
.cid-v72cXrpJym .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cXrpJym .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cXrpJym .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXrpJym .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cXrpJym .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXrpJym .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cXrpJym .mbr-section-title {
  color: #000000;
}
.cid-v72cXrpJym .mbr-text {
  color: #ffffff;
}
.cid-v72cXsefyY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXsefyY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXsefyY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXsefyY .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cXsefyY .row {
    padding: 0 12px;
  }
}
.cid-v72cXsefyY .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cXsefyY .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXsefyY .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXsefyY .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXsefyY .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cXsefyY .image {
  position: relative;
}
.cid-v72cXsefyY .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cXsefyY .image::before {
    display: none;
  }
}
.cid-v72cXsefyY .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cXsefyY .image::after {
    display: none;
  }
}
.cid-v72cXsefyY .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cXsefyY .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cXsefyY .image-wrapper img {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cXsefyY .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cXsefyY .image-wrapper video {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cXsefyY .image-wrapper video {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cXsefyY .mbr-section-title {
  color: #1e4381;
}
.cid-v72cXsefyY .mbr-text {
  color: #1e4381;
}
.cid-v72cXt4x4I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cXt4x4I .row {
  position: relative;
}
.cid-v72cXt4x4I .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #c10000;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cXt4x4I .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #c10000;
  }
}
@media (max-width: 768px) {
  .cid-v72cXt4x4I .row::after {
    display: none;
  }
}
.cid-v72cXt4x4I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXt4x4I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXt4x4I .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cXt4x4I .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cXt4x4I .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-v72cXt4x4I .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cXt4x4I .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cXt4x4I .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cXt4x4I .mbr-section-title {
  color: #ffffff;
}
.cid-v72cXt4x4I .mbr-section-title,
.cid-v72cXt4x4I .mbr-section-btn {
  text-align: center;
}
.cid-v72cXtU9kM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXtU9kM .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXtU9kM .row {
    padding: 0 12px;
  }
}
.cid-v72cXtU9kM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXtU9kM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXtU9kM .image-wrapper {
  position: relative;
}
.cid-v72cXtU9kM .image-wrapper::before {
  content: '';
  display: block;
  background-color: #008000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cXtU9kM .image-wrapper::before {
    display: none;
  }
}
.cid-v72cXtU9kM .image-wrapper::after {
  content: '';
  display: block;
  background-color: #c10000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cXtU9kM .image-wrapper::after {
    display: none;
  }
}
.cid-v72cXtU9kM .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cXtU9kM .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cXtU9kM .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cXtU9kM .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXtU9kM .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cXtU9kM .mbr-section-title {
  color: #1111a2;
}
.cid-v72cXtU9kM .mbr-text {
  color: #1e4381;
}
.cid-v72cXuM57m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cXuM57m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXuM57m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXuM57m .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXuM57m .row {
    padding: 0 12px;
  }
}
.cid-v72cXuM57m .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cXuM57m .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cXuM57m .row::after {
    display: none;
  }
}
.cid-v72cXuM57m .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cXuM57m .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cXuM57m .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXuM57m .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cXuM57m .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXuM57m .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cXuM57m .mbr-section-title {
  color: #000000;
}
.cid-v72cXuM57m .mbr-text {
  color: #ffffff;
}
.cid-v72cXvD0jw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXvD0jw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXvD0jw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXvD0jw .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cXvD0jw .row {
    padding: 0 12px;
  }
}
.cid-v72cXvD0jw .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cXvD0jw .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXvD0jw .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXvD0jw .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXvD0jw .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cXvD0jw .image {
  position: relative;
}
.cid-v72cXvD0jw .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #008000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cXvD0jw .image::before {
    display: none;
  }
}
.cid-v72cXvD0jw .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #008000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cXvD0jw .image::after {
    display: none;
  }
}
.cid-v72cXvD0jw .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cXvD0jw .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cXvD0jw .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cXvD0jw .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cXvD0jw .mbr-section-title {
  color: #1111a2;
}
.cid-v72cXvD0jw .mbr-text {
  color: #1e4381;
}
.cid-v72cXwykob {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cXwykob .row {
  position: relative;
}
.cid-v72cXwykob .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #1111a2;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cXwykob .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #1111a2;
  }
}
@media (max-width: 768px) {
  .cid-v72cXwykob .row::after {
    display: none;
  }
}
.cid-v72cXwykob .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXwykob .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXwykob .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cXwykob .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72cXwykob .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cXwykob .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cXwykob .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cXwykob .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cXwykob .mbr-section-title {
  color: #ffffff;
}
.cid-v72cXwykob .mbr-section-title,
.cid-v72cXwykob .mbr-section-btn {
  text-align: center;
}
.cid-v72cXxquvX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXxquvX .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXxquvX .row {
    padding: 0 12px;
  }
}
.cid-v72cXxquvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXxquvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXxquvX .image-wrapper {
  position: relative;
}
.cid-v72cXxquvX .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cXxquvX .image-wrapper::before {
    display: none;
  }
}
.cid-v72cXxquvX .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cXxquvX .image-wrapper::after {
    display: none;
  }
}
.cid-v72cXxquvX .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cXxquvX .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cXxquvX .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cXxquvX .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXxquvX .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cXxquvX .mbr-section-title {
  color: #1111a2;
}
.cid-v72cXxquvX .mbr-text {
  color: #1e4381;
}
.cid-v72cXyjahl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cXyjahl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXyjahl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXyjahl .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXyjahl .row {
    padding: 0 12px;
  }
}
.cid-v72cXyjahl .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cXyjahl .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cXyjahl .row::after {
    display: none;
  }
}
.cid-v72cXyjahl .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cXyjahl .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cXyjahl .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXyjahl .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cXyjahl .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXyjahl .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cXyjahl .mbr-section-title {
  color: #000000;
}
.cid-v72cXyjahl .mbr-text {
  color: #ffffff;
}
.cid-v72cXzdXvS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXzdXvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXzdXvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXzdXvS .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cXzdXvS .row {
    padding: 0 12px;
  }
}
.cid-v72cXzdXvS .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cXzdXvS .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXzdXvS .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXzdXvS .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXzdXvS .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cXzdXvS .image {
  position: relative;
}
.cid-v72cXzdXvS .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cXzdXvS .image::before {
    display: none;
  }
}
.cid-v72cXzdXvS .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cXzdXvS .image::after {
    display: none;
  }
}
.cid-v72cXzdXvS .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cXzdXvS .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cXzdXvS .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cXzdXvS .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cXzdXvS .mbr-section-title {
  color: #1111a2;
}
.cid-v72cXzdXvS .mbr-text {
  color: #1e4381;
}
.cid-v72cXULU8q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cXULU8q .row {
  position: relative;
}
.cid-v72cXULU8q .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cXULU8q .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72cXULU8q .row::after {
    display: none;
  }
}
.cid-v72cXULU8q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXULU8q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXULU8q .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cXULU8q .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72cXULU8q .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cXULU8q .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cXULU8q .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cXULU8q .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cXULU8q .mbr-section-title {
  color: #ffffff;
}
.cid-v72cXULU8q .mbr-section-title,
.cid-v72cXULU8q .mbr-section-btn {
  text-align: center;
}
.cid-v72cXW0wat {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXW0wat .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXW0wat .row {
    padding: 0 12px;
  }
}
.cid-v72cXW0wat .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXW0wat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXW0wat .image-wrapper {
  position: relative;
}
.cid-v72cXW0wat .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cXW0wat .image-wrapper::before {
    display: none;
  }
}
.cid-v72cXW0wat .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cXW0wat .image-wrapper::after {
    display: none;
  }
}
.cid-v72cXW0wat .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cXW0wat .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cXW0wat .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cXW0wat .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXW0wat .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cXW0wat .mbr-section-title {
  color: #1111a2;
}
.cid-v72cXW0wat .mbr-text {
  color: #1e4381;
}
.cid-v72cXX8tnY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cXX8tnY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXX8tnY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXX8tnY .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cXX8tnY .row {
    padding: 0 12px;
  }
}
.cid-v72cXX8tnY .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cXX8tnY .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cXX8tnY .row::after {
    display: none;
  }
}
.cid-v72cXX8tnY .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cXX8tnY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cXX8tnY .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXX8tnY .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cXX8tnY .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXX8tnY .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cXX8tnY .mbr-section-title {
  color: #000000;
}
.cid-v72cXX8tnY .mbr-text {
  color: #ffffff;
}
.cid-v72cXYgkqd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cXYgkqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cXYgkqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cXYgkqd .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cXYgkqd .row {
    padding: 0 12px;
  }
}
.cid-v72cXYgkqd .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cXYgkqd .text-wrapper {
    padding: 0;
  }
}
.cid-v72cXYgkqd .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cXYgkqd .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cXYgkqd .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cXYgkqd .image {
  position: relative;
}
.cid-v72cXYgkqd .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cXYgkqd .image::before {
    display: none;
  }
}
.cid-v72cXYgkqd .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cXYgkqd .image::after {
    display: none;
  }
}
.cid-v72cXYgkqd .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cXYgkqd .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cXYgkqd .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cXYgkqd .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cXYgkqd .mbr-section-title {
  color: #1111a2;
}
.cid-v72cXYgkqd .mbr-text {
  color: #1e4381;
}
.cid-v72cY48yYM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cY48yYM .row {
  position: relative;
}
.cid-v72cY48yYM .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cY48yYM .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72cY48yYM .row::after {
    display: none;
  }
}
.cid-v72cY48yYM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cY48yYM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cY48yYM .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cY48yYM .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72cY48yYM .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cY48yYM .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cY48yYM .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cY48yYM .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cY48yYM .mbr-section-title {
  color: #ffffff;
}
.cid-v72cY48yYM .mbr-section-title,
.cid-v72cY48yYM .mbr-section-btn {
  text-align: center;
}
.cid-v72cY5jLtq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cY5jLtq .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cY5jLtq .row {
    padding: 0 12px;
  }
}
.cid-v72cY5jLtq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cY5jLtq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cY5jLtq .image-wrapper {
  position: relative;
}
.cid-v72cY5jLtq .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cY5jLtq .image-wrapper::before {
    display: none;
  }
}
.cid-v72cY5jLtq .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cY5jLtq .image-wrapper::after {
    display: none;
  }
}
.cid-v72cY5jLtq .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cY5jLtq .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cY5jLtq .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cY5jLtq .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cY5jLtq .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cY5jLtq .mbr-section-title {
  color: #1111a2;
}
.cid-v72cY5jLtq .mbr-text {
  color: #1e4381;
}
.cid-v72cY6yCvY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cY6yCvY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cY6yCvY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cY6yCvY .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cY6yCvY .row {
    padding: 0 12px;
  }
}
.cid-v72cY6yCvY .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cY6yCvY .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cY6yCvY .row::after {
    display: none;
  }
}
.cid-v72cY6yCvY .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cY6yCvY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cY6yCvY .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cY6yCvY .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cY6yCvY .text-wrapper {
    padding: 0;
  }
}
.cid-v72cY6yCvY .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cY6yCvY .mbr-section-title {
  color: #000000;
}
.cid-v72cY6yCvY .mbr-text {
  color: #ffffff;
}
.cid-v72cY7J01d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cY7J01d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cY7J01d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cY7J01d .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cY7J01d .row {
    padding: 0 12px;
  }
}
.cid-v72cY7J01d .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cY7J01d .text-wrapper {
    padding: 0;
  }
}
.cid-v72cY7J01d .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cY7J01d .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cY7J01d .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cY7J01d .image {
  position: relative;
}
.cid-v72cY7J01d .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cY7J01d .image::before {
    display: none;
  }
}
.cid-v72cY7J01d .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cY7J01d .image::after {
    display: none;
  }
}
.cid-v72cY7J01d .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cY7J01d .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cY7J01d .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cY7J01d .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cY7J01d .mbr-section-title {
  color: #1111a2;
}
.cid-v72cY7J01d .mbr-text {
  color: #1e4381;
}
.cid-v7gpBoq3im {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #162148;
}
.cid-v7gpBoq3im .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #1111a2;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-v7gpBoq3im .position-relative::after {
    display: none;
  }
}
.cid-v7gpBoq3im .item:focus,
.cid-v7gpBoq3im span:focus {
  outline: none;
}
.cid-v7gpBoq3im .item-wrapper {
  position: relative;
}
.cid-v7gpBoq3im .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-v7gpBoq3im .embla__slide {
    min-width: 95%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7gpBoq3im .embla__button--next,
.cid-v7gpBoq3im .embla__button--prev {
  display: flex;
}
.cid-v7gpBoq3im .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #fcf600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7gpBoq3im .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7gpBoq3im .embla__button:hover {
  background: transparent;
  color: #fcf600;
}
.cid-v7gpBoq3im .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpBoq3im .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-v7gpBoq3im .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpBoq3im .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-v7gpBoq3im .embla__button {
    top: auto;
  }
}
.cid-v7gpBoq3im .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-v7gpBoq3im .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-v7gpBoq3im .embla__viewport {
    width: 100%;
  }
}
.cid-v7gpBoq3im .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7gpBoq3im .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7gpBoq3im .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7gpBoq3im .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-v7gpBoq3im .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-v7gpBoq3im .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-v7gpBoq3im .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-v7gpBoq3im .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-v7gpBoq3im .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-v7gpBoq3im .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v7gpBoq3im .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-v7gpBoq3im .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #1111a2;
}
.cid-v7gpBoq3im .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v7gpBoq3im .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v7gpBoq3im .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-v7gpBoq3im .slide-content .item-text {
    padding: 0 67px;
  }
}
@media (max-width: 425px) {
  .cid-v7gpBoq3im .slide-content .item-text {
    padding: 0 90px;
    font-size: 80%;
  }
}
.cid-v7gpBoq3im .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-v7gpBoq3im .slide-content .item-text span {
    display: none;
  }
}
.cid-v7gpBoq3im .slide-content .item-text .mbr-text {
  margin-bottom: 0;
  font-size: 80%;
}
.cid-v7gpBoq3im .mbr-name {
  color: #fcf600;
}
.cid-v7gpBoq3im .mbr-desc {
  color: #ffffff;
}
.cid-v7gpBoq3im .mbr-text {
  color: #ffffff;
}
.cid-v72cYayOej {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v72cYayOej .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v72cYayOej .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v72cYayOej .container-fluid {
    padding: 0 24px;
  }
}
.cid-v72cYayOej .container {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v72cYayOej .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v72cYayOej .container {
    padding: 0 24px;
  }
}
.cid-v72cYayOej .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-v72cYayOej .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v72cYayOej .embla__slide .slide-content {
  width: 100%;
}
.cid-v72cYayOej .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-v72cYayOej .embla__button--next,
.cid-v72cYayOej .embla__button--prev {
  display: flex;
}
.cid-v72cYayOej .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #c10000 !important;
  color: #0000cc !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-v72cYayOej .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v72cYayOej .embla__button:hover {
  opacity: .5 !important;
}
.cid-v72cYayOej .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-v72cYayOej .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-v72cYayOej .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-v72cYayOej .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v72cYayOej .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-v72cYayOej .embla {
    padding: 0;
  }
}
.cid-v72cYayOej .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v72cYayOej .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v72cYayOej .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v72cYayOej .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v72cYbZsjQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v72cYbZsjQ .container-fluid,
.cid-v72cYbZsjQ .container {
  position: relative;
}
.cid-v72cYbZsjQ .container-fluid::before,
.cid-v72cYbZsjQ .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cYbZsjQ .container-fluid::before,
  .cid-v72cYbZsjQ .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .container-fluid::before,
  .cid-v72cYbZsjQ .container::before {
    display: none;
  }
}
.cid-v72cYbZsjQ .media-wrap1 {
  height: 300px;
}
.cid-v72cYbZsjQ .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v72cYbZsjQ .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v72cYbZsjQ .media-wrap2 {
  height: 300px;
}
.cid-v72cYbZsjQ .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v72cYbZsjQ .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v72cYbZsjQ .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cYbZsjQ .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v72cYbZsjQ .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v72cYbZsjQ .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v72cYbZsjQ .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v72cYbZsjQ .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v72cYbZsjQ .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v72cYbZsjQ .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v72cYbZsjQ .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v72cYbZsjQ .list .item-wrap:hover {
  opacity: .7;
}
.cid-v72cYbZsjQ .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .copyright {
    background-color: #232323;
  }
}
.cid-v72cYbZsjQ .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72cYbZsjQ .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v72cYbZsjQ .mbr-text {
  color: #bcbfca;
}
.cid-v72cYbZsjQ .mbr-desc {
  color: #ffffff;
}
.cid-v72cYbZsjQ .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v72cYbZsjQ .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v72cYbZsjQ .mbr-text,
.cid-v72cYbZsjQ .icon-wrapper {
  color: #ffffff;
}
.cid-v72cYdqGEk.popup-builder {
  background-color: #ffffff;
}
.cid-v72cYdqGEk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v72cYdqGEk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v72cYdqGEk .modal-content,
.cid-v72cYdqGEk .modal-dialog {
  height: auto;
}
.cid-v72cYdqGEk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v72cYdqGEk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v72cYdqGEk .form-wrapper .mbr-form .form-group,
  .cid-v72cYdqGEk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v72cYdqGEk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v72cYdqGEk .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v72cYdqGEk .mbr-text {
  text-align: center;
}
.cid-v72cYdqGEk .pt-0 {
  padding-top: 0 !important;
}
.cid-v72cYdqGEk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v72cYdqGEk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v72cYdqGEk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v72cYdqGEk .modal-open {
  overflow: hidden;
}
.cid-v72cYdqGEk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v72cYdqGEk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v72cYdqGEk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v72cYdqGEk .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v72cYdqGEk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v72cYdqGEk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v72cYdqGEk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v72cYdqGEk .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v72cYdqGEk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v72cYdqGEk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  background-color: #000;
}
.cid-v72cYdqGEk .modal-backdrop.fade {
  opacity: 0;
}
.cid-v72cYdqGEk .modal-backdrop.show {
  opacity: .5;
}
.cid-v72cYdqGEk .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v72cYdqGEk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cYdqGEk .modal-header {
    padding: 1rem;
  }
}
.cid-v72cYdqGEk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v72cYdqGEk .modal-header .close svg {
  fill: #353535;
}
.cid-v72cYdqGEk .modal-header .close:hover {
  opacity: 1;
}
.cid-v72cYdqGEk .modal-header .close:focus {
  outline: none;
}
.cid-v72cYdqGEk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v72cYdqGEk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v72cYdqGEk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cYdqGEk .modal-body {
    padding: 1rem;
  }
}
.cid-v72cYdqGEk .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v72cYdqGEk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cYdqGEk .modal-footer {
    padding: 1rem;
  }
}
.cid-v72cYdqGEk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v72cYdqGEk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v72cYdqGEk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v72cYdqGEk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v72cYdqGEk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v72cYdqGEk .modal-lg,
  .cid-v72cYdqGEk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v72cYdqGEk .modal-xl {
    max-width: 1140px;
  }
}
.cid-v72cYdqGEk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v72cYdqGEk .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v72cYdqGEk .form-group {
  margin-bottom: 1rem;
}
.cid-v72cYdqGEk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v72cYdqGEk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v72cYdqGEk .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v72cYdqGEk .mbr-section-btn {
  margin: 0;
}
.cid-v72cYdqGEk .mbr-section-btn .btn {
  margin: 0;
}
.cid-v72cL5LBte {
  z-index: 1000;
  width: 100%;
}
.cid-v72cL5LBte .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-v72cL5LBte .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-v72cL5LBte .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v72cL5LBte .menu_box .navbar.opened,
  .cid-v72cL5LBte .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v72cL5LBte nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v72cL5LBte .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v72cL5LBte .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cL5LBte .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v72cL5LBte .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v72cL5LBte .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v72cL5LBte .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-v72cL5LBte .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v72cL5LBte .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v72cL5LBte .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v72cL5LBte .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v72cL5LBte .offcanvas-body .mbr-text,
  .cid-v72cL5LBte .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v72cL5LBte .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v72cL5LBte .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v72cL5LBte .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-v72cL5LBte .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v72cL5LBte .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v72cL5LBte .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v72cL5LBte .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v72cL5LBte ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v72cL5LBte .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v72cL5LBte .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-v72cL5LBte .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v72cL5LBte li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v72cL5LBte li.nav-item:hover {
    opacity: .8;
  }
  .cid-v72cL5LBte .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v72cL5LBte .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v72cL5LBte .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v72cL5LBte .nav-item {
    margin: 0 !important;
  }
}
.cid-v72cL5LBte .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v72cL5LBte .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-v72cL5LBte .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v72cL5LBte .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v72cL5LBte .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-v72cL5LBte .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v72cL5LBte .offcanvas_box {
    display: none;
  }
}
.cid-v72cL5LBte .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v72cL5LBte .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v72cL5LBte .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v72cL5LBte .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-v72cL5LBte .container {
  display: flex;
  margin: auto;
}
.cid-v72cL5LBte .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-v72cL5LBte .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v72cL5LBte .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-v72cL5LBte .navbar-caption {
  color: #1e4381;
}
.cid-v72cL5LBte .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v72cL5LBte .navbar-nav {
    margin: 0;
  }
}
.cid-v72cL5LBte .dropdown-menu,
.cid-v72cL5LBte .navbar.opened {
  background-color: true !important;
}
.cid-v72cL5LBte .nav-item:focus,
.cid-v72cL5LBte .nav-link:focus {
  outline: none;
}
.cid-v72cL5LBte .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v72cL5LBte .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v72cL5LBte .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v72cL5LBte .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v72cL5LBte .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v72cL5LBte .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v72cL5LBte .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-v72cL5LBte .navbar.opened {
  transition: all 0.3s;
}
.cid-v72cL5LBte .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v72cL5LBte .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v72cL5LBte .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v72cL5LBte .navbar.collapsed {
  justify-content: center;
}
.cid-v72cL5LBte .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v72cL5LBte .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v72cL5LBte .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v72cL5LBte .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v72cL5LBte .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v72cL5LBte .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v72cL5LBte .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v72cL5LBte .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v72cL5LBte .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v72cL5LBte .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v72cL5LBte .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v72cL5LBte .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v72cL5LBte .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v72cL5LBte .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v72cL5LBte .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v72cL5LBte .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v72cL5LBte .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v72cL5LBte .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v72cL5LBte .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v72cL5LBte .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v72cL5LBte .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v72cL5LBte .navbar.navbar-short {
  min-height: 60px;
}
.cid-v72cL5LBte .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v72cL5LBte .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v72cL5LBte .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v72cL5LBte .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v72cL5LBte .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v72cL5LBte .dropdown-item.active,
.cid-v72cL5LBte .dropdown-item:active {
  background-color: transparent;
}
.cid-v72cL5LBte .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v72cL5LBte .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v72cL5LBte .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v72cL5LBte .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v72cL5LBte ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v72cL5LBte .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v72cL5LBte button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-v72cL5LBte button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-v72cL5LBte button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v72cL5LBte button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v72cL5LBte button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v72cL5LBte button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v72cL5LBte nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v72cL5LBte nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v72cL5LBte nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v72cL5LBte nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v72cL5LBte a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v72cL5LBte .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v72cL5LBte .navbar {
    height: 70px;
  }
  .cid-v72cL5LBte .navbar.opened {
    height: auto;
  }
  .cid-v72cL5LBte .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v72cL5LBte .mbr-section-btn .btn,
.cid-v72cL5LBte .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-v72cL5LBte .mbr-section-btn .btn:hover,
.cid-v72cL5LBte .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-v72cL5LBte .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v72cL5LBte .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v72cL5LBte .navbar-caption:hover {
  color: #0000cc;
}
.cid-v72cL5LBte .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v72cL5LBte .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v72cL5LBte .text_widget {
  color: #ffffff;
}
.cid-v72cL5LBte .mbr-section-subtitle,
.cid-v72cL5LBte .text_widget {
  text-align: left;
}
.cid-v72cL5LBte a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v72cL6WCYo {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f1f1f2;
}
.cid-v72cL6WCYo .row::after {
  content: '';
  display: block;
  background: #ee2947;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .row::after {
    display: none;
  }
}
.cid-v72cL6WCYo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cL6WCYo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cL6WCYo .image {
  position: relative;
}
.cid-v72cL6WCYo .image::before {
  content: '';
  display: block;
  background: #1111a2;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 0 0 10rem 0;
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .image::before {
    display: none;
  }
}
.cid-v72cL6WCYo .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-v72cL6WCYo .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #fcf600;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .image-wrapper::before {
    display: none;
  }
}
.cid-v72cL6WCYo .image-wrapper::after {
  content: '';
  display: block;
  background: #008000;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .image-wrapper::after {
    display: none;
  }
}
.cid-v72cL6WCYo .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 50% 0 0;
  z-index: 1;
}
.cid-v72cL6WCYo .title {
  display: flex;
  align-items: center;
}
.cid-v72cL6WCYo .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-v72cL6WCYo .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v72cL6WCYo .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v72cL6WCYo .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v72cL6WCYo .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-v72cL6WCYo .mbr-section-title {
  color: #008000;
}
.cid-v72cL6WCYo .mbr-text {
  color: #000000;
}
.cid-v72cL7JEaA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cL7JEaA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cL7JEaA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cL7JEaA .row {
  padding: 1rem;
}
.cid-v72cL7JEaA .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-v72cL7JEaA .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cL7JEaA .title-wrapper {
    padding: 0;
  }
}
.cid-v72cL7JEaA .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cL7JEaA .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cL7JEaA .cards .card {
  margin-bottom: 20px;
}
.cid-v72cL7JEaA .cards .card .mbr-number {
  margin: 0;
}
.cid-v72cL7JEaA .cards .card .mbr-desc {
  margin: 0;
}
.cid-v72cL7JEaA .mbr-section-title {
  color: #008000;
}
.cid-v72cL7JEaA .mbr-text {
  color: #000000;
}
.cid-v72cL7JEaA .mbr-number {
  color: #ee2947;
}
.cid-v72cL7JEaA .mbr-desc {
  color: #1e4381;
}
.cid-v72cL8OxkX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cL8OxkX .row {
  position: relative;
}
.cid-v72cL8OxkX .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cL8OxkX .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72cL8OxkX .row::after {
    display: none;
  }
}
.cid-v72cL8OxkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cL8OxkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cL8OxkX .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cL8OxkX .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cL8OxkX .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-v72cL8OxkX .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cL8OxkX .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cL8OxkX .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cL8OxkX .mbr-section-title {
  color: #ffffff;
}
.cid-v72cL8OxkX .mbr-section-title,
.cid-v72cL8OxkX .mbr-section-btn {
  text-align: center;
}
.cid-v72cL9AEX5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cL9AEX5 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cL9AEX5 .row {
    padding: 0 12px;
  }
}
.cid-v72cL9AEX5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cL9AEX5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cL9AEX5 .image-wrapper {
  position: relative;
}
.cid-v72cL9AEX5 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cL9AEX5 .image-wrapper::before {
    display: none;
  }
}
.cid-v72cL9AEX5 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cL9AEX5 .image-wrapper::after {
    display: none;
  }
}
.cid-v72cL9AEX5 .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cL9AEX5 .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cL9AEX5 .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cL9AEX5 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cL9AEX5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cL9AEX5 .mbr-section-title {
  color: #c10000;
}
.cid-v72cL9AEX5 .mbr-text {
  color: #1e4381;
}
.cid-v72cLaog80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cLaog80 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLaog80 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLaog80 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cLaog80 .row {
    padding: 0 12px;
  }
}
.cid-v72cLaog80 .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cLaog80 .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cLaog80 .row::after {
    display: none;
  }
}
.cid-v72cLaog80 .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cLaog80 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cLaog80 .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLaog80 .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cLaog80 .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLaog80 .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cLaog80 .mbr-section-title {
  color: #000000;
}
.cid-v72cLaog80 .mbr-text {
  color: #ffffff;
}
.cid-v72cLbgA9J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cLbgA9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLbgA9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLbgA9J .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cLbgA9J .row {
    padding: 0 12px;
  }
}
.cid-v72cLbgA9J .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cLbgA9J .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLbgA9J .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cLbgA9J .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLbgA9J .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cLbgA9J .image {
  position: relative;
}
.cid-v72cLbgA9J .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cLbgA9J .image::before {
    display: none;
  }
}
.cid-v72cLbgA9J .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cLbgA9J .image::after {
    display: none;
  }
}
.cid-v72cLbgA9J .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cLbgA9J .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cLbgA9J .image-wrapper img {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cLbgA9J .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cLbgA9J .image-wrapper video {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cLbgA9J .image-wrapper video {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cLbgA9J .mbr-section-title {
  color: #1e4381;
}
.cid-v72cLbgA9J .mbr-text {
  color: #1e4381;
}
.cid-v72cLA8ZcE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cLA8ZcE .row {
  position: relative;
}
.cid-v72cLA8ZcE .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cLA8ZcE .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72cLA8ZcE .row::after {
    display: none;
  }
}
.cid-v72cLA8ZcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLA8ZcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLA8ZcE .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cLA8ZcE .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72cLA8ZcE .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cLA8ZcE .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cLA8ZcE .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cLA8ZcE .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cLA8ZcE .mbr-section-title {
  color: #ffffff;
}
.cid-v72cLA8ZcE .mbr-section-title,
.cid-v72cLA8ZcE .mbr-section-btn {
  text-align: center;
}
.cid-v72cLBhAOp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cLBhAOp .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cLBhAOp .row {
    padding: 0 12px;
  }
}
.cid-v72cLBhAOp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLBhAOp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLBhAOp .image-wrapper {
  position: relative;
}
.cid-v72cLBhAOp .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cLBhAOp .image-wrapper::before {
    display: none;
  }
}
.cid-v72cLBhAOp .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cLBhAOp .image-wrapper::after {
    display: none;
  }
}
.cid-v72cLBhAOp .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cLBhAOp .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cLBhAOp .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cLBhAOp .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cLBhAOp .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cLBhAOp .mbr-section-title {
  color: #1111a2;
}
.cid-v72cLBhAOp .mbr-text {
  color: #1e4381;
}
.cid-v72cLCniNg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cLCniNg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLCniNg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLCniNg .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cLCniNg .row {
    padding: 0 12px;
  }
}
.cid-v72cLCniNg .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cLCniNg .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cLCniNg .row::after {
    display: none;
  }
}
.cid-v72cLCniNg .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cLCniNg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cLCniNg .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLCniNg .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cLCniNg .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLCniNg .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cLCniNg .mbr-section-title {
  color: #000000;
}
.cid-v72cLCniNg .mbr-text {
  color: #ffffff;
}
.cid-v72cLDtw9C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cLDtw9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLDtw9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLDtw9C .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cLDtw9C .row {
    padding: 0 12px;
  }
}
.cid-v72cLDtw9C .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cLDtw9C .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLDtw9C .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cLDtw9C .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLDtw9C .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cLDtw9C .image {
  position: relative;
}
.cid-v72cLDtw9C .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cLDtw9C .image::before {
    display: none;
  }
}
.cid-v72cLDtw9C .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cLDtw9C .image::after {
    display: none;
  }
}
.cid-v72cLDtw9C .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cLDtw9C .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cLDtw9C .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cLDtw9C .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cLDtw9C .mbr-section-title {
  color: #1111a2;
}
.cid-v72cLDtw9C .mbr-text {
  color: #1e4381;
}
.cid-v72cLECgQ9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cLECgQ9 .row {
  position: relative;
}
.cid-v72cLECgQ9 .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cLECgQ9 .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72cLECgQ9 .row::after {
    display: none;
  }
}
.cid-v72cLECgQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLECgQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLECgQ9 .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cLECgQ9 .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72cLECgQ9 .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cLECgQ9 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cLECgQ9 .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cLECgQ9 .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cLECgQ9 .mbr-section-title {
  color: #ffffff;
}
.cid-v72cLECgQ9 .mbr-section-title,
.cid-v72cLECgQ9 .mbr-section-btn {
  text-align: center;
}
.cid-v72cLFJGMt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cLFJGMt .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cLFJGMt .row {
    padding: 0 12px;
  }
}
.cid-v72cLFJGMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLFJGMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLFJGMt .image-wrapper {
  position: relative;
}
.cid-v72cLFJGMt .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cLFJGMt .image-wrapper::before {
    display: none;
  }
}
.cid-v72cLFJGMt .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cLFJGMt .image-wrapper::after {
    display: none;
  }
}
.cid-v72cLFJGMt .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cLFJGMt .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cLFJGMt .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cLFJGMt .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cLFJGMt .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cLFJGMt .mbr-section-title {
  color: #1111a2;
}
.cid-v72cLFJGMt .mbr-text {
  color: #1e4381;
}
.cid-v72cLGSsSn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cLGSsSn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLGSsSn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLGSsSn .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cLGSsSn .row {
    padding: 0 12px;
  }
}
.cid-v72cLGSsSn .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cLGSsSn .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cLGSsSn .row::after {
    display: none;
  }
}
.cid-v72cLGSsSn .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cLGSsSn .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cLGSsSn .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLGSsSn .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cLGSsSn .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLGSsSn .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cLGSsSn .mbr-section-title {
  color: #000000;
}
.cid-v72cLGSsSn .mbr-text {
  color: #ffffff;
}
.cid-v72cLI3Bqn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cLI3Bqn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLI3Bqn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLI3Bqn .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cLI3Bqn .row {
    padding: 0 12px;
  }
}
.cid-v72cLI3Bqn .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cLI3Bqn .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLI3Bqn .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cLI3Bqn .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLI3Bqn .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cLI3Bqn .image {
  position: relative;
}
.cid-v72cLI3Bqn .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cLI3Bqn .image::before {
    display: none;
  }
}
.cid-v72cLI3Bqn .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cLI3Bqn .image::after {
    display: none;
  }
}
.cid-v72cLI3Bqn .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cLI3Bqn .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cLI3Bqn .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cLI3Bqn .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cLI3Bqn .mbr-section-title {
  color: #1111a2;
}
.cid-v72cLI3Bqn .mbr-text {
  color: #1e4381;
}
.cid-v72cLO6OIu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72cLO6OIu .row {
  position: relative;
}
.cid-v72cLO6OIu .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72cLO6OIu .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72cLO6OIu .row::after {
    display: none;
  }
}
.cid-v72cLO6OIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLO6OIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLO6OIu .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72cLO6OIu .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72cLO6OIu .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72cLO6OIu .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72cLO6OIu .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72cLO6OIu .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72cLO6OIu .mbr-section-title {
  color: #ffffff;
}
.cid-v72cLO6OIu .mbr-section-title,
.cid-v72cLO6OIu .mbr-section-btn {
  text-align: center;
}
.cid-v72cLPncC5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cLPncC5 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cLPncC5 .row {
    padding: 0 12px;
  }
}
.cid-v72cLPncC5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLPncC5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLPncC5 .image-wrapper {
  position: relative;
}
.cid-v72cLPncC5 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72cLPncC5 .image-wrapper::before {
    display: none;
  }
}
.cid-v72cLPncC5 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cLPncC5 .image-wrapper::after {
    display: none;
  }
}
.cid-v72cLPncC5 .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72cLPncC5 .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72cLPncC5 .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72cLPncC5 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cLPncC5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72cLPncC5 .mbr-section-title {
  color: #1111a2;
}
.cid-v72cLPncC5 .mbr-text {
  color: #1e4381;
}
.cid-v72cLQD4py {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72cLQD4py .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLQD4py .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLQD4py .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72cLQD4py .row {
    padding: 0 12px;
  }
}
.cid-v72cLQD4py .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72cLQD4py .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72cLQD4py .row::after {
    display: none;
  }
}
.cid-v72cLQD4py .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72cLQD4py .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72cLQD4py .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLQD4py .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cLQD4py .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLQD4py .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72cLQD4py .mbr-section-title {
  color: #000000;
}
.cid-v72cLQD4py .mbr-text {
  color: #ffffff;
}
.cid-v72cLRT6QI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72cLRT6QI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72cLRT6QI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72cLRT6QI .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72cLRT6QI .row {
    padding: 0 12px;
  }
}
.cid-v72cLRT6QI .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72cLRT6QI .text-wrapper {
    padding: 0;
  }
}
.cid-v72cLRT6QI .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72cLRT6QI .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72cLRT6QI .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72cLRT6QI .image {
  position: relative;
}
.cid-v72cLRT6QI .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72cLRT6QI .image::before {
    display: none;
  }
}
.cid-v72cLRT6QI .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72cLRT6QI .image::after {
    display: none;
  }
}
.cid-v72cLRT6QI .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72cLRT6QI .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72cLRT6QI .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72cLRT6QI .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72cLRT6QI .mbr-section-title {
  color: #1111a2;
}
.cid-v72cLRT6QI .mbr-text {
  color: #1e4381;
}
.cid-v7gpsJkogd {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #162148;
}
.cid-v7gpsJkogd .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #1111a2;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-v7gpsJkogd .position-relative::after {
    display: none;
  }
}
.cid-v7gpsJkogd .item:focus,
.cid-v7gpsJkogd span:focus {
  outline: none;
}
.cid-v7gpsJkogd .item-wrapper {
  position: relative;
}
.cid-v7gpsJkogd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-v7gpsJkogd .embla__slide {
    min-width: 95%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7gpsJkogd .embla__button--next,
.cid-v7gpsJkogd .embla__button--prev {
  display: flex;
}
.cid-v7gpsJkogd .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #fcf600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7gpsJkogd .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7gpsJkogd .embla__button:hover {
  background: transparent;
  color: #fcf600;
}
.cid-v7gpsJkogd .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpsJkogd .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-v7gpsJkogd .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpsJkogd .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-v7gpsJkogd .embla__button {
    top: auto;
  }
}
.cid-v7gpsJkogd .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-v7gpsJkogd .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-v7gpsJkogd .embla__viewport {
    width: 100%;
  }
}
.cid-v7gpsJkogd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7gpsJkogd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7gpsJkogd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7gpsJkogd .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-v7gpsJkogd .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-v7gpsJkogd .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-v7gpsJkogd .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-v7gpsJkogd .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-v7gpsJkogd .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-v7gpsJkogd .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v7gpsJkogd .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-v7gpsJkogd .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #1111a2;
}
.cid-v7gpsJkogd .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v7gpsJkogd .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v7gpsJkogd .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-v7gpsJkogd .slide-content .item-text {
    padding: 0 67px;
  }
}
@media (max-width: 425px) {
  .cid-v7gpsJkogd .slide-content .item-text {
    padding: 0 90px;
    font-size: 80%;
  }
}
.cid-v7gpsJkogd .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-v7gpsJkogd .slide-content .item-text span {
    display: none;
  }
}
.cid-v7gpsJkogd .slide-content .item-text .mbr-text {
  margin-bottom: 0;
  font-size: 80%;
}
.cid-v7gpsJkogd .mbr-name {
  color: #fcf600;
}
.cid-v7gpsJkogd .mbr-desc {
  color: #ffffff;
}
.cid-v7gpsJkogd .mbr-text {
  color: #ffffff;
}
.cid-v72cLUM6lJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v72cLUM6lJ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v72cLUM6lJ .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v72cLUM6lJ .container-fluid {
    padding: 0 24px;
  }
}
.cid-v72cLUM6lJ .container {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v72cLUM6lJ .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v72cLUM6lJ .container {
    padding: 0 24px;
  }
}
.cid-v72cLUM6lJ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-v72cLUM6lJ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v72cLUM6lJ .embla__slide .slide-content {
  width: 100%;
}
.cid-v72cLUM6lJ .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-v72cLUM6lJ .embla__button--next,
.cid-v72cLUM6lJ .embla__button--prev {
  display: flex;
}
.cid-v72cLUM6lJ .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #c10000 !important;
  color: #0000cc !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-v72cLUM6lJ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v72cLUM6lJ .embla__button:hover {
  opacity: .5 !important;
}
.cid-v72cLUM6lJ .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-v72cLUM6lJ .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-v72cLUM6lJ .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-v72cLUM6lJ .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v72cLUM6lJ .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-v72cLUM6lJ .embla {
    padding: 0;
  }
}
.cid-v72cLUM6lJ .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v72cLUM6lJ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v72cLUM6lJ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v72cLUM6lJ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v72cLWfOfu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v72cLWfOfu .container-fluid,
.cid-v72cLWfOfu .container {
  position: relative;
}
.cid-v72cLWfOfu .container-fluid::before,
.cid-v72cLWfOfu .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72cLWfOfu .container-fluid::before,
  .cid-v72cLWfOfu .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .container-fluid::before,
  .cid-v72cLWfOfu .container::before {
    display: none;
  }
}
.cid-v72cLWfOfu .media-wrap1 {
  height: 300px;
}
.cid-v72cLWfOfu .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v72cLWfOfu .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v72cLWfOfu .media-wrap2 {
  height: 300px;
}
.cid-v72cLWfOfu .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v72cLWfOfu .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v72cLWfOfu .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72cLWfOfu .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v72cLWfOfu .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v72cLWfOfu .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v72cLWfOfu .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v72cLWfOfu .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v72cLWfOfu .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v72cLWfOfu .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v72cLWfOfu .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v72cLWfOfu .list .item-wrap:hover {
  opacity: .7;
}
.cid-v72cLWfOfu .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .copyright {
    background-color: #232323;
  }
}
.cid-v72cLWfOfu .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72cLWfOfu .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v72cLWfOfu .mbr-text {
  color: #bcbfca;
}
.cid-v72cLWfOfu .mbr-desc {
  color: #ffffff;
}
.cid-v72cLWfOfu .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v72cLWfOfu .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v72cLWfOfu .mbr-text,
.cid-v72cLWfOfu .icon-wrapper {
  color: #ffffff;
}
.cid-v72cLXIiCN.popup-builder {
  background-color: #ffffff;
}
.cid-v72cLXIiCN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v72cLXIiCN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v72cLXIiCN .modal-content,
.cid-v72cLXIiCN .modal-dialog {
  height: auto;
}
.cid-v72cLXIiCN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v72cLXIiCN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v72cLXIiCN .form-wrapper .mbr-form .form-group,
  .cid-v72cLXIiCN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v72cLXIiCN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v72cLXIiCN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v72cLXIiCN .mbr-text {
  text-align: center;
}
.cid-v72cLXIiCN .pt-0 {
  padding-top: 0 !important;
}
.cid-v72cLXIiCN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v72cLXIiCN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v72cLXIiCN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v72cLXIiCN .modal-open {
  overflow: hidden;
}
.cid-v72cLXIiCN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v72cLXIiCN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v72cLXIiCN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v72cLXIiCN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v72cLXIiCN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v72cLXIiCN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v72cLXIiCN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v72cLXIiCN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v72cLXIiCN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v72cLXIiCN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  background-color: #000;
}
.cid-v72cLXIiCN .modal-backdrop.fade {
  opacity: 0;
}
.cid-v72cLXIiCN .modal-backdrop.show {
  opacity: .5;
}
.cid-v72cLXIiCN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v72cLXIiCN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cLXIiCN .modal-header {
    padding: 1rem;
  }
}
.cid-v72cLXIiCN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v72cLXIiCN .modal-header .close svg {
  fill: #353535;
}
.cid-v72cLXIiCN .modal-header .close:hover {
  opacity: 1;
}
.cid-v72cLXIiCN .modal-header .close:focus {
  outline: none;
}
.cid-v72cLXIiCN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v72cLXIiCN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v72cLXIiCN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cLXIiCN .modal-body {
    padding: 1rem;
  }
}
.cid-v72cLXIiCN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v72cLXIiCN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v72cLXIiCN .modal-footer {
    padding: 1rem;
  }
}
.cid-v72cLXIiCN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v72cLXIiCN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v72cLXIiCN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v72cLXIiCN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v72cLXIiCN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v72cLXIiCN .modal-lg,
  .cid-v72cLXIiCN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v72cLXIiCN .modal-xl {
    max-width: 1140px;
  }
}
.cid-v72cLXIiCN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v72cLXIiCN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v72cLXIiCN .form-group {
  margin-bottom: 1rem;
}
.cid-v72cLXIiCN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v72cLXIiCN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v72cLXIiCN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v72cLXIiCN .mbr-section-btn {
  margin: 0;
}
.cid-v72cLXIiCN .mbr-section-btn .btn {
  margin: 0;
}
.cid-v72d0yuniX {
  z-index: 1000;
  width: 100%;
}
.cid-v72d0yuniX .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-v72d0yuniX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-v72d0yuniX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v72d0yuniX .menu_box .navbar.opened,
  .cid-v72d0yuniX .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v72d0yuniX nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v72d0yuniX .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v72d0yuniX .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v72d0yuniX .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v72d0yuniX .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v72d0yuniX .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v72d0yuniX .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-v72d0yuniX .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v72d0yuniX .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v72d0yuniX .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v72d0yuniX .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v72d0yuniX .offcanvas-body .mbr-text,
  .cid-v72d0yuniX .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v72d0yuniX .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v72d0yuniX .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v72d0yuniX .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-v72d0yuniX .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v72d0yuniX .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v72d0yuniX .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v72d0yuniX .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v72d0yuniX ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v72d0yuniX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v72d0yuniX .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-v72d0yuniX .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v72d0yuniX li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v72d0yuniX li.nav-item:hover {
    opacity: .8;
  }
  .cid-v72d0yuniX .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v72d0yuniX .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v72d0yuniX .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v72d0yuniX .nav-item {
    margin: 0 !important;
  }
}
.cid-v72d0yuniX .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v72d0yuniX .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-v72d0yuniX .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v72d0yuniX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v72d0yuniX .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-v72d0yuniX .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v72d0yuniX .offcanvas_box {
    display: none;
  }
}
.cid-v72d0yuniX .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v72d0yuniX .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v72d0yuniX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v72d0yuniX .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-v72d0yuniX .container {
  display: flex;
  margin: auto;
}
.cid-v72d0yuniX .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-v72d0yuniX .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v72d0yuniX .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-v72d0yuniX .navbar-caption {
  color: #1e4381;
}
.cid-v72d0yuniX .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v72d0yuniX .navbar-nav {
    margin: 0;
  }
}
.cid-v72d0yuniX .dropdown-menu,
.cid-v72d0yuniX .navbar.opened {
  background-color: true !important;
}
.cid-v72d0yuniX .nav-item:focus,
.cid-v72d0yuniX .nav-link:focus {
  outline: none;
}
.cid-v72d0yuniX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v72d0yuniX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v72d0yuniX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v72d0yuniX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v72d0yuniX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v72d0yuniX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v72d0yuniX .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-v72d0yuniX .navbar.opened {
  transition: all 0.3s;
}
.cid-v72d0yuniX .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v72d0yuniX .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v72d0yuniX .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v72d0yuniX .navbar.collapsed {
  justify-content: center;
}
.cid-v72d0yuniX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v72d0yuniX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v72d0yuniX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v72d0yuniX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v72d0yuniX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v72d0yuniX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v72d0yuniX .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v72d0yuniX .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v72d0yuniX .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v72d0yuniX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v72d0yuniX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v72d0yuniX .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v72d0yuniX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v72d0yuniX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v72d0yuniX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v72d0yuniX .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v72d0yuniX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v72d0yuniX .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v72d0yuniX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v72d0yuniX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v72d0yuniX .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v72d0yuniX .navbar.navbar-short {
  min-height: 60px;
}
.cid-v72d0yuniX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v72d0yuniX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v72d0yuniX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v72d0yuniX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v72d0yuniX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v72d0yuniX .dropdown-item.active,
.cid-v72d0yuniX .dropdown-item:active {
  background-color: transparent;
}
.cid-v72d0yuniX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v72d0yuniX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v72d0yuniX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v72d0yuniX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v72d0yuniX ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v72d0yuniX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v72d0yuniX button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-v72d0yuniX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-v72d0yuniX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v72d0yuniX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v72d0yuniX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v72d0yuniX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v72d0yuniX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v72d0yuniX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v72d0yuniX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v72d0yuniX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v72d0yuniX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v72d0yuniX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v72d0yuniX .navbar {
    height: 70px;
  }
  .cid-v72d0yuniX .navbar.opened {
    height: auto;
  }
  .cid-v72d0yuniX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v72d0yuniX .mbr-section-btn .btn,
.cid-v72d0yuniX .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-v72d0yuniX .mbr-section-btn .btn:hover,
.cid-v72d0yuniX .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-v72d0yuniX .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v72d0yuniX .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v72d0yuniX .navbar-caption:hover {
  color: #0000cc;
}
.cid-v72d0yuniX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v72d0yuniX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v72d0yuniX .text_widget {
  color: #ffffff;
}
.cid-v72d0yuniX .mbr-section-subtitle,
.cid-v72d0yuniX .text_widget {
  text-align: left;
}
.cid-v72d0yuniX a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v72d0zvXNJ {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f1f1f2;
}
.cid-v72d0zvXNJ .row::after {
  content: '';
  display: block;
  background: #ee2947;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .row::after {
    display: none;
  }
}
.cid-v72d0zvXNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0zvXNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0zvXNJ .image {
  position: relative;
}
.cid-v72d0zvXNJ .image::before {
  content: '';
  display: block;
  background: #1111a2;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 0 0 10rem 0;
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .image::before {
    display: none;
  }
}
.cid-v72d0zvXNJ .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-v72d0zvXNJ .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #fcf600;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .image-wrapper::before {
    display: none;
  }
}
.cid-v72d0zvXNJ .image-wrapper::after {
  content: '';
  display: block;
  background: #008000;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .image-wrapper::after {
    display: none;
  }
}
.cid-v72d0zvXNJ .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 50% 0 0;
  z-index: 1;
}
.cid-v72d0zvXNJ .title {
  display: flex;
  align-items: center;
}
.cid-v72d0zvXNJ .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-v72d0zvXNJ .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v72d0zvXNJ .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v72d0zvXNJ .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v72d0zvXNJ .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-v72d0zvXNJ .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0zvXNJ .mbr-text {
  color: #000000;
}
.cid-v72d0AgRkE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0AgRkE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0AgRkE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0AgRkE .row {
  padding: 1rem;
}
.cid-v72d0AgRkE .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-v72d0AgRkE .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72d0AgRkE .title-wrapper {
    padding: 0;
  }
}
.cid-v72d0AgRkE .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0AgRkE .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72d0AgRkE .cards .card {
  margin-bottom: 20px;
}
.cid-v72d0AgRkE .cards .card .mbr-number {
  margin: 0;
}
.cid-v72d0AgRkE .cards .card .mbr-desc {
  margin: 0;
}
.cid-v72d0AgRkE .mbr-section-title {
  color: #008000;
}
.cid-v72d0AgRkE .mbr-text {
  color: #000000;
}
.cid-v72d0AgRkE .mbr-number {
  color: #ee2947;
}
.cid-v72d0AgRkE .mbr-desc {
  color: #1e4381;
}
.cid-v72d0LEFqq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72d0LEFqq .row {
  position: relative;
}
.cid-v72d0LEFqq .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72d0LEFqq .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72d0LEFqq .row::after {
    display: none;
  }
}
.cid-v72d0LEFqq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0LEFqq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0LEFqq .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72d0LEFqq .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72d0LEFqq .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72d0LEFqq .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72d0LEFqq .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72d0LEFqq .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72d0LEFqq .mbr-section-title {
  color: #ffffff;
}
.cid-v72d0LEFqq .mbr-section-title,
.cid-v72d0LEFqq .mbr-section-btn {
  text-align: center;
}
.cid-v72d0MAzxH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0MAzxH .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0MAzxH .row {
    padding: 0 12px;
  }
}
.cid-v72d0MAzxH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0MAzxH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0MAzxH .image-wrapper {
  position: relative;
}
.cid-v72d0MAzxH .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72d0MAzxH .image-wrapper::before {
    display: none;
  }
}
.cid-v72d0MAzxH .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72d0MAzxH .image-wrapper::after {
    display: none;
  }
}
.cid-v72d0MAzxH .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72d0MAzxH .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72d0MAzxH .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72d0MAzxH .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0MAzxH .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72d0MAzxH .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0MAzxH .mbr-text {
  color: #1e4381;
}
.cid-v72d0NwQmM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72d0NwQmM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0NwQmM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0NwQmM .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0NwQmM .row {
    padding: 0 12px;
  }
}
.cid-v72d0NwQmM .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72d0NwQmM .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72d0NwQmM .row::after {
    display: none;
  }
}
.cid-v72d0NwQmM .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72d0NwQmM .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72d0NwQmM .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d0NwQmM .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72d0NwQmM .text-wrapper {
    padding: 0;
  }
}
.cid-v72d0NwQmM .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72d0NwQmM .mbr-section-title {
  color: #000000;
}
.cid-v72d0NwQmM .mbr-text {
  color: #ffffff;
}
.cid-v72d0Oqmn9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0Oqmn9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Oqmn9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Oqmn9 .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72d0Oqmn9 .row {
    padding: 0 12px;
  }
}
.cid-v72d0Oqmn9 .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72d0Oqmn9 .text-wrapper {
    padding: 0;
  }
}
.cid-v72d0Oqmn9 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0Oqmn9 .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d0Oqmn9 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72d0Oqmn9 .image {
  position: relative;
}
.cid-v72d0Oqmn9 .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72d0Oqmn9 .image::before {
    display: none;
  }
}
.cid-v72d0Oqmn9 .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72d0Oqmn9 .image::after {
    display: none;
  }
}
.cid-v72d0Oqmn9 .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72d0Oqmn9 .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72d0Oqmn9 .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72d0Oqmn9 .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72d0Oqmn9 .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0Oqmn9 .mbr-text {
  color: #1e4381;
}
.cid-v72d0Poyx9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72d0Poyx9 .row {
  position: relative;
}
.cid-v72d0Poyx9 .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72d0Poyx9 .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72d0Poyx9 .row::after {
    display: none;
  }
}
.cid-v72d0Poyx9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Poyx9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Poyx9 .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72d0Poyx9 .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72d0Poyx9 .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72d0Poyx9 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72d0Poyx9 .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72d0Poyx9 .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72d0Poyx9 .mbr-section-title {
  color: #ffffff;
}
.cid-v72d0Poyx9 .mbr-section-title,
.cid-v72d0Poyx9 .mbr-section-btn {
  text-align: center;
}
.cid-v72d0Qlb0M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0Qlb0M .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0Qlb0M .row {
    padding: 0 12px;
  }
}
.cid-v72d0Qlb0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Qlb0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Qlb0M .image-wrapper {
  position: relative;
}
.cid-v72d0Qlb0M .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72d0Qlb0M .image-wrapper::before {
    display: none;
  }
}
.cid-v72d0Qlb0M .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72d0Qlb0M .image-wrapper::after {
    display: none;
  }
}
.cid-v72d0Qlb0M .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72d0Qlb0M .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72d0Qlb0M .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72d0Qlb0M .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0Qlb0M .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72d0Qlb0M .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0Qlb0M .mbr-text {
  color: #1e4381;
}
.cid-v72d0Rk6VA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72d0Rk6VA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Rk6VA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Rk6VA .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0Rk6VA .row {
    padding: 0 12px;
  }
}
.cid-v72d0Rk6VA .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72d0Rk6VA .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72d0Rk6VA .row::after {
    display: none;
  }
}
.cid-v72d0Rk6VA .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72d0Rk6VA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72d0Rk6VA .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d0Rk6VA .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72d0Rk6VA .text-wrapper {
    padding: 0;
  }
}
.cid-v72d0Rk6VA .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72d0Rk6VA .mbr-section-title {
  color: #000000;
}
.cid-v72d0Rk6VA .mbr-text {
  color: #ffffff;
}
.cid-v72d0SiI0Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0SiI0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0SiI0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0SiI0Z .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72d0SiI0Z .row {
    padding: 0 12px;
  }
}
.cid-v72d0SiI0Z .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72d0SiI0Z .text-wrapper {
    padding: 0;
  }
}
.cid-v72d0SiI0Z .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0SiI0Z .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d0SiI0Z .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72d0SiI0Z .image {
  position: relative;
}
.cid-v72d0SiI0Z .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72d0SiI0Z .image::before {
    display: none;
  }
}
.cid-v72d0SiI0Z .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72d0SiI0Z .image::after {
    display: none;
  }
}
.cid-v72d0SiI0Z .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72d0SiI0Z .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72d0SiI0Z .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72d0SiI0Z .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72d0SiI0Z .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0SiI0Z .mbr-text {
  color: #1e4381;
}
.cid-v72d0Thjd1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72d0Thjd1 .row {
  position: relative;
}
.cid-v72d0Thjd1 .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72d0Thjd1 .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72d0Thjd1 .row::after {
    display: none;
  }
}
.cid-v72d0Thjd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Thjd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Thjd1 .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72d0Thjd1 .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72d0Thjd1 .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72d0Thjd1 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72d0Thjd1 .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72d0Thjd1 .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72d0Thjd1 .mbr-section-title {
  color: #ffffff;
}
.cid-v72d0Thjd1 .mbr-section-title,
.cid-v72d0Thjd1 .mbr-section-btn {
  text-align: center;
}
.cid-v72d0Uh6Zr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0Uh6Zr .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0Uh6Zr .row {
    padding: 0 12px;
  }
}
.cid-v72d0Uh6Zr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Uh6Zr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Uh6Zr .image-wrapper {
  position: relative;
}
.cid-v72d0Uh6Zr .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72d0Uh6Zr .image-wrapper::before {
    display: none;
  }
}
.cid-v72d0Uh6Zr .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72d0Uh6Zr .image-wrapper::after {
    display: none;
  }
}
.cid-v72d0Uh6Zr .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72d0Uh6Zr .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72d0Uh6Zr .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72d0Uh6Zr .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0Uh6Zr .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72d0Uh6Zr .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0Uh6Zr .mbr-text {
  color: #1e4381;
}
.cid-v72d0Vh0aF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72d0Vh0aF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Vh0aF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Vh0aF .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0Vh0aF .row {
    padding: 0 12px;
  }
}
.cid-v72d0Vh0aF .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72d0Vh0aF .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72d0Vh0aF .row::after {
    display: none;
  }
}
.cid-v72d0Vh0aF .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72d0Vh0aF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72d0Vh0aF .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d0Vh0aF .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72d0Vh0aF .text-wrapper {
    padding: 0;
  }
}
.cid-v72d0Vh0aF .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72d0Vh0aF .mbr-section-title {
  color: #000000;
}
.cid-v72d0Vh0aF .mbr-text {
  color: #ffffff;
}
.cid-v72d0WhAZm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0WhAZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0WhAZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0WhAZm .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72d0WhAZm .row {
    padding: 0 12px;
  }
}
.cid-v72d0WhAZm .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72d0WhAZm .text-wrapper {
    padding: 0;
  }
}
.cid-v72d0WhAZm .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0WhAZm .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d0WhAZm .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72d0WhAZm .image {
  position: relative;
}
.cid-v72d0WhAZm .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72d0WhAZm .image::before {
    display: none;
  }
}
.cid-v72d0WhAZm .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72d0WhAZm .image::after {
    display: none;
  }
}
.cid-v72d0WhAZm .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72d0WhAZm .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72d0WhAZm .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72d0WhAZm .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72d0WhAZm .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0WhAZm .mbr-text {
  color: #1e4381;
}
.cid-v72d0XjkSf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v72d0XjkSf .row {
  position: relative;
}
.cid-v72d0XjkSf .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v72d0XjkSf .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v72d0XjkSf .row::after {
    display: none;
  }
}
.cid-v72d0XjkSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0XjkSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0XjkSf .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v72d0XjkSf .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v72d0XjkSf .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v72d0XjkSf .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v72d0XjkSf .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v72d0XjkSf .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v72d0XjkSf .mbr-section-title {
  color: #ffffff;
}
.cid-v72d0XjkSf .mbr-section-title,
.cid-v72d0XjkSf .mbr-section-btn {
  text-align: center;
}
.cid-v72d0Ymf50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d0Ymf50 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0Ymf50 .row {
    padding: 0 12px;
  }
}
.cid-v72d0Ymf50 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0Ymf50 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0Ymf50 .image-wrapper {
  position: relative;
}
.cid-v72d0Ymf50 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v72d0Ymf50 .image-wrapper::before {
    display: none;
  }
}
.cid-v72d0Ymf50 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72d0Ymf50 .image-wrapper::after {
    display: none;
  }
}
.cid-v72d0Ymf50 .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v72d0Ymf50 .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v72d0Ymf50 .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v72d0Ymf50 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d0Ymf50 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v72d0Ymf50 .mbr-section-title {
  color: #1111a2;
}
.cid-v72d0Ymf50 .mbr-text {
  color: #1e4381;
}
.cid-v72d0ZpJ58 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v72d0ZpJ58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d0ZpJ58 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d0ZpJ58 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v72d0ZpJ58 .row {
    padding: 0 12px;
  }
}
.cid-v72d0ZpJ58 .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v72d0ZpJ58 .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v72d0ZpJ58 .row::after {
    display: none;
  }
}
.cid-v72d0ZpJ58 .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v72d0ZpJ58 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v72d0ZpJ58 .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d0ZpJ58 .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72d0ZpJ58 .text-wrapper {
    padding: 0;
  }
}
.cid-v72d0ZpJ58 .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v72d0ZpJ58 .mbr-section-title {
  color: #000000;
}
.cid-v72d0ZpJ58 .mbr-text {
  color: #ffffff;
}
.cid-v72d10sK2Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v72d10sK2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72d10sK2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72d10sK2Q .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v72d10sK2Q .row {
    padding: 0 12px;
  }
}
.cid-v72d10sK2Q .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v72d10sK2Q .text-wrapper {
    padding: 0;
  }
}
.cid-v72d10sK2Q .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v72d10sK2Q .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v72d10sK2Q .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v72d10sK2Q .image {
  position: relative;
}
.cid-v72d10sK2Q .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v72d10sK2Q .image::before {
    display: none;
  }
}
.cid-v72d10sK2Q .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v72d10sK2Q .image::after {
    display: none;
  }
}
.cid-v72d10sK2Q .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v72d10sK2Q .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v72d10sK2Q .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v72d10sK2Q .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v72d10sK2Q .mbr-section-title {
  color: #1111a2;
}
.cid-v72d10sK2Q .mbr-text {
  color: #1e4381;
}
.cid-v7gpGn9DnA {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #162148;
}
.cid-v7gpGn9DnA .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #1111a2;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-v7gpGn9DnA .position-relative::after {
    display: none;
  }
}
.cid-v7gpGn9DnA .item:focus,
.cid-v7gpGn9DnA span:focus {
  outline: none;
}
.cid-v7gpGn9DnA .item-wrapper {
  position: relative;
}
.cid-v7gpGn9DnA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-v7gpGn9DnA .embla__slide {
    min-width: 95%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7gpGn9DnA .embla__button--next,
.cid-v7gpGn9DnA .embla__button--prev {
  display: flex;
}
.cid-v7gpGn9DnA .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #fcf600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7gpGn9DnA .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7gpGn9DnA .embla__button:hover {
  background: transparent;
  color: #fcf600;
}
.cid-v7gpGn9DnA .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpGn9DnA .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-v7gpGn9DnA .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7gpGn9DnA .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-v7gpGn9DnA .embla__button {
    top: auto;
  }
}
.cid-v7gpGn9DnA .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-v7gpGn9DnA .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-v7gpGn9DnA .embla__viewport {
    width: 100%;
  }
}
.cid-v7gpGn9DnA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7gpGn9DnA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7gpGn9DnA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7gpGn9DnA .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-v7gpGn9DnA .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-v7gpGn9DnA .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-v7gpGn9DnA .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-v7gpGn9DnA .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-v7gpGn9DnA .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-v7gpGn9DnA .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v7gpGn9DnA .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-v7gpGn9DnA .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #1111a2;
}
.cid-v7gpGn9DnA .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v7gpGn9DnA .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v7gpGn9DnA .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-v7gpGn9DnA .slide-content .item-text {
    padding: 0 67px;
  }
}
@media (max-width: 425px) {
  .cid-v7gpGn9DnA .slide-content .item-text {
    padding: 0 90px;
    font-size: 80%;
  }
}
.cid-v7gpGn9DnA .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-v7gpGn9DnA .slide-content .item-text span {
    display: none;
  }
}
.cid-v7gpGn9DnA .slide-content .item-text .mbr-text {
  margin-bottom: 0;
  font-size: 80%;
}
.cid-v7gpGn9DnA .mbr-name {
  color: #fcf600;
}
.cid-v7gpGn9DnA .mbr-desc {
  color: #ffffff;
}
.cid-v7gpGn9DnA .mbr-text {
  color: #ffffff;
}
.cid-v72d1n4B2X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v72d1n4B2X .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v72d1n4B2X .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v72d1n4B2X .container-fluid {
    padding: 0 24px;
  }
}
.cid-v72d1n4B2X .container {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v72d1n4B2X .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v72d1n4B2X .container {
    padding: 0 24px;
  }
}
.cid-v72d1n4B2X .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-v72d1n4B2X .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v72d1n4B2X .embla__slide .slide-content {
  width: 100%;
}
.cid-v72d1n4B2X .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-v72d1n4B2X .embla__button--next,
.cid-v72d1n4B2X .embla__button--prev {
  display: flex;
}
.cid-v72d1n4B2X .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #c10000 !important;
  color: #0000cc !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-v72d1n4B2X .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v72d1n4B2X .embla__button:hover {
  opacity: .5 !important;
}
.cid-v72d1n4B2X .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-v72d1n4B2X .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-v72d1n4B2X .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-v72d1n4B2X .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v72d1n4B2X .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-v72d1n4B2X .embla {
    padding: 0;
  }
}
.cid-v72d1n4B2X .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v72d1n4B2X .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v72d1n4B2X .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v72d1n4B2X .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v72d1oxSNA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v72d1oxSNA .container-fluid,
.cid-v72d1oxSNA .container {
  position: relative;
}
.cid-v72d1oxSNA .container-fluid::before,
.cid-v72d1oxSNA .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v72d1oxSNA .container-fluid::before,
  .cid-v72d1oxSNA .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .container-fluid::before,
  .cid-v72d1oxSNA .container::before {
    display: none;
  }
}
.cid-v72d1oxSNA .media-wrap1 {
  height: 300px;
}
.cid-v72d1oxSNA .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v72d1oxSNA .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v72d1oxSNA .media-wrap2 {
  height: 300px;
}
.cid-v72d1oxSNA .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v72d1oxSNA .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v72d1oxSNA .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v72d1oxSNA .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v72d1oxSNA .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v72d1oxSNA .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v72d1oxSNA .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v72d1oxSNA .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v72d1oxSNA .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v72d1oxSNA .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v72d1oxSNA .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v72d1oxSNA .list .item-wrap:hover {
  opacity: .7;
}
.cid-v72d1oxSNA .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .copyright {
    background-color: #232323;
  }
}
.cid-v72d1oxSNA .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v72d1oxSNA .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v72d1oxSNA .mbr-text {
  color: #bcbfca;
}
.cid-v72d1oxSNA .mbr-desc {
  color: #ffffff;
}
.cid-v72d1oxSNA .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v72d1oxSNA .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v72d1oxSNA .mbr-text,
.cid-v72d1oxSNA .icon-wrapper {
  color: #ffffff;
}
.cid-v72d1pY5yq.popup-builder {
  background-color: #ffffff;
}
.cid-v72d1pY5yq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v72d1pY5yq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v72d1pY5yq .modal-content,
.cid-v72d1pY5yq .modal-dialog {
  height: auto;
}
.cid-v72d1pY5yq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v72d1pY5yq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v72d1pY5yq .form-wrapper .mbr-form .form-group,
  .cid-v72d1pY5yq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v72d1pY5yq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v72d1pY5yq .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v72d1pY5yq .mbr-text {
  text-align: center;
}
.cid-v72d1pY5yq .pt-0 {
  padding-top: 0 !important;
}
.cid-v72d1pY5yq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v72d1pY5yq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v72d1pY5yq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v72d1pY5yq .modal-open {
  overflow: hidden;
}
.cid-v72d1pY5yq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v72d1pY5yq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v72d1pY5yq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v72d1pY5yq .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v72d1pY5yq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v72d1pY5yq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v72d1pY5yq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v72d1pY5yq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v72d1pY5yq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v72d1pY5yq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  background-color: #000;
}
.cid-v72d1pY5yq .modal-backdrop.fade {
  opacity: 0;
}
.cid-v72d1pY5yq .modal-backdrop.show {
  opacity: .5;
}
.cid-v72d1pY5yq .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v72d1pY5yq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v72d1pY5yq .modal-header {
    padding: 1rem;
  }
}
.cid-v72d1pY5yq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v72d1pY5yq .modal-header .close svg {
  fill: #353535;
}
.cid-v72d1pY5yq .modal-header .close:hover {
  opacity: 1;
}
.cid-v72d1pY5yq .modal-header .close:focus {
  outline: none;
}
.cid-v72d1pY5yq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v72d1pY5yq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v72d1pY5yq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v72d1pY5yq .modal-body {
    padding: 1rem;
  }
}
.cid-v72d1pY5yq .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v72d1pY5yq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v72d1pY5yq .modal-footer {
    padding: 1rem;
  }
}
.cid-v72d1pY5yq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v72d1pY5yq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v72d1pY5yq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v72d1pY5yq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v72d1pY5yq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v72d1pY5yq .modal-lg,
  .cid-v72d1pY5yq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v72d1pY5yq .modal-xl {
    max-width: 1140px;
  }
}
.cid-v72d1pY5yq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v72d1pY5yq .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v72d1pY5yq .form-group {
  margin-bottom: 1rem;
}
.cid-v72d1pY5yq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v72d1pY5yq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v72d1pY5yq .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v72d1pY5yq .mbr-section-btn {
  margin: 0;
}
.cid-v72d1pY5yq .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5PPlU7pvS {
  z-index: 1000;
  width: 100%;
}
.cid-v5PPlU7pvS .navbar-dropdown {
  background: rgba(255, 255, 255, 0.5) !important;
  padding: 0;
  position: fixed;
}
.cid-v5PPlU7pvS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.5) !important;
  background: #ffffff;
}
.cid-v5PPlU7pvS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v5PPlU7pvS .menu_box .navbar.opened,
  .cid-v5PPlU7pvS .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v5PPlU7pvS nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v5PPlU7pvS .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v5PPlU7pvS .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5PPlU7pvS .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v5PPlU7pvS .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v5PPlU7pvS .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v5PPlU7pvS .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #1e4381;
  }
  .cid-v5PPlU7pvS .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v5PPlU7pvS .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v5PPlU7pvS .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v5PPlU7pvS .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v5PPlU7pvS .offcanvas-body .mbr-text,
  .cid-v5PPlU7pvS .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v5PPlU7pvS .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v5PPlU7pvS .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v5PPlU7pvS .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #c10000;
  }
  .cid-v5PPlU7pvS .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v5PPlU7pvS .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v5PPlU7pvS .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v5PPlU7pvS .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v5PPlU7pvS ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v5PPlU7pvS .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v5PPlU7pvS .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-v5PPlU7pvS .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v5PPlU7pvS li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v5PPlU7pvS li.nav-item:hover {
    opacity: .8;
  }
  .cid-v5PPlU7pvS .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v5PPlU7pvS .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v5PPlU7pvS .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v5PPlU7pvS .nav-item {
    margin: 0 !important;
  }
}
.cid-v5PPlU7pvS .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v5PPlU7pvS .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-v5PPlU7pvS .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v5PPlU7pvS .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v5PPlU7pvS .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-v5PPlU7pvS .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v5PPlU7pvS .offcanvas_box {
    display: none;
  }
}
.cid-v5PPlU7pvS .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v5PPlU7pvS .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v5PPlU7pvS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v5PPlU7pvS .nav-link {
  position: relative;
  color: #1e4381;
}
.cid-v5PPlU7pvS .container {
  display: flex;
  margin: auto;
}
.cid-v5PPlU7pvS .iconfont-wrapper {
  color: #c10000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-v5PPlU7pvS .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v5PPlU7pvS .iconfont-wrapper:hover {
  color: #0000cc;
}
.cid-v5PPlU7pvS .navbar-caption {
  color: #1e4381;
}
.cid-v5PPlU7pvS .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v5PPlU7pvS .navbar-nav {
    margin: 0;
  }
}
.cid-v5PPlU7pvS .dropdown-menu,
.cid-v5PPlU7pvS .navbar.opened {
  background-color: true !important;
}
.cid-v5PPlU7pvS .nav-item:focus,
.cid-v5PPlU7pvS .nav-link:focus {
  outline: none;
}
.cid-v5PPlU7pvS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5PPlU7pvS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5PPlU7pvS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5PPlU7pvS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5PPlU7pvS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5PPlU7pvS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5PPlU7pvS .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-v5PPlU7pvS .navbar.opened {
  transition: all 0.3s;
}
.cid-v5PPlU7pvS .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v5PPlU7pvS .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v5PPlU7pvS .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v5PPlU7pvS .navbar.collapsed {
  justify-content: center;
}
.cid-v5PPlU7pvS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5PPlU7pvS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v5PPlU7pvS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5PPlU7pvS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5PPlU7pvS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5PPlU7pvS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v5PPlU7pvS .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v5PPlU7pvS .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v5PPlU7pvS .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v5PPlU7pvS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5PPlU7pvS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5PPlU7pvS .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v5PPlU7pvS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5PPlU7pvS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5PPlU7pvS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v5PPlU7pvS .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v5PPlU7pvS .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v5PPlU7pvS .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v5PPlU7pvS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5PPlU7pvS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5PPlU7pvS .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v5PPlU7pvS .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5PPlU7pvS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5PPlU7pvS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v5PPlU7pvS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5PPlU7pvS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5PPlU7pvS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5PPlU7pvS .dropdown-item.active,
.cid-v5PPlU7pvS .dropdown-item:active {
  background-color: transparent;
}
.cid-v5PPlU7pvS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5PPlU7pvS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5PPlU7pvS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5PPlU7pvS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5PPlU7pvS ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v5PPlU7pvS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5PPlU7pvS button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-v5PPlU7pvS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #c10000;
}
.cid-v5PPlU7pvS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5PPlU7pvS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5PPlU7pvS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5PPlU7pvS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5PPlU7pvS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5PPlU7pvS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5PPlU7pvS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5PPlU7pvS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5PPlU7pvS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v5PPlU7pvS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5PPlU7pvS .navbar {
    height: 70px;
  }
  .cid-v5PPlU7pvS .navbar.opened {
    height: auto;
  }
  .cid-v5PPlU7pvS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5PPlU7pvS .mbr-section-btn .btn,
.cid-v5PPlU7pvS .mbr-section-btn-main .btn {
  max-height: 34px;
  border: 1px solid #008000 !important;
  box-shadow: none;
}
.cid-v5PPlU7pvS .mbr-section-btn .btn:hover,
.cid-v5PPlU7pvS .mbr-section-btn-main .btn:hover {
  color: #008000 !important;
  border: 1px solid #008000 !important;
  box-shadow: none !important;
  opacity: .8;
}
.cid-v5PPlU7pvS .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v5PPlU7pvS .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v5PPlU7pvS .navbar-caption:hover {
  color: #0000cc;
}
.cid-v5PPlU7pvS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v5PPlU7pvS .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v5PPlU7pvS .text_widget {
  color: #ffffff;
}
.cid-v5PPlU7pvS .mbr-section-subtitle,
.cid-v5PPlU7pvS .text_widget {
  text-align: left;
}
.cid-v5PPlU7pvS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v5PPlUUeTp {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: #f1f1f2;
}
.cid-v5PPlUUeTp .row::after {
  content: '';
  display: block;
  background: #ee2947;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .row::after {
    display: none;
  }
}
.cid-v5PPlUUeTp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPlUUeTp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPlUUeTp .image {
  position: relative;
}
.cid-v5PPlUUeTp .image::before {
  content: '';
  display: block;
  background: #1111a2;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 50px;
  border-radius: 0 0 10rem 0;
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .image::before {
    display: none;
  }
}
.cid-v5PPlUUeTp .image-wrapper {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .image-wrapper {
    padding: 0 12px 60px 12px;
  }
}
.cid-v5PPlUUeTp .image-wrapper::before {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 2rem;
  left: 5rem;
  width: 150px;
  height: 150px;
  border: 20px solid #fcf600;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .image-wrapper::before {
    display: none;
  }
}
.cid-v5PPlUUeTp .image-wrapper::after {
  content: '';
  display: block;
  background: #008000;
  position: absolute;
  bottom: -2rem;
  right: 7rem;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .image-wrapper::after {
    display: none;
  }
}
.cid-v5PPlUUeTp .image-wrapper img {
  max-width: 370px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 50% 0 0;
  z-index: 1;
}
.cid-v5PPlUUeTp .title {
  display: flex;
  align-items: center;
}
.cid-v5PPlUUeTp .title-wrapper {
  padding: 0 110px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-v5PPlUUeTp .title-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v5PPlUUeTp .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v5PPlUUeTp .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v5PPlUUeTp .title-wrapper .mbr-text {
    margin-bottom: 0;
  }
}
.cid-v5PPlUUeTp .mbr-section-title {
  color: #008000;
}
.cid-v5PPlUUeTp .mbr-text {
  color: #000000;
}
.cid-v5U3abnDhY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5U3abnDhY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5U3abnDhY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5U3abnDhY .row {
  padding: 1rem;
}
.cid-v5U3abnDhY .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-v5U3abnDhY .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5U3abnDhY .title-wrapper {
    padding: 0;
  }
}
.cid-v5U3abnDhY .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5U3abnDhY .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5U3abnDhY .cards .card {
  margin-bottom: 20px;
}
.cid-v5U3abnDhY .cards .card .mbr-number {
  margin: 0;
}
.cid-v5U3abnDhY .cards .card .mbr-desc {
  margin: 0;
}
.cid-v5U3abnDhY .mbr-section-title {
  color: #008000;
}
.cid-v5U3abnDhY .mbr-text {
  color: #000000;
}
.cid-v5U3abnDhY .mbr-number {
  color: #ee2947;
}
.cid-v5U3abnDhY .mbr-desc {
  color: #1e4381;
}
.cid-v5PPlW9oxo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5PPlW9oxo .row {
  position: relative;
}
.cid-v5PPlW9oxo .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5PPlW9oxo .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5PPlW9oxo .row::after {
    display: none;
  }
}
.cid-v5PPlW9oxo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPlW9oxo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPlW9oxo .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5PPlW9oxo .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5PPlW9oxo .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-v5PPlW9oxo .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5PPlW9oxo .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5PPlW9oxo .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5PPlW9oxo .mbr-section-title {
  color: #ffffff;
}
.cid-v5PPlW9oxo .mbr-section-title,
.cid-v5PPlW9oxo .mbr-section-btn {
  text-align: center;
}
.cid-v5PPlWBCLb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5PPlWBCLb .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5PPlWBCLb .row {
    padding: 0 12px;
  }
}
.cid-v5PPlWBCLb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPlWBCLb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPlWBCLb .image-wrapper {
  position: relative;
}
.cid-v5PPlWBCLb .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5PPlWBCLb .image-wrapper::before {
    display: none;
  }
}
.cid-v5PPlWBCLb .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5PPlWBCLb .image-wrapper::after {
    display: none;
  }
}
.cid-v5PPlWBCLb .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5PPlWBCLb .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5PPlWBCLb .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5PPlWBCLb .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5PPlWBCLb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5PPlWBCLb .mbr-section-title {
  color: #c10000;
}
.cid-v5PPlWBCLb .mbr-text {
  color: #1e4381;
}
.cid-v5UeOBz88v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UeOBz88v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeOBz88v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeOBz88v .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UeOBz88v .row {
    padding: 0 12px;
  }
}
.cid-v5UeOBz88v .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UeOBz88v .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UeOBz88v .row::after {
    display: none;
  }
}
.cid-v5UeOBz88v .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UeOBz88v .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UeOBz88v .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UeOBz88v .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UeOBz88v .text-wrapper {
    padding: 0;
  }
}
.cid-v5UeOBz88v .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UeOBz88v .mbr-section-title {
  color: #000000;
}
.cid-v5UeOBz88v .mbr-text {
  color: #ffffff;
}
.cid-v5PPlXBVal {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5PPlXBVal .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPlXBVal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPlXBVal .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5PPlXBVal .row {
    padding: 0 12px;
  }
}
.cid-v5PPlXBVal .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5PPlXBVal .text-wrapper {
    padding: 0;
  }
}
.cid-v5PPlXBVal .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5PPlXBVal .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5PPlXBVal .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5PPlXBVal .image {
  position: relative;
}
.cid-v5PPlXBVal .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5PPlXBVal .image::before {
    display: none;
  }
}
.cid-v5PPlXBVal .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5PPlXBVal .image::after {
    display: none;
  }
}
.cid-v5PPlXBVal .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5PPlXBVal .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5PPlXBVal .image-wrapper img {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5PPlXBVal .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5PPlXBVal .image-wrapper video {
  min-height: 200px;
  border-radius: 0 0 0 20%;
  z-index: 1;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5PPlXBVal .image-wrapper video {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5PPlXBVal .mbr-section-title {
  color: #1e4381;
}
.cid-v5PPlXBVal .mbr-text {
  color: #1e4381;
}
.cid-v5PPlY6AxF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5PPlY6AxF .row {
  position: relative;
}
.cid-v5PPlY6AxF .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #c10000;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5PPlY6AxF .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #c10000;
  }
}
@media (max-width: 768px) {
  .cid-v5PPlY6AxF .row::after {
    display: none;
  }
}
.cid-v5PPlY6AxF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPlY6AxF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPlY6AxF .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5PPlY6AxF .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5PPlY6AxF .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #0000cc;
}
.cid-v5PPlY6AxF .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5PPlY6AxF .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5PPlY6AxF .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5PPlY6AxF .mbr-section-title {
  color: #ffffff;
}
.cid-v5PPlY6AxF .mbr-section-title,
.cid-v5PPlY6AxF .mbr-section-btn {
  text-align: center;
}
.cid-v5PPlYAvMe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5PPlYAvMe .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5PPlYAvMe .row {
    padding: 0 12px;
  }
}
.cid-v5PPlYAvMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPlYAvMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPlYAvMe .image-wrapper {
  position: relative;
}
.cid-v5PPlYAvMe .image-wrapper::before {
  content: '';
  display: block;
  background-color: #008000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5PPlYAvMe .image-wrapper::before {
    display: none;
  }
}
.cid-v5PPlYAvMe .image-wrapper::after {
  content: '';
  display: block;
  background-color: #c10000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5PPlYAvMe .image-wrapper::after {
    display: none;
  }
}
.cid-v5PPlYAvMe .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5PPlYAvMe .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5PPlYAvMe .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5PPlYAvMe .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5PPlYAvMe .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5PPlYAvMe .mbr-section-title {
  color: #1111a2;
}
.cid-v5PPlYAvMe .mbr-text {
  color: #1e4381;
}
.cid-v5UeMZux2y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UeMZux2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeMZux2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeMZux2y .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UeMZux2y .row {
    padding: 0 12px;
  }
}
.cid-v5UeMZux2y .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UeMZux2y .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UeMZux2y .row::after {
    display: none;
  }
}
.cid-v5UeMZux2y .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UeMZux2y .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UeMZux2y .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UeMZux2y .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UeMZux2y .text-wrapper {
    padding: 0;
  }
}
.cid-v5UeMZux2y .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UeMZux2y .mbr-section-title {
  color: #000000;
}
.cid-v5UeMZux2y .mbr-text {
  color: #ffffff;
}
.cid-v5PPlZBIrg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5PPlZBIrg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPlZBIrg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPlZBIrg .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5PPlZBIrg .row {
    padding: 0 12px;
  }
}
.cid-v5PPlZBIrg .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5PPlZBIrg .text-wrapper {
    padding: 0;
  }
}
.cid-v5PPlZBIrg .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5PPlZBIrg .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5PPlZBIrg .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5PPlZBIrg .image {
  position: relative;
}
.cid-v5PPlZBIrg .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #008000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5PPlZBIrg .image::before {
    display: none;
  }
}
.cid-v5PPlZBIrg .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #008000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5PPlZBIrg .image::after {
    display: none;
  }
}
.cid-v5PPlZBIrg .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5PPlZBIrg .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5PPlZBIrg .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5PPlZBIrg .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5PPlZBIrg .mbr-section-title {
  color: #1111a2;
}
.cid-v5PPlZBIrg .mbr-text {
  color: #1e4381;
}
.cid-v5PPm08DLF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5PPm08DLF .row {
  position: relative;
}
.cid-v5PPm08DLF .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #1111a2;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5PPm08DLF .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #1111a2;
  }
}
@media (max-width: 768px) {
  .cid-v5PPm08DLF .row::after {
    display: none;
  }
}
.cid-v5PPm08DLF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPm08DLF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPm08DLF .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5PPm08DLF .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5PPm08DLF .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5PPm08DLF .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5PPm08DLF .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5PPm08DLF .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5PPm08DLF .mbr-section-title {
  color: #ffffff;
}
.cid-v5PPm08DLF .mbr-section-title,
.cid-v5PPm08DLF .mbr-section-btn {
  text-align: center;
}
.cid-v5PPm0EqI2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5PPm0EqI2 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5PPm0EqI2 .row {
    padding: 0 12px;
  }
}
.cid-v5PPm0EqI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPm0EqI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPm0EqI2 .image-wrapper {
  position: relative;
}
.cid-v5PPm0EqI2 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5PPm0EqI2 .image-wrapper::before {
    display: none;
  }
}
.cid-v5PPm0EqI2 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5PPm0EqI2 .image-wrapper::after {
    display: none;
  }
}
.cid-v5PPm0EqI2 .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5PPm0EqI2 .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5PPm0EqI2 .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5PPm0EqI2 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5PPm0EqI2 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5PPm0EqI2 .mbr-section-title {
  color: #1111a2;
}
.cid-v5PPm0EqI2 .mbr-text {
  color: #1e4381;
}
.cid-v5UeLHkoqu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UeLHkoqu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeLHkoqu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeLHkoqu .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UeLHkoqu .row {
    padding: 0 12px;
  }
}
.cid-v5UeLHkoqu .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UeLHkoqu .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UeLHkoqu .row::after {
    display: none;
  }
}
.cid-v5UeLHkoqu .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UeLHkoqu .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UeLHkoqu .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UeLHkoqu .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UeLHkoqu .text-wrapper {
    padding: 0;
  }
}
.cid-v5UeLHkoqu .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UeLHkoqu .mbr-section-title {
  color: #000000;
}
.cid-v5UeLHkoqu .mbr-text {
  color: #ffffff;
}
.cid-v5PPm1MBUc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5PPm1MBUc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5PPm1MBUc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5PPm1MBUc .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5PPm1MBUc .row {
    padding: 0 12px;
  }
}
.cid-v5PPm1MBUc .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5PPm1MBUc .text-wrapper {
    padding: 0;
  }
}
.cid-v5PPm1MBUc .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5PPm1MBUc .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5PPm1MBUc .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5PPm1MBUc .image {
  position: relative;
}
.cid-v5PPm1MBUc .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5PPm1MBUc .image::before {
    display: none;
  }
}
.cid-v5PPm1MBUc .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5PPm1MBUc .image::after {
    display: none;
  }
}
.cid-v5PPm1MBUc .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5PPm1MBUc .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5PPm1MBUc .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5PPm1MBUc .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5PPm1MBUc .mbr-section-title {
  color: #1111a2;
}
.cid-v5PPm1MBUc .mbr-text {
  color: #1e4381;
}
.cid-v5UbE8jgQy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5UbE8jgQy .row {
  position: relative;
}
.cid-v5UbE8jgQy .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5UbE8jgQy .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5UbE8jgQy .row::after {
    display: none;
  }
}
.cid-v5UbE8jgQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UbE8jgQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UbE8jgQy .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5UbE8jgQy .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5UbE8jgQy .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5UbE8jgQy .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5UbE8jgQy .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5UbE8jgQy .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5UbE8jgQy .mbr-section-title {
  color: #ffffff;
}
.cid-v5UbE8jgQy .mbr-section-title,
.cid-v5UbE8jgQy .mbr-section-btn {
  text-align: center;
}
.cid-v5Ud0VNTCA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5Ud0VNTCA .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5Ud0VNTCA .row {
    padding: 0 12px;
  }
}
.cid-v5Ud0VNTCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Ud0VNTCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Ud0VNTCA .image-wrapper {
  position: relative;
}
.cid-v5Ud0VNTCA .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5Ud0VNTCA .image-wrapper::before {
    display: none;
  }
}
.cid-v5Ud0VNTCA .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5Ud0VNTCA .image-wrapper::after {
    display: none;
  }
}
.cid-v5Ud0VNTCA .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5Ud0VNTCA .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5Ud0VNTCA .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5Ud0VNTCA .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5Ud0VNTCA .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5Ud0VNTCA .mbr-section-title {
  color: #1111a2;
}
.cid-v5Ud0VNTCA .mbr-text {
  color: #1e4381;
}
.cid-v5UeKBZXil {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UeKBZXil .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeKBZXil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeKBZXil .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UeKBZXil .row {
    padding: 0 12px;
  }
}
.cid-v5UeKBZXil .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UeKBZXil .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UeKBZXil .row::after {
    display: none;
  }
}
.cid-v5UeKBZXil .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UeKBZXil .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UeKBZXil .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UeKBZXil .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UeKBZXil .text-wrapper {
    padding: 0;
  }
}
.cid-v5UeKBZXil .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UeKBZXil .mbr-section-title {
  color: #000000;
}
.cid-v5UeKBZXil .mbr-text {
  color: #ffffff;
}
.cid-v5Ud3wnRlg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5Ud3wnRlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Ud3wnRlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Ud3wnRlg .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5Ud3wnRlg .row {
    padding: 0 12px;
  }
}
.cid-v5Ud3wnRlg .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5Ud3wnRlg .text-wrapper {
    padding: 0;
  }
}
.cid-v5Ud3wnRlg .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5Ud3wnRlg .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5Ud3wnRlg .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5Ud3wnRlg .image {
  position: relative;
}
.cid-v5Ud3wnRlg .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5Ud3wnRlg .image::before {
    display: none;
  }
}
.cid-v5Ud3wnRlg .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5Ud3wnRlg .image::after {
    display: none;
  }
}
.cid-v5Ud3wnRlg .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5Ud3wnRlg .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5Ud3wnRlg .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5Ud3wnRlg .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5Ud3wnRlg .mbr-section-title {
  color: #1111a2;
}
.cid-v5Ud3wnRlg .mbr-text {
  color: #1e4381;
}
.cid-v5UdzfinW6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5UdzfinW6 .row {
  position: relative;
}
.cid-v5UdzfinW6 .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5UdzfinW6 .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5UdzfinW6 .row::after {
    display: none;
  }
}
.cid-v5UdzfinW6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UdzfinW6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UdzfinW6 .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5UdzfinW6 .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5UdzfinW6 .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5UdzfinW6 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5UdzfinW6 .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5UdzfinW6 .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5UdzfinW6 .mbr-section-title {
  color: #ffffff;
}
.cid-v5UdzfinW6 .mbr-section-title,
.cid-v5UdzfinW6 .mbr-section-btn {
  text-align: center;
}
.cid-v5UdA7HI0G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UdA7HI0G .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UdA7HI0G .row {
    padding: 0 12px;
  }
}
.cid-v5UdA7HI0G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UdA7HI0G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UdA7HI0G .image-wrapper {
  position: relative;
}
.cid-v5UdA7HI0G .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5UdA7HI0G .image-wrapper::before {
    display: none;
  }
}
.cid-v5UdA7HI0G .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5UdA7HI0G .image-wrapper::after {
    display: none;
  }
}
.cid-v5UdA7HI0G .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5UdA7HI0G .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5UdA7HI0G .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5UdA7HI0G .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UdA7HI0G .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5UdA7HI0G .mbr-section-title {
  color: #1111a2;
}
.cid-v5UdA7HI0G .mbr-text {
  color: #1e4381;
}
.cid-v5UdATpesB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UdATpesB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UdATpesB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UdATpesB .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UdATpesB .row {
    padding: 0 12px;
  }
}
.cid-v5UdATpesB .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UdATpesB .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UdATpesB .row::after {
    display: none;
  }
}
.cid-v5UdATpesB .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UdATpesB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UdATpesB .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UdATpesB .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UdATpesB .text-wrapper {
    padding: 0;
  }
}
.cid-v5UdATpesB .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UdATpesB .mbr-section-title {
  color: #000000;
}
.cid-v5UdATpesB .mbr-text {
  color: #ffffff;
}
.cid-v5UdBKhmGr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UdBKhmGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UdBKhmGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UdBKhmGr .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5UdBKhmGr .row {
    padding: 0 12px;
  }
}
.cid-v5UdBKhmGr .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5UdBKhmGr .text-wrapper {
    padding: 0;
  }
}
.cid-v5UdBKhmGr .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UdBKhmGr .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UdBKhmGr .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5UdBKhmGr .image {
  position: relative;
}
.cid-v5UdBKhmGr .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5UdBKhmGr .image::before {
    display: none;
  }
}
.cid-v5UdBKhmGr .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5UdBKhmGr .image::after {
    display: none;
  }
}
.cid-v5UdBKhmGr .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5UdBKhmGr .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5UdBKhmGr .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5UdBKhmGr .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5UdBKhmGr .mbr-section-title {
  color: #1111a2;
}
.cid-v5UdBKhmGr .mbr-text {
  color: #1e4381;
}
.cid-v5UeVFbeIk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5UeVFbeIk .row {
  position: relative;
}
.cid-v5UeVFbeIk .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5UeVFbeIk .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5UeVFbeIk .row::after {
    display: none;
  }
}
.cid-v5UeVFbeIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeVFbeIk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeVFbeIk .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5UeVFbeIk .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5UeVFbeIk .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5UeVFbeIk .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5UeVFbeIk .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5UeVFbeIk .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5UeVFbeIk .mbr-section-title {
  color: #ffffff;
}
.cid-v5UeVFbeIk .mbr-section-title,
.cid-v5UeVFbeIk .mbr-section-btn {
  text-align: center;
}
.cid-v5UeWuP22l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UeWuP22l .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UeWuP22l .row {
    padding: 0 12px;
  }
}
.cid-v5UeWuP22l .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeWuP22l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeWuP22l .image-wrapper {
  position: relative;
}
.cid-v5UeWuP22l .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5UeWuP22l .image-wrapper::before {
    display: none;
  }
}
.cid-v5UeWuP22l .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5UeWuP22l .image-wrapper::after {
    display: none;
  }
}
.cid-v5UeWuP22l .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5UeWuP22l .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5UeWuP22l .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5UeWuP22l .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UeWuP22l .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5UeWuP22l .mbr-section-title {
  color: #1111a2;
}
.cid-v5UeWuP22l .mbr-text {
  color: #1e4381;
}
.cid-v5UeXhHjYa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UeXhHjYa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeXhHjYa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeXhHjYa .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UeXhHjYa .row {
    padding: 0 12px;
  }
}
.cid-v5UeXhHjYa .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UeXhHjYa .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UeXhHjYa .row::after {
    display: none;
  }
}
.cid-v5UeXhHjYa .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UeXhHjYa .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UeXhHjYa .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UeXhHjYa .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UeXhHjYa .text-wrapper {
    padding: 0;
  }
}
.cid-v5UeXhHjYa .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UeXhHjYa .mbr-section-title {
  color: #000000;
}
.cid-v5UeXhHjYa .mbr-text {
  color: #ffffff;
}
.cid-v5UeYaXtxH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UeYaXtxH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UeYaXtxH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UeYaXtxH .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5UeYaXtxH .row {
    padding: 0 12px;
  }
}
.cid-v5UeYaXtxH .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5UeYaXtxH .text-wrapper {
    padding: 0;
  }
}
.cid-v5UeYaXtxH .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UeYaXtxH .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UeYaXtxH .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5UeYaXtxH .image {
  position: relative;
}
.cid-v5UeYaXtxH .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5UeYaXtxH .image::before {
    display: none;
  }
}
.cid-v5UeYaXtxH .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5UeYaXtxH .image::after {
    display: none;
  }
}
.cid-v5UeYaXtxH .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5UeYaXtxH .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5UeYaXtxH .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5UeYaXtxH .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5UeYaXtxH .mbr-section-title {
  color: #1111a2;
}
.cid-v5UeYaXtxH .mbr-text {
  color: #1e4381;
}
.cid-v5UgiWsNHO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5UgiWsNHO .row {
  position: relative;
}
.cid-v5UgiWsNHO .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5UgiWsNHO .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5UgiWsNHO .row::after {
    display: none;
  }
}
.cid-v5UgiWsNHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UgiWsNHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UgiWsNHO .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5UgiWsNHO .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5UgiWsNHO .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5UgiWsNHO .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5UgiWsNHO .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5UgiWsNHO .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5UgiWsNHO .mbr-section-title {
  color: #ffffff;
}
.cid-v5UgiWsNHO .mbr-section-title,
.cid-v5UgiWsNHO .mbr-section-btn {
  text-align: center;
}
.cid-v5UgjGN27g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UgjGN27g .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UgjGN27g .row {
    padding: 0 12px;
  }
}
.cid-v5UgjGN27g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UgjGN27g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UgjGN27g .image-wrapper {
  position: relative;
}
.cid-v5UgjGN27g .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5UgjGN27g .image-wrapper::before {
    display: none;
  }
}
.cid-v5UgjGN27g .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5UgjGN27g .image-wrapper::after {
    display: none;
  }
}
.cid-v5UgjGN27g .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5UgjGN27g .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5UgjGN27g .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5UgjGN27g .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UgjGN27g .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5UgjGN27g .mbr-section-title {
  color: #1111a2;
}
.cid-v5UgjGN27g .mbr-text {
  color: #1e4381;
}
.cid-v5UglrYuJe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UglrYuJe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UglrYuJe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UglrYuJe .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UglrYuJe .row {
    padding: 0 12px;
  }
}
.cid-v5UglrYuJe .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UglrYuJe .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UglrYuJe .row::after {
    display: none;
  }
}
.cid-v5UglrYuJe .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UglrYuJe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UglrYuJe .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UglrYuJe .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UglrYuJe .text-wrapper {
    padding: 0;
  }
}
.cid-v5UglrYuJe .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UglrYuJe .mbr-section-title {
  color: #000000;
}
.cid-v5UglrYuJe .mbr-text {
  color: #ffffff;
}
.cid-v5UgmeYuF5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UgmeYuF5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UgmeYuF5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UgmeYuF5 .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5UgmeYuF5 .row {
    padding: 0 12px;
  }
}
.cid-v5UgmeYuF5 .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5UgmeYuF5 .text-wrapper {
    padding: 0;
  }
}
.cid-v5UgmeYuF5 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UgmeYuF5 .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UgmeYuF5 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5UgmeYuF5 .image {
  position: relative;
}
.cid-v5UgmeYuF5 .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5UgmeYuF5 .image::before {
    display: none;
  }
}
.cid-v5UgmeYuF5 .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5UgmeYuF5 .image::after {
    display: none;
  }
}
.cid-v5UgmeYuF5 .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5UgmeYuF5 .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5UgmeYuF5 .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5UgmeYuF5 .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5UgmeYuF5 .mbr-section-title {
  color: #1111a2;
}
.cid-v5UgmeYuF5 .mbr-text {
  color: #1e4381;
}
.cid-v5UgmWVxxG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5UgmWVxxG .row {
  position: relative;
}
.cid-v5UgmWVxxG .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5UgmWVxxG .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5UgmWVxxG .row::after {
    display: none;
  }
}
.cid-v5UgmWVxxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UgmWVxxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UgmWVxxG .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5UgmWVxxG .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5UgmWVxxG .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5UgmWVxxG .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5UgmWVxxG .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5UgmWVxxG .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5UgmWVxxG .mbr-section-title {
  color: #ffffff;
}
.cid-v5UgmWVxxG .mbr-section-title,
.cid-v5UgmWVxxG .mbr-section-btn {
  text-align: center;
}
.cid-v5Ugnw7eQK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5Ugnw7eQK .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5Ugnw7eQK .row {
    padding: 0 12px;
  }
}
.cid-v5Ugnw7eQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Ugnw7eQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Ugnw7eQK .image-wrapper {
  position: relative;
}
.cid-v5Ugnw7eQK .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5Ugnw7eQK .image-wrapper::before {
    display: none;
  }
}
.cid-v5Ugnw7eQK .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5Ugnw7eQK .image-wrapper::after {
    display: none;
  }
}
.cid-v5Ugnw7eQK .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5Ugnw7eQK .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5Ugnw7eQK .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5Ugnw7eQK .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5Ugnw7eQK .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5Ugnw7eQK .mbr-section-title {
  color: #1111a2;
}
.cid-v5Ugnw7eQK .mbr-text {
  color: #1e4381;
}
.cid-v5Ugo6kXZj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5Ugo6kXZj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Ugo6kXZj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Ugo6kXZj .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5Ugo6kXZj .row {
    padding: 0 12px;
  }
}
.cid-v5Ugo6kXZj .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5Ugo6kXZj .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5Ugo6kXZj .row::after {
    display: none;
  }
}
.cid-v5Ugo6kXZj .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5Ugo6kXZj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5Ugo6kXZj .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5Ugo6kXZj .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5Ugo6kXZj .text-wrapper {
    padding: 0;
  }
}
.cid-v5Ugo6kXZj .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5Ugo6kXZj .mbr-section-title {
  color: #000000;
}
.cid-v5Ugo6kXZj .mbr-text {
  color: #ffffff;
}
.cid-v5UgoQusq1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UgoQusq1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UgoQusq1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UgoQusq1 .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5UgoQusq1 .row {
    padding: 0 12px;
  }
}
.cid-v5UgoQusq1 .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5UgoQusq1 .text-wrapper {
    padding: 0;
  }
}
.cid-v5UgoQusq1 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UgoQusq1 .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UgoQusq1 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5UgoQusq1 .image {
  position: relative;
}
.cid-v5UgoQusq1 .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5UgoQusq1 .image::before {
    display: none;
  }
}
.cid-v5UgoQusq1 .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5UgoQusq1 .image::after {
    display: none;
  }
}
.cid-v5UgoQusq1 .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5UgoQusq1 .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5UgoQusq1 .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5UgoQusq1 .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5UgoQusq1 .mbr-section-title {
  color: #1111a2;
}
.cid-v5UgoQusq1 .mbr-text {
  color: #1e4381;
}
.cid-v5UgqnX9NT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5UgqnX9NT .row {
  position: relative;
}
.cid-v5UgqnX9NT .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5UgqnX9NT .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5UgqnX9NT .row::after {
    display: none;
  }
}
.cid-v5UgqnX9NT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UgqnX9NT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UgqnX9NT .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5UgqnX9NT .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5UgqnX9NT .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5UgqnX9NT .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5UgqnX9NT .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5UgqnX9NT .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5UgqnX9NT .mbr-section-title {
  color: #ffffff;
}
.cid-v5UgqnX9NT .mbr-section-title,
.cid-v5UgqnX9NT .mbr-section-btn {
  text-align: center;
}
.cid-v5Ugr5rAW5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5Ugr5rAW5 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5Ugr5rAW5 .row {
    padding: 0 12px;
  }
}
.cid-v5Ugr5rAW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Ugr5rAW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Ugr5rAW5 .image-wrapper {
  position: relative;
}
.cid-v5Ugr5rAW5 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5Ugr5rAW5 .image-wrapper::before {
    display: none;
  }
}
.cid-v5Ugr5rAW5 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5Ugr5rAW5 .image-wrapper::after {
    display: none;
  }
}
.cid-v5Ugr5rAW5 .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5Ugr5rAW5 .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5Ugr5rAW5 .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5Ugr5rAW5 .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5Ugr5rAW5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5Ugr5rAW5 .mbr-section-title {
  color: #1111a2;
}
.cid-v5Ugr5rAW5 .mbr-text {
  color: #1e4381;
}
.cid-v5UgrGMsQU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UgrGMsQU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UgrGMsQU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UgrGMsQU .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UgrGMsQU .row {
    padding: 0 12px;
  }
}
.cid-v5UgrGMsQU .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UgrGMsQU .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UgrGMsQU .row::after {
    display: none;
  }
}
.cid-v5UgrGMsQU .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UgrGMsQU .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UgrGMsQU .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UgrGMsQU .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UgrGMsQU .text-wrapper {
    padding: 0;
  }
}
.cid-v5UgrGMsQU .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UgrGMsQU .mbr-section-title {
  color: #000000;
}
.cid-v5UgrGMsQU .mbr-text {
  color: #ffffff;
}
.cid-v5Ugsrxx4X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5Ugsrxx4X .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Ugsrxx4X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Ugsrxx4X .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5Ugsrxx4X .row {
    padding: 0 12px;
  }
}
.cid-v5Ugsrxx4X .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5Ugsrxx4X .text-wrapper {
    padding: 0;
  }
}
.cid-v5Ugsrxx4X .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5Ugsrxx4X .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5Ugsrxx4X .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5Ugsrxx4X .image {
  position: relative;
}
.cid-v5Ugsrxx4X .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5Ugsrxx4X .image::before {
    display: none;
  }
}
.cid-v5Ugsrxx4X .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5Ugsrxx4X .image::after {
    display: none;
  }
}
.cid-v5Ugsrxx4X .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5Ugsrxx4X .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5Ugsrxx4X .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5Ugsrxx4X .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5Ugsrxx4X .mbr-section-title {
  color: #1111a2;
}
.cid-v5Ugsrxx4X .mbr-text {
  color: #1e4381;
}
.cid-v5Uhyf6XVC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5Uhyf6XVC .row {
  position: relative;
}
.cid-v5Uhyf6XVC .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5Uhyf6XVC .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5Uhyf6XVC .row::after {
    display: none;
  }
}
.cid-v5Uhyf6XVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Uhyf6XVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Uhyf6XVC .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5Uhyf6XVC .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5Uhyf6XVC .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5Uhyf6XVC .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5Uhyf6XVC .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5Uhyf6XVC .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5Uhyf6XVC .mbr-section-title {
  color: #ffffff;
}
.cid-v5Uhyf6XVC .mbr-section-title,
.cid-v5Uhyf6XVC .mbr-section-btn {
  text-align: center;
}
.cid-v5UhzbO7Jl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UhzbO7Jl .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UhzbO7Jl .row {
    padding: 0 12px;
  }
}
.cid-v5UhzbO7Jl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UhzbO7Jl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UhzbO7Jl .image-wrapper {
  position: relative;
}
.cid-v5UhzbO7Jl .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5UhzbO7Jl .image-wrapper::before {
    display: none;
  }
}
.cid-v5UhzbO7Jl .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5UhzbO7Jl .image-wrapper::after {
    display: none;
  }
}
.cid-v5UhzbO7Jl .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5UhzbO7Jl .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5UhzbO7Jl .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5UhzbO7Jl .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UhzbO7Jl .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5UhzbO7Jl .mbr-section-title {
  color: #1111a2;
}
.cid-v5UhzbO7Jl .mbr-text {
  color: #1e4381;
}
.cid-v5UhA4uLNA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UhA4uLNA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UhA4uLNA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UhA4uLNA .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UhA4uLNA .row {
    padding: 0 12px;
  }
}
.cid-v5UhA4uLNA .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UhA4uLNA .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UhA4uLNA .row::after {
    display: none;
  }
}
.cid-v5UhA4uLNA .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UhA4uLNA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UhA4uLNA .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UhA4uLNA .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UhA4uLNA .text-wrapper {
    padding: 0;
  }
}
.cid-v5UhA4uLNA .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UhA4uLNA .mbr-section-title {
  color: #000000;
}
.cid-v5UhA4uLNA .mbr-text {
  color: #ffffff;
}
.cid-v5UhD7IpJB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UhD7IpJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UhD7IpJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UhD7IpJB .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5UhD7IpJB .row {
    padding: 0 12px;
  }
}
.cid-v5UhD7IpJB .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5UhD7IpJB .text-wrapper {
    padding: 0;
  }
}
.cid-v5UhD7IpJB .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UhD7IpJB .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UhD7IpJB .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5UhD7IpJB .image {
  position: relative;
}
.cid-v5UhD7IpJB .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5UhD7IpJB .image::before {
    display: none;
  }
}
.cid-v5UhD7IpJB .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5UhD7IpJB .image::after {
    display: none;
  }
}
.cid-v5UhD7IpJB .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5UhD7IpJB .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5UhD7IpJB .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5UhD7IpJB .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5UhD7IpJB .mbr-section-title {
  color: #1111a2;
}
.cid-v5UhD7IpJB .mbr-text {
  color: #1e4381;
}
.cid-v5UhEIXEyN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #008000;
}
.cid-v5UhEIXEyN .row {
  position: relative;
}
.cid-v5UhEIXEyN .row::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  display: block;
  width: 300px;
  height: 300px;
  border: 30px solid #0000cc;
  border-radius: 50%;
  background-color: transparent;
  z-index: 5;
}
@media (max-width: 992px) {
  .cid-v5UhEIXEyN .row::after {
    width: 200px;
    height: 200px;
    border: 24px solid #0000cc;
  }
}
@media (max-width: 768px) {
  .cid-v5UhEIXEyN .row::after {
    display: none;
  }
}
.cid-v5UhEIXEyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UhEIXEyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UhEIXEyN .title-wrapper {
  padding: 0 1rem;
  position: relative;
}
.cid-v5UhEIXEyN .title-wrapper::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #c10000;
}
.cid-v5UhEIXEyN .title-wrapper::after {
  content: '';
  position: absolute;
  top: -5rem;
  left: 80px;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0 0 100% 0;
  background-color: #fcf600;
}
.cid-v5UhEIXEyN .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v5UhEIXEyN .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #0000cc;
  box-shadow: none;
}
.cid-v5UhEIXEyN .title-wrapper .mbr-section-btn .btn:hover {
  color: #fcf600 !important;
  background: #0000cc !important;
  box-shadow: none !important;
}
.cid-v5UhEIXEyN .mbr-section-title {
  color: #ffffff;
}
.cid-v5UhEIXEyN .mbr-section-title,
.cid-v5UhEIXEyN .mbr-section-btn {
  text-align: center;
}
.cid-v5UhFilL8b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UhFilL8b .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UhFilL8b .row {
    padding: 0 12px;
  }
}
.cid-v5UhFilL8b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UhFilL8b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UhFilL8b .image-wrapper {
  position: relative;
}
.cid-v5UhFilL8b .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 992px) {
  .cid-v5UhFilL8b .image-wrapper::before {
    display: none;
  }
}
.cid-v5UhFilL8b .image-wrapper::after {
  content: '';
  display: block;
  background-color: #ee2947;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5UhFilL8b .image-wrapper::after {
    display: none;
  }
}
.cid-v5UhFilL8b .image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0 0 20% 0;
}
.cid-v5UhFilL8b .text-wrapper {
  padding: 60px 0 0 100px;
}
@media (max-width: 992px) {
  .cid-v5UhFilL8b .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-v5UhFilL8b .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UhFilL8b .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5UhFilL8b .mbr-section-title {
  color: #1111a2;
}
.cid-v5UhFilL8b .mbr-text {
  color: #1e4381;
}
.cid-v5UhGI0HFP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #599859;
}
.cid-v5UhGI0HFP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UhGI0HFP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UhGI0HFP .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-v5UhGI0HFP .row {
    padding: 0 12px;
  }
}
.cid-v5UhGI0HFP .row::before {
  content: '';
  display: block;
  width: 60%;
  height: 65%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #349a34;
  border-radius: 100% 0 0 0;
  left: 0;
  border-radius: 0 100% 0 0;
}
.cid-v5UhGI0HFP .row::after {
  content: '';
  position: absolute;
  left: -28rem;
  top: 0;
  display: block;
  width: 1000px;
  height: 1000px;
  border: 80px solid #008000;
  border-radius: 50%;
  background-color: transparent;
  left: auto;
  right: -28rem;
}
@media (max-width: 992px) {
  .cid-v5UhGI0HFP .row::after {
    display: none;
  }
}
.cid-v5UhGI0HFP .title-wrapper {
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}
.cid-v5UhGI0HFP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5UhGI0HFP .title-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UhGI0HFP .text-wrapper {
  padding: 25px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5UhGI0HFP .text-wrapper {
    padding: 0;
  }
}
.cid-v5UhGI0HFP .text-wrapper .mbr-text {
  margin: 0;
}
.cid-v5UhGI0HFP .mbr-section-title {
  color: #000000;
}
.cid-v5UhGI0HFP .mbr-text {
  color: #ffffff;
}
.cid-v5UhFVsT3i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-v5UhFVsT3i .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5UhFVsT3i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5UhFVsT3i .row {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-v5UhFVsT3i .row {
    padding: 0 12px;
  }
}
.cid-v5UhFVsT3i .text-wrapper {
  padding: 25px;
}
@media (max-width: 992px) {
  .cid-v5UhFVsT3i .text-wrapper {
    padding: 0;
  }
}
.cid-v5UhFVsT3i .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-v5UhFVsT3i .text-wrapper .mbr-section-title span {
  color: #c10000;
}
.cid-v5UhFVsT3i .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v5UhFVsT3i .image {
  position: relative;
}
.cid-v5UhFVsT3i .image::before {
  content: '';
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 155px;
  height: 155px;
  background-color: transparent;
  border-radius: 100%;
  border: 20px solid #c10000;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-v5UhFVsT3i .image::before {
    display: none;
  }
}
.cid-v5UhFVsT3i .image::after {
  content: '';
  position: absolute;
  bottom: 5.93rem;
  left: 3rem;
  width: 60px;
  height: 60px;
  background-color: #c10000;
  border-radius: 100%;
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-v5UhFVsT3i .image::after {
    display: none;
  }
}
.cid-v5UhFVsT3i .image-wrapper {
  position: relative;
  padding-top: 10%;
  width: fit-content;
}
@media (max-width: 992px) {
  .cid-v5UhFVsT3i .image-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: auto;
  }
}
.cid-v5UhFVsT3i .image-wrapper img {
  min-height: 400px;
  border-radius: 0 0 0 20%;
  z-index: 2;
  position: relative;
  border-radius: 0 0 20% 0;
}
@media (max-width: 992px) {
  .cid-v5UhFVsT3i .image-wrapper img {
    min-height: auto;
    width: 250px;
  }
}
.cid-v5UhFVsT3i .mbr-section-title {
  color: #1111a2;
}
.cid-v5UhFVsT3i .mbr-text {
  color: #1e4381;
}
.cid-v7dCaxhyw9 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #162148;
}
.cid-v7dCaxhyw9 .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #1111a2;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-v7dCaxhyw9 .position-relative::after {
    display: none;
  }
}
.cid-v7dCaxhyw9 .item:focus,
.cid-v7dCaxhyw9 span:focus {
  outline: none;
}
.cid-v7dCaxhyw9 .item-wrapper {
  position: relative;
}
.cid-v7dCaxhyw9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-v7dCaxhyw9 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7dCaxhyw9 .embla__button--next,
.cid-v7dCaxhyw9 .embla__button--prev {
  display: flex;
}
.cid-v7dCaxhyw9 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #fcf600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v7dCaxhyw9 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v7dCaxhyw9 .embla__button:hover {
  background: transparent;
  color: #fcf600;
}
.cid-v7dCaxhyw9 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7dCaxhyw9 .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-v7dCaxhyw9 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-v7dCaxhyw9 .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-v7dCaxhyw9 .embla__button {
    top: auto;
  }
}
.cid-v7dCaxhyw9 .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-v7dCaxhyw9 .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-v7dCaxhyw9 .embla__viewport {
    width: 100%;
  }
}
.cid-v7dCaxhyw9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7dCaxhyw9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7dCaxhyw9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7dCaxhyw9 .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-v7dCaxhyw9 .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-v7dCaxhyw9 .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-v7dCaxhyw9 .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-v7dCaxhyw9 .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-v7dCaxhyw9 .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-v7dCaxhyw9 .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v7dCaxhyw9 .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-v7dCaxhyw9 .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #1111a2;
}
.cid-v7dCaxhyw9 .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-v7dCaxhyw9 .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v7dCaxhyw9 .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-v7dCaxhyw9 .slide-content .item-text {
    padding: 0 67px;
  }
}
@media (max-width: 425px) {
  .cid-v7dCaxhyw9 .slide-content .item-text {
    padding: 0 90px;
  }
}
.cid-v7dCaxhyw9 .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-v7dCaxhyw9 .slide-content .item-text span {
    display: none;
  }
}
.cid-v7dCaxhyw9 .slide-content .item-text .mbr-text {
  margin-bottom: 0;
}
.cid-v7dCaxhyw9 .mbr-name {
  color: #fcf600;
}
.cid-v7dCaxhyw9 .mbr-desc {
  color: #ffffff;
}
.cid-v7dCaxhyw9 .mbr-text {
  color: #ffffff;
}
.cid-v5PPm4ASZ7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v5PPm4ASZ7 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v5PPm4ASZ7 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v5PPm4ASZ7 .container-fluid {
    padding: 0 24px;
  }
}
.cid-v5PPm4ASZ7 .container {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5PPm4ASZ7 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-v5PPm4ASZ7 .container {
    padding: 0 24px;
  }
}
.cid-v5PPm4ASZ7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-v5PPm4ASZ7 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v5PPm4ASZ7 .embla__slide .slide-content {
  width: 100%;
}
.cid-v5PPm4ASZ7 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-v5PPm4ASZ7 .embla__button--next,
.cid-v5PPm4ASZ7 .embla__button--prev {
  display: flex;
}
.cid-v5PPm4ASZ7 .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #c10000 !important;
  color: #0000cc !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-v5PPm4ASZ7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v5PPm4ASZ7 .embla__button:hover {
  opacity: .5 !important;
}
.cid-v5PPm4ASZ7 .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-v5PPm4ASZ7 .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-v5PPm4ASZ7 .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-v5PPm4ASZ7 .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5PPm4ASZ7 .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-v5PPm4ASZ7 .embla {
    padding: 0;
  }
}
.cid-v5PPm4ASZ7 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-v5PPm4ASZ7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5PPm4ASZ7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5PPm4ASZ7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5PPm5mmlz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #162148;
}
.cid-v5PPm5mmlz .container-fluid,
.cid-v5PPm5mmlz .container {
  position: relative;
}
.cid-v5PPm5mmlz .container-fluid::before,
.cid-v5PPm5mmlz .container::before {
  z-index: 0;
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 110%;
  right: 0;
  bottom: 0;
  background-color: #232323;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v5PPm5mmlz .container-fluid::before,
  .cid-v5PPm5mmlz .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .container-fluid::before,
  .cid-v5PPm5mmlz .container::before {
    display: none;
  }
}
.cid-v5PPm5mmlz .media-wrap1 {
  height: 300px;
}
.cid-v5PPm5mmlz .media-wrap1 a img {
  z-index: 99;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PPm5mmlz .media-wrap1 a img {
    margin: 0 auto;
  }
}
.cid-v5PPm5mmlz .media-wrap2 {
  height: 300px;
}
.cid-v5PPm5mmlz .media-wrap2 a img {
  z-index: 0;
  margin-top: 20px;
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-v5PPm5mmlz .media-wrap2 a img {
    margin: 0 auto;
  }
}
.cid-v5PPm5mmlz .text-wrapper {
  padding: 0 20px;
  z-index: 3;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v5PPm5mmlz .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .text-wrapper {
    background-color: #232323;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-v5PPm5mmlz .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-v5PPm5mmlz .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #fcf600;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-v5PPm5mmlz .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-v5PPm5mmlz .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-v5PPm5mmlz .text-wrapper .mbr-desc {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-v5PPm5mmlz .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .list {
    background-color: #232323;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-v5PPm5mmlz .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-v5PPm5mmlz .list .item-wrap:hover {
  opacity: .7;
}
.cid-v5PPm5mmlz .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .copyright {
    background-color: #232323;
  }
}
.cid-v5PPm5mmlz .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5PPm5mmlz .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-v5PPm5mmlz .mbr-text {
  color: #bcbfca;
}
.cid-v5PPm5mmlz .mbr-desc {
  color: #ffffff;
}
.cid-v5PPm5mmlz .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-v5PPm5mmlz .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-v5PPm5mmlz .mbr-text,
.cid-v5PPm5mmlz .icon-wrapper {
  color: #ffffff;
}
.cid-v5XprIY7S8.popup-builder {
  background-color: #ffffff;
}
.cid-v5XprIY7S8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5XprIY7S8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5XprIY7S8 .modal-content,
.cid-v5XprIY7S8 .modal-dialog {
  height: auto;
}
.cid-v5XprIY7S8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5XprIY7S8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5XprIY7S8 .form-wrapper .mbr-form .form-group,
  .cid-v5XprIY7S8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5XprIY7S8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5XprIY7S8 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5XprIY7S8 .mbr-text {
  text-align: center;
}
.cid-v5XprIY7S8 .pt-0 {
  padding-top: 0 !important;
}
.cid-v5XprIY7S8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5XprIY7S8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5XprIY7S8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5XprIY7S8 .modal-open {
  overflow: hidden;
}
.cid-v5XprIY7S8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5XprIY7S8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5XprIY7S8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5XprIY7S8 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5XprIY7S8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5XprIY7S8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5XprIY7S8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5XprIY7S8 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v5XprIY7S8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5XprIY7S8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  background-color: #000;
}
.cid-v5XprIY7S8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5XprIY7S8 .modal-backdrop.show {
  opacity: .5;
}
.cid-v5XprIY7S8 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5XprIY7S8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XprIY7S8 .modal-header {
    padding: 1rem;
  }
}
.cid-v5XprIY7S8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5XprIY7S8 .modal-header .close svg {
  fill: #353535;
}
.cid-v5XprIY7S8 .modal-header .close:hover {
  opacity: 1;
}
.cid-v5XprIY7S8 .modal-header .close:focus {
  outline: none;
}
.cid-v5XprIY7S8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5XprIY7S8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5XprIY7S8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XprIY7S8 .modal-body {
    padding: 1rem;
  }
}
.cid-v5XprIY7S8 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5XprIY7S8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5XprIY7S8 .modal-footer {
    padding: 1rem;
  }
}
.cid-v5XprIY7S8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5XprIY7S8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5XprIY7S8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5XprIY7S8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5XprIY7S8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5XprIY7S8 .modal-lg,
  .cid-v5XprIY7S8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5XprIY7S8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5XprIY7S8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5XprIY7S8 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5XprIY7S8 .form-group {
  margin-bottom: 1rem;
}
.cid-v5XprIY7S8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5XprIY7S8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5XprIY7S8 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5XprIY7S8 .mbr-section-btn {
  margin: 0;
}
.cid-v5XprIY7S8 .mbr-section-btn .btn {
  margin: 0;
}
