.btn {
  border-width: 2px;
}
body {
  font-family: Gloock;
}
.display-1 {
  font-family: 'Gloock', serif;
  font-size: 5rem;
  line-height: 80px;
  letter-spacing: 0.99px;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Gloock', serif;
  font-size: 3.125rem;
  line-height: 60px;
  letter-spacing: 0.99px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.375rem;
  line-height: 60px;
  letter-spacing: 2.4px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Gloock', serif;
  font-size: 1.875rem;
  line-height: 30px;
  letter-spacing: 0.99px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.5rem;
  line-height: 35px;
  letter-spacing: normal;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #f8ab8c !important;
}
.bg-success {
  background-color: #e6c16d !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #e0ae8a !important;
}
.bg-danger {
  background-color: #985b30 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f8ab8c !important;
  border-color: #f8ab8c !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: #f36f3a !important;
  border-color: #f36f3a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f36f3a !important;
  border-color: #f36f3a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #263a5c !important;
  border-color: #263a5c !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: #0d131f !important;
  border-color: #0d131f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d131f !important;
  border-color: #0d131f !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e6c16d !important;
  border-color: #e6c16d !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: #d7a125 !important;
  border-color: #d7a125 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d7a125 !important;
  border-color: #d7a125 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e0ae8a !important;
  border-color: #e0ae8a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ce7f45 !important;
  border-color: #ce7f45 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ce7f45 !important;
  border-color: #ce7f45 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #985b30 !important;
  border-color: #985b30 !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: #56341b !important;
  border-color: #56341b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #56341b !important;
  border-color: #56341b !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: #f8ab8c;
  color: #f8ab8c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #f36f3a !important;
  background-color: transparent!important;
  border-color: #f36f3a !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f8ab8c !important;
  border-color: #f8ab8c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #263a5c;
  color: #263a5c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0d131f !important;
  background-color: transparent!important;
  border-color: #0d131f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #263a5c !important;
  border-color: #263a5c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #e6c16d;
  color: #e6c16d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d7a125 !important;
  background-color: transparent!important;
  border-color: #d7a125 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c16d !important;
  border-color: #e6c16d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #e0ae8a;
  color: #e0ae8a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ce7f45 !important;
  background-color: transparent!important;
  border-color: #ce7f45 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e0ae8a !important;
  border-color: #e0ae8a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #985b30;
  color: #985b30;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #56341b !important;
  background-color: transparent!important;
  border-color: #56341b !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #985b30 !important;
  border-color: #985b30 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #f8ab8c !important;
}
.text-secondary {
  color: #263a5c !important;
}
.text-success {
  color: #e6c16d !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #e0ae8a !important;
}
.text-danger {
  color: #985b30 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f2652c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #080c14 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ca9723 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cb7639 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4a2d18 !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: #f8ab8c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #e0ae8a;
}
.alert-danger {
  background-color: #985b30;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f8ab8c;
  border-color: #f8ab8c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f8ab8c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #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: #d39c74;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.375rem;
  line-height: 60px;
  letter-spacing: 2.4px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.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: #f8ab8c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.375rem;
  line-height: 60px;
  letter-spacing: 2.4px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #f8ab8c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f8ab8c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f8ab8c;
}
.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: #f8ab8c;
  border-bottom-color: #f8ab8c;
}
.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: #000000 !important;
  background-color: #f8ab8c !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: #263a5c !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='%23f8ab8c' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  padding: 0 60px;
  box-shadow: none;
}
@media (max-width: 768px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 15px 30px;
  }
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  font-size: 14px;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #f8ab8c;
  border-radius: 0;
}
.mbr-section-btn .btn-primary-outline .mbr-iconfont,
.mbr-section-btn-main .btn-primary-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus {
  border-bottom: 2px solid #f8ab8c !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #263a5c;
  border-radius: 0;
}
.mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.mbr-section-btn-main .btn-secondary-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus {
  border-bottom: 2px solid #263a5c !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #e6c16d;
  border-radius: 0;
}
.mbr-section-btn .btn-success-outline .mbr-iconfont,
.mbr-section-btn-main .btn-success-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus {
  border-bottom: 2px solid #e6c16d !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.mbr-section-btn .btn-info-outline .mbr-iconfont,
.mbr-section-btn-main .btn-info-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #985b30;
  border-radius: 0;
}
.mbr-section-btn .btn-danger-outline .mbr-iconfont,
.mbr-section-btn-main .btn-danger-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus {
  border-bottom: 2px solid #985b30 !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #e0ae8a;
  border-radius: 0;
}
.mbr-section-btn .btn-warning-outline .mbr-iconfont,
.mbr-section-btn-main .btn-warning-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus {
  border-bottom: 2px solid #e0ae8a !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #000000;
  border-radius: 0;
}
.mbr-section-btn .btn-black-outline .mbr-iconfont,
.mbr-section-btn-main .btn-black-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus {
  border-bottom: 2px solid #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.mbr-section-btn .btn-white-outline .mbr-iconfont,
.mbr-section-btn-main .btn-white-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-ufpq68ceM2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #30653f;
}
.cid-ufpq68ceM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufpq68ceM2 .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-ufpq68ceM2 .container {
    padding: 0 24px;
  }
}
.cid-ufpq68ceM2 .card-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-ufpq68ceM2 .card-wrapper {
    display: block;
  }
}
.cid-ufpq68ceM2 .card-wrapper .number-wrap {
  position: relative;
  width: 72px;
  display: inline-flex;
  justify-content: center;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ufpq68ceM2 .card-wrapper .number-wrap {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 28px;
  }
}
.cid-ufpq68ceM2 .card-wrapper .number-wrap .mbr-number {
  position: relative;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c7b1ff;
  border-radius: 100%;
  z-index: 1;
  margin-bottom: 0;
}
.cid-ufpq68ceM2 .card-wrapper .number-wrap::before {
  content: '';
  position: absolute;
  top: -50vh;
  width: 1px;
  height: 200vh;
  background-color: #ffffff;
  opacity: .33;
}
@media (max-width: 992px) {
  .cid-ufpq68ceM2 .card-wrapper .number-wrap::before {
    display: none;
  }
}
.cid-ufpq68ceM2 .card-wrapper .card-wrap .title-wrap .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  width: 40%;
}
@media (max-width: 1200px) {
  .cid-ufpq68ceM2 .card-wrapper .card-wrap .title-wrap .mbr-section-title {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-ufpq68ceM2 .card-wrapper .card-wrap .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 66px;
  gap: 24px;
}
@media (max-width: 992px) {
  .cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item {
  background-color: #fdfcfa;
  border-radius: .8rem !important;
  padding: 32px 36px;
}
@media (max-width: 1199px) {
  .cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item {
    padding: 20px;
  }
}
.cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 28px;
  }
}
.cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #c7b1ff;
  display: inline-flex;
}
.cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .card-title {
    margin-bottom: 28px;
  }
}
.cid-ufpq68ceM2 .card-wrapper .card-wrap .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-ufpq68ceM2 .mbr-section-title {
  color: #ffffff;
}
.cid-ufpq68ceM2 .mbr-text {
  color: #ffffff;
}
.cid-ufpq68ceM2 .card-number {
  color: #202020;
}
.cid-ufpq68ceM2 .card-title {
  color: #202020;
}
.cid-ufpq68ceM2 .card-text {
  color: #30653f;
}
.cid-ufpq68ceM2 .card-title,
.cid-ufpq68ceM2 .icon-wrapper {
  color: #30653f;
}
.cid-ufm7JswgVe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #b2d5ca;
}
.cid-ufm7JswgVe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufm7JswgVe .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-ufm7JswgVe .container {
    padding: 0;
  }
}
.cid-ufm7JswgVe .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-ufm7JswgVe .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ufm7JswgVe .embla__slide a {
  display: block;
  width: 100%;
}
.cid-ufm7JswgVe .embla__slide a .card-wrap {
  width: 100%;
}
.cid-ufm7JswgVe .embla__slide a .card-wrap .item-wrapper .image-wrap {
  position: relative;
  height: 630px;
}
@media (max-width: 768px) {
  .cid-ufm7JswgVe .embla__slide a .card-wrap .item-wrapper .image-wrap {
    height: 450px;
  }
}
.cid-ufm7JswgVe .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-ufm7JswgVe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}
.cid-ufm7JswgVe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-box {
  width: 115px;
  height: 115px;
  background-color: #235d81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-ufm7JswgVe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-box {
    height: 50px;
    width: 50px;
  }
}
.cid-ufm7JswgVe .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-section-title {
  padding: 22px 16px;
  margin-bottom: 0;
}
.cid-ufm7JswgVe .embla__button--next,
.cid-ufm7JswgVe .embla__button--prev {
  display: flex;
}
.cid-ufm7JswgVe .embla__button {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 24px;
  background-color: #ffeec7;
  color: #d17756;
  border: none;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-ufm7JswgVe .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ufm7JswgVe .embla__button:hover {
  background-color: #ffeec7;
  color: #d17756;
}
.cid-ufm7JswgVe .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-ufm7JswgVe .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-ufm7JswgVe .embla__button {
    top: 50%;
    width: 48px;
    height: 48px;
  }
}
.cid-ufm7JswgVe .embla {
  position: relative;
  width: 100%;
}
.cid-ufm7JswgVe .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ufm7JswgVe .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ufm7JswgVe .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ufm7JswgVe .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ufm7JswgVe .mbr-section-title {
  color: #ffffff;
}
.cid-ufm7JswgVe .mbr-box {
  color: #ffffff;
}
.cid-v7Xzxi4uOG {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-v7Xzxi4uOG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Xzxi4uOG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Xzxi4uOG .image-wrap {
  height: 400px;
}
@media (max-width: 992px) {
  .cid-v7Xzxi4uOG .image-wrap {
    height: 300px;
  }
}
.cid-v7XzAxnof7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-v7XzAxnof7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7XzAxnof7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7XzAxnof7 .image-wrapper {
  height: 400px;
}
@media (max-width: 992px) {
  .cid-v7XzAxnof7 .image-wrapper {
    height: 320px;
  }
}
#custom-html-x {
  /* Type valid CSS here */
}
.cid-udnFXsCS0a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdfcfa;
}
.cid-udnFXsCS0a .mbr-text {
  color: #FFFCF5;
}
.cid-udnFXsCS0a .media-container-row .mbr-text {
  color: #232323;
}
#custom-html-r {
  /* Type valid CSS here */
}
#custom-html-r div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-r p {
  font-size: 60px;
  color: #777;
}
.cid-udnFXsCS0a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdfcfa;
}
.cid-udnFXsCS0a .mbr-text {
  color: #FFFCF5;
}
.cid-udnFXsCS0a .media-container-row .mbr-text {
  color: #232323;
}
.cid-v7S1jR0vLa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-v7S1jR0vLa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7S1jR0vLa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7S1jR0vLa .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v7S1jR0vLa .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v7S1jR0vLa .container {
    padding: 0;
  }
}
.cid-v7S1jR0vLa .row {
  justify-content: center;
}
.cid-v7S1jR0vLa .title-wrapper {
  padding: 0 16px;
}
.cid-v7S1jR0vLa .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v7S1jR0vLa .mbr-section-title {
  color: #263652;
}
.cid-udnFXsCS0a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fdfcfa;
}
.cid-udnFXsCS0a .mbr-text {
  color: #FFFCF5;
}
.cid-udnFXsCS0a .media-container-row .mbr-text {
  color: #232323;
}
