body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Bitter', serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Bitter', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Bitter', serif;
  font-size: 2.4rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 25rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 25rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 25rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 25rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fb0a40 !important;
}
.bg-success {
  background-color: #0c6019 !important;
}
.bg-info {
  background-color: #01478b !important;
}
.bg-warning {
  background-color: #f773e7 !important;
}
.bg-danger {
  background-color: #ff702b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fb0a40 !important;
  border-color: #fb0a40 !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: #ab0329 !important;
  border-color: #ab0329 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ab0329 !important;
  border-color: #ab0329 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #79f429 !important;
  border-color: #79f429 !important;
  color: #0c1d01 !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: #50bd0a !important;
  border-color: #50bd0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #0c1d01 !important;
  background-color: #50bd0a !important;
  border-color: #50bd0a !important;
}
.btn-info,
.btn-info:active {
  background-color: #01478b !important;
  border-color: #01478b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #001b35 !important;
  border-color: #001b35 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #001b35 !important;
  border-color: #001b35 !important;
}
.btn-success,
.btn-success:active {
  background-color: #0c6019 !important;
  border-color: #0c6019 !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: #021305 !important;
  border-color: #021305 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #021305 !important;
  border-color: #021305 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f773e7 !important;
  border-color: #f773e7 !important;
  color: #ffffff !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: #f221d9 !important;
  border-color: #f221d9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f221d9 !important;
  border-color: #f221d9 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff702b !important;
  border-color: #ff702b !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: #d34500 !important;
  border-color: #d34500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #d34500 !important;
  border-color: #d34500 !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: #fb0a40;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ab0329 !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: #fb0a40 !important;
  border-color: #fb0a40 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #79f429;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #50bd0a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #0c1d01 !important;
  background-color: #79f429 !important;
  border-color: #79f429 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #01478b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #001b35 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #01478b !important;
  border-color: #01478b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0c6019;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #021305 !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: #0c6019 !important;
  border-color: #0c6019 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f773e7;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f221d9 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f773e7 !important;
  border-color: #f773e7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff702b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d34500 !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: #ff702b !important;
  border-color: #ff702b !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: #fb0a40 !important;
}
.text-secondary {
  color: #79f429 !important;
}
.text-success {
  color: #0c6019 !important;
}
.text-info {
  color: #01478b !important;
}
.text-warning {
  color: #f773e7 !important;
}
.text-danger {
  color: #ff702b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #9c0325 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4aae09 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #010501 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #001326 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f113d6 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c44000 !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: #fb0a40;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #01478b;
}
.alert-warning {
  background-color: #f773e7;
}
.alert-danger {
  background-color: #ff702b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fb0a40;
  border-color: #fb0a40;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fb0a40;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fed3dc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #1ad137;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #0e87fd;
}
.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: #fffaf7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #fb0a40 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #fb0a40;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fb0a40;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fb0a40;
}
.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: #fb0a40;
  border-bottom-color: #fb0a40;
}
.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: #fb0a40 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #79f429 !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='%23fb0a40' %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-duration: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
.container-fluid {
  padding: 0 5.2vw;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 6.5vw;
  }
}
.container {
  max-width: 2400px;
  margin: 0 auto;
  padding: 0 10.4vw;
}
@media (max-width: 767px) {
  .container {
    padding: 0 6.5vw;
  }
}
.row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.mbr-section-btn .btn {
  min-width: 80px;
  min-height: 60px;
  padding: 24px 44px;
  border-radius: 10em !important;
  border-width: 1px;
  font-weight: 500;
  box-shadow: none !important;
  transition: .4s all !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-section-btn .btn-transform {
  position: relative;
  width: 100%;
  overflow: hidden;
  animation: btn-move-out 0.4s ease-in-out;
  will-change: transform;
}
.custom-section-btn .btn-primary {
  color: #173D33 !important;
  background: linear-gradient(to bottom, #fb0a40, #fb0a40 50%, #173d33 50%, #173d33 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: none !important;
}
.custom-section-btn .btn-primary:hover {
  background: linear-gradient(to bottom, #fb0a40, #fb0a40 50%, #173d33 50%, #173d33 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #FFFFFF !important;
}
.custom-section-btn .btn-primary:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 50%, #fb0a40 50%, #fb0a40 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: none !important;
}
.custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 50%, #fb0a40 50%, #fb0a40 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
}
.custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 0;
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 0;
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
}
.cid-uTTcCfvofd .navbar-dropdown {
  position: relative !important;
}
.cid-uTTcCfvofd .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uTTcCfvofd .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uTTcCfvofd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uTTcCfvofd .dropdown-item {
  border: 1px solid #757ee8 !important;
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .dropdown-item:hover,
.cid-uTTcCfvofd .dropdown-item:focus {
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .dropdown-item:hover span {
  color: white;
}
.cid-uTTcCfvofd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTTcCfvofd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTTcCfvofd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTTcCfvofd .nav-link {
  position: relative;
}
.cid-uTTcCfvofd .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uTTcCfvofd .container {
    flex-wrap: nowrap;
  }
}
.cid-uTTcCfvofd .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uTTcCfvofd .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .dropdown-menu,
.cid-uTTcCfvofd .navbar.opened {
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .nav-item:focus,
.cid-uTTcCfvofd .nav-link:focus {
  outline: none;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTTcCfvofd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTTcCfvofd .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #757ee8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTcCfvofd .navbar.opened {
  transition: all 0.3s;
}
.cid-uTTcCfvofd .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uTTcCfvofd .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uTTcCfvofd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTTcCfvofd .navbar.collapsed {
  justify-content: center;
}
.cid-uTTcCfvofd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTTcCfvofd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTTcCfvofd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTTcCfvofd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTTcCfvofd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTTcCfvofd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTTcCfvofd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTTcCfvofd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTTcCfvofd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uTTcCfvofd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uTTcCfvofd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTTcCfvofd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTTcCfvofd .navbar.navbar-short {
  min-height: 96px;
}
.cid-uTTcCfvofd .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uTTcCfvofd .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uTTcCfvofd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uTTcCfvofd .navbar-brand .navbar-caption:hover,
.cid-uTTcCfvofd .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uTTcCfvofd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTTcCfvofd .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uTTcCfvofd .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .dropdown-item.active,
.cid-uTTcCfvofd .dropdown-item:active {
  background-color: transparent;
}
.cid-uTTcCfvofd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #757ee8;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uTTcCfvofd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTTcCfvofd ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uTTcCfvofd ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uTTcCfvofd .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uTTcCfvofd .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uTTcCfvofd .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uTTcCfvofd .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uTTcCfvofd button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #757ee8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTcCfvofd .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTTcCfvofd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTcCfvofd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTTcCfvofd .navbar {
    height: 70px;
  }
  .cid-uTTcCfvofd .navbar.opened {
    height: auto;
  }
  .cid-uTTcCfvofd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTTcCfvofd .navbar-nav {
  margin: 0 auto;
}
.cid-uTTcCfvofd .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uTTcCfvofd .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #757ee8;
}
.cid-uTTcCfvofd .nav-item .nav-link::after {
  color: #757ee8 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uTTcCfvofd .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uTTcCfvofd .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uTTcCfvofd .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uTTcCfvofd .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uTTcCfvofd .navbar {
    justify-content: flex-start !important;
  }
  .cid-uTTcCfvofd .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uTTcCfvofd .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uTTcCfvofd .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uTTcCfvofd .content-wrap {
  min-height: 110px;
}
.cid-uTTUXXsytx {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-uTTUXXsytx {
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-uTTUXXsytx {
    padding-top: 2.7rem;
    padding-bottom: 0.9rem;
  }
}
.cid-uTTUXXsytx .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uTTUXXsytx .f-row {
    flex-direction: row;
  }
}
.cid-uTTUXXsytx .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-uTTUXXsytx .f-item {
    flex: 1 1 50%;
  }
}
.cid-uTTUXXsytx .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uTTUXXsytx .image-wrapper {
    min-height: 650px;
  }
}
.cid-uTTUXXsytx .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uTTUXXsytx .text-wrapper {
  width: 100%;
  background: #757ee8;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-uTTUXXsytx .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-uTTUXXsytx .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-uTTt34LW5U {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uTTt34LW5U .counter-container ul {
  margin-bottom: 0;
}
.cid-uTTt34LW5U .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-uTTt34LW5U .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uTTt34LW5U .mbr-text {
  color: #000000;
}
.cid-uTTg6l3Emj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f5eb;
}
.cid-uTTg6l3Emj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTg6l3Emj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTg6l3Emj .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 130px 70px;
  background-color: #757ee8;
}
@media (max-width: 992px) {
  .cid-uTTg6l3Emj .card-wrapper {
    padding: 20px;
  }
}
.cid-uTTg6l3Emj .card-wrapper .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 450px;
  height: 300px;
  overflow: hidden;
  transform: rotate(15deg);
}
@media (max-width: 992px) {
  .cid-uTTg6l3Emj .card-wrapper .card-wrap {
    display: none;
  }
}
.cid-uTTg6l3Emj .card-wrapper .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTTg6l3Emj .card-wrapper .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e4d2b;
  opacity: 0.5;
  pointer-events: none;
}
.cid-uTTg6l3Emj .card-wrapper .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-uTTg6l3Emj .card-wrapper .decor-wrapper {
    display: none;
  }
}
.cid-uTTg6l3Emj .card-wrapper .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-uTTg6l3Emj .card-wrapper .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-uTTg6l3Emj .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uTTg6l3Emj .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTTg6l3Emj .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uTTg6l3Emj .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uTTg6l3Emj .mbr-section-title,
.cid-uTTg6l3Emj .title-wrapper {
  color: #f1f5eb;
}
.cid-uTTg6l3Emj .mbr-section-title,
.cid-uTTg6l3Emj .mbr-section-btn,
.cid-uTTg6l3Emj .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uTTPkKuWvE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTPkKuWvE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTPkKuWvE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTPkKuWvE .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .container {
    padding: 0 16px;
  }
}
.cid-uTTPkKuWvE .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .row {
    margin: 0 10px;
  }
}
.cid-uTTPkKuWvE .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTPkKuWvE .row .card .decor-wrapper_1 {
  position: absolute;
  top: -25rem;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #f9a600;
  border-radius: 15rem;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uTTPkKuWvE .row .card .decor-wrapper_1 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .row .card .decor-wrapper_1 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTPkKuWvE .row .card .decor-wrapper_2 {
  position: absolute;
  top: 0;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #757ee8;
  border-radius: 14%;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uTTPkKuWvE .row .card .decor-wrapper_2 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .row .card .decor-wrapper_2 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTPkKuWvE .title-wrapper {
  position: relative;
  z-index: 1;
  padding-left: 100px;
  width: 60%;
  margin: 0 auto;
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .title-wrapper {
    padding-left: 0;
    width: 100%;
  }
}
.cid-uTTPkKuWvE .title-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .title-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uTTPkKuWvE .title-wrapper .icon-wrapper .mbr-iconfont {
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  transform: rotate(45deg);
  border-radius: 100%;
}
.cid-uTTPkKuWvE .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uTTPkKuWvE .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uTTPkKuWvE .title-wrapper .mbr-text {
  margin: 0;
}
.cid-uTTPkKuWvE .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTPkKuWvE .mbr-text {
  color: #F9A600;
}
.cid-uTTPkKuWvE .mbr-text,
.cid-uTTPkKuWvE .mbr-section-btn {
  color: #f7f5f6;
}
.cid-uejBqGAch5 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uejBqGAch5 .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center;
}
.cid-uejBqGAch5 .card {
  margin-bottom: 1.5rem;
}
.cid-uejBqGAch5 .card-wrapper {
  overflow: visible;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .cid-uejBqGAch5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uejBqGAch5 .card-wrapper-1 {
  background-color: #fafafa;
}
.cid-uejBqGAch5 .card-wrapper-2 {
  background-color: #fafafa;
}
.cid-uejBqGAch5 .card-wrapper-3 {
  background-color: #ffffff;
}
.cid-uejBqGAch5 .card-wrapper-4 {
  background-color: #419e8e;
}
.cid-uejBqGAch5 .card-text {
  color: #454545;
  text-align: left;
  margin-bottom: 2.5rem;
  margin-bottom: 0;
}
.cid-uejBqGAch5 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uejBqGAch5 .card-text,
.cid-uejBqGAch5 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uejBqGAch5 .button-section {
  margin-top: 1.5rem;
}
.cid-uejBqGAch5 .button-section .btn {
  font-weight: 700 !important;
}
.cid-uejBqGAch5 .section-text,
.cid-uejBqGAch5 .button-section {
  text-align: left;
}
.cid-uejBqGAch5 .section-text {
  text-align: left;
}
.cid-uejBqGAch5 .card-title DIV {
  text-align: center;
}
.cid-uTThmFFlV5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTThmFFlV5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTThmFFlV5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTThmFFlV5 .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uTThmFFlV5 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uTThmFFlV5 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTThmFFlV5 .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uTThmFFlV5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTThmFFlV5 .mbr-section-title {
  color: #000000;
}
.cid-uTThmFFlV5 .mbr-desc {
  color: #000000;
}
.cid-uTThmFFlV5 .mbr-text {
  color: #000000;
}
.cid-uTThmFFlV5 .mbr-text,
.cid-uTThmFFlV5 .text-wrapper {
  color: #fafafa;
}
.cid-uTThmFFlV5 .mbr-section-title,
.cid-uTThmFFlV5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tkliUHRNY7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-tkliUHRNY7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkliUHRNY7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkliUHRNY7 .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-tkliUHRNY7 .mbr-section-head {
    margin-bottom: 76px;
  }
}
@media (max-width: 575px) {
  .cid-tkliUHRNY7 .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tkliUHRNY7 .main-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tkliUHRNY7 .main-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tkliUHRNY7 .main-subtitle {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-tkliUHRNY7 .card-row {
  margin-bottom: 40px;
}
.cid-tkliUHRNY7 .card {
  margin-bottom: -40px;
}
.cid-tkliUHRNY7 .card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 0px -23px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.cid-tkliUHRNY7 .card-wrapper:after {
  content: "";
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 0.3;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0e0e0e;
  box-shadow: 0 0 40px #0e0e0e;
  filter: blur(100px);
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tkliUHRNY7 .card-wrapper:after {
    width: 150%;
  }
}
.cid-tkliUHRNY7 .title-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tkliUHRNY7 .iconfont-wrapper {
  display: flex;
  margin-right: 1rem;
}
.cid-tkliUHRNY7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 44px;
  color: #aafc75;
}
.cid-tkliUHRNY7 .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tkliUHRNY7 .card-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-uTTRgM4c57 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #757ee8;
}
.cid-uTTRgM4c57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTRgM4c57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTRgM4c57 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uTTRgM4c57 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uTTRgM4c57 .container-fluid .row {
  padding: 0;
}
.cid-uTTRgM4c57 .row {
  border: 3px solid #ffffff;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uTTRgM4c57 .card {
  padding: 64px 28px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uTTRgM4c57 .card {
    border-left: 1px solid #ffffff;
    border-left: none;
    border-right: 2px solid #ffffff;
  }
}
@media (max-width: 992px) {
  .cid-uTTRgM4c57 .card {
    padding: 48px 20px;
  }
}
.cid-uTTRgM4c57 .card:first-child {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uTTRgM4c57 .card:last-child {
    border-left: none;
    border-right: 2px solid #ffffff;
    border-right: none;
    border-left: 1px solid #ffffff;
  }
}
.cid-uTTRgM4c57 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uTTRgM4c57 .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTRgM4c57 .mbr-section-title {
  color: #000000;
}
.cid-uTTRgM4c57 .mbr-text {
  color: #000000;
}
.cid-uTTPUhQeRO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTPUhQeRO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTPUhQeRO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTPUhQeRO .container {
    padding: 0 16px;
  }
}
.cid-uTTPUhQeRO .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTPUhQeRO .row {
    margin: 0 10px;
  }
}
.cid-uTTPUhQeRO .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTPUhQeRO .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #757ee8;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #757ee8;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-uTTPUhQeRO .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTPUhQeRO .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTPUhQeRO .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-uTTPUhQeRO .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uTTPUhQeRO .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #757ee8;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-uTTPUhQeRO .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTPUhQeRO .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTPUhQeRO .row .card .icon-decor {
    display: none;
  }
}
.cid-uTTPUhQeRO .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uTTPUhQeRO .title-wrapper {
    width: 100%;
  }
}
.cid-uTTPUhQeRO .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTPUhQeRO .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uTTPUhQeRO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTPUhQeRO .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTPUhQeRO .mbr-text {
  color: #fdfcfc;
}
.cid-uTTik4Shxr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #757ee8;
}
.cid-uTTik4Shxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTik4Shxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTik4Shxr .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTTik4Shxr .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTTik4Shxr .panel-group .card {
  position: relative;
  padding: 20px 30px 20px 50px;
  margin-top: 20px;
  border: none;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uTTik4Shxr .panel-group .card {
    margin-top: 16px;
    padding: 30px 20px;
  }
}
.cid-uTTik4Shxr .panel-group .card:first-child {
  margin-top: 0 !important;
}
.cid-uTTik4Shxr .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uTTik4Shxr .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTTik4Shxr .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTik4Shxr .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
  }
}
.cid-uTTik4Shxr .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uTTik4Shxr .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  color: #000c3f;
  background-color: #ffffff;
  font-size: 36px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uTTik4Shxr .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 22px;
  }
}
.cid-uTTik4Shxr .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
  background-color: #f47451;
}
.cid-uTTik4Shxr .panel-group .card .panel-collapse .panel-body {
  margin-top: 20px;
}
.cid-uTTik4Shxr .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTik4Shxr .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uTTik4Shxr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTik4Shxr .panel-title-edit {
  color: #ffffff;
}
.cid-uTTik4Shxr .panel-text {
  color: #000c3f;
}
.cid-uTTQZCOSFc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTTQZCOSFc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTQZCOSFc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTQZCOSFc .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTQZCOSFc .container {
    padding: 0 12px;
  }
}
.cid-uTTQZCOSFc .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTQZCOSFc .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTQZCOSFc .row.card-wrapper {
  padding: 80px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #757ee8;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uTTQZCOSFc .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-uTTQZCOSFc .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-uTTQZCOSFc .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-uTTQZCOSFc .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-uTTQZCOSFc .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-uTTQZCOSFc .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uTTQZCOSFc .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uTTQZCOSFc .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uTTQZCOSFc .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #000000;
}
.cid-uTTQZCOSFc .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uTTQZCOSFc .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTQZCOSFc .mbr-text {
  color: #000000;
}
.cid-uTTQZCOSFc .list {
  color: #222222;
}
.cid-uTRNUWUbRC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTRNUWUbRC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTRNUWUbRC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTRNUWUbRC .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTRNUWUbRC .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uTRNUWUbRC .items-wrapper {
  justify-content: center;
  margin: 0 -32px;
}
.cid-uTRNUWUbRC .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTRNUWUbRC .item {
    margin-bottom: 40px;
  }
}
.cid-uTRNUWUbRC .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uTRNUWUbRC .item .item-wrapper .card-box .number-wrapper {
  margin-bottom: 20px;
}
.cid-uTRNUWUbRC .item .item-wrapper .card-box .number-wrapper .card-number {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background-color: #df6d2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uTRNUWUbRC .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uTRNUWUbRC .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uTRNUWUbRC .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uTRNUWUbRC .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTRNUWUbRC .mbr-section-title,
.cid-uTRNUWUbRC .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-uTRNUWUbRC .card-number {
  color: #f1f5eb;
}
.cid-uTRNUWUbRC .card-title {
  color: #323432;
}
.cid-uTRNUWUbRC .card-text {
  color: #323432;
}
.cid-uTRNUWUbRC .card-title,
.cid-uTRNUWUbRC .mbr-section-btn,
.cid-uTRNUWUbRC .iconfont-wrapper {
  color: #000000;
}
.cid-uTTQRfPKM7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTQRfPKM7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTQRfPKM7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTQRfPKM7 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uTTQRfPKM7 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTQRfPKM7 .container {
    padding: 0 12px;
  }
}
.cid-uTTQRfPKM7 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTQRfPKM7 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTQRfPKM7 .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uTTQRfPKM7 .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uTTQRfPKM7 .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uTTQRfPKM7 .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uTTQRfPKM7 .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uTTQRfPKM7 .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uTTQRfPKM7 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uTTQRfPKM7 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uTTQRfPKM7 .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uTTQRfPKM7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTQRfPKM7 .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTQRfPKM7 .mbr-text {
  color: #222222;
}
.cid-uTTQRfPKM7 .list {
  color: #222222;
}
.cid-uTTmsQOmTD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTmsQOmTD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTmsQOmTD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTmsQOmTD .card-wrapper {
  padding: 80px;
  background-color: #757ee8;
}
@media (max-width: 1440px) {
  .cid-uTTmsQOmTD .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uTTmsQOmTD .card-wrapper {
    padding: 0;
  }
}
.cid-uTTmsQOmTD .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #000000;
}
@media (max-width: 992px) {
  .cid-uTTmsQOmTD .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uTTmsQOmTD .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uemRhGpmgW {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #757ee8;
}
.cid-uemRhGpmgW .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uemRhGpmgW .copyright-section,
.cid-uemRhGpmgW .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uemRhGpmgW .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uemRhGpmgW .logo-section img {
  margin: 0 auto;
}
.cid-uemRhGpmgW .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uemRhGpmgW .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uemRhGpmgW .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uemRhGpmgW .social-media ul li {
    margin-left: 30px;
  }
  .cid-uemRhGpmgW .container-fluid {
    padding: 0 2rem;
  }
  .cid-uemRhGpmgW .menu-container {
    margin-bottom: 20px;
  }
  .cid-uemRhGpmgW .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uemRhGpmgW .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uemRhGpmgW .copyright-section {
    order: 1;
  }
  .cid-uemRhGpmgW .copyright-section hr {
    display: none;
  }
  .cid-uemRhGpmgW .social-media {
    margin-top: 30px;
  }
  .cid-uemRhGpmgW .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uemRhGpmgW .line {
    margin: 25px 0;
  }
  .cid-uemRhGpmgW .mobirise-rights,
  .cid-uemRhGpmgW .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uemRhGpmgW .mbr-text,
.cid-uemRhGpmgW .copyright-section {
  color: #ffffff;
  text-align: right;
}
.cid-uTTcCfvofd .navbar-dropdown {
  position: relative !important;
}
.cid-uTTcCfvofd .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uTTcCfvofd .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uTTcCfvofd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uTTcCfvofd .dropdown-item {
  border: 1px solid #757ee8 !important;
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .dropdown-item:hover,
.cid-uTTcCfvofd .dropdown-item:focus {
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .dropdown-item:hover span {
  color: white;
}
.cid-uTTcCfvofd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTTcCfvofd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTTcCfvofd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTTcCfvofd .nav-link {
  position: relative;
}
.cid-uTTcCfvofd .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uTTcCfvofd .container {
    flex-wrap: nowrap;
  }
}
.cid-uTTcCfvofd .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uTTcCfvofd .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .dropdown-menu,
.cid-uTTcCfvofd .navbar.opened {
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .nav-item:focus,
.cid-uTTcCfvofd .nav-link:focus {
  outline: none;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTTcCfvofd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTTcCfvofd .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #757ee8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTcCfvofd .navbar.opened {
  transition: all 0.3s;
}
.cid-uTTcCfvofd .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uTTcCfvofd .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uTTcCfvofd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTTcCfvofd .navbar.collapsed {
  justify-content: center;
}
.cid-uTTcCfvofd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTTcCfvofd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTTcCfvofd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTTcCfvofd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTTcCfvofd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTTcCfvofd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTTcCfvofd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTTcCfvofd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTTcCfvofd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uTTcCfvofd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uTTcCfvofd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTTcCfvofd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTTcCfvofd .navbar.navbar-short {
  min-height: 96px;
}
.cid-uTTcCfvofd .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uTTcCfvofd .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uTTcCfvofd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uTTcCfvofd .navbar-brand .navbar-caption:hover,
.cid-uTTcCfvofd .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uTTcCfvofd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTTcCfvofd .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uTTcCfvofd .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .dropdown-item.active,
.cid-uTTcCfvofd .dropdown-item:active {
  background-color: transparent;
}
.cid-uTTcCfvofd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #757ee8;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uTTcCfvofd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTTcCfvofd ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uTTcCfvofd ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uTTcCfvofd .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uTTcCfvofd .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uTTcCfvofd .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uTTcCfvofd .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uTTcCfvofd button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #757ee8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTcCfvofd .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTTcCfvofd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTcCfvofd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTTcCfvofd .navbar {
    height: 70px;
  }
  .cid-uTTcCfvofd .navbar.opened {
    height: auto;
  }
  .cid-uTTcCfvofd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTTcCfvofd .navbar-nav {
  margin: 0 auto;
}
.cid-uTTcCfvofd .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uTTcCfvofd .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #757ee8;
}
.cid-uTTcCfvofd .nav-item .nav-link::after {
  color: #757ee8 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uTTcCfvofd .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uTTcCfvofd .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uTTcCfvofd .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uTTcCfvofd .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uTTcCfvofd .navbar {
    justify-content: flex-start !important;
  }
  .cid-uTTcCfvofd .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uTTcCfvofd .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uTTcCfvofd .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uTTcCfvofd .content-wrap {
  min-height: 110px;
}
.cid-uTTTa9hl1l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uTTTa9hl1l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTTa9hl1l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTTa9hl1l .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uTTTa9hl1l .container-fluid {
    padding: 0 12px;
  }
}
.cid-uTTTa9hl1l .container-fluid .row {
  padding: 0;
}
.cid-uTTTa9hl1l .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uTTTa9hl1l .card {
  padding: 150px 28px;
  border-radius: 0;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uTTTa9hl1l .card {
    border-left: 1px solid #d2d2d2;
  }
}
@media (max-width: 992px) {
  .cid-uTTTa9hl1l .card {
    padding: 48px 20px;
  }
}
.cid-uTTTa9hl1l .card:last-child {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uTTTa9hl1l .card:last-child {
    border-left: none;
    border-right: 2px solid #d2d2d2;
  }
}
.cid-uTTTa9hl1l .card .title-wrapper {
  margin-bottom: 0;
}
.cid-uTTTa9hl1l .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  width: 45%;
}
.cid-uTTTa9hl1l .card .image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uTTTa9hl1l .card .image-wrapper {
    bottom: 0;
  }
}
.cid-uTTTa9hl1l .card .image-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uTTTa9hl1l .card .image-wrapper img {
    height: 120px;
    width: 120px;
  }
}
.cid-uTTTa9hl1l .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTTa9hl1l .mbr-section-title {
  color: #d2d2d2;
}
.cid-uTTTa9hl1l .mbr-text {
  color: #d2d2d2;
}
.cid-uejM7p7maX {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #000000;
}
.cid-uejM7p7maX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uejM7p7maX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uejM7p7maX .google-map {
  height: 35rem;
  position: relative;
}
.cid-uejM7p7maX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uejM7p7maX .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-uejM7p7maX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uejM7p7maX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uejM7p7maX .mbr-section-title {
  color: #00004c;
}
.cid-uemRhGpmgW {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #757ee8;
}
.cid-uemRhGpmgW .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uemRhGpmgW .copyright-section,
.cid-uemRhGpmgW .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uemRhGpmgW .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uemRhGpmgW .logo-section img {
  margin: 0 auto;
}
.cid-uemRhGpmgW .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uemRhGpmgW .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uemRhGpmgW .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uemRhGpmgW .social-media ul li {
    margin-left: 30px;
  }
  .cid-uemRhGpmgW .container-fluid {
    padding: 0 2rem;
  }
  .cid-uemRhGpmgW .menu-container {
    margin-bottom: 20px;
  }
  .cid-uemRhGpmgW .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uemRhGpmgW .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uemRhGpmgW .copyright-section {
    order: 1;
  }
  .cid-uemRhGpmgW .copyright-section hr {
    display: none;
  }
  .cid-uemRhGpmgW .social-media {
    margin-top: 30px;
  }
  .cid-uemRhGpmgW .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uemRhGpmgW .line {
    margin: 25px 0;
  }
  .cid-uemRhGpmgW .mobirise-rights,
  .cid-uemRhGpmgW .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uemRhGpmgW .mbr-text,
.cid-uemRhGpmgW .copyright-section {
  color: #ffffff;
  text-align: right;
}
.cid-uTTcCfvofd .navbar-dropdown {
  position: relative !important;
}
.cid-uTTcCfvofd .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uTTcCfvofd .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uTTcCfvofd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uTTcCfvofd .dropdown-item {
  border: 1px solid #757ee8 !important;
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .dropdown-item:hover,
.cid-uTTcCfvofd .dropdown-item:focus {
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .dropdown-item:hover span {
  color: white;
}
.cid-uTTcCfvofd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTTcCfvofd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTTcCfvofd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTTcCfvofd .nav-link {
  position: relative;
}
.cid-uTTcCfvofd .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uTTcCfvofd .container {
    flex-wrap: nowrap;
  }
}
.cid-uTTcCfvofd .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uTTcCfvofd .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .dropdown-menu,
.cid-uTTcCfvofd .navbar.opened {
  background: #757ee8 !important;
}
.cid-uTTcCfvofd .nav-item:focus,
.cid-uTTcCfvofd .nav-link:focus {
  outline: none;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTTcCfvofd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTcCfvofd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTTcCfvofd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTTcCfvofd .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #757ee8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTcCfvofd .navbar.opened {
  transition: all 0.3s;
}
.cid-uTTcCfvofd .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uTTcCfvofd .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uTTcCfvofd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTTcCfvofd .navbar.collapsed {
  justify-content: center;
}
.cid-uTTcCfvofd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTTcCfvofd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTTcCfvofd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTTcCfvofd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTTcCfvofd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTTcCfvofd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTTcCfvofd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTTcCfvofd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTTcCfvofd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTTcCfvofd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTTcCfvofd .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uTTcCfvofd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uTTcCfvofd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTTcCfvofd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTTcCfvofd .navbar.navbar-short {
  min-height: 96px;
}
.cid-uTTcCfvofd .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uTTcCfvofd .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uTTcCfvofd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uTTcCfvofd .navbar-brand .navbar-caption:hover,
.cid-uTTcCfvofd .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uTTcCfvofd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTTcCfvofd .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uTTcCfvofd .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .dropdown-item.active,
.cid-uTTcCfvofd .dropdown-item:active {
  background-color: transparent;
}
.cid-uTTcCfvofd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTTcCfvofd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #757ee8;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uTTcCfvofd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uTTcCfvofd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTTcCfvofd ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uTTcCfvofd ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uTTcCfvofd .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uTTcCfvofd .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uTTcCfvofd .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uTTcCfvofd .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uTTcCfvofd button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #757ee8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTcCfvofd button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTTcCfvofd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTcCfvofd .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTTcCfvofd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTcCfvofd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTTcCfvofd .navbar {
    height: 70px;
  }
  .cid-uTTcCfvofd .navbar.opened {
    height: auto;
  }
  .cid-uTTcCfvofd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTTcCfvofd .navbar-nav {
  margin: 0 auto;
}
.cid-uTTcCfvofd .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uTTcCfvofd .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #757ee8;
}
.cid-uTTcCfvofd .nav-item .nav-link::after {
  color: #757ee8 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uTTcCfvofd .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uTTcCfvofd .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uTTcCfvofd .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uTTcCfvofd .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uTTcCfvofd .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uTTcCfvofd .navbar {
    justify-content: flex-start !important;
  }
  .cid-uTTcCfvofd .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uTTcCfvofd .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uTTcCfvofd .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uTTcCfvofd .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uTTcCfvofd .content-wrap {
  min-height: 110px;
}
.cid-uTTTNXT6KY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uTTTNXT6KY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTTNXT6KY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTTNXT6KY .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uTTTNXT6KY .container-fluid {
    padding: 0 12px;
  }
}
.cid-uTTTNXT6KY .container-fluid .row {
  padding: 0;
}
.cid-uTTTNXT6KY .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uTTTNXT6KY .card {
  padding: 150px 28px;
  border-radius: 0;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uTTTNXT6KY .card {
    border-left: 1px solid #d2d2d2;
  }
}
@media (max-width: 992px) {
  .cid-uTTTNXT6KY .card {
    padding: 48px 20px;
  }
}
.cid-uTTTNXT6KY .card:last-child {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uTTTNXT6KY .card:last-child {
    border-left: none;
    border-right: 2px solid #d2d2d2;
  }
}
.cid-uTTTNXT6KY .card .title-wrapper {
  margin-bottom: 0;
}
.cid-uTTTNXT6KY .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  width: 45%;
}
.cid-uTTTNXT6KY .card .image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uTTTNXT6KY .card .image-wrapper {
    bottom: 0;
  }
}
.cid-uTTTNXT6KY .card .image-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uTTTNXT6KY .card .image-wrapper img {
    height: 120px;
    width: 120px;
  }
}
.cid-uTTTNXT6KY .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTTNXT6KY .mbr-section-title {
  color: #d2d2d2;
}
.cid-uTTTNXT6KY .mbr-text {
  color: #d2d2d2;
}
.cid-uTQrTX0SxZ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #000000;
}
.cid-uTQrTX0SxZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTQrTX0SxZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTQrTX0SxZ .google-map {
  height: 35rem;
  position: relative;
}
.cid-uTQrTX0SxZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uTQrTX0SxZ .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-uTQrTX0SxZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uTQrTX0SxZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uTQrTX0SxZ .mbr-section-title {
  color: #00004c;
}
.cid-uTQrTY27K6 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #757ee8;
}
.cid-uTQrTY27K6 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uTQrTY27K6 .copyright-section,
.cid-uTQrTY27K6 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uTQrTY27K6 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uTQrTY27K6 .logo-section img {
  margin: 0 auto;
}
.cid-uTQrTY27K6 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uTQrTY27K6 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uTQrTY27K6 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uTQrTY27K6 .social-media ul li {
    margin-left: 30px;
  }
  .cid-uTQrTY27K6 .container-fluid {
    padding: 0 2rem;
  }
  .cid-uTQrTY27K6 .menu-container {
    margin-bottom: 20px;
  }
  .cid-uTQrTY27K6 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uTQrTY27K6 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTQrTY27K6 .copyright-section {
    order: 1;
  }
  .cid-uTQrTY27K6 .copyright-section hr {
    display: none;
  }
  .cid-uTQrTY27K6 .social-media {
    margin-top: 30px;
  }
  .cid-uTQrTY27K6 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uTQrTY27K6 .line {
    margin: 25px 0;
  }
  .cid-uTQrTY27K6 .mobirise-rights,
  .cid-uTQrTY27K6 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uTQrTY27K6 .mbr-text,
.cid-uTQrTY27K6 .copyright-section {
  color: #ffffff;
  text-align: right;
}
.cid-uTTYqezijA .navbar-dropdown {
  position: relative !important;
}
.cid-uTTYqezijA .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYqezijA .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uTTYqezijA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTYqezijA .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uTTYqezijA .dropdown-item {
  border: 1px solid #757ee8 !important;
  background: #757ee8 !important;
}
.cid-uTTYqezijA .dropdown-item:hover,
.cid-uTTYqezijA .dropdown-item:focus {
  background: #757ee8 !important;
}
.cid-uTTYqezijA .dropdown-item:hover span {
  color: white;
}
.cid-uTTYqezijA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTTYqezijA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTTYqezijA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTTYqezijA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTTYqezijA .nav-link {
  position: relative;
}
.cid-uTTYqezijA .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uTTYqezijA .container {
    flex-wrap: nowrap;
  }
}
.cid-uTTYqezijA .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uTTYqezijA .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uTTYqezijA .dropdown-menu,
.cid-uTTYqezijA .navbar.opened {
  background: #757ee8 !important;
}
.cid-uTTYqezijA .nav-item:focus,
.cid-uTTYqezijA .nav-link:focus {
  outline: none;
}
.cid-uTTYqezijA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTTYqezijA .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uTTYqezijA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTTYqezijA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTYqezijA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTTYqezijA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTTYqezijA .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #757ee8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTYqezijA .navbar.opened {
  transition: all 0.3s;
}
.cid-uTTYqezijA .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uTTYqezijA .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uTTYqezijA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTTYqezijA .navbar.collapsed {
  justify-content: center;
}
.cid-uTTYqezijA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTTYqezijA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTTYqezijA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uTTYqezijA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTTYqezijA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTTYqezijA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTTYqezijA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTTYqezijA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTTYqezijA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTTYqezijA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTTYqezijA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTTYqezijA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTTYqezijA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTTYqezijA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTTYqezijA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTTYqezijA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTTYqezijA .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uTTYqezijA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uTTYqezijA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTTYqezijA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTTYqezijA .navbar.navbar-short {
  min-height: 96px;
}
.cid-uTTYqezijA .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uTTYqezijA .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uTTYqezijA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uTTYqezijA .navbar-brand .navbar-caption:hover,
.cid-uTTYqezijA .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uTTYqezijA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTTYqezijA .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uTTYqezijA .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uTTYqezijA .dropdown-item.active,
.cid-uTTYqezijA .dropdown-item:active {
  background-color: transparent;
}
.cid-uTTYqezijA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTTYqezijA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTTYqezijA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTTYqezijA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #757ee8;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uTTYqezijA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uTTYqezijA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uTTYqezijA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTTYqezijA ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uTTYqezijA ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uTTYqezijA .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uTTYqezijA .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uTTYqezijA .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uTTYqezijA .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uTTYqezijA button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #757ee8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTYqezijA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uTTYqezijA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uTTYqezijA button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTYqezijA button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTYqezijA button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uTTYqezijA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTYqezijA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTTYqezijA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTTYqezijA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTYqezijA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTTYqezijA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTYqezijA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTTYqezijA .navbar {
    height: 70px;
  }
  .cid-uTTYqezijA .navbar.opened {
    height: auto;
  }
  .cid-uTTYqezijA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTTYqezijA .navbar-nav {
  margin: 0 auto;
}
.cid-uTTYqezijA .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uTTYqezijA .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #757ee8;
}
.cid-uTTYqezijA .nav-item .nav-link::after {
  color: #757ee8 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uTTYqezijA .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uTTYqezijA .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uTTYqezijA .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uTTYqezijA .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uTTYqezijA .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uTTYqezijA .navbar {
    justify-content: flex-start !important;
  }
  .cid-uTTYqezijA .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uTTYqezijA .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uTTYqezijA .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uTTYqezijA .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uTTYqezijA .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uTTYqezijA .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uTTYqezijA .content-wrap {
  min-height: 110px;
}
.cid-uTTYqfRdh3 {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-uTTYqfRdh3 {
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-uTTYqfRdh3 {
    padding-top: 2.7rem;
    padding-bottom: 0.9rem;
  }
}
.cid-uTTYqfRdh3 .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uTTYqfRdh3 .f-row {
    flex-direction: row;
  }
}
.cid-uTTYqfRdh3 .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-uTTYqfRdh3 .f-item {
    flex: 1 1 50%;
  }
}
.cid-uTTYqfRdh3 .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uTTYqfRdh3 .image-wrapper {
    min-height: 650px;
  }
}
.cid-uTTYqfRdh3 .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uTTYqfRdh3 .text-wrapper {
  width: 100%;
  background: #757ee8;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-uTTYqfRdh3 .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-uTTYqfRdh3 .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-uTTYqgSxks {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uTTYqgSxks .counter-container ul {
  margin-bottom: 0;
}
.cid-uTTYqgSxks .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-uTTYqgSxks .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uTTYqgSxks .mbr-text {
  color: #000000;
}
.cid-uTTYqhPp34 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f5eb;
}
.cid-uTTYqhPp34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqhPp34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqhPp34 .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 130px 70px;
  background-color: #757ee8;
}
@media (max-width: 992px) {
  .cid-uTTYqhPp34 .card-wrapper {
    padding: 20px;
  }
}
.cid-uTTYqhPp34 .card-wrapper .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 450px;
  height: 300px;
  overflow: hidden;
  transform: rotate(15deg);
}
@media (max-width: 992px) {
  .cid-uTTYqhPp34 .card-wrapper .card-wrap {
    display: none;
  }
}
.cid-uTTYqhPp34 .card-wrapper .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTTYqhPp34 .card-wrapper .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e4d2b;
  opacity: 0.5;
  pointer-events: none;
}
.cid-uTTYqhPp34 .card-wrapper .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-uTTYqhPp34 .card-wrapper .decor-wrapper {
    display: none;
  }
}
.cid-uTTYqhPp34 .card-wrapper .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-uTTYqhPp34 .card-wrapper .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-uTTYqhPp34 .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uTTYqhPp34 .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTTYqhPp34 .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uTTYqhPp34 .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uTTYqhPp34 .mbr-section-title,
.cid-uTTYqhPp34 .title-wrapper {
  color: #f1f5eb;
}
.cid-uTTYqhPp34 .mbr-section-title,
.cid-uTTYqhPp34 .mbr-section-btn,
.cid-uTTYqhPp34 .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uTTYqiMMfN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTYqiMMfN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqiMMfN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqiMMfN .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .container {
    padding: 0 16px;
  }
}
.cid-uTTYqiMMfN .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .row {
    margin: 0 10px;
  }
}
.cid-uTTYqiMMfN .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTYqiMMfN .row .card .decor-wrapper_1 {
  position: absolute;
  top: -25rem;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #f9a600;
  border-radius: 15rem;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uTTYqiMMfN .row .card .decor-wrapper_1 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .row .card .decor-wrapper_1 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTYqiMMfN .row .card .decor-wrapper_2 {
  position: absolute;
  top: 0;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #757ee8;
  border-radius: 14%;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uTTYqiMMfN .row .card .decor-wrapper_2 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .row .card .decor-wrapper_2 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTYqiMMfN .title-wrapper {
  position: relative;
  z-index: 1;
  padding-left: 100px;
  width: 60%;
  margin: 0 auto;
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .title-wrapper {
    padding-left: 0;
    width: 100%;
  }
}
.cid-uTTYqiMMfN .title-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .title-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uTTYqiMMfN .title-wrapper .icon-wrapper .mbr-iconfont {
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  transform: rotate(45deg);
  border-radius: 100%;
}
.cid-uTTYqiMMfN .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uTTYqiMMfN .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uTTYqiMMfN .title-wrapper .mbr-text {
  margin: 0;
}
.cid-uTTYqiMMfN .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTYqiMMfN .mbr-text {
  color: #F9A600;
}
.cid-uTTYqiMMfN .mbr-text,
.cid-uTTYqiMMfN .mbr-section-btn {
  color: #f7f5f6;
}
.cid-uTTYqjPrem {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYqjPrem .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center;
}
.cid-uTTYqjPrem .card {
  margin-bottom: 1.5rem;
}
.cid-uTTYqjPrem .card-wrapper {
  overflow: visible;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .cid-uTTYqjPrem .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uTTYqjPrem .card-wrapper-1 {
  background-color: #fafafa;
}
.cid-uTTYqjPrem .card-wrapper-2 {
  background-color: #fafafa;
}
.cid-uTTYqjPrem .card-wrapper-3 {
  background-color: #ffffff;
}
.cid-uTTYqjPrem .card-wrapper-4 {
  background-color: #419e8e;
}
.cid-uTTYqjPrem .card-text {
  color: #454545;
  text-align: left;
  margin-bottom: 2.5rem;
  margin-bottom: 0;
}
.cid-uTTYqjPrem .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uTTYqjPrem .card-text,
.cid-uTTYqjPrem .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uTTYqjPrem .button-section {
  margin-top: 1.5rem;
}
.cid-uTTYqjPrem .button-section .btn {
  font-weight: 700 !important;
}
.cid-uTTYqjPrem .section-text,
.cid-uTTYqjPrem .button-section {
  text-align: left;
}
.cid-uTTYqjPrem .section-text {
  text-align: left;
}
.cid-uTTYqjPrem .card-title DIV {
  text-align: center;
}
.cid-uTTYql26oq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYql26oq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYql26oq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYql26oq .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uTTYql26oq .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uTTYql26oq .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYql26oq .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uTTYql26oq .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYql26oq .mbr-section-title {
  color: #000000;
}
.cid-uTTYql26oq .mbr-desc {
  color: #000000;
}
.cid-uTTYql26oq .mbr-text {
  color: #000000;
}
.cid-uTTYql26oq .mbr-text,
.cid-uTTYql26oq .text-wrapper {
  color: #fafafa;
}
.cid-uTTYql26oq .mbr-section-title,
.cid-uTTYql26oq .mbr-section-btn {
  color: #ffffff;
}
.cid-uTTYqm0bjg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYqm0bjg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqm0bjg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqm0bjg .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-uTTYqm0bjg .mbr-section-head {
    margin-bottom: 76px;
  }
}
@media (max-width: 575px) {
  .cid-uTTYqm0bjg .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uTTYqm0bjg .main-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uTTYqm0bjg .main-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uTTYqm0bjg .main-subtitle {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uTTYqm0bjg .card-row {
  margin-bottom: 40px;
}
.cid-uTTYqm0bjg .card {
  margin-bottom: -40px;
}
.cid-uTTYqm0bjg .card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 0px -23px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.cid-uTTYqm0bjg .card-wrapper:after {
  content: "";
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 0.3;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0e0e0e;
  box-shadow: 0 0 40px #0e0e0e;
  filter: blur(100px);
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uTTYqm0bjg .card-wrapper:after {
    width: 150%;
  }
}
.cid-uTTYqm0bjg .title-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uTTYqm0bjg .iconfont-wrapper {
  display: flex;
  margin-right: 1rem;
}
.cid-uTTYqm0bjg .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 44px;
  color: #aafc75;
}
.cid-uTTYqm0bjg .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYqm0bjg .card-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-uTTYqnhaot {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #757ee8;
}
.cid-uTTYqnhaot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqnhaot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqnhaot .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uTTYqnhaot .container-fluid {
    padding: 0 12px;
  }
}
.cid-uTTYqnhaot .container-fluid .row {
  padding: 0;
}
.cid-uTTYqnhaot .row {
  border: 3px solid #ffffff;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uTTYqnhaot .card {
  padding: 64px 28px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uTTYqnhaot .card {
    border-left: 1px solid #ffffff;
    border-left: none;
    border-right: 2px solid #ffffff;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqnhaot .card {
    padding: 48px 20px;
  }
}
.cid-uTTYqnhaot .card:first-child {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uTTYqnhaot .card:last-child {
    border-left: none;
    border-right: 2px solid #ffffff;
    border-right: none;
    border-left: 1px solid #ffffff;
  }
}
.cid-uTTYqnhaot .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uTTYqnhaot .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYqnhaot .mbr-section-title {
  color: #000000;
}
.cid-uTTYqnhaot .mbr-text {
  color: #000000;
}
.cid-uTTYqodNyd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTYqodNyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqodNyd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTYqodNyd .container {
    padding: 0 16px;
  }
}
.cid-uTTYqodNyd .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTYqodNyd .row {
    margin: 0 10px;
  }
}
.cid-uTTYqodNyd .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTYqodNyd .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #757ee8;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #757ee8;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-uTTYqodNyd .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTYqodNyd .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqodNyd .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqodNyd .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uTTYqodNyd .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #757ee8;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-uTTYqodNyd .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTYqodNyd .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqodNyd .row .card .icon-decor {
    display: none;
  }
}
.cid-uTTYqodNyd .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uTTYqodNyd .title-wrapper {
    width: 100%;
  }
}
.cid-uTTYqodNyd .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYqodNyd .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uTTYqodNyd .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYqodNyd .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTYqodNyd .mbr-text {
  color: #fdfcfc;
}
.cid-uTTYqpeUhc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #757ee8;
}
.cid-uTTYqpeUhc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqpeUhc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqpeUhc .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYqpeUhc .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTTYqpeUhc .panel-group .card {
  position: relative;
  padding: 20px 30px 20px 50px;
  margin-top: 20px;
  border: none;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uTTYqpeUhc .panel-group .card {
    margin-top: 16px;
    padding: 30px 20px;
  }
}
.cid-uTTYqpeUhc .panel-group .card:first-child {
  margin-top: 0 !important;
}
.cid-uTTYqpeUhc .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uTTYqpeUhc .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTTYqpeUhc .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYqpeUhc .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
  }
}
.cid-uTTYqpeUhc .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uTTYqpeUhc .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  color: #000c3f;
  background-color: #ffffff;
  font-size: 36px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uTTYqpeUhc .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 22px;
  }
}
.cid-uTTYqpeUhc .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
  background-color: #f47451;
}
.cid-uTTYqpeUhc .panel-group .card .panel-collapse .panel-body {
  margin-top: 20px;
}
.cid-uTTYqpeUhc .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYqpeUhc .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uTTYqpeUhc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYqpeUhc .panel-title-edit {
  color: #ffffff;
}
.cid-uTTYqpeUhc .panel-text {
  color: #000c3f;
}
.cid-uTTYqqtpYf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTTYqqtpYf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqqtpYf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTYqqtpYf .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTYqqtpYf .container {
    padding: 0 12px;
  }
}
.cid-uTTYqqtpYf .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYqqtpYf .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTYqqtpYf .row.card-wrapper {
  padding: 80px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #757ee8;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uTTYqqtpYf .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-uTTYqqtpYf .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-uTTYqqtpYf .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-uTTYqqtpYf .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqqtpYf .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-uTTYqqtpYf .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uTTYqqtpYf .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uTTYqqtpYf .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uTTYqqtpYf .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #000000;
}
.cid-uTTYqqtpYf .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uTTYqqtpYf .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTYqqtpYf .mbr-text {
  color: #000000;
}
.cid-uTTYqqtpYf .list {
  color: #222222;
}
.cid-uTTYqrw8Zk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYqrw8Zk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqrw8Zk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqrw8Zk .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTTYqrw8Zk .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uTTYqrw8Zk .items-wrapper {
  justify-content: center;
  margin: 0 -32px;
}
.cid-uTTYqrw8Zk .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYqrw8Zk .item {
    margin-bottom: 40px;
  }
}
.cid-uTTYqrw8Zk .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uTTYqrw8Zk .item .item-wrapper .card-box .number-wrapper {
  margin-bottom: 20px;
}
.cid-uTTYqrw8Zk .item .item-wrapper .card-box .number-wrapper .card-number {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background-color: #df6d2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTYqrw8Zk .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uTTYqrw8Zk .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uTTYqrw8Zk .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uTTYqrw8Zk .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTTYqrw8Zk .mbr-section-title,
.cid-uTTYqrw8Zk .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-uTTYqrw8Zk .card-number {
  color: #f1f5eb;
}
.cid-uTTYqrw8Zk .card-title {
  color: #323432;
}
.cid-uTTYqrw8Zk .card-text {
  color: #323432;
}
.cid-uTTYqrw8Zk .card-title,
.cid-uTTYqrw8Zk .mbr-section-btn,
.cid-uTTYqrw8Zk .iconfont-wrapper {
  color: #000000;
}
.cid-uTU2ZdetBP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uTU2ZdetBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTU2ZdetBP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTU2ZdetBP .content-head {
  max-width: 800px;
}
.cid-uTU2ZdetBP .mbr-figure iframe {
  height: 750px;
}
@media (max-width: 992px) {
  .cid-uTU2ZdetBP .mbr-figure iframe {
    height: 350px;
  }
}
.cid-uTU2ZdetBP .mbr-figure .app-video-wrapper img {
  object-fit: cover;
  height: 750px;
}
@media (max-width: 992px) {
  .cid-uTU2ZdetBP .mbr-figure .app-video-wrapper img {
    height: 350px;
  }
}
.cid-uTU2ZdetBP .mbr-section-title {
  color: #000000;
}
.cid-uTTYqsQsQB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYqsQsQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqsQsQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqsQsQB .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uTTYqsQsQB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTYqsQsQB .container {
    padding: 0 12px;
  }
}
.cid-uTTYqsQsQB .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYqsQsQB .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTYqsQsQB .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uTTYqsQsQB .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uTTYqsQsQB .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uTTYqsQsQB .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uTTYqsQsQB .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYqsQsQB .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uTTYqsQsQB .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uTTYqsQsQB .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uTTYqsQsQB .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYqsQsQB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYqsQsQB .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTYqsQsQB .mbr-text {
  color: #222222;
}
.cid-uTTYqsQsQB .list {
  color: #222222;
}
.cid-uTUhf8E40I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171827;
}
.cid-uTUhf8E40I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTUhf8E40I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTUhf8E40I .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #0b1324;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uTUhf8E40I .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uTUhf8E40I .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #757ee8, #ffffff 50%);
  opacity: .5;
}
.cid-uTUhf8E40I .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uTUhf8E40I .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  background-color: transparent;
  border: 1px solid #0b1324;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uTUhf8E40I .content-wrapper .panel-group .card {
    padding: 14px;
  }
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  background-color: #757ee8;
  border-radius: 100%;
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #080813;
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uTUhf8E40I .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 14px;
  }
}
.cid-uTUhf8E40I .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTUhf8E40I .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uTUhf8E40I .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uTUhf8E40I .panel-title-edit {
  color: #ffffff;
}
.cid-uTUhf8E40I .panel-text {
  color: #ffffff;
}
.cid-uTUhf8E40I .panel-title-edit,
.cid-uTUhf8E40I .icon-wrapper {
  color: #000000;
}
.cid-uTUhf8E40I .panel-text,
.cid-uTUhf8E40I .panel-body {
  color: #000000;
}
.cid-uTTYqtVmyZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYqtVmyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYqtVmyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYqtVmyZ .card-wrapper {
  padding: 80px;
  background-color: #757ee8;
}
@media (max-width: 1440px) {
  .cid-uTTYqtVmyZ .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqtVmyZ .card-wrapper {
    padding: 0;
  }
}
.cid-uTTYqtVmyZ .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #000000;
}
@media (max-width: 992px) {
  .cid-uTTYqtVmyZ .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYqtVmyZ .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uTTYqv7PY3 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #757ee8;
}
.cid-uTTYqv7PY3 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uTTYqv7PY3 .copyright-section,
.cid-uTTYqv7PY3 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uTTYqv7PY3 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uTTYqv7PY3 .logo-section img {
  margin: 0 auto;
}
.cid-uTTYqv7PY3 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uTTYqv7PY3 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uTTYqv7PY3 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uTTYqv7PY3 .social-media ul li {
    margin-left: 30px;
  }
  .cid-uTTYqv7PY3 .container-fluid {
    padding: 0 2rem;
  }
  .cid-uTTYqv7PY3 .menu-container {
    margin-bottom: 20px;
  }
  .cid-uTTYqv7PY3 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uTTYqv7PY3 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTTYqv7PY3 .copyright-section {
    order: 1;
  }
  .cid-uTTYqv7PY3 .copyright-section hr {
    display: none;
  }
  .cid-uTTYqv7PY3 .social-media {
    margin-top: 30px;
  }
  .cid-uTTYqv7PY3 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uTTYqv7PY3 .line {
    margin: 25px 0;
  }
  .cid-uTTYqv7PY3 .mobirise-rights,
  .cid-uTTYqv7PY3 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uTTYqv7PY3 .mbr-text,
.cid-uTTYqv7PY3 .copyright-section {
  color: #ffffff;
  text-align: right;
}
.cid-uTTYrDRnal .navbar-dropdown {
  position: relative !important;
}
.cid-uTTYrDRnal .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYrDRnal .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uTTYrDRnal .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTYrDRnal .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uTTYrDRnal .dropdown-item {
  border: 1px solid #757ee8 !important;
  background: #757ee8 !important;
}
.cid-uTTYrDRnal .dropdown-item:hover,
.cid-uTTYrDRnal .dropdown-item:focus {
  background: #757ee8 !important;
}
.cid-uTTYrDRnal .dropdown-item:hover span {
  color: white;
}
.cid-uTTYrDRnal .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTTYrDRnal .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTTYrDRnal .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTTYrDRnal .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTTYrDRnal .nav-link {
  position: relative;
}
.cid-uTTYrDRnal .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uTTYrDRnal .container {
    flex-wrap: nowrap;
  }
}
.cid-uTTYrDRnal .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uTTYrDRnal .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uTTYrDRnal .dropdown-menu,
.cid-uTTYrDRnal .navbar.opened {
  background: #757ee8 !important;
}
.cid-uTTYrDRnal .nav-item:focus,
.cid-uTTYrDRnal .nav-link:focus {
  outline: none;
}
.cid-uTTYrDRnal .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTTYrDRnal .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uTTYrDRnal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTTYrDRnal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTYrDRnal .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTTYrDRnal .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTTYrDRnal .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #757ee8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTYrDRnal .navbar.opened {
  transition: all 0.3s;
}
.cid-uTTYrDRnal .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uTTYrDRnal .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uTTYrDRnal .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTTYrDRnal .navbar.collapsed {
  justify-content: center;
}
.cid-uTTYrDRnal .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTTYrDRnal .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTTYrDRnal .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uTTYrDRnal .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTTYrDRnal .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTTYrDRnal .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTTYrDRnal .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTTYrDRnal .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTTYrDRnal .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTTYrDRnal .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTTYrDRnal .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTTYrDRnal .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTTYrDRnal .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTTYrDRnal .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTTYrDRnal .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTTYrDRnal .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTTYrDRnal .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uTTYrDRnal .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uTTYrDRnal .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTTYrDRnal .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTTYrDRnal .navbar.navbar-short {
  min-height: 96px;
}
.cid-uTTYrDRnal .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uTTYrDRnal .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uTTYrDRnal .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uTTYrDRnal .navbar-brand .navbar-caption:hover,
.cid-uTTYrDRnal .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uTTYrDRnal .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTTYrDRnal .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uTTYrDRnal .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uTTYrDRnal .dropdown-item.active,
.cid-uTTYrDRnal .dropdown-item:active {
  background-color: transparent;
}
.cid-uTTYrDRnal .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTTYrDRnal .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTTYrDRnal .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTTYrDRnal .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #757ee8;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uTTYrDRnal .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uTTYrDRnal .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uTTYrDRnal .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTTYrDRnal ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uTTYrDRnal ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uTTYrDRnal .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uTTYrDRnal .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uTTYrDRnal .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uTTYrDRnal .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uTTYrDRnal button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #757ee8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTYrDRnal button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uTTYrDRnal button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uTTYrDRnal button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTYrDRnal button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTYrDRnal button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uTTYrDRnal nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTYrDRnal nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTTYrDRnal nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTTYrDRnal nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTYrDRnal .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTTYrDRnal a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTYrDRnal .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTTYrDRnal .navbar {
    height: 70px;
  }
  .cid-uTTYrDRnal .navbar.opened {
    height: auto;
  }
  .cid-uTTYrDRnal .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTTYrDRnal .navbar-nav {
  margin: 0 auto;
}
.cid-uTTYrDRnal .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uTTYrDRnal .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #757ee8;
}
.cid-uTTYrDRnal .nav-item .nav-link::after {
  color: #757ee8 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uTTYrDRnal .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uTTYrDRnal .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uTTYrDRnal .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uTTYrDRnal .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uTTYrDRnal .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uTTYrDRnal .navbar {
    justify-content: flex-start !important;
  }
  .cid-uTTYrDRnal .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uTTYrDRnal .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uTTYrDRnal .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uTTYrDRnal .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uTTYrDRnal .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uTTYrDRnal .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uTTYrDRnal .content-wrap {
  min-height: 110px;
}
.cid-uTTYrEVrYB {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-uTTYrEVrYB {
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-uTTYrEVrYB {
    padding-top: 2.7rem;
    padding-bottom: 0.9rem;
  }
}
.cid-uTTYrEVrYB .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uTTYrEVrYB .f-row {
    flex-direction: row;
  }
}
.cid-uTTYrEVrYB .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-uTTYrEVrYB .f-item {
    flex: 1 1 50%;
  }
}
.cid-uTTYrEVrYB .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uTTYrEVrYB .image-wrapper {
    min-height: 650px;
  }
}
.cid-uTTYrEVrYB .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uTTYrEVrYB .text-wrapper {
  width: 100%;
  background: #757ee8;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-uTTYrEVrYB .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-uTTYrEVrYB .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-uTTYrFQt78 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uTTYrFQt78 .counter-container ul {
  margin-bottom: 0;
}
.cid-uTTYrFQt78 .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-uTTYrFQt78 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uTTYrFQt78 .mbr-text {
  color: #000000;
}
.cid-uTTYrGNoq5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f5eb;
}
.cid-uTTYrGNoq5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrGNoq5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrGNoq5 .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 130px 70px;
  background-color: #757ee8;
}
@media (max-width: 992px) {
  .cid-uTTYrGNoq5 .card-wrapper {
    padding: 20px;
  }
}
.cid-uTTYrGNoq5 .card-wrapper .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 450px;
  height: 300px;
  overflow: hidden;
  transform: rotate(15deg);
}
@media (max-width: 992px) {
  .cid-uTTYrGNoq5 .card-wrapper .card-wrap {
    display: none;
  }
}
.cid-uTTYrGNoq5 .card-wrapper .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTTYrGNoq5 .card-wrapper .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e4d2b;
  opacity: 0.5;
  pointer-events: none;
}
.cid-uTTYrGNoq5 .card-wrapper .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-uTTYrGNoq5 .card-wrapper .decor-wrapper {
    display: none;
  }
}
.cid-uTTYrGNoq5 .card-wrapper .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-uTTYrGNoq5 .card-wrapper .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-uTTYrGNoq5 .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uTTYrGNoq5 .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTTYrGNoq5 .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uTTYrGNoq5 .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uTTYrGNoq5 .mbr-section-title,
.cid-uTTYrGNoq5 .title-wrapper {
  color: #f1f5eb;
}
.cid-uTTYrGNoq5 .mbr-section-title,
.cid-uTTYrGNoq5 .mbr-section-btn,
.cid-uTTYrGNoq5 .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uTTYrHJNMv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTYrHJNMv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrHJNMv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrHJNMv .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .container {
    padding: 0 16px;
  }
}
.cid-uTTYrHJNMv .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .row {
    margin: 0 10px;
  }
}
.cid-uTTYrHJNMv .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTYrHJNMv .row .card .decor-wrapper_1 {
  position: absolute;
  top: -25rem;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #f9a600;
  border-radius: 15rem;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uTTYrHJNMv .row .card .decor-wrapper_1 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .row .card .decor-wrapper_1 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTYrHJNMv .row .card .decor-wrapper_2 {
  position: absolute;
  top: 0;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #757ee8;
  border-radius: 14%;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uTTYrHJNMv .row .card .decor-wrapper_2 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .row .card .decor-wrapper_2 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTYrHJNMv .title-wrapper {
  position: relative;
  z-index: 1;
  padding-left: 100px;
  width: 60%;
  margin: 0 auto;
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .title-wrapper {
    padding-left: 0;
    width: 100%;
  }
}
.cid-uTTYrHJNMv .title-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .title-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uTTYrHJNMv .title-wrapper .icon-wrapper .mbr-iconfont {
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  transform: rotate(45deg);
  border-radius: 100%;
}
.cid-uTTYrHJNMv .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uTTYrHJNMv .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uTTYrHJNMv .title-wrapper .mbr-text {
  margin: 0;
}
.cid-uTTYrHJNMv .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTYrHJNMv .mbr-text {
  color: #F9A600;
}
.cid-uTTYrHJNMv .mbr-text,
.cid-uTTYrHJNMv .mbr-section-btn {
  color: #f7f5f6;
}
.cid-uTTYrICvYj {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYrICvYj .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center;
}
.cid-uTTYrICvYj .card {
  margin-bottom: 1.5rem;
}
.cid-uTTYrICvYj .card-wrapper {
  overflow: visible;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .cid-uTTYrICvYj .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uTTYrICvYj .card-wrapper-1 {
  background-color: #fafafa;
}
.cid-uTTYrICvYj .card-wrapper-2 {
  background-color: #fafafa;
}
.cid-uTTYrICvYj .card-wrapper-3 {
  background-color: #ffffff;
}
.cid-uTTYrICvYj .card-wrapper-4 {
  background-color: #419e8e;
}
.cid-uTTYrICvYj .card-text {
  color: #454545;
  text-align: left;
  margin-bottom: 2.5rem;
  margin-bottom: 0;
}
.cid-uTTYrICvYj .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uTTYrICvYj .card-text,
.cid-uTTYrICvYj .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uTTYrICvYj .button-section {
  margin-top: 1.5rem;
}
.cid-uTTYrICvYj .button-section .btn {
  font-weight: 700 !important;
}
.cid-uTTYrICvYj .section-text,
.cid-uTTYrICvYj .button-section {
  text-align: left;
}
.cid-uTTYrICvYj .section-text {
  text-align: left;
}
.cid-uTTYrICvYj .card-title DIV {
  text-align: center;
}
.cid-uTTYrK0jTh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYrK0jTh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrK0jTh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrK0jTh .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uTTYrK0jTh .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uTTYrK0jTh .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYrK0jTh .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uTTYrK0jTh .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYrK0jTh .mbr-section-title {
  color: #000000;
}
.cid-uTTYrK0jTh .mbr-desc {
  color: #000000;
}
.cid-uTTYrK0jTh .mbr-text {
  color: #000000;
}
.cid-uTTYrK0jTh .mbr-text,
.cid-uTTYrK0jTh .text-wrapper {
  color: #fafafa;
}
.cid-uTTYrK0jTh .mbr-section-title,
.cid-uTTYrK0jTh .mbr-section-btn {
  color: #ffffff;
}
.cid-uTTYrKXUNQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYrKXUNQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrKXUNQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrKXUNQ .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-uTTYrKXUNQ .mbr-section-head {
    margin-bottom: 76px;
  }
}
@media (max-width: 575px) {
  .cid-uTTYrKXUNQ .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uTTYrKXUNQ .main-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uTTYrKXUNQ .main-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uTTYrKXUNQ .main-subtitle {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uTTYrKXUNQ .card-row {
  margin-bottom: 40px;
}
.cid-uTTYrKXUNQ .card {
  margin-bottom: -40px;
}
.cid-uTTYrKXUNQ .card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 0px -23px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.cid-uTTYrKXUNQ .card-wrapper:after {
  content: "";
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 0.3;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0e0e0e;
  box-shadow: 0 0 40px #0e0e0e;
  filter: blur(100px);
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uTTYrKXUNQ .card-wrapper:after {
    width: 150%;
  }
}
.cid-uTTYrKXUNQ .title-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uTTYrKXUNQ .iconfont-wrapper {
  display: flex;
  margin-right: 1rem;
}
.cid-uTTYrKXUNQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 44px;
  color: #aafc75;
}
.cid-uTTYrKXUNQ .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYrKXUNQ .card-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-uTTYrMgUr5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #757ee8;
}
.cid-uTTYrMgUr5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrMgUr5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrMgUr5 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uTTYrMgUr5 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uTTYrMgUr5 .container-fluid .row {
  padding: 0;
}
.cid-uTTYrMgUr5 .row {
  border: 3px solid #ffffff;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uTTYrMgUr5 .card {
  padding: 64px 28px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uTTYrMgUr5 .card {
    border-left: 1px solid #ffffff;
    border-left: none;
    border-right: 2px solid #ffffff;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrMgUr5 .card {
    padding: 48px 20px;
  }
}
.cid-uTTYrMgUr5 .card:first-child {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uTTYrMgUr5 .card:last-child {
    border-left: none;
    border-right: 2px solid #ffffff;
    border-right: none;
    border-left: 1px solid #ffffff;
  }
}
.cid-uTTYrMgUr5 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uTTYrMgUr5 .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYrMgUr5 .mbr-section-title {
  color: #000000;
}
.cid-uTTYrMgUr5 .mbr-text {
  color: #000000;
}
.cid-uTTYrNfe4Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTYrNfe4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrNfe4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTYrNfe4Y .container {
    padding: 0 16px;
  }
}
.cid-uTTYrNfe4Y .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTYrNfe4Y .row {
    margin: 0 10px;
  }
}
.cid-uTTYrNfe4Y .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTYrNfe4Y .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #757ee8;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #757ee8;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-uTTYrNfe4Y .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTYrNfe4Y .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrNfe4Y .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrNfe4Y .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uTTYrNfe4Y .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #757ee8;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-uTTYrNfe4Y .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTYrNfe4Y .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrNfe4Y .row .card .icon-decor {
    display: none;
  }
}
.cid-uTTYrNfe4Y .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uTTYrNfe4Y .title-wrapper {
    width: 100%;
  }
}
.cid-uTTYrNfe4Y .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYrNfe4Y .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uTTYrNfe4Y .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYrNfe4Y .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTYrNfe4Y .mbr-text {
  color: #fdfcfc;
}
.cid-uTTYrOgjWk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #757ee8;
}
.cid-uTTYrOgjWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrOgjWk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrOgjWk .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYrOgjWk .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTTYrOgjWk .panel-group .card {
  position: relative;
  padding: 20px 30px 20px 50px;
  margin-top: 20px;
  border: none;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uTTYrOgjWk .panel-group .card {
    margin-top: 16px;
    padding: 30px 20px;
  }
}
.cid-uTTYrOgjWk .panel-group .card:first-child {
  margin-top: 0 !important;
}
.cid-uTTYrOgjWk .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uTTYrOgjWk .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTTYrOgjWk .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYrOgjWk .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
  }
}
.cid-uTTYrOgjWk .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uTTYrOgjWk .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  color: #000c3f;
  background-color: #ffffff;
  font-size: 36px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uTTYrOgjWk .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 22px;
  }
}
.cid-uTTYrOgjWk .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
  background-color: #f47451;
}
.cid-uTTYrOgjWk .panel-group .card .panel-collapse .panel-body {
  margin-top: 20px;
}
.cid-uTTYrOgjWk .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYrOgjWk .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uTTYrOgjWk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYrOgjWk .panel-title-edit {
  color: #ffffff;
}
.cid-uTTYrOgjWk .panel-text {
  color: #000c3f;
}
.cid-uTTYrPy2OC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTTYrPy2OC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrPy2OC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTYrPy2OC .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTYrPy2OC .container {
    padding: 0 12px;
  }
}
.cid-uTTYrPy2OC .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYrPy2OC .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTYrPy2OC .row.card-wrapper {
  padding: 80px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #757ee8;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uTTYrPy2OC .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-uTTYrPy2OC .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-uTTYrPy2OC .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-uTTYrPy2OC .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrPy2OC .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-uTTYrPy2OC .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uTTYrPy2OC .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uTTYrPy2OC .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uTTYrPy2OC .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #000000;
}
.cid-uTTYrPy2OC .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uTTYrPy2OC .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTYrPy2OC .mbr-text {
  color: #000000;
}
.cid-uTTYrPy2OC .list {
  color: #222222;
}
.cid-uTTYrQBKyh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYrQBKyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrQBKyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrQBKyh .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTTYrQBKyh .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uTTYrQBKyh .items-wrapper {
  justify-content: center;
  margin: 0 -32px;
}
.cid-uTTYrQBKyh .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYrQBKyh .item {
    margin-bottom: 40px;
  }
}
.cid-uTTYrQBKyh .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uTTYrQBKyh .item .item-wrapper .card-box .number-wrapper {
  margin-bottom: 20px;
}
.cid-uTTYrQBKyh .item .item-wrapper .card-box .number-wrapper .card-number {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background-color: #df6d2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTYrQBKyh .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uTTYrQBKyh .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uTTYrQBKyh .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uTTYrQBKyh .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTTYrQBKyh .mbr-section-title,
.cid-uTTYrQBKyh .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-uTTYrQBKyh .card-number {
  color: #f1f5eb;
}
.cid-uTTYrQBKyh .card-title {
  color: #323432;
}
.cid-uTTYrQBKyh .card-text {
  color: #323432;
}
.cid-uTTYrQBKyh .card-title,
.cid-uTTYrQBKyh .mbr-section-btn,
.cid-uTTYrQBKyh .iconfont-wrapper {
  color: #000000;
}
.cid-uTTYrRPoVQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYrRPoVQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrRPoVQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrRPoVQ .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uTTYrRPoVQ .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTYrRPoVQ .container {
    padding: 0 12px;
  }
}
.cid-uTTYrRPoVQ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYrRPoVQ .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTYrRPoVQ .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uTTYrRPoVQ .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uTTYrRPoVQ .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uTTYrRPoVQ .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uTTYrRPoVQ .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYrRPoVQ .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uTTYrRPoVQ .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uTTYrRPoVQ .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uTTYrRPoVQ .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYrRPoVQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYrRPoVQ .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTYrRPoVQ .mbr-text {
  color: #222222;
}
.cid-uTTYrRPoVQ .list {
  color: #222222;
}
.cid-uTUi0ljMhi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171827;
}
.cid-uTUi0ljMhi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTUi0ljMhi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTUi0ljMhi .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #0b1324;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uTUi0ljMhi .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uTUi0ljMhi .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #757ee8, #ffffff 50%);
  opacity: .5;
}
.cid-uTUi0ljMhi .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uTUi0ljMhi .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  background-color: transparent;
  border: 1px solid #0b1324;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uTUi0ljMhi .content-wrapper .panel-group .card {
    padding: 14px;
  }
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  background-color: #757ee8;
  border-radius: 100%;
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #080813;
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uTUi0ljMhi .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 14px;
  }
}
.cid-uTUi0ljMhi .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTUi0ljMhi .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uTUi0ljMhi .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uTUi0ljMhi .panel-title-edit {
  color: #ffffff;
}
.cid-uTUi0ljMhi .panel-text {
  color: #ffffff;
}
.cid-uTUi0ljMhi .panel-title-edit,
.cid-uTUi0ljMhi .icon-wrapper {
  color: #000000;
}
.cid-uTUi0ljMhi .panel-text,
.cid-uTUi0ljMhi .panel-body {
  color: #000000;
}
.cid-uTTYrSQlLu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYrSQlLu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYrSQlLu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYrSQlLu .card-wrapper {
  padding: 80px;
  background-color: #757ee8;
}
@media (max-width: 1440px) {
  .cid-uTTYrSQlLu .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrSQlLu .card-wrapper {
    padding: 0;
  }
}
.cid-uTTYrSQlLu .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #000000;
}
@media (max-width: 992px) {
  .cid-uTTYrSQlLu .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYrSQlLu .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uTTYrTZ8Uf {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #757ee8;
}
.cid-uTTYrTZ8Uf .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uTTYrTZ8Uf .copyright-section,
.cid-uTTYrTZ8Uf .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uTTYrTZ8Uf .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uTTYrTZ8Uf .logo-section img {
  margin: 0 auto;
}
.cid-uTTYrTZ8Uf .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uTTYrTZ8Uf .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uTTYrTZ8Uf .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uTTYrTZ8Uf .social-media ul li {
    margin-left: 30px;
  }
  .cid-uTTYrTZ8Uf .container-fluid {
    padding: 0 2rem;
  }
  .cid-uTTYrTZ8Uf .menu-container {
    margin-bottom: 20px;
  }
  .cid-uTTYrTZ8Uf .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uTTYrTZ8Uf .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTTYrTZ8Uf .copyright-section {
    order: 1;
  }
  .cid-uTTYrTZ8Uf .copyright-section hr {
    display: none;
  }
  .cid-uTTYrTZ8Uf .social-media {
    margin-top: 30px;
  }
  .cid-uTTYrTZ8Uf .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uTTYrTZ8Uf .line {
    margin: 25px 0;
  }
  .cid-uTTYrTZ8Uf .mobirise-rights,
  .cid-uTTYrTZ8Uf .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uTTYrTZ8Uf .mbr-text,
.cid-uTTYrTZ8Uf .copyright-section {
  color: #ffffff;
  text-align: right;
}
.cid-uTTYsyq4R1 .navbar-dropdown {
  position: relative !important;
}
.cid-uTTYsyq4R1 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYsyq4R1 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uTTYsyq4R1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTYsyq4R1 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uTTYsyq4R1 .dropdown-item {
  border: 1px solid #757ee8 !important;
  background: #757ee8 !important;
}
.cid-uTTYsyq4R1 .dropdown-item:hover,
.cid-uTTYsyq4R1 .dropdown-item:focus {
  background: #757ee8 !important;
}
.cid-uTTYsyq4R1 .dropdown-item:hover span {
  color: white;
}
.cid-uTTYsyq4R1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTTYsyq4R1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTTYsyq4R1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTTYsyq4R1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTTYsyq4R1 .nav-link {
  position: relative;
}
.cid-uTTYsyq4R1 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uTTYsyq4R1 .container {
    flex-wrap: nowrap;
  }
}
.cid-uTTYsyq4R1 .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uTTYsyq4R1 .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uTTYsyq4R1 .dropdown-menu,
.cid-uTTYsyq4R1 .navbar.opened {
  background: #757ee8 !important;
}
.cid-uTTYsyq4R1 .nav-item:focus,
.cid-uTTYsyq4R1 .nav-link:focus {
  outline: none;
}
.cid-uTTYsyq4R1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTTYsyq4R1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uTTYsyq4R1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTTYsyq4R1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTTYsyq4R1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTTYsyq4R1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTTYsyq4R1 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #757ee8;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTYsyq4R1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uTTYsyq4R1 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uTTYsyq4R1 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uTTYsyq4R1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTTYsyq4R1 .navbar.collapsed {
  justify-content: center;
}
.cid-uTTYsyq4R1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTTYsyq4R1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTTYsyq4R1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uTTYsyq4R1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTTYsyq4R1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTTYsyq4R1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTTYsyq4R1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTTYsyq4R1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTTYsyq4R1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTTYsyq4R1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTTYsyq4R1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTTYsyq4R1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTTYsyq4R1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTTYsyq4R1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTTYsyq4R1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTTYsyq4R1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTTYsyq4R1 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uTTYsyq4R1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uTTYsyq4R1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTTYsyq4R1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTTYsyq4R1 .navbar.navbar-short {
  min-height: 96px;
}
.cid-uTTYsyq4R1 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uTTYsyq4R1 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uTTYsyq4R1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uTTYsyq4R1 .navbar-brand .navbar-caption:hover,
.cid-uTTYsyq4R1 .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uTTYsyq4R1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTTYsyq4R1 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uTTYsyq4R1 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uTTYsyq4R1 .dropdown-item.active,
.cid-uTTYsyq4R1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uTTYsyq4R1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTTYsyq4R1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTTYsyq4R1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTTYsyq4R1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #757ee8;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uTTYsyq4R1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uTTYsyq4R1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uTTYsyq4R1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTTYsyq4R1 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uTTYsyq4R1 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uTTYsyq4R1 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uTTYsyq4R1 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uTTYsyq4R1 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uTTYsyq4R1 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uTTYsyq4R1 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #757ee8 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uTTYsyq4R1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uTTYsyq4R1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uTTYsyq4R1 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTYsyq4R1 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uTTYsyq4R1 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uTTYsyq4R1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTYsyq4R1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTTYsyq4R1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTTYsyq4R1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTTYsyq4R1 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTTYsyq4R1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTYsyq4R1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTTYsyq4R1 .navbar {
    height: 70px;
  }
  .cid-uTTYsyq4R1 .navbar.opened {
    height: auto;
  }
  .cid-uTTYsyq4R1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTTYsyq4R1 .navbar-nav {
  margin: 0 auto;
}
.cid-uTTYsyq4R1 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uTTYsyq4R1 .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #757ee8;
}
.cid-uTTYsyq4R1 .nav-item .nav-link::after {
  color: #757ee8 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uTTYsyq4R1 .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uTTYsyq4R1 .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uTTYsyq4R1 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uTTYsyq4R1 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uTTYsyq4R1 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uTTYsyq4R1 .navbar {
    justify-content: flex-start !important;
  }
  .cid-uTTYsyq4R1 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uTTYsyq4R1 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uTTYsyq4R1 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uTTYsyq4R1 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uTTYsyq4R1 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uTTYsyq4R1 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uTTYsyq4R1 .content-wrap {
  min-height: 110px;
}
.cid-uTTYszr80k {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-uTTYszr80k {
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-uTTYszr80k {
    padding-top: 2.7rem;
    padding-bottom: 0.9rem;
  }
}
.cid-uTTYszr80k .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uTTYszr80k .f-row {
    flex-direction: row;
  }
}
.cid-uTTYszr80k .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-uTTYszr80k .f-item {
    flex: 1 1 50%;
  }
}
.cid-uTTYszr80k .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uTTYszr80k .image-wrapper {
    min-height: 650px;
  }
}
.cid-uTTYszr80k .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uTTYszr80k .text-wrapper {
  width: 100%;
  background: #757ee8;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-uTTYszr80k .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-uTTYszr80k .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-uTTYsApHer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uTTYsApHer .counter-container ul {
  margin-bottom: 0;
}
.cid-uTTYsApHer .counter-container ul li {
  padding-left: 0rem;
  margin-bottom: 1rem;
}
.cid-uTTYsApHer .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uTTYsApHer .mbr-text {
  color: #000000;
}
.cid-uTTYsBjr0P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f5eb;
}
.cid-uTTYsBjr0P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsBjr0P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsBjr0P .card-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 130px 70px;
  background-color: #757ee8;
}
@media (max-width: 992px) {
  .cid-uTTYsBjr0P .card-wrapper {
    padding: 20px;
  }
}
.cid-uTTYsBjr0P .card-wrapper .card-wrap {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 450px;
  height: 300px;
  overflow: hidden;
  transform: rotate(15deg);
}
@media (max-width: 992px) {
  .cid-uTTYsBjr0P .card-wrapper .card-wrap {
    display: none;
  }
}
.cid-uTTYsBjr0P .card-wrapper .card-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTTYsBjr0P .card-wrapper .card-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e4d2b;
  opacity: 0.5;
  pointer-events: none;
}
.cid-uTTYsBjr0P .card-wrapper .decor-wrapper {
  position: absolute;
  top: 0;
  right: -350px;
  width: 700px;
  height: 200px;
}
@media (max-width: 992px) {
  .cid-uTTYsBjr0P .card-wrapper .decor-wrapper {
    display: none;
  }
}
.cid-uTTYsBjr0P .card-wrapper .decor-wrapper::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  pointer-events: none;
}
.cid-uTTYsBjr0P .card-wrapper .decor-wrapper::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 200px;
  border-radius: 100%;
  background-color: #2a5b38;
  transform: rotate(-45deg);
  pointer-events: none;
}
.cid-uTTYsBjr0P .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uTTYsBjr0P .card-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTTYsBjr0P .card-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uTTYsBjr0P .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uTTYsBjr0P .mbr-section-title,
.cid-uTTYsBjr0P .title-wrapper {
  color: #f1f5eb;
}
.cid-uTTYsBjr0P .mbr-section-title,
.cid-uTTYsBjr0P .mbr-section-btn,
.cid-uTTYsBjr0P .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uTTYsCoCm5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTYsCoCm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsCoCm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsCoCm5 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .container {
    padding: 0 16px;
  }
}
.cid-uTTYsCoCm5 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .row {
    margin: 0 10px;
  }
}
.cid-uTTYsCoCm5 .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTYsCoCm5 .row .card .decor-wrapper_1 {
  position: absolute;
  top: -25rem;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #f9a600;
  border-radius: 15rem;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uTTYsCoCm5 .row .card .decor-wrapper_1 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .row .card .decor-wrapper_1 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTYsCoCm5 .row .card .decor-wrapper_2 {
  position: absolute;
  top: 0;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #757ee8;
  border-radius: 14%;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uTTYsCoCm5 .row .card .decor-wrapper_2 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .row .card .decor-wrapper_2 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-uTTYsCoCm5 .title-wrapper {
  position: relative;
  z-index: 1;
  padding-left: 100px;
  width: 60%;
  margin: 0 auto;
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .title-wrapper {
    padding-left: 0;
    width: 100%;
  }
}
.cid-uTTYsCoCm5 .title-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .title-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uTTYsCoCm5 .title-wrapper .icon-wrapper .mbr-iconfont {
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  transform: rotate(45deg);
  border-radius: 100%;
}
.cid-uTTYsCoCm5 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uTTYsCoCm5 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uTTYsCoCm5 .title-wrapper .mbr-text {
  margin: 0;
}
.cid-uTTYsCoCm5 .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTYsCoCm5 .mbr-text {
  color: #F9A600;
}
.cid-uTTYsCoCm5 .mbr-text,
.cid-uTTYsCoCm5 .mbr-section-btn {
  color: #f7f5f6;
}
.cid-uTTYsDiR3c {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYsDiR3c .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center;
}
.cid-uTTYsDiR3c .card {
  margin-bottom: 1.5rem;
}
.cid-uTTYsDiR3c .card-wrapper {
  overflow: visible;
  padding: 5rem 4rem;
}
@media (max-width: 767px) {
  .cid-uTTYsDiR3c .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uTTYsDiR3c .card-wrapper-1 {
  background-color: #fafafa;
}
.cid-uTTYsDiR3c .card-wrapper-2 {
  background-color: #fafafa;
}
.cid-uTTYsDiR3c .card-wrapper-3 {
  background-color: #ffffff;
}
.cid-uTTYsDiR3c .card-wrapper-4 {
  background-color: #419e8e;
}
.cid-uTTYsDiR3c .card-text {
  color: #454545;
  text-align: left;
  margin-bottom: 2.5rem;
  margin-bottom: 0;
}
.cid-uTTYsDiR3c .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uTTYsDiR3c .card-text,
.cid-uTTYsDiR3c .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uTTYsDiR3c .button-section {
  margin-top: 1.5rem;
}
.cid-uTTYsDiR3c .button-section .btn {
  font-weight: 700 !important;
}
.cid-uTTYsDiR3c .section-text,
.cid-uTTYsDiR3c .button-section {
  text-align: left;
}
.cid-uTTYsDiR3c .section-text {
  text-align: left;
}
.cid-uTTYsDiR3c .card-title DIV {
  text-align: center;
}
.cid-uTTYsEpfjc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYsEpfjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsEpfjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsEpfjc .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uTTYsEpfjc .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uTTYsEpfjc .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYsEpfjc .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uTTYsEpfjc .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYsEpfjc .mbr-section-title {
  color: #000000;
}
.cid-uTTYsEpfjc .mbr-desc {
  color: #000000;
}
.cid-uTTYsEpfjc .mbr-text {
  color: #000000;
}
.cid-uTTYsEpfjc .mbr-text,
.cid-uTTYsEpfjc .text-wrapper {
  color: #fafafa;
}
.cid-uTTYsEpfjc .mbr-section-title,
.cid-uTTYsEpfjc .mbr-section-btn {
  color: #ffffff;
}
.cid-uTTYsFod7G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYsFod7G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsFod7G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsFod7G .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-uTTYsFod7G .mbr-section-head {
    margin-bottom: 76px;
  }
}
@media (max-width: 575px) {
  .cid-uTTYsFod7G .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-uTTYsFod7G .main-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uTTYsFod7G .main-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uTTYsFod7G .main-subtitle {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uTTYsFod7G .card-row {
  margin-bottom: 40px;
}
.cid-uTTYsFod7G .card {
  margin-bottom: -40px;
}
.cid-uTTYsFod7G .card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 0px -23px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.cid-uTTYsFod7G .card-wrapper:after {
  content: "";
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 0.3;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0e0e0e;
  box-shadow: 0 0 40px #0e0e0e;
  filter: blur(100px);
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-uTTYsFod7G .card-wrapper:after {
    width: 150%;
  }
}
.cid-uTTYsFod7G .title-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uTTYsFod7G .iconfont-wrapper {
  display: flex;
  margin-right: 1rem;
}
.cid-uTTYsFod7G .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 44px;
  color: #aafc75;
}
.cid-uTTYsFod7G .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYsFod7G .card-text {
  position: relative;
  z-index: 2;
  color: #fafafa;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-uTTYsGAXjL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #757ee8;
}
.cid-uTTYsGAXjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsGAXjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsGAXjL .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uTTYsGAXjL .container-fluid {
    padding: 0 12px;
  }
}
.cid-uTTYsGAXjL .container-fluid .row {
  padding: 0;
}
.cid-uTTYsGAXjL .row {
  border: 3px solid #ffffff;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-uTTYsGAXjL .card {
  padding: 64px 28px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uTTYsGAXjL .card {
    border-left: 1px solid #ffffff;
    border-left: none;
    border-right: 2px solid #ffffff;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsGAXjL .card {
    padding: 48px 20px;
  }
}
.cid-uTTYsGAXjL .card:first-child {
  position: relative;
}
@media (min-width: 992px) {
  .cid-uTTYsGAXjL .card:last-child {
    border-left: none;
    border-right: 2px solid #ffffff;
    border-right: none;
    border-left: 1px solid #ffffff;
  }
}
.cid-uTTYsGAXjL .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uTTYsGAXjL .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYsGAXjL .mbr-section-title {
  color: #000000;
}
.cid-uTTYsGAXjL .mbr-text {
  color: #000000;
}
.cid-uTTYsHzEDm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uTTYsHzEDm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsHzEDm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTYsHzEDm .container {
    padding: 0 16px;
  }
}
.cid-uTTYsHzEDm .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uTTYsHzEDm .row {
    margin: 0 10px;
  }
}
.cid-uTTYsHzEDm .row .card {
  position: relative;
  padding: 0;
}
.cid-uTTYsHzEDm .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #757ee8;
  border-radius: 0;
  pointer-events: none;
  left: auto;
  right: -11rem;
  border-right: 40px solid #757ee8;
  border-left: none;
}
@media (max-width: 1300px) {
  .cid-uTTYsHzEDm .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTYsHzEDm .row .card .decor-wrapper {
    right: -8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsHzEDm .row .card .decor-wrapper {
    left: auto;
    right: -90px;
    border-radius: 18%;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsHzEDm .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uTTYsHzEDm .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #000000;
  border-radius: 100%;
  border: 5px solid #757ee8;
  z-index: 1;
  left: auto;
  right: -13rem;
}
@media (max-width: 1300px) {
  .cid-uTTYsHzEDm .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 1300px) {
  .cid-uTTYsHzEDm .row .card .icon-decor {
    right: -9.8rem;
    left: auto;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsHzEDm .row .card .icon-decor {
    display: none;
  }
}
.cid-uTTYsHzEDm .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uTTYsHzEDm .title-wrapper {
    width: 100%;
  }
}
.cid-uTTYsHzEDm .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYsHzEDm .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uTTYsHzEDm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYsHzEDm .mbr-section-title {
  color: #fdfcfc;
}
.cid-uTTYsHzEDm .mbr-text {
  color: #fdfcfc;
}
.cid-uTTYsIvByX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #757ee8;
}
.cid-uTTYsIvByX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsIvByX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsIvByX .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYsIvByX .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTTYsIvByX .panel-group .card {
  position: relative;
  padding: 20px 30px 20px 50px;
  margin-top: 20px;
  border: none;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uTTYsIvByX .panel-group .card {
    margin-top: 16px;
    padding: 30px 20px;
  }
}
.cid-uTTYsIvByX .panel-group .card:first-child {
  margin-top: 0 !important;
}
.cid-uTTYsIvByX .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uTTYsIvByX .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTTYsIvByX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYsIvByX .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
  }
}
.cid-uTTYsIvByX .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uTTYsIvByX .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  color: #000c3f;
  background-color: #ffffff;
  font-size: 36px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uTTYsIvByX .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 22px;
  }
}
.cid-uTTYsIvByX .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
  background-color: #f47451;
}
.cid-uTTYsIvByX .panel-group .card .panel-collapse .panel-body {
  margin-top: 20px;
}
.cid-uTTYsIvByX .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTTYsIvByX .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uTTYsIvByX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYsIvByX .panel-title-edit {
  color: #ffffff;
}
.cid-uTTYsIvByX .panel-text {
  color: #000c3f;
}
.cid-uTTYsJF0s1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTTYsJF0s1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsJF0s1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTTYsJF0s1 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTYsJF0s1 .container {
    padding: 0 12px;
  }
}
.cid-uTTYsJF0s1 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYsJF0s1 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTYsJF0s1 .row.card-wrapper {
  padding: 80px;
  border: 3px solid #000000;
  box-shadow: 4px 4px #000000;
  background-color: #757ee8;
  border-radius: 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uTTYsJF0s1 .row.card-wrapper {
    border-radius: 32px;
    padding: 24px;
  }
}
.cid-uTTYsJF0s1 .row.card-wrapper .card {
  align-items: center;
  justify-content: center;
}
.cid-uTTYsJF0s1 .row.card-wrapper .card .image-wrapper img {
  width: 392px;
  height: 392px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1200px) {
  .cid-uTTYsJF0s1 .row.card-wrapper .card .image-wrapper img {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsJF0s1 .row.card-wrapper .card .image-wrapper img {
    margin: 0 auto 40px;
    width: 280px;
    height: 260px;
  }
}
.cid-uTTYsJF0s1 .row.card-wrapper .card .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uTTYsJF0s1 .row.card-wrapper .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uTTYsJF0s1 .row.card-wrapper .card .text-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uTTYsJF0s1 .row.card-wrapper .card .text-wrapper .list .item-wrap {
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 2px solid #000000;
}
.cid-uTTYsJF0s1 .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uTTYsJF0s1 .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTYsJF0s1 .mbr-text {
  color: #000000;
}
.cid-uTTYsJF0s1 .list {
  color: #222222;
}
.cid-uTTYsKIIqn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #757ee8;
}
.cid-uTTYsKIIqn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsKIIqn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsKIIqn .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uTTYsKIIqn .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uTTYsKIIqn .items-wrapper {
  justify-content: center;
  margin: 0 -32px;
}
.cid-uTTYsKIIqn .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uTTYsKIIqn .item {
    margin-bottom: 40px;
  }
}
.cid-uTTYsKIIqn .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uTTYsKIIqn .item .item-wrapper .card-box .number-wrapper {
  margin-bottom: 20px;
}
.cid-uTTYsKIIqn .item .item-wrapper .card-box .number-wrapper .card-number {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background-color: #df6d2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uTTYsKIIqn .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uTTYsKIIqn .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uTTYsKIIqn .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uTTYsKIIqn .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTTYsKIIqn .mbr-section-title,
.cid-uTTYsKIIqn .title-wrapper {
  color: #323432;
  text-align: center;
}
.cid-uTTYsKIIqn .card-number {
  color: #f1f5eb;
}
.cid-uTTYsKIIqn .card-title {
  color: #323432;
}
.cid-uTTYsKIIqn .card-text {
  color: #323432;
}
.cid-uTTYsKIIqn .card-title,
.cid-uTTYsKIIqn .mbr-section-btn,
.cid-uTTYsKIIqn .iconfont-wrapper {
  color: #000000;
}
.cid-uTTYsLZzEb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYsLZzEb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsLZzEb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsLZzEb .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uTTYsLZzEb .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uTTYsLZzEb .container {
    padding: 0 12px;
  }
}
.cid-uTTYsLZzEb .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYsLZzEb .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTTYsLZzEb .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uTTYsLZzEb .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uTTYsLZzEb .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uTTYsLZzEb .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uTTYsLZzEb .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uTTYsLZzEb .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uTTYsLZzEb .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uTTYsLZzEb .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uTTYsLZzEb .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uTTYsLZzEb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uTTYsLZzEb .mbr-section-subtitle {
  color: #222222;
}
.cid-uTTYsLZzEb .mbr-text {
  color: #222222;
}
.cid-uTTYsLZzEb .list {
  color: #222222;
}
.cid-uTUiwSNlSX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171827;
}
.cid-uTUiwSNlSX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTUiwSNlSX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTUiwSNlSX .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #0b1324;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uTUiwSNlSX .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uTUiwSNlSX .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #757ee8, #ffffff 50%);
  opacity: .5;
}
.cid-uTUiwSNlSX .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uTUiwSNlSX .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  background-color: transparent;
  border: 1px solid #0b1324;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uTUiwSNlSX .content-wrapper .panel-group .card {
    padding: 14px;
  }
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  background-color: #757ee8;
  border-radius: 100%;
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #080813;
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uTUiwSNlSX .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 14px;
  }
}
.cid-uTUiwSNlSX .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTUiwSNlSX .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uTUiwSNlSX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uTUiwSNlSX .panel-title-edit {
  color: #ffffff;
}
.cid-uTUiwSNlSX .panel-text {
  color: #ffffff;
}
.cid-uTUiwSNlSX .panel-title-edit,
.cid-uTUiwSNlSX .icon-wrapper {
  color: #000000;
}
.cid-uTUiwSNlSX .panel-text,
.cid-uTUiwSNlSX .panel-body {
  color: #000000;
}
.cid-uTTYsNfC01 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uTTYsNfC01 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTTYsNfC01 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTTYsNfC01 .card-wrapper {
  padding: 80px;
  background-color: #757ee8;
}
@media (max-width: 1440px) {
  .cid-uTTYsNfC01 .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsNfC01 .card-wrapper {
    padding: 0;
  }
}
.cid-uTTYsNfC01 .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #000000;
}
@media (max-width: 992px) {
  .cid-uTTYsNfC01 .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uTTYsNfC01 .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uTTYsOlrwV {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #757ee8;
}
.cid-uTTYsOlrwV .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.cid-uTTYsOlrwV .copyright-section,
.cid-uTTYsOlrwV .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uTTYsOlrwV .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uTTYsOlrwV .logo-section img {
  margin: 0 auto;
}
.cid-uTTYsOlrwV .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uTTYsOlrwV .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uTTYsOlrwV .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uTTYsOlrwV .social-media ul li {
    margin-left: 30px;
  }
  .cid-uTTYsOlrwV .container-fluid {
    padding: 0 2rem;
  }
  .cid-uTTYsOlrwV .menu-container {
    margin-bottom: 20px;
  }
  .cid-uTTYsOlrwV .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uTTYsOlrwV .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTTYsOlrwV .copyright-section {
    order: 1;
  }
  .cid-uTTYsOlrwV .copyright-section hr {
    display: none;
  }
  .cid-uTTYsOlrwV .social-media {
    margin-top: 30px;
  }
  .cid-uTTYsOlrwV .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uTTYsOlrwV .line {
    margin: 25px 0;
  }
  .cid-uTTYsOlrwV .mobirise-rights,
  .cid-uTTYsOlrwV .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uTTYsOlrwV .mbr-text,
.cid-uTTYsOlrwV .copyright-section {
  color: #ffffff;
  text-align: right;
}
