body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Luxurious Roman', display;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Luxurious Roman', display;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.9rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Luxurious Roman', display;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #d90a2c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d90a2c !important;
  border-color: #d90a2c !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: #86061b !important;
  border-color: #86061b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #86061b !important;
  border-color: #86061b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d90a2c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #86061b !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: #d90a2c !important;
  border-color: #d90a2c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #d90a2c !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #770618 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #d90a2c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d90a2c;
  border-color: #d90a2c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d90a2c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcb3bf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #d90a2c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Luxurious Roman', display;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #d90a2c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d90a2c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d90a2c;
}
.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: #d90a2c;
  border-bottom-color: #d90a2c;
}
.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: #d90a2c !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: #ff6666 !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='%23d90a2c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uccAHVji8y .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uccAHVji8y .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .cid-uccAHVji8y .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-uccAHVji8y .navbar-logo {
  margin: 0 !important;
}
.cid-uccAHVji8y .navbar-brand {
  background-color: #9fdbf8;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 6px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uccAHVji8y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uccAHVji8y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uccAHVji8y .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-uccAHVji8y .navbar-nav {
  min-width: 45%;
}
.cid-uccAHVji8y .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-uccAHVji8y .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-uccAHVji8y .dropdown-item {
  color: #000000 !important;
}
.cid-uccAHVji8y .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uccAHVji8y .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-uccAHVji8y .nav-link:hover {
  color: #9fdbf8 !important;
}
.cid-uccAHVji8y .nav-link:hover:before {
  opacity: 1;
}
.cid-uccAHVji8y .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #9fdbf8;
}
.cid-uccAHVji8y .btn-white {
  color: #d90a2c !important;
}
.cid-uccAHVji8y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uccAHVji8y .container {
  display: flex;
  margin: auto;
}
.cid-uccAHVji8y .navbar.opened {
  background: #150d1d !important;
}
.cid-uccAHVji8y .nav-item:focus,
.cid-uccAHVji8y .nav-link:focus {
  outline: none;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uccAHVji8y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uccAHVji8y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uccAHVji8y .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #150d1d;
}
.cid-uccAHVji8y .navbar.opened {
  transition: all 0.3s;
}
.cid-uccAHVji8y .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-uccAHVji8y .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uccAHVji8y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uccAHVji8y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uccAHVji8y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uccAHVji8y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uccAHVji8y .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uccAHVji8y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uccAHVji8y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uccAHVji8y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uccAHVji8y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uccAHVji8y .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uccAHVji8y .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uccAHVji8y .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uccAHVji8y .navbar.navbar-short {
  background: #150d1d !important;
  min-height: 60px;
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uccAHVji8y .dropdown-item.active,
.cid-uccAHVji8y .dropdown-item:active {
  background-color: transparent;
}
.cid-uccAHVji8y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uccAHVji8y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #150d1d;
}
.cid-uccAHVji8y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uccAHVji8y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uccAHVji8y ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uccAHVji8y .navbar-buttons {
  text-align: center;
}
.cid-uccAHVji8y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uccAHVji8y .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uccAHVji8y a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uccAHVji8y .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uccAHVji8y .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uccAHVji8y .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uccAHVji8y .navbar {
    height: 77px;
  }
  .cid-uccAHVji8y .navbar.opened {
    height: auto;
  }
  .cid-uccAHVji8y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uccBDPsFjs {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/18a33200bd93b8a3-1.jpg");
}
.cid-uccBDPsFjs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccBDPsFjs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccBDPsFjs .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uccBDPsFjs .container {
    padding: 0 20px;
  }
}
.cid-uccBDPsFjs .row {
  height: 100%;
}
.cid-uccBDPsFjs .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uccBDPsFjs .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-uccBDPsFjs .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-uccBDPsFjs .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uccBDPsFjs .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uccBDPsFjs .mbr-section-title {
  color: #ffffff;
}
.cid-uccBDPsFjs .mbr-desc {
  color: #ffffff;
}
.cid-uccEZT33Mc {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #05051e;
}
.cid-uccEZT33Mc .mbr-section-subtitle {
  color: #14191e;
}
.cid-uccEZT33Mc .mbr-text {
  color: #777777;
}
.cid-uccEZT33Mc .row {
  justify-content: space-between;
}
.cid-uccEZT33Mc .mbr-list {
  padding: 0 1rem;
  color: #dfcefd;
}
.cid-uccEZT33Mc ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-uccEZT33Mc ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-uccEZT33Mc ul li:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  width: 25px;
  height: 25px;
}
.cid-uccEZT33Mc .mbr-section-title {
  color: #d90a2c;
}
.cid-uccFxOwoNM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-uccFxOwoNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccFxOwoNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccFxOwoNM .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uccFxOwoNM .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uccFxOwoNM .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uccFxOwoNM .card-wrapper {
    padding: 4rem;
  }
}
.cid-uccFxOwoNM .mbr-text,
.cid-uccFxOwoNM .mbr-section-btn {
  color: #000000;
}
.cid-uccFxOwoNM .card-title,
.cid-uccFxOwoNM .card-box {
  text-align: left;
}
.cid-uccJzBE66z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
  overflow: hidden;
}
.cid-uccJzBE66z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccJzBE66z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccJzBE66z .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uccJzBE66z .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uccJzBE66z .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uccJzBE66z .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uccJzBE66z .container {
    padding: 0 14px;
  }
}
.cid-uccJzBE66z .row {
  justify-content: center;
}
.cid-uccJzBE66z .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uccJzBE66z .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uccJzBE66z .item {
  margin-bottom: 40px;
}
.cid-uccJzBE66z .item .item-wrapper {
  position: relative;
  padding: 40px 25px;
  border-radius: 0 !important;
  background-color: #fffa76;
  height: 100%;
  margin: 0 9px;
}
.cid-uccJzBE66z .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fffa76;
  transform: rotate(-5deg);
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uccJzBE66z .item .item-wrapper {
    margin: 0;
  }
}
.cid-uccJzBE66z .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uccJzBE66z .item .item-wrapper .item-img img {
  display: inline-flex;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-uccJzBE66z .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-uccJzBE66z .item .item-wrapper .item-content .card-text {
  margin-bottom: 32px;
}
.cid-uccJzBE66z .item .item-wrapper .item-content .card-name {
  margin-bottom: 0;
}
.cid-uccJzBE66z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uccJzBE66z .card-text {
  color: #f1f1f1;
}
.cid-uccJzBE66z .card-name {
  color: #150d1d;
}
.cid-ubV0Kz6c6U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-ubV0Kz6c6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubV0Kz6c6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubV0Kz6c6U .card-wrapper {
  background: #05051e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ubV0Kz6c6U .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ubV0Kz6c6U .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ubV0Kz6c6U .card-wrapper {
    padding: 4rem;
  }
}
.cid-ubV0Kz6c6U .mbr-text,
.cid-ubV0Kz6c6U .mbr-section-btn {
  color: #ffffff;
}
.cid-ubV0Kz6c6U .card-title,
.cid-ubV0Kz6c6U .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-udYkAzkeX3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udYkAzkeX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYkAzkeX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYkAzkeX3 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-udYkAzkeX3 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-udYkAzkeX3 .container {
    padding: 0 25px;
  }
}
.cid-udYkAzkeX3 .row {
  justify-content: space-between;
}
.cid-udYkAzkeX3 .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udYkAzkeX3 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-udYkAzkeX3 .card-wrap {
  margin-bottom: 35px;
}
.cid-udYkAzkeX3 .card-wrap .mbr-card-title {
  margin-bottom: 20px;
}
.cid-udYkAzkeX3 .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-udYkAzkeX3 .image-wrapper img {
  height: 690px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-udYkAzkeX3 .image-wrapper img {
    height: 350px;
  }
}
.cid-udYkAzkeX3 .border-wrap {
  height: 1px;
  background-color: #e33030;
  margin-top: 50px;
}
.cid-udYkAzkeX3 .mbr-section-title {
  color: #000000;
}
.cid-udYkAzkeX3 .mbr-card-title {
  color: #150d1d;
}
.cid-udYkAzkeX3 .mbr-text {
  color: #353535;
}
.cid-uccLyPBoSU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-uccLyPBoSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccLyPBoSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccLyPBoSU .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uccLyPBoSU .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uccLyPBoSU .container {
    padding: 0 12px;
  }
}
.cid-uccLyPBoSU .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uccLyPBoSU .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uccLyPBoSU .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uccLyPBoSU .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uccLyPBoSU .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uccLyPBoSU .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uccLyPBoSU .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uccLyPBoSU .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uccLyPBoSU .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uccLyPBoSU .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uccLyPBoSU .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uccLyPBoSU .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uccLyPBoSU .mbr-section-subtitle {
  color: #222222;
}
.cid-uccLyPBoSU .mbr-text {
  color: #222222;
}
.cid-uccLyPBoSU .list {
  color: #222222;
}
.cid-uc76rHRRxA {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uc76rHRRxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc76rHRRxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc76rHRRxA .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uc76rHRRxA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uc76rHRRxA .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uc76rHRRxA .card-title {
  color: #0b0c37;
}
.cid-uccMDJjwcW {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #05051e;
}
.cid-uccMDJjwcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccMDJjwcW .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-uccMDJjwcW .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uccMDJjwcW .row {
  background: #ffffff;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uccMDJjwcW .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uccMDJjwcW img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uccMDJjwcW img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uccMDJjwcW .image-wrapper {
    padding: 1rem;
  }
}
.cid-ubV0iDvTBf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-ubV0iDvTBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubV0iDvTBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubV0iDvTBf .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .container {
    padding: 0 30px;
  }
}
.cid-ubV0iDvTBf .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ubV0iDvTBf .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-ubV0iDvTBf .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ubV0iDvTBf .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-uccNn5IQxC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-uccNn5IQxC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccNn5IQxC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccNn5IQxC .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uccNn5IQxC .container-fluid {
    padding: 0 12px;
  }
}
.cid-uccNn5IQxC .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uccNn5IQxC .container {
    padding: 0 20px;
  }
}
.cid-uccNn5IQxC .row {
  border-top: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  margin-top: -2px;
}
.cid-uccNn5IQxC .card {
  padding: 0;
  border-radius: 0;
}
.cid-uccNn5IQxC .card:first-child {
  border-right: 2px solid #d7d7d7;
}
.cid-uccNn5IQxC .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-uccNn5IQxC .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-uccNn5IQxC .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uccNn5IQxC .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-uccNn5IQxC .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-uccNn5IQxC .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-uccNn5IQxC .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uccNn5IQxC .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uccNn5IQxC .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uccNn5IQxC .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-uccNn5IQxC .mbr-text {
  color: #ffffff;
}
.cid-uccNn5IQxC .mbr-section-title,
.cid-uccNn5IQxC .mbr-section-btn {
  color: #ffffff;
}
.cid-udYdaUUD5u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYdaUUD5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYdaUUD5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYdaUUD5u .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-udYdaUUD5u .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYdaUUD5u .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-udYdaUUD5u .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYdaUUD5u .container {
    padding: 0 16px;
  }
}
.cid-udYdaUUD5u .row {
  justify-content: center;
}
.cid-udYdaUUD5u .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-udYdaUUD5u .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-udYdaUUD5u .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-udYdaUUD5u .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-udYdaUUD5u .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-udYdaUUD5u .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-udYdaUUD5u .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-udYdaUUD5u .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-udYdaUUD5u .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-udYdaUUD5u .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udYdaUUD5u .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-udYdaUUD5u .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-udYdaUUD5u .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-udYdaUUD5u .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-udYdaUUD5u .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-udYdaUUD5u .panel-title {
  color: #000000;
}
.cid-udYdaUUD5u .panel-text {
  color: #000000;
}
.cid-uccUqtJkO3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
}
.cid-uccUqtJkO3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccUqtJkO3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccUqtJkO3 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uccUqtJkO3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uccUqtJkO3 .container {
    padding: 0 30px;
  }
}
.cid-uccUqtJkO3 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uccUqtJkO3 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uccUqtJkO3 .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uccUqtJkO3 .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-uccUqtJkO3 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uccUqtJkO3 .mbr-section-title {
  color: #ffffff;
}
.cid-uccUqtJkO3 .mbr-text {
  color: #ffffff;
}
.cid-uceC2WzJjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/a-guide-to-using-red-oxide-metal-primer-2.jpg");
}
.cid-uceC2WzJjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uceC2WzJjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uceC2WzJjM .container {
    padding: 0 16px;
  }
}
.cid-uceC2WzJjM .row {
  height: 470px;
}
@media (max-width: 992px) {
  .cid-uceC2WzJjM .row {
    height: 200px;
  }
}
.cid-uccVsp0ajH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-uccVsp0ajH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccVsp0ajH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccVsp0ajH .container,
.cid-uccVsp0ajH .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uccVsp0ajH .container,
  .cid-uccVsp0ajH .container-fluid {
    padding: 0 20px;
  }
}
.cid-uccVsp0ajH .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #05051e;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uccVsp0ajH .row {
    padding: 85px 8px;
  }
}
.cid-uccVsp0ajH .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uccVsp0ajH .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uccVsp0ajH .text-wrapper {
  padding: 0 30%;
}
@media (max-width: 992px) {
  .cid-uccVsp0ajH .text-wrapper {
    padding: 0;
  }
}
.cid-uccVsp0ajH .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uccVsp0ajH .mbr-section-title {
  color: #ffffff;
}
.cid-uccVsp0ajH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uccVsp0ajH .mbr-text {
  color: #150d1d;
}
.cid-uccVsp0ajH .mbr-section-title,
.cid-uccVsp0ajH .title-wrapper {
  color: #150d1d;
  text-align: center;
}
.cid-uccWmjpsiX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uccWmjpsiX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccWmjpsiX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccWmjpsiX .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uccWmjpsiX .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uccWmjpsiX .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-uccWmjpsiX .google-map {
  height: 600px;
  position: relative;
}
.cid-uccWmjpsiX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uccWmjpsiX .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-uccWmjpsiX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uccWmjpsiX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uccWmjpsiX .mbr-section-title {
  text-align: center;
}
.cid-uccQsmyRmC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-uccQsmyRmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccQsmyRmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccQsmyRmC .row {
  justify-content: space-between;
}
.cid-uccQsmyRmC .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-uccQsmyRmC .list li {
  margin-bottom: 25px;
}
.cid-uccQsmyRmC .list li:last-child {
  margin-bottom: 0;
}
.cid-uccQsmyRmC .mbr-desc {
  margin-bottom: 8px;
}
.cid-uccQsmyRmC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uccQsmyRmC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uccQsmyRmC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-uccQsmyRmC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-uccQsmyRmC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-uccQsmyRmC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uccQsmyRmC .mbr-desc,
.cid-uccQsmyRmC .mbr-iconfont {
  color: #ffffff;
}
.cid-uccQsmyRmC .mbr-text,
.cid-uccQsmyRmC .mbr-section-btn {
  color: #ffffff;
}
.cid-ubZTbY4wm8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ubZTbY4wm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubZTbY4wm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubZTbY4wm8 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .container {
    padding: 0 24px;
  }
}
.cid-ubZTbY4wm8 .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .content-wrapper {
    padding: 0;
  }
}
.cid-ubZTbY4wm8 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-ubZTbY4wm8 .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ubZTbY4wm8 .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ubZTbY4wm8 .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ubZTbY4wm8 .mbr-section-title {
  color: #141414;
}
.cid-ubZTbY4wm8 .mbr-desc {
  color: #141414;
}
.cid-ubZTbY4wm8 .mbr-text {
  color: #141414;
}
.cid-ubZTbYmCX9 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ubZTbYBest {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #0b0c37;
}
.cid-ubZTbYBest .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ubZTbYBest .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #d90a2c;
}
.cid-ubZTbYBest .svg-top .st0 {
  fill: #0b0c37;
}
@media (max-width: 992px) {
  .cid-ubZTbYBest .svg-top {
    width: 1000px;
  }
}
.cid-ubZTbYBest .google-map {
  height: 35rem;
  position: relative;
}
.cid-ubZTbYBest .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ubZTbYBest .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-ubZTbYBest .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ubZTbYBest .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ubZTbYBest .mbr-section-title {
  color: #ffffff;
}
.cid-ubZTbYBest .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uccAHVji8y .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uccAHVji8y .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .cid-uccAHVji8y .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-uccAHVji8y .navbar-logo {
  margin: 0 !important;
}
.cid-uccAHVji8y .navbar-brand {
  background-color: #9fdbf8;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 6px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uccAHVji8y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uccAHVji8y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uccAHVji8y .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-uccAHVji8y .navbar-nav {
  min-width: 45%;
}
.cid-uccAHVji8y .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-uccAHVji8y .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-uccAHVji8y .dropdown-item {
  color: #000000 !important;
}
.cid-uccAHVji8y .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uccAHVji8y .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-uccAHVji8y .nav-link:hover {
  color: #9fdbf8 !important;
}
.cid-uccAHVji8y .nav-link:hover:before {
  opacity: 1;
}
.cid-uccAHVji8y .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #9fdbf8;
}
.cid-uccAHVji8y .btn-white {
  color: #d90a2c !important;
}
.cid-uccAHVji8y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uccAHVji8y .container {
  display: flex;
  margin: auto;
}
.cid-uccAHVji8y .navbar.opened {
  background: #150d1d !important;
}
.cid-uccAHVji8y .nav-item:focus,
.cid-uccAHVji8y .nav-link:focus {
  outline: none;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uccAHVji8y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uccAHVji8y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uccAHVji8y .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #150d1d;
}
.cid-uccAHVji8y .navbar.opened {
  transition: all 0.3s;
}
.cid-uccAHVji8y .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-uccAHVji8y .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uccAHVji8y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uccAHVji8y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uccAHVji8y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uccAHVji8y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uccAHVji8y .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uccAHVji8y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uccAHVji8y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uccAHVji8y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uccAHVji8y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uccAHVji8y .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uccAHVji8y .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uccAHVji8y .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uccAHVji8y .navbar.navbar-short {
  background: #150d1d !important;
  min-height: 60px;
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uccAHVji8y .dropdown-item.active,
.cid-uccAHVji8y .dropdown-item:active {
  background-color: transparent;
}
.cid-uccAHVji8y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uccAHVji8y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #150d1d;
}
.cid-uccAHVji8y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uccAHVji8y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uccAHVji8y ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uccAHVji8y .navbar-buttons {
  text-align: center;
}
.cid-uccAHVji8y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uccAHVji8y .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uccAHVji8y a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uccAHVji8y .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uccAHVji8y .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uccAHVji8y .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uccAHVji8y .navbar {
    height: 77px;
  }
  .cid-uccAHVji8y .navbar.opened {
    height: auto;
  }
  .cid-uccAHVji8y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uccQsmyRmC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-uccQsmyRmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccQsmyRmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccQsmyRmC .row {
  justify-content: space-between;
}
.cid-uccQsmyRmC .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-uccQsmyRmC .list li {
  margin-bottom: 25px;
}
.cid-uccQsmyRmC .list li:last-child {
  margin-bottom: 0;
}
.cid-uccQsmyRmC .mbr-desc {
  margin-bottom: 8px;
}
.cid-uccQsmyRmC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uccQsmyRmC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uccQsmyRmC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-uccQsmyRmC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-uccQsmyRmC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-uccQsmyRmC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uccQsmyRmC .mbr-desc,
.cid-uccQsmyRmC .mbr-iconfont {
  color: #ffffff;
}
.cid-uccQsmyRmC .mbr-text,
.cid-uccQsmyRmC .mbr-section-btn {
  color: #ffffff;
}
.cid-ubVt9Dx6kH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0b0c37;
}
.cid-ubVt9Dx6kH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubVt9Dx6kH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubVt9Dx6kH .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .container {
    padding: 0 24px;
  }
}
.cid-ubVt9Dx6kH .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .content-wrapper {
    padding: 0;
  }
}
.cid-ubVt9Dx6kH .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-ubVt9Dx6kH .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-ubVt9Dx6kH .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ubVt9Dx6kH .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ubVt9Dx6kH .mbr-section-title {
  color: #141414;
}
.cid-ubVt9Dx6kH .mbr-desc {
  color: #141414;
}
.cid-ubVt9Dx6kH .mbr-text {
  color: #141414;
}
.cid-ubVtkYClkm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ubVtnr2IeO {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background: #0b0c37;
}
.cid-ubVtnr2IeO .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ubVtnr2IeO .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #d90a2c;
}
.cid-ubVtnr2IeO .svg-top .st0 {
  fill: #0b0c37;
}
@media (max-width: 992px) {
  .cid-ubVtnr2IeO .svg-top {
    width: 1000px;
  }
}
.cid-ubVtnr2IeO .google-map {
  height: 35rem;
  position: relative;
}
.cid-ubVtnr2IeO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ubVtnr2IeO .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-ubVtnr2IeO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ubVtnr2IeO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ubVtnr2IeO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubVtnr2IeO .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uccAHVji8y .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uccAHVji8y .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .cid-uccAHVji8y .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-uccAHVji8y .navbar-logo {
  margin: 0 !important;
}
.cid-uccAHVji8y .navbar-brand {
  background-color: #9fdbf8;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 6px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uccAHVji8y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uccAHVji8y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uccAHVji8y .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-uccAHVji8y .navbar-nav {
  min-width: 45%;
}
.cid-uccAHVji8y .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-uccAHVji8y .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-uccAHVji8y .dropdown-item {
  color: #000000 !important;
}
.cid-uccAHVji8y .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uccAHVji8y .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-uccAHVji8y .nav-link:hover {
  color: #9fdbf8 !important;
}
.cid-uccAHVji8y .nav-link:hover:before {
  opacity: 1;
}
.cid-uccAHVji8y .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #9fdbf8;
}
.cid-uccAHVji8y .btn-white {
  color: #d90a2c !important;
}
.cid-uccAHVji8y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uccAHVji8y .container {
  display: flex;
  margin: auto;
}
.cid-uccAHVji8y .navbar.opened {
  background: #150d1d !important;
}
.cid-uccAHVji8y .nav-item:focus,
.cid-uccAHVji8y .nav-link:focus {
  outline: none;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uccAHVji8y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uccAHVji8y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uccAHVji8y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uccAHVji8y .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #150d1d;
}
.cid-uccAHVji8y .navbar.opened {
  transition: all 0.3s;
}
.cid-uccAHVji8y .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-uccAHVji8y .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uccAHVji8y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uccAHVji8y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uccAHVji8y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uccAHVji8y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uccAHVji8y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uccAHVji8y .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uccAHVji8y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uccAHVji8y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uccAHVji8y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uccAHVji8y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uccAHVji8y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uccAHVji8y .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uccAHVji8y .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uccAHVji8y .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uccAHVji8y .navbar.navbar-short {
  background: #150d1d !important;
  min-height: 60px;
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uccAHVji8y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uccAHVji8y .dropdown-item.active,
.cid-uccAHVji8y .dropdown-item:active {
  background-color: transparent;
}
.cid-uccAHVji8y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uccAHVji8y .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uccAHVji8y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #150d1d;
}
.cid-uccAHVji8y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uccAHVji8y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uccAHVji8y ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uccAHVji8y .navbar-buttons {
  text-align: center;
}
.cid-uccAHVji8y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uccAHVji8y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uccAHVji8y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uccAHVji8y .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uccAHVji8y a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uccAHVji8y .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uccAHVji8y .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uccAHVji8y .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uccAHVji8y .navbar {
    height: 77px;
  }
  .cid-uccAHVji8y .navbar.opened {
    height: auto;
  }
  .cid-uccAHVji8y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uccQsmyRmC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-uccQsmyRmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uccQsmyRmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uccQsmyRmC .row {
  justify-content: space-between;
}
.cid-uccQsmyRmC .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-uccQsmyRmC .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-uccQsmyRmC .list li {
  margin-bottom: 25px;
}
.cid-uccQsmyRmC .list li:last-child {
  margin-bottom: 0;
}
.cid-uccQsmyRmC .mbr-desc {
  margin-bottom: 8px;
}
.cid-uccQsmyRmC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uccQsmyRmC .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-uccQsmyRmC .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-uccQsmyRmC .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-uccQsmyRmC .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-uccQsmyRmC .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uccQsmyRmC .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-uccQsmyRmC .mbr-desc,
.cid-uccQsmyRmC .mbr-iconfont {
  color: #ffffff;
}
.cid-uccQsmyRmC .mbr-text,
.cid-uccQsmyRmC .mbr-section-btn {
  color: #ffffff;
}
.cid-udYUL83uAa .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-udYUL83uAa .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .cid-udYUL83uAa .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-udYUL83uAa .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-udYUL83uAa .navbar-logo {
  margin: 0 !important;
}
.cid-udYUL83uAa .navbar-brand {
  background-color: #9fdbf8;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 6px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udYUL83uAa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udYUL83uAa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udYUL83uAa .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-udYUL83uAa .navbar-nav {
  min-width: 45%;
}
.cid-udYUL83uAa .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-udYUL83uAa .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-udYUL83uAa .dropdown-item {
  color: #000000 !important;
}
.cid-udYUL83uAa .dropdown-item:hover {
  color: #000000 !important;
}
.cid-udYUL83uAa .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-udYUL83uAa .nav-link:hover {
  color: #9fdbf8 !important;
}
.cid-udYUL83uAa .nav-link:hover:before {
  opacity: 1;
}
.cid-udYUL83uAa .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #9fdbf8;
}
.cid-udYUL83uAa .btn-white {
  color: #d90a2c !important;
}
.cid-udYUL83uAa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udYUL83uAa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udYUL83uAa .container {
  display: flex;
  margin: auto;
}
.cid-udYUL83uAa .navbar.opened {
  background: #150d1d !important;
}
.cid-udYUL83uAa .nav-item:focus,
.cid-udYUL83uAa .nav-link:focus {
  outline: none;
}
.cid-udYUL83uAa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udYUL83uAa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udYUL83uAa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-udYUL83uAa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udYUL83uAa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udYUL83uAa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udYUL83uAa .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #150d1d;
}
.cid-udYUL83uAa .navbar.opened {
  transition: all 0.3s;
}
.cid-udYUL83uAa .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-udYUL83uAa .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-udYUL83uAa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udYUL83uAa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udYUL83uAa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-udYUL83uAa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udYUL83uAa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udYUL83uAa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-udYUL83uAa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udYUL83uAa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udYUL83uAa .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udYUL83uAa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udYUL83uAa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udYUL83uAa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udYUL83uAa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udYUL83uAa .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-udYUL83uAa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-udYUL83uAa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udYUL83uAa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udYUL83uAa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-udYUL83uAa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-udYUL83uAa .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-udYUL83uAa .navbar.navbar-short {
  background: #150d1d !important;
  min-height: 60px;
}
.cid-udYUL83uAa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-udYUL83uAa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-udYUL83uAa .dropdown-item.active,
.cid-udYUL83uAa .dropdown-item:active {
  background-color: transparent;
}
.cid-udYUL83uAa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udYUL83uAa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udYUL83uAa .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udYUL83uAa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #150d1d;
}
.cid-udYUL83uAa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udYUL83uAa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udYUL83uAa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-udYUL83uAa .navbar-buttons {
  text-align: center;
}
.cid-udYUL83uAa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-udYUL83uAa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udYUL83uAa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udYUL83uAa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udYUL83uAa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udYUL83uAa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udYUL83uAa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udYUL83uAa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udYUL83uAa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udYUL83uAa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udYUL83uAa .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-udYUL83uAa a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-udYUL83uAa .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udYUL83uAa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-udYUL83uAa .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udYUL83uAa .navbar {
    height: 77px;
  }
  .cid-udYUL83uAa .navbar.opened {
    height: auto;
  }
  .cid-udYUL83uAa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udYUL8AL3E {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/best-roofing-blogs.jpg");
}
.cid-udYUL8AL3E .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUL8AL3E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUL8AL3E .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-udYUL8AL3E .container {
    padding: 0 20px;
  }
}
.cid-udYUL8AL3E .row {
  height: 100%;
}
.cid-udYUL8AL3E .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-udYUL8AL3E .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-udYUL8AL3E .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-udYUL8AL3E .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udYUL8AL3E .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-udYUL8AL3E .mbr-section-title {
  color: #ffffff;
}
.cid-udYUL8AL3E .mbr-desc {
  color: #ffffff;
}
.cid-udYUL90ofi {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #05051e;
}
.cid-udYUL90ofi .mbr-section-subtitle {
  color: #14191e;
}
.cid-udYUL90ofi .mbr-text {
  color: #777777;
}
.cid-udYUL90ofi .row {
  justify-content: space-between;
}
.cid-udYUL90ofi .mbr-list {
  padding: 0 1rem;
  color: #dfcefd;
}
.cid-udYUL90ofi ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-udYUL90ofi ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-udYUL90ofi ul li:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  width: 25px;
  height: 25px;
}
.cid-udYUL90ofi .mbr-section-title {
  color: #d90a2c;
}
.cid-udYUL9g25D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYUL9g25D .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUL9g25D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUL9g25D .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-udYUL9g25D .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udYUL9g25D .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udYUL9g25D .card-wrapper {
    padding: 4rem;
  }
}
.cid-udYUL9g25D .mbr-text,
.cid-udYUL9g25D .mbr-section-btn {
  color: #000000;
}
.cid-udYUL9g25D .card-title,
.cid-udYUL9g25D .card-box {
  text-align: left;
}
.cid-udYUL9zpPS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
  overflow: hidden;
}
.cid-udYUL9zpPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUL9zpPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUL9zpPS .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-udYUL9zpPS .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYUL9zpPS .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-udYUL9zpPS .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYUL9zpPS .container {
    padding: 0 14px;
  }
}
.cid-udYUL9zpPS .row {
  justify-content: center;
}
.cid-udYUL9zpPS .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udYUL9zpPS .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udYUL9zpPS .item {
  margin-bottom: 40px;
}
.cid-udYUL9zpPS .item .item-wrapper {
  position: relative;
  padding: 40px 25px;
  border-radius: 0 !important;
  background-color: #fffa76;
  height: 100%;
  margin: 0 9px;
}
.cid-udYUL9zpPS .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fffa76;
  transform: rotate(-5deg);
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-udYUL9zpPS .item .item-wrapper {
    margin: 0;
  }
}
.cid-udYUL9zpPS .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-udYUL9zpPS .item .item-wrapper .item-img img {
  display: inline-flex;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-udYUL9zpPS .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-udYUL9zpPS .item .item-wrapper .item-content .card-text {
  margin-bottom: 32px;
}
.cid-udYUL9zpPS .item .item-wrapper .item-content .card-name {
  margin-bottom: 0;
}
.cid-udYUL9zpPS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udYUL9zpPS .card-text {
  color: #f1f1f1;
}
.cid-udYUL9zpPS .card-name {
  color: #150d1d;
}
.cid-udYULa8GDP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULa8GDP .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULa8GDP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULa8GDP .card-wrapper {
  background: #05051e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-udYULa8GDP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udYULa8GDP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udYULa8GDP .card-wrapper {
    padding: 4rem;
  }
}
.cid-udYULa8GDP .mbr-text,
.cid-udYULa8GDP .mbr-section-btn {
  color: #ffffff;
}
.cid-udYULa8GDP .card-title,
.cid-udYULa8GDP .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-udYULaBnmi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udYULaBnmi .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULaBnmi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULaBnmi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-udYULaBnmi .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-udYULaBnmi .container {
    padding: 0 25px;
  }
}
.cid-udYULaBnmi .row {
  justify-content: space-between;
}
.cid-udYULaBnmi .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udYULaBnmi .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-udYULaBnmi .card-wrap {
  margin-bottom: 35px;
}
.cid-udYULaBnmi .card-wrap .mbr-card-title {
  margin-bottom: 20px;
}
.cid-udYULaBnmi .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-udYULaBnmi .image-wrapper img {
  height: 690px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-udYULaBnmi .image-wrapper img {
    height: 350px;
  }
}
.cid-udYULaBnmi .border-wrap {
  height: 1px;
  background-color: #e33030;
  margin-top: 50px;
}
.cid-udYULaBnmi .mbr-section-title {
  color: #000000;
}
.cid-udYULaBnmi .mbr-card-title {
  color: #150d1d;
}
.cid-udYULaBnmi .mbr-text {
  color: #353535;
}
.cid-udYULb2wGa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULb2wGa .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULb2wGa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULb2wGa .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udYULb2wGa .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYULb2wGa .container {
    padding: 0 12px;
  }
}
.cid-udYULb2wGa .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udYULb2wGa .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-udYULb2wGa .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udYULb2wGa .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-udYULb2wGa .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-udYULb2wGa .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-udYULb2wGa .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-udYULb2wGa .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-udYULb2wGa .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-udYULb2wGa .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-udYULb2wGa .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-udYULb2wGa .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-udYULb2wGa .mbr-section-subtitle {
  color: #222222;
}
.cid-udYULb2wGa .mbr-text {
  color: #222222;
}
.cid-udYULb2wGa .list {
  color: #222222;
}
.cid-udYULbtXQs {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udYULbtXQs .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULbtXQs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULbtXQs .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-udYULbtXQs .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-udYULbtXQs .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-udYULbtXQs .card-title {
  color: #0b0c37;
}
.cid-udYULc2ADQ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #05051e;
}
.cid-udYULc2ADQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULc2ADQ .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-udYULc2ADQ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-udYULc2ADQ .row {
  background: #ffffff;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-udYULc2ADQ .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-udYULc2ADQ img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-udYULc2ADQ img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udYULc2ADQ .image-wrapper {
    padding: 1rem;
  }
}
.cid-udYULcrzYk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULcrzYk .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULcrzYk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULcrzYk .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-udYULcrzYk .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-udYULcrzYk .container {
    padding: 0 30px;
  }
}
.cid-udYULcrzYk .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-udYULcrzYk .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-udYULcrzYk .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-udYULcrzYk .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-udYULcrzYk .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-udYULcrzYk .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-udYULcrzYk .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-udYULcKITa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-udYULcKITa .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULcKITa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULcKITa .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-udYULcKITa .container-fluid {
    padding: 0 12px;
  }
}
.cid-udYULcKITa .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-udYULcKITa .container {
    padding: 0 20px;
  }
}
.cid-udYULcKITa .row {
  border-top: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  margin-top: -2px;
}
.cid-udYULcKITa .card {
  padding: 0;
  border-radius: 0;
}
.cid-udYULcKITa .card:first-child {
  border-right: 2px solid #d7d7d7;
}
.cid-udYULcKITa .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-udYULcKITa .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-udYULcKITa .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-udYULcKITa .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-udYULcKITa .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-udYULcKITa .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-udYULcKITa .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udYULcKITa .card:last-child {
    padding: 50px 20px;
  }
}
.cid-udYULcKITa .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYULcKITa .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-udYULcKITa .mbr-text {
  color: #ffffff;
}
.cid-udYULcKITa .mbr-section-title,
.cid-udYULcKITa .mbr-section-btn {
  color: #ffffff;
}
.cid-udYULdcIl7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULdcIl7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULdcIl7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULdcIl7 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-udYULdcIl7 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYULdcIl7 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-udYULdcIl7 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYULdcIl7 .container {
    padding: 0 16px;
  }
}
.cid-udYULdcIl7 .row {
  justify-content: center;
}
.cid-udYULdcIl7 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-udYULdcIl7 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-udYULdcIl7 .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-udYULdcIl7 .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-udYULdcIl7 .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-udYULdcIl7 .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-udYULdcIl7 .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-udYULdcIl7 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-udYULdcIl7 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-udYULdcIl7 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udYULdcIl7 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-udYULdcIl7 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-udYULdcIl7 .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-udYULdcIl7 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-udYULdcIl7 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-udYULdcIl7 .panel-title {
  color: #000000;
}
.cid-udYULdcIl7 .panel-text {
  color: #000000;
}
.cid-udYULdMy1W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
}
.cid-udYULdMy1W .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULdMy1W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULdMy1W .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-udYULdMy1W .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-udYULdMy1W .container {
    padding: 0 30px;
  }
}
.cid-udYULdMy1W .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-udYULdMy1W .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-udYULdMy1W .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-udYULdMy1W .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-udYULdMy1W .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYULdMy1W .mbr-section-title {
  color: #ffffff;
}
.cid-udYULdMy1W .mbr-text {
  color: #ffffff;
}
.cid-udYULesX2N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULesX2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULesX2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULesX2N .container,
.cid-udYULesX2N .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-udYULesX2N .container,
  .cid-udYULesX2N .container-fluid {
    padding: 0 20px;
  }
}
.cid-udYULesX2N .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #05051e;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-udYULesX2N .row {
    padding: 85px 8px;
  }
}
.cid-udYULesX2N .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-udYULesX2N .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-udYULesX2N .text-wrapper {
  padding: 0 30%;
}
@media (max-width: 992px) {
  .cid-udYULesX2N .text-wrapper {
    padding: 0;
  }
}
.cid-udYULesX2N .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYULesX2N .mbr-section-title {
  color: #ffffff;
}
.cid-udYULesX2N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udYULesX2N .mbr-text {
  color: #150d1d;
}
.cid-udYULesX2N .mbr-section-title,
.cid-udYULesX2N .title-wrapper {
  color: #150d1d;
  text-align: center;
}
.cid-udZuqz8eII {
  overflow: hidden;
  background-color: #150d1d;
}
.cid-udZuqz8eII .mbr-fallback-image.disabled {
  display: none;
}
.cid-udZuqz8eII .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-udZuqz8eII .container {
    padding: 0 24px;
  }
}
.cid-udZuqz8eII .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  margin-bottom: 16px;
  background-color: #ffffff;
}
.cid-udZuqz8eII .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-udZuqz8eII .panel-group .card {
  border-radius: .6rem !important;
  background-color: #ffffff;
  margin-bottom: 24px;
}
.cid-udZuqz8eII .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 32px 42px;
}
@media (max-width: 992px) {
  .cid-udZuqz8eII .panel-group .card .card-header {
    padding: 16px 20px;
  }
}
.cid-udZuqz8eII .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-udZuqz8eII .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udZuqz8eII .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 64px;
  height: 64px;
  min-width: 64px;
  transition: all 0.3s ease-in-out;
  color: #202020;
  margin-left: 16px;
  border: 1px solid #202020;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-udZuqz8eII .panel-group .card .card-header .panel-title .mbr-iconfont {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 18px;
  }
}
.cid-udZuqz8eII .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  background-color: #202020;
  color: #ffffff;
}
.cid-udZuqz8eII .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  background-color: #202020;
  color: #ffffff;
}
.cid-udZuqz8eII .panel-group .card .panel-collapse .panel-body {
  padding: 0 42px 32px;
}
@media (max-width: 992px) {
  .cid-udZuqz8eII .panel-group .card .panel-collapse .panel-body {
    padding: 0 20px 16px;
  }
}
.cid-udZuqz8eII .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-udZuqz8eII .mbr-desc {
  color: #202020;
}
.cid-udZuqz8eII .mbr-section-title {
  color: #202020;
}
.cid-udZuqz8eII .panel-title-edit {
  color: #202020;
}
.cid-udZuqz8eII .panel-text {
  color: #202020;
}
.cid-udYULeNVaT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-udYULeNVaT .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULeNVaT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULeNVaT .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-udYULeNVaT .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-udYULeNVaT .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-udYULeNVaT .google-map {
  height: 600px;
  position: relative;
}
.cid-udYULeNVaT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-udYULeNVaT .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-udYULeNVaT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-udYULeNVaT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-udYULeNVaT .mbr-section-title {
  text-align: center;
}
.cid-udYULflk19 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-udYULflk19 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULflk19 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULflk19 .row {
  justify-content: space-between;
}
.cid-udYULflk19 .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-udYULflk19 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-udYULflk19 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udYULflk19 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-udYULflk19 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-udYULflk19 .list li {
  margin-bottom: 25px;
}
.cid-udYULflk19 .list li:last-child {
  margin-bottom: 0;
}
.cid-udYULflk19 .mbr-desc {
  margin-bottom: 8px;
}
.cid-udYULflk19 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-udYULflk19 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-udYULflk19 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-udYULflk19 .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-udYULflk19 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-udYULflk19 .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-udYULflk19 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-udYULflk19 .mbr-desc,
.cid-udYULflk19 .mbr-iconfont {
  color: #ffffff;
}
.cid-udYULflk19 .mbr-text,
.cid-udYULflk19 .mbr-section-btn {
  color: #ffffff;
}
.cid-udYULMuGau .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-udYULMuGau .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .cid-udYULMuGau .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-udYULMuGau .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-udYULMuGau .navbar-logo {
  margin: 0 !important;
}
.cid-udYULMuGau .navbar-brand {
  background-color: #9fdbf8;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 6px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udYULMuGau .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udYULMuGau .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udYULMuGau .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-udYULMuGau .navbar-nav {
  min-width: 45%;
}
.cid-udYULMuGau .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-udYULMuGau .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-udYULMuGau .dropdown-item {
  color: #000000 !important;
}
.cid-udYULMuGau .dropdown-item:hover {
  color: #000000 !important;
}
.cid-udYULMuGau .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-udYULMuGau .nav-link:hover {
  color: #9fdbf8 !important;
}
.cid-udYULMuGau .nav-link:hover:before {
  opacity: 1;
}
.cid-udYULMuGau .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #9fdbf8;
}
.cid-udYULMuGau .btn-white {
  color: #d90a2c !important;
}
.cid-udYULMuGau .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udYULMuGau .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udYULMuGau .container {
  display: flex;
  margin: auto;
}
.cid-udYULMuGau .navbar.opened {
  background: #150d1d !important;
}
.cid-udYULMuGau .nav-item:focus,
.cid-udYULMuGau .nav-link:focus {
  outline: none;
}
.cid-udYULMuGau .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udYULMuGau .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udYULMuGau .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-udYULMuGau .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udYULMuGau .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udYULMuGau .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udYULMuGau .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #150d1d;
}
.cid-udYULMuGau .navbar.opened {
  transition: all 0.3s;
}
.cid-udYULMuGau .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-udYULMuGau .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-udYULMuGau .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udYULMuGau .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udYULMuGau .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-udYULMuGau .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udYULMuGau .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udYULMuGau .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-udYULMuGau .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udYULMuGau .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udYULMuGau .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udYULMuGau .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udYULMuGau .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udYULMuGau .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udYULMuGau .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udYULMuGau .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-udYULMuGau .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-udYULMuGau .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udYULMuGau .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udYULMuGau .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-udYULMuGau .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-udYULMuGau .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-udYULMuGau .navbar.navbar-short {
  background: #150d1d !important;
  min-height: 60px;
}
.cid-udYULMuGau .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-udYULMuGau .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-udYULMuGau .dropdown-item.active,
.cid-udYULMuGau .dropdown-item:active {
  background-color: transparent;
}
.cid-udYULMuGau .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udYULMuGau .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udYULMuGau .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udYULMuGau .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #150d1d;
}
.cid-udYULMuGau .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udYULMuGau .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udYULMuGau ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-udYULMuGau .navbar-buttons {
  text-align: center;
}
.cid-udYULMuGau button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-udYULMuGau button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udYULMuGau button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udYULMuGau button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udYULMuGau button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udYULMuGau button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udYULMuGau nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udYULMuGau nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udYULMuGau nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udYULMuGau nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udYULMuGau .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-udYULMuGau a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-udYULMuGau .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udYULMuGau .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-udYULMuGau .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udYULMuGau .navbar {
    height: 77px;
  }
  .cid-udYULMuGau .navbar.opened {
    height: auto;
  }
  .cid-udYULMuGau .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udYULMXIz1 {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/bonita-springs-mid-img-scaled-2560x1280.jpg");
}
.cid-udYULMXIz1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULMXIz1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULMXIz1 .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-udYULMXIz1 .container {
    padding: 0 20px;
  }
}
.cid-udYULMXIz1 .row {
  height: 100%;
}
.cid-udYULMXIz1 .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-udYULMXIz1 .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-udYULMXIz1 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-udYULMXIz1 .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udYULMXIz1 .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-udYULMXIz1 .mbr-section-title {
  color: #ffffff;
}
.cid-udYULMXIz1 .mbr-desc {
  color: #ffffff;
}
.cid-udYULNebKl {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #05051e;
}
.cid-udYULNebKl .mbr-section-subtitle {
  color: #14191e;
}
.cid-udYULNebKl .mbr-text {
  color: #777777;
}
.cid-udYULNebKl .row {
  justify-content: space-between;
}
.cid-udYULNebKl .mbr-list {
  padding: 0 1rem;
  color: #dfcefd;
}
.cid-udYULNebKl ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-udYULNebKl ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-udYULNebKl ul li:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  width: 25px;
  height: 25px;
}
.cid-udYULNebKl .mbr-section-title {
  color: #d90a2c;
}
.cid-udYULNwEsw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULNwEsw .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULNwEsw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULNwEsw .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-udYULNwEsw .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udYULNwEsw .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udYULNwEsw .card-wrapper {
    padding: 4rem;
  }
}
.cid-udYULNwEsw .mbr-text,
.cid-udYULNwEsw .mbr-section-btn {
  color: #000000;
}
.cid-udYULNwEsw .card-title,
.cid-udYULNwEsw .card-box {
  text-align: left;
}
.cid-udYULNK4Cr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
  overflow: hidden;
}
.cid-udYULNK4Cr .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULNK4Cr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULNK4Cr .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-udYULNK4Cr .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYULNK4Cr .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-udYULNK4Cr .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYULNK4Cr .container {
    padding: 0 14px;
  }
}
.cid-udYULNK4Cr .row {
  justify-content: center;
}
.cid-udYULNK4Cr .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udYULNK4Cr .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udYULNK4Cr .item {
  margin-bottom: 40px;
}
.cid-udYULNK4Cr .item .item-wrapper {
  position: relative;
  padding: 40px 25px;
  border-radius: 0 !important;
  background-color: #fffa76;
  height: 100%;
  margin: 0 9px;
}
.cid-udYULNK4Cr .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fffa76;
  transform: rotate(-5deg);
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-udYULNK4Cr .item .item-wrapper {
    margin: 0;
  }
}
.cid-udYULNK4Cr .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-udYULNK4Cr .item .item-wrapper .item-img img {
  display: inline-flex;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-udYULNK4Cr .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-udYULNK4Cr .item .item-wrapper .item-content .card-text {
  margin-bottom: 32px;
}
.cid-udYULNK4Cr .item .item-wrapper .item-content .card-name {
  margin-bottom: 0;
}
.cid-udYULNK4Cr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udYULNK4Cr .card-text {
  color: #f1f1f1;
}
.cid-udYULNK4Cr .card-name {
  color: #150d1d;
}
.cid-udYULOatNs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULOatNs .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULOatNs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULOatNs .card-wrapper {
  background: #05051e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-udYULOatNs .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udYULOatNs .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udYULOatNs .card-wrapper {
    padding: 4rem;
  }
}
.cid-udYULOatNs .mbr-text,
.cid-udYULOatNs .mbr-section-btn {
  color: #ffffff;
}
.cid-udYULOatNs .card-title,
.cid-udYULOatNs .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-udYULOtsvg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udYULOtsvg .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULOtsvg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULOtsvg .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-udYULOtsvg .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-udYULOtsvg .container {
    padding: 0 25px;
  }
}
.cid-udYULOtsvg .row {
  justify-content: space-between;
}
.cid-udYULOtsvg .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udYULOtsvg .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-udYULOtsvg .card-wrap {
  margin-bottom: 35px;
}
.cid-udYULOtsvg .card-wrap .mbr-card-title {
  margin-bottom: 20px;
}
.cid-udYULOtsvg .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-udYULOtsvg .image-wrapper img {
  height: 690px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-udYULOtsvg .image-wrapper img {
    height: 350px;
  }
}
.cid-udYULOtsvg .border-wrap {
  height: 1px;
  background-color: #e33030;
  margin-top: 50px;
}
.cid-udYULOtsvg .mbr-section-title {
  color: #000000;
}
.cid-udYULOtsvg .mbr-card-title {
  color: #150d1d;
}
.cid-udYULOtsvg .mbr-text {
  color: #353535;
}
.cid-udYULOTDSC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULOTDSC .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULOTDSC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULOTDSC .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udYULOTDSC .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYULOTDSC .container {
    padding: 0 12px;
  }
}
.cid-udYULOTDSC .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udYULOTDSC .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-udYULOTDSC .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udYULOTDSC .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-udYULOTDSC .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-udYULOTDSC .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-udYULOTDSC .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-udYULOTDSC .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-udYULOTDSC .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-udYULOTDSC .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-udYULOTDSC .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-udYULOTDSC .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-udYULOTDSC .mbr-section-subtitle {
  color: #222222;
}
.cid-udYULOTDSC .mbr-text {
  color: #222222;
}
.cid-udYULOTDSC .list {
  color: #222222;
}
.cid-udYULPcvrD {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udYULPcvrD .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULPcvrD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULPcvrD .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-udYULPcvrD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-udYULPcvrD .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-udYULPcvrD .card-title {
  color: #0b0c37;
}
.cid-udYULPG1gJ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #05051e;
}
.cid-udYULPG1gJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULPG1gJ .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-udYULPG1gJ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-udYULPG1gJ .row {
  background: #ffffff;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-udYULPG1gJ .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-udYULPG1gJ img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-udYULPG1gJ img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udYULPG1gJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-udYULQ2ap8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULQ2ap8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULQ2ap8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULQ2ap8 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-udYULQ2ap8 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-udYULQ2ap8 .container {
    padding: 0 30px;
  }
}
.cid-udYULQ2ap8 .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-udYULQ2ap8 .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-udYULQ2ap8 .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-udYULQ2ap8 .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-udYULQ2ap8 .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-udYULQ2ap8 .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-udYULQ2ap8 .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-udYULQoHtb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-udYULQoHtb .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULQoHtb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULQoHtb .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-udYULQoHtb .container-fluid {
    padding: 0 12px;
  }
}
.cid-udYULQoHtb .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-udYULQoHtb .container {
    padding: 0 20px;
  }
}
.cid-udYULQoHtb .row {
  border-top: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  margin-top: -2px;
}
.cid-udYULQoHtb .card {
  padding: 0;
  border-radius: 0;
}
.cid-udYULQoHtb .card:first-child {
  border-right: 2px solid #d7d7d7;
}
.cid-udYULQoHtb .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-udYULQoHtb .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-udYULQoHtb .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-udYULQoHtb .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-udYULQoHtb .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-udYULQoHtb .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-udYULQoHtb .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udYULQoHtb .card:last-child {
    padding: 50px 20px;
  }
}
.cid-udYULQoHtb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYULQoHtb .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-udYULQoHtb .mbr-text {
  color: #ffffff;
}
.cid-udYULQoHtb .mbr-section-title,
.cid-udYULQoHtb .mbr-section-btn {
  color: #ffffff;
}
.cid-udYULQMnfx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULQMnfx .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULQMnfx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULQMnfx .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-udYULQMnfx .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYULQMnfx .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-udYULQMnfx .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYULQMnfx .container {
    padding: 0 16px;
  }
}
.cid-udYULQMnfx .row {
  justify-content: center;
}
.cid-udYULQMnfx .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-udYULQMnfx .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-udYULQMnfx .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-udYULQMnfx .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-udYULQMnfx .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-udYULQMnfx .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-udYULQMnfx .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-udYULQMnfx .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-udYULQMnfx .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-udYULQMnfx .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udYULQMnfx .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-udYULQMnfx .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-udYULQMnfx .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-udYULQMnfx .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-udYULQMnfx .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-udYULQMnfx .panel-title {
  color: #000000;
}
.cid-udYULQMnfx .panel-text {
  color: #000000;
}
.cid-udYULRlClt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
}
.cid-udYULRlClt .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULRlClt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULRlClt .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-udYULRlClt .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-udYULRlClt .container {
    padding: 0 30px;
  }
}
.cid-udYULRlClt .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-udYULRlClt .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-udYULRlClt .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-udYULRlClt .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-udYULRlClt .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYULRlClt .mbr-section-title {
  color: #ffffff;
}
.cid-udYULRlClt .mbr-text {
  color: #ffffff;
}
.cid-udYULS2QNR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYULS2QNR .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULS2QNR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULS2QNR .container,
.cid-udYULS2QNR .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-udYULS2QNR .container,
  .cid-udYULS2QNR .container-fluid {
    padding: 0 20px;
  }
}
.cid-udYULS2QNR .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #05051e;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-udYULS2QNR .row {
    padding: 85px 8px;
  }
}
.cid-udYULS2QNR .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-udYULS2QNR .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-udYULS2QNR .text-wrapper {
  padding: 0 30%;
}
@media (max-width: 992px) {
  .cid-udYULS2QNR .text-wrapper {
    padding: 0;
  }
}
.cid-udYULS2QNR .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYULS2QNR .mbr-section-title {
  color: #ffffff;
}
.cid-udYULS2QNR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udYULS2QNR .mbr-text {
  color: #150d1d;
}
.cid-udYULS2QNR .mbr-section-title,
.cid-udYULS2QNR .title-wrapper {
  color: #150d1d;
  text-align: center;
}
.cid-udZwLIIIMx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-udZwLIIIMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-udZwLIIIMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-udZwLIIIMx .container {
    padding: 0 16px;
  }
}
.cid-udZwLIIIMx .row {
  position: relative;
  justify-content: space-between;
}
.cid-udZwLIIIMx .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-udZwLIIIMx .content-wrapper {
    margin-bottom: 80px;
  }
}
.cid-udZwLIIIMx .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-udZwLIIIMx .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-udZwLIIIMx .content-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-udZwLIIIMx .content-wrapper .decor-wrapper {
  margin-top: 32px;
}
.cid-udZwLIIIMx .content-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #c4f1f7 -10%, transparent 80%);
}
.cid-udZwLIIIMx .panel-group .card {
  border-radius: 20px !important;
  background-color: #fafafa;
  margin-bottom: 24px;
  padding: 32px;
}
.cid-udZwLIIIMx .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-udZwLIIIMx .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-udZwLIIIMx .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udZwLIIIMx .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-udZwLIIIMx .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-udZwLIIIMx .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-udZwLIIIMx .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px) scale3d(1, 0, 1);
  opacity: 0;
}
.cid-udZwLIIIMx .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0) scale3d(1, 1, 1);
  opacity: 1;
}
.cid-udZwLIIIMx .mbr-section-title {
  color: #000000;
}
.cid-udZwLIIIMx .mbr-text {
  color: #6f6f6f;
}
.cid-udZwLIIIMx .panel-title-edit {
  color: #000000;
}
.cid-udZwLIIIMx .panel-text {
  color: #000000;
}
.cid-udZwLIIIMx .mbr-section-title,
.cid-udZwLIIIMx .mbr-section-btn,
.cid-udZwLIIIMx .decor-wrapper {
  color: #fafafa;
}
.cid-udYULSqSZy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-udYULSqSZy .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULSqSZy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULSqSZy .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-udYULSqSZy .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-udYULSqSZy .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-udYULSqSZy .google-map {
  height: 600px;
  position: relative;
}
.cid-udYULSqSZy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-udYULSqSZy .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-udYULSqSZy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-udYULSqSZy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-udYULSqSZy .mbr-section-title {
  text-align: center;
}
.cid-udYULSQmFQ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-udYULSQmFQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYULSQmFQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYULSQmFQ .row {
  justify-content: space-between;
}
.cid-udYULSQmFQ .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-udYULSQmFQ .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-udYULSQmFQ .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udYULSQmFQ .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-udYULSQmFQ .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-udYULSQmFQ .list li {
  margin-bottom: 25px;
}
.cid-udYULSQmFQ .list li:last-child {
  margin-bottom: 0;
}
.cid-udYULSQmFQ .mbr-desc {
  margin-bottom: 8px;
}
.cid-udYULSQmFQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-udYULSQmFQ .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-udYULSQmFQ .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-udYULSQmFQ .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-udYULSQmFQ .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-udYULSQmFQ .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-udYULSQmFQ .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-udYULSQmFQ .mbr-desc,
.cid-udYULSQmFQ .mbr-iconfont {
  color: #ffffff;
}
.cid-udYULSQmFQ .mbr-text,
.cid-udYULSQmFQ .mbr-section-btn {
  color: #ffffff;
}
.cid-udYUMgKiW8 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-udYUMgKiW8 .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .cid-udYUMgKiW8 .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-udYUMgKiW8 .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-udYUMgKiW8 .navbar-logo {
  margin: 0 !important;
}
.cid-udYUMgKiW8 .navbar-brand {
  background-color: #9fdbf8;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 6px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udYUMgKiW8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udYUMgKiW8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udYUMgKiW8 .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-udYUMgKiW8 .navbar-nav {
  min-width: 45%;
}
.cid-udYUMgKiW8 .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-udYUMgKiW8 .dropdown-menu {
  padding: 0;
  background: #ffffff !important;
}
.cid-udYUMgKiW8 .dropdown-item {
  color: #000000 !important;
}
.cid-udYUMgKiW8 .dropdown-item:hover {
  color: #000000 !important;
}
.cid-udYUMgKiW8 .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-udYUMgKiW8 .nav-link:hover {
  color: #9fdbf8 !important;
}
.cid-udYUMgKiW8 .nav-link:hover:before {
  opacity: 1;
}
.cid-udYUMgKiW8 .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #9fdbf8;
}
.cid-udYUMgKiW8 .btn-white {
  color: #d90a2c !important;
}
.cid-udYUMgKiW8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udYUMgKiW8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udYUMgKiW8 .container {
  display: flex;
  margin: auto;
}
.cid-udYUMgKiW8 .navbar.opened {
  background: #150d1d !important;
}
.cid-udYUMgKiW8 .nav-item:focus,
.cid-udYUMgKiW8 .nav-link:focus {
  outline: none;
}
.cid-udYUMgKiW8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udYUMgKiW8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udYUMgKiW8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-udYUMgKiW8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udYUMgKiW8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udYUMgKiW8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udYUMgKiW8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #150d1d;
}
.cid-udYUMgKiW8 .navbar.opened {
  transition: all 0.3s;
}
.cid-udYUMgKiW8 .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-udYUMgKiW8 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-udYUMgKiW8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udYUMgKiW8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udYUMgKiW8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-udYUMgKiW8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udYUMgKiW8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udYUMgKiW8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-udYUMgKiW8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udYUMgKiW8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udYUMgKiW8 .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udYUMgKiW8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udYUMgKiW8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udYUMgKiW8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udYUMgKiW8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udYUMgKiW8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-udYUMgKiW8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-udYUMgKiW8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udYUMgKiW8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udYUMgKiW8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-udYUMgKiW8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-udYUMgKiW8 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-udYUMgKiW8 .navbar.navbar-short {
  background: #150d1d !important;
  min-height: 60px;
}
.cid-udYUMgKiW8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-udYUMgKiW8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-udYUMgKiW8 .dropdown-item.active,
.cid-udYUMgKiW8 .dropdown-item:active {
  background-color: transparent;
}
.cid-udYUMgKiW8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udYUMgKiW8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udYUMgKiW8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udYUMgKiW8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #150d1d;
}
.cid-udYUMgKiW8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udYUMgKiW8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udYUMgKiW8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-udYUMgKiW8 .navbar-buttons {
  text-align: center;
}
.cid-udYUMgKiW8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-udYUMgKiW8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udYUMgKiW8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udYUMgKiW8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udYUMgKiW8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udYUMgKiW8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udYUMgKiW8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udYUMgKiW8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udYUMgKiW8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udYUMgKiW8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udYUMgKiW8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-udYUMgKiW8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-udYUMgKiW8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udYUMgKiW8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-udYUMgKiW8 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udYUMgKiW8 .navbar {
    height: 77px;
  }
  .cid-udYUMgKiW8 .navbar.opened {
    height: auto;
  }
  .cid-udYUMgKiW8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udYUMhdZLa {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/csr-roofing-contractor-e1681082840725-1080x675.jpg");
}
.cid-udYUMhdZLa .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMhdZLa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMhdZLa .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-udYUMhdZLa .container {
    padding: 0 20px;
  }
}
.cid-udYUMhdZLa .row {
  height: 100%;
}
.cid-udYUMhdZLa .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-udYUMhdZLa .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-udYUMhdZLa .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-udYUMhdZLa .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udYUMhdZLa .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-udYUMhdZLa .mbr-section-title {
  color: #ffffff;
}
.cid-udYUMhdZLa .mbr-desc {
  color: #ffffff;
}
.cid-udYUMht0FZ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #05051e;
}
.cid-udYUMht0FZ .mbr-section-subtitle {
  color: #14191e;
}
.cid-udYUMht0FZ .mbr-text {
  color: #777777;
}
.cid-udYUMht0FZ .row {
  justify-content: space-between;
}
.cid-udYUMht0FZ .mbr-list {
  padding: 0 1rem;
  color: #dfcefd;
}
.cid-udYUMht0FZ ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-udYUMht0FZ ul li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 1rem;
}
.cid-udYUMht0FZ ul li:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  width: 25px;
  height: 25px;
}
.cid-udYUMht0FZ .mbr-section-title {
  color: #d90a2c;
}
.cid-udYUMhLgmE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYUMhLgmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMhLgmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMhLgmE .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-udYUMhLgmE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udYUMhLgmE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udYUMhLgmE .card-wrapper {
    padding: 4rem;
  }
}
.cid-udYUMhLgmE .mbr-text,
.cid-udYUMhLgmE .mbr-section-btn {
  color: #000000;
}
.cid-udYUMhLgmE .card-title,
.cid-udYUMhLgmE .card-box {
  text-align: left;
}
.cid-udYUMi6x1A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
  overflow: hidden;
}
.cid-udYUMi6x1A .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMi6x1A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMi6x1A .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-udYUMi6x1A .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYUMi6x1A .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-udYUMi6x1A .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYUMi6x1A .container {
    padding: 0 14px;
  }
}
.cid-udYUMi6x1A .row {
  justify-content: center;
}
.cid-udYUMi6x1A .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udYUMi6x1A .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udYUMi6x1A .item {
  margin-bottom: 40px;
}
.cid-udYUMi6x1A .item .item-wrapper {
  position: relative;
  padding: 40px 25px;
  border-radius: 0 !important;
  background-color: #fffa76;
  height: 100%;
  margin: 0 9px;
}
.cid-udYUMi6x1A .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fffa76;
  transform: rotate(-5deg);
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-udYUMi6x1A .item .item-wrapper {
    margin: 0;
  }
}
.cid-udYUMi6x1A .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-udYUMi6x1A .item .item-wrapper .item-img img {
  display: inline-flex;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-udYUMi6x1A .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-udYUMi6x1A .item .item-wrapper .item-content .card-text {
  margin-bottom: 32px;
}
.cid-udYUMi6x1A .item .item-wrapper .item-content .card-name {
  margin-bottom: 0;
}
.cid-udYUMi6x1A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udYUMi6x1A .card-text {
  color: #f1f1f1;
}
.cid-udYUMi6x1A .card-name {
  color: #150d1d;
}
.cid-udYUMiytpU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYUMiytpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMiytpU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMiytpU .card-wrapper {
  background: #05051e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-udYUMiytpU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udYUMiytpU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udYUMiytpU .card-wrapper {
    padding: 4rem;
  }
}
.cid-udYUMiytpU .mbr-text,
.cid-udYUMiytpU .mbr-section-btn {
  color: #ffffff;
}
.cid-udYUMiytpU .card-title,
.cid-udYUMiytpU .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-udYUMiQvIq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udYUMiQvIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMiQvIq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMiQvIq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-udYUMiQvIq .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-udYUMiQvIq .container {
    padding: 0 25px;
  }
}
.cid-udYUMiQvIq .row {
  justify-content: space-between;
}
.cid-udYUMiQvIq .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-udYUMiQvIq .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-udYUMiQvIq .card-wrap {
  margin-bottom: 35px;
}
.cid-udYUMiQvIq .card-wrap .mbr-card-title {
  margin-bottom: 20px;
}
.cid-udYUMiQvIq .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-udYUMiQvIq .image-wrapper img {
  height: 690px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-udYUMiQvIq .image-wrapper img {
    height: 350px;
  }
}
.cid-udYUMiQvIq .border-wrap {
  height: 1px;
  background-color: #e33030;
  margin-top: 50px;
}
.cid-udYUMiQvIq .mbr-section-title {
  color: #000000;
}
.cid-udYUMiQvIq .mbr-card-title {
  color: #150d1d;
}
.cid-udYUMiQvIq .mbr-text {
  color: #353535;
}
.cid-udYUMjjVC4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYUMjjVC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMjjVC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMjjVC4 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udYUMjjVC4 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-udYUMjjVC4 .container {
    padding: 0 12px;
  }
}
.cid-udYUMjjVC4 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udYUMjjVC4 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-udYUMjjVC4 .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udYUMjjVC4 .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-udYUMjjVC4 .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-udYUMjjVC4 .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-udYUMjjVC4 .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-udYUMjjVC4 .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-udYUMjjVC4 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-udYUMjjVC4 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-udYUMjjVC4 .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-udYUMjjVC4 .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-udYUMjjVC4 .mbr-section-subtitle {
  color: #222222;
}
.cid-udYUMjjVC4 .mbr-text {
  color: #222222;
}
.cid-udYUMjjVC4 .list {
  color: #222222;
}
.cid-udYUMjKGsB {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udYUMjKGsB .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMjKGsB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMjKGsB .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-udYUMjKGsB .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-udYUMjKGsB .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-udYUMjKGsB .card-title {
  color: #0b0c37;
}
.cid-udYUMkoYsC {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #05051e;
}
.cid-udYUMkoYsC .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMkoYsC .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-udYUMkoYsC .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-udYUMkoYsC .row {
  background: #ffffff;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-udYUMkoYsC .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-udYUMkoYsC img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-udYUMkoYsC img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udYUMkoYsC .image-wrapper {
    padding: 1rem;
  }
}
.cid-udYUMkL3Qt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYUMkL3Qt .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMkL3Qt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMkL3Qt .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-udYUMkL3Qt .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-udYUMkL3Qt .container {
    padding: 0 30px;
  }
}
.cid-udYUMkL3Qt .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-udYUMkL3Qt .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-udYUMkL3Qt .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-udYUMkL3Qt .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-udYUMkL3Qt .video-block .video-wrapper .app-video-wrapper::before {
  color: #fff0b0;
  text-shadow: none;
}
.cid-udYUMkL3Qt .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-udYUMkL3Qt .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-udYUMl9wRy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-udYUMl9wRy .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMl9wRy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMl9wRy .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-udYUMl9wRy .container-fluid {
    padding: 0 12px;
  }
}
.cid-udYUMl9wRy .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-udYUMl9wRy .container {
    padding: 0 20px;
  }
}
.cid-udYUMl9wRy .row {
  border-top: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  margin-top: -2px;
}
.cid-udYUMl9wRy .card {
  padding: 0;
  border-radius: 0;
}
.cid-udYUMl9wRy .card:first-child {
  border-right: 2px solid #d7d7d7;
}
.cid-udYUMl9wRy .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-udYUMl9wRy .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-udYUMl9wRy .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-udYUMl9wRy .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-udYUMl9wRy .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-udYUMl9wRy .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-udYUMl9wRy .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udYUMl9wRy .card:last-child {
    padding: 50px 20px;
  }
}
.cid-udYUMl9wRy .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYUMl9wRy .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-udYUMl9wRy .mbr-text {
  color: #ffffff;
}
.cid-udYUMl9wRy .mbr-section-title,
.cid-udYUMl9wRy .mbr-section-btn {
  color: #ffffff;
}
.cid-udYUMlwjeT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYUMlwjeT .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMlwjeT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMlwjeT .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-udYUMlwjeT .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYUMlwjeT .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-udYUMlwjeT .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-udYUMlwjeT .container {
    padding: 0 16px;
  }
}
.cid-udYUMlwjeT .row {
  justify-content: center;
}
.cid-udYUMlwjeT .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-udYUMlwjeT .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-udYUMlwjeT .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-udYUMlwjeT .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-udYUMlwjeT .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-udYUMlwjeT .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-udYUMlwjeT .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-udYUMlwjeT .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-udYUMlwjeT .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-udYUMlwjeT .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udYUMlwjeT .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-udYUMlwjeT .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-udYUMlwjeT .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-udYUMlwjeT .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-udYUMlwjeT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-udYUMlwjeT .panel-title {
  color: #000000;
}
.cid-udYUMlwjeT .panel-text {
  color: #000000;
}
.cid-udYUMm3FXF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #05051e;
}
.cid-udYUMm3FXF .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMm3FXF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMm3FXF .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-udYUMm3FXF .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-udYUMm3FXF .container {
    padding: 0 30px;
  }
}
.cid-udYUMm3FXF .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-udYUMm3FXF .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-udYUMm3FXF .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-udYUMm3FXF .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-udYUMm3FXF .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYUMm3FXF .mbr-section-title {
  color: #ffffff;
}
.cid-udYUMm3FXF .mbr-text {
  color: #ffffff;
}
.cid-udYUMmR7WB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffa76;
}
.cid-udYUMmR7WB .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMmR7WB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMmR7WB .container,
.cid-udYUMmR7WB .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-udYUMmR7WB .container,
  .cid-udYUMmR7WB .container-fluid {
    padding: 0 20px;
  }
}
.cid-udYUMmR7WB .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #05051e;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-udYUMmR7WB .row {
    padding: 85px 8px;
  }
}
.cid-udYUMmR7WB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-udYUMmR7WB .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-udYUMmR7WB .text-wrapper {
  padding: 0 30%;
}
@media (max-width: 992px) {
  .cid-udYUMmR7WB .text-wrapper {
    padding: 0;
  }
}
.cid-udYUMmR7WB .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-udYUMmR7WB .mbr-section-title {
  color: #ffffff;
}
.cid-udYUMmR7WB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udYUMmR7WB .mbr-text {
  color: #150d1d;
}
.cid-udYUMmR7WB .mbr-section-title,
.cid-udYUMmR7WB .title-wrapper {
  color: #150d1d;
  text-align: center;
}
.cid-udZyavFkAc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-udZyavFkAc .mbr-fallback-image.disabled {
  display: none;
}
.cid-udZyavFkAc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-udZyavFkAc .container {
    padding: 0 16px;
  }
}
.cid-udZyavFkAc .row {
  position: relative;
  justify-content: space-between;
}
.cid-udZyavFkAc .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-udZyavFkAc .content-wrapper {
    margin-bottom: 80px;
  }
}
.cid-udZyavFkAc .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-udZyavFkAc .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-udZyavFkAc .content-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-udZyavFkAc .content-wrapper .decor-wrapper {
  margin-top: 32px;
}
.cid-udZyavFkAc .content-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #c4f1f7 -10%, transparent 80%);
}
.cid-udZyavFkAc .panel-group .card {
  border-radius: 20px !important;
  background-color: #fafafa;
  margin-bottom: 24px;
  padding: 32px;
}
.cid-udZyavFkAc .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-udZyavFkAc .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-udZyavFkAc .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udZyavFkAc .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-udZyavFkAc .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-udZyavFkAc .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-udZyavFkAc .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px) scale3d(1, 0, 1);
  opacity: 0;
}
.cid-udZyavFkAc .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0) scale3d(1, 1, 1);
  opacity: 1;
}
.cid-udZyavFkAc .mbr-section-title {
  color: #000000;
}
.cid-udZyavFkAc .mbr-text {
  color: #6f6f6f;
}
.cid-udZyavFkAc .panel-title-edit {
  color: #000000;
}
.cid-udZyavFkAc .panel-text {
  color: #000000;
}
.cid-udZyavFkAc .mbr-section-title,
.cid-udZyavFkAc .mbr-section-btn,
.cid-udZyavFkAc .decor-wrapper {
  color: #fafafa;
}
.cid-udYUMngA7K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-udYUMngA7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMngA7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMngA7K .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-udYUMngA7K .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-udYUMngA7K .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-udYUMngA7K .google-map {
  height: 600px;
  position: relative;
}
.cid-udYUMngA7K .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-udYUMngA7K .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-udYUMngA7K .google-map[data-state] {
  background: #e9e5dc;
}
.cid-udYUMngA7K .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-udYUMngA7K .mbr-section-title {
  text-align: center;
}
.cid-udYUMnGVGR {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #05051e;
}
.cid-udYUMnGVGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-udYUMnGVGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udYUMnGVGR .row {
  justify-content: space-between;
}
.cid-udYUMnGVGR .mbr-section-title {
  margin: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-udYUMnGVGR .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-udYUMnGVGR .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udYUMnGVGR .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-udYUMnGVGR .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-udYUMnGVGR .list li {
  margin-bottom: 25px;
}
.cid-udYUMnGVGR .list li:last-child {
  margin-bottom: 0;
}
.cid-udYUMnGVGR .mbr-desc {
  margin-bottom: 8px;
}
.cid-udYUMnGVGR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-udYUMnGVGR .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-udYUMnGVGR .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #47b5ed;
}
.cid-udYUMnGVGR .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #d2fffe;
  transition: all .3s ease;
}
.cid-udYUMnGVGR .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-udYUMnGVGR .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #d2fffe;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-udYUMnGVGR .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-udYUMnGVGR .mbr-desc,
.cid-udYUMnGVGR .mbr-iconfont {
  color: #ffffff;
}
.cid-udYUMnGVGR .mbr-text,
.cid-udYUMnGVGR .mbr-section-btn {
  color: #ffffff;
}
