body {
  font-family: 'Spline Sans', sans-serif;
}
.display-1 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #253c57 !important;
}
.bg-success {
  background-color: #bee1e6 !important;
}
.bg-info {
  background-color: #415d7d !important;
}
.bg-warning {
  background-color: #eeff42 !important;
}
.bg-danger {
  background-color: #fd7578 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #253c57 !important;
  border-color: #253c57 !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: #34557b !important;
  border-color: #34557b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #34557b !important;
  border-color: #34557b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ee494d !important;
  border-color: #ee494d !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: #f2787b !important;
  border-color: #f2787b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #f2787b !important;
  border-color: #f2787b !important;
}
.btn-info,
.btn-info:active {
  background-color: #415d7d !important;
  border-color: #415d7d !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: #52769f !important;
  border-color: #52769f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #52769f !important;
  border-color: #52769f !important;
}
.btn-success,
.btn-success:active {
  background-color: #bee1e6 !important;
  border-color: #bee1e6 !important;
  color: #2e6e77 !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: #3c909c !important;
  background-color: #e3f2f4 !important;
  border-color: #e3f2f4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #2e6e77 !important;
  background-color: #e3f2f4 !important;
  border-color: #e3f2f4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #eeff42 !important;
  border-color: #eeff42 !important;
  color: #3c4200 !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: #6a7500 !important;
  background-color: #f3ff75 !important;
  border-color: #f3ff75 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #3c4200 !important;
  background-color: #f3ff75 !important;
  border-color: #f3ff75 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fd7578 !important;
  border-color: #fd7578 !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: #fea7a9 !important;
  border-color: #fea7a9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #fea7a9 !important;
  border-color: #fea7a9 !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: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #253c57;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #34557b !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: #253c57 !important;
  border-color: #253c57 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee494d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #f2787b !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: #ee494d !important;
  border-color: #ee494d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #415d7d;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #52769f !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: #415d7d !important;
  border-color: #415d7d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bee1e6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e3f2f4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #2e6e77 !important;
  background-color: #bee1e6 !important;
  border-color: #bee1e6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eeff42;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f3ff75 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #3c4200 !important;
  background-color: #eeff42 !important;
  border-color: #eeff42 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fd7578;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #fea7a9 !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: #fd7578 !important;
  border-color: #fd7578 !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: #3d3d3d !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: #ffffff !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: #253c57 !important;
}
.text-secondary {
  color: #ee494d !important;
}
.text-success {
  color: #bee1e6 !important;
}
.text-info {
  color: #415d7d !important;
}
.text-warning {
  color: #eeff42 !important;
}
.text-danger {
  color: #fd7578 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #070b0f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #bf1216 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #74bfca !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1e2b3a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #c7db00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #fc1016 !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: #253c57;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #415d7d;
}
.alert-warning {
  background-color: #eeff42;
}
.alert-danger {
  background-color: #fd7578;
}
.mbr-gallery-filter li.active .btn {
  background-color: #253c57;
  border-color: #253c57;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #253c57;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4b7ab0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #809dbd;
}
.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: 'Spline Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #253c57 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #253c57;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #253c57;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #253c57;
}
.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: #253c57;
  border-bottom-color: #253c57;
}
.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: #253c57 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ee494d !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='%23253c57' %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-sV8w6Wn8vc {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
@media (min-width: 992px) {
  .cid-sV8w6Wn8vc .display-1 {
    font-size: 120px;
  }
  .cid-sV8w6Wn8vc .display-2 {
    font-size: 40px;
  }
  .cid-sV8w6Wn8vc .display-5 {
    font-size: 29px;
  }
}
.cid-sV8w6Wn8vc .mbr-section-subtitle {
  font-weight: 300;
  color: #3a3835;
}
.cid-sV8w6Wn8vc .mbr-section-btn {
  z-index: 3;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  bottom: -55px;
}
@media (max-width: 991px) {
  .cid-sV8w6Wn8vc .mbr-section-btn {
    width: 100%;
    bottom: 0px;
  }
}
.cid-sV8w6Wn8vc .btn-success {
  color: #18293D !important;
}
.cid-sV8w6Wn8vc .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 110px;
  padding-right: 120px;
  padding-left: 120px;
  margin: 0;
}
.cid-sV8w6Wn8vc .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
@media (max-width: 991px) {
  .cid-sV8w6Wn8vc .btn {
    width: 50%;
    min-height: 80px;
  }
}
@media (max-width: 767px) {
  .cid-sV8w6Wn8vc .btn {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.cid-sV8w6Wn8vc .one:hover {
  background: #EeFF42 !important;
  border-color: #EeFF42 !important;
}
.cid-sV8w6Wn8vc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sV8w6Wn8vc .soc-item {
  align-items: center;
  padding: 0.5rem 0.5rem 0.4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  font-size: 16px;
  background: #000000;
  cursor: pointer;
  margin-right: 1.5rem;
  height: 25px;
  width: 25px;
}
.cid-sV8w6Wn8vc .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sV8w6Wn8vc .mbr-section-title {
  color: #253c57;
}
.cid-sV8vkg6TO5 {
  overflow: visible !important;
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-sV8vkg6TO5 {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  .cid-sV8vkg6TO5 {
    padding-top: 2.4rem;
    padding-bottom: 3rem;
  }
}
.cid-sV8vkg6TO5 .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-sV8vkg6TO5 .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .text {
    min-width: 615px;
    transform: translate(-25%, 0rem);
  }
}
.cid-sV8vkg6TO5 .text-wrapper {
  background: #e8eaec;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-sV8vkg6TO5 .mbr-text {
  font-weight: 300;
}
@media (min-width: 992px) {
  .cid-sV8vkg6TO5 .display-1 {
    font-size: 65px;
  }
  .cid-sV8vkg6TO5 .display-5 {
    font-size: 29px;
  }
}
.cid-sV8vkg6TO5 .mbr-section-btn {
  background: #e8eaec;
  margin-left: 0;
  margin-right: 0;
}
.cid-sV8vkg6TO5 .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-sV8vkg6TO5 .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-sV8voJvft5 {
  overflow: visible !important;
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sV8voJvft5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-sV8voJvft5 .container-fluid {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .row {
    margin-bottom: -390px;
    margin-bottom: -310px;
    margin-bottom: -340px;
  }
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .display-1 {
    font-size: 65px;
  }
  .cid-sV8voJvft5 .display-5 {
    font-size: 29px;
  }
  .cid-sV8voJvft5 .display-7 {
    font-size: 24px;
  }
  .cid-sV8voJvft5 .display-4 {
    font-weight: 300;
  }
}
.cid-sV8voJvft5 .parallax {
  background-image: url("../../../assets/images/73257239ca8eeb5498a576ced40c2854-2000x1333.jpg");
  height: 400px;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  position: relative;
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .parallax {
    height: 640px;
  }
}
.cid-sV8voJvft5 .index {
  z-index: 3;
}
.cid-sV8voJvft5 .text {
  padding: 0;
  background: #d3f1f5;
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .text {
    width: 777px;
    transform: translate(-35.3%, -75%);
  }
}
@media (min-width: 1400px) {
  .cid-sV8voJvft5 .text {
    transform: translate(-47%, -75%);
  }
}
@media (min-width: 1400px) {
  .cid-sV8voJvft5 .text {
    transform: translate(-7%, -75%);
  }
}
.cid-sV8voJvft5 .wrapper {
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .wrapper {
    padding: 80px 127px 40px;
  }
}
.cid-sV8voJvft5 .mbr-text {
  font-weight: 300;
}
.cid-sV8voJvft5 .mbr-section-btn {
  background: #d3f1f5;
  margin-left: 0;
  margin-right: 0;
}
.cid-sV8voJvft5 .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 70px;
  padding-left: 70px;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sV8voJvft5 .btn {
    width: 100%;
  }
}
.cid-sV8voJvft5 .btn:hover {
  background: #18293D !important;
  border-color: #18293D !important;
  color: #fff !important;
}
.cid-t153UZ8dBp {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-t153UZ8dBp img,
.cid-t153UZ8dBp .item-img {
  height: 290px;
  object-fit: cover;
  width: 100%;
}
.cid-t153UZ8dBp img:hover,
.cid-t153UZ8dBp .item-img:hover {
  filter: brightness(85%);
}
.cid-t153UZ8dBp .item:focus,
.cid-t153UZ8dBp span:focus {
  outline: none;
}
.cid-t153UZ8dBp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t153UZ8dBp .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t153UZ8dBp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t153UZ8dBp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t153UZ8dBp .mbr-section-title {
  margin-bottom: 87px;
}
.cid-t153UZ8dBp .mbr-text,
.cid-t153UZ8dBp .mbr-section-btn {
  text-align: center;
}
.cid-t153UZ8dBp .item-title {
  text-align: center;
  transition: all .5s;
}
.cid-t153UZ8dBp .item-subtitle {
  text-align: left;
}
.cid-t153UZ8dBp .btn {
  color: #18293D !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  margin: 0;
  padding: 8px 16px;
}
@media (min-width: 992px) {
  .cid-t153UZ8dBp .display-1 {
    font-size: 65px;
  }
  .cid-t153UZ8dBp .display-5 {
    font-size: 29px;
  }
  .cid-t153UZ8dBp .display-7 {
    font-size: 24px;
  }
}
.cid-t1666maZl4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t1666maZl4 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-t1666maZl4 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-t1666maZl4 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t1666maZl4 textarea.form-control {
  min-height: 214.5px;
}
.cid-t1666maZl4 .btn {
  margin: 0 auto !important;
}
.cid-t1666maZl4 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-t1666maZl4 h4,
.cid-t1666maZl4 p {
  margin: 0;
}
.cid-t1666maZl4 h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-t1666maZl4 h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-t1666maZl4 h2 {
    text-align: center;
  }
  .cid-t1666maZl4 h3 {
    text-align: center;
  }
  .cid-t1666maZl4 .input-group-btn {
    text-align: center;
  }
  .cid-t1666maZl4 .social-list {
    text-align: center;
  }
  .cid-t1666maZl4 .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-t1666maZl4 H2 {
  color: #656565;
}
.cid-t1666maZl4 .content {
  text-align: left;
  color: #656565;
}
.cid-t1666maZl4 .type {
  text-align: left;
  padding-bottom: 8px;
  color: #232323;
}
.cid-t1666maZl4 .title1 {
  text-align: center;
  color: #18293d;
  margin-bottom: 0.7rem;
  margin-bottom: 1.5rem;
}
.cid-t1666maZl4 .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-t1666maZl4 .title2 {
  margin-bottom: 1.30rem;
  color: #47a15d;
  text-align: center;
}
.cid-t16cFpGvi9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpeg");
}
.cid-t16cFpGvi9 .cards-bg1 {
  background: #e8eaec;
}
.cid-t16cFpGvi9 .cards-bg2 {
  background: #f3f7f9;
}
.cid-t16cFpGvi9 .cards-bg3 {
  background: #d3f1f5;
}
.cid-t16cFpGvi9 .cards-bg4 {
  background: #fafafa;
}
.cid-t16cFpGvi9 .card-wrapper {
  padding: 3rem 1rem 1rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
@media (min-width: 0) and (max-width: 1199px) {
  .cid-t16cFpGvi9 .card-wrapper {
    padding: 1rem 0.5rem;
    border-radius: 8px;
  }
}
.cid-sV8vsLBCZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e8eaec;
  overflow: hidden;
}
.cid-sV8vsLBCZG .media-container-row .mbr-text {
  color: #727272;
}
.cid-sV8vsLBCZG .mbr-text {
  font-weight: 300;
}
#custom-html-9 div {
  padding: 40px 40px;
  color: #141229;
  text-align: left;
  background: #ffffff;
  font-family: helvetica;
}
#custom-html-9 p {
  color: #141229;
}
#custom-html-9 h1 {
  font-size: 1.8rem;
  padding: 40px 0 0 0;
  text-decoration: underline;
}
