body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 7.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.375rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.25rem;
    font-size: calc( 3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((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: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #000000 !important;
}
.bg-success {
  background-color: #05668d !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #344055 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #05668d !important;
  border-color: #05668d !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: #022939 !important;
  border-color: #022939 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #022939 !important;
  border-color: #022939 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #344055 !important;
  border-color: #344055 !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: #13171f !important;
  border-color: #13171f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #13171f !important;
  border-color: #13171f !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #05668d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #022939 !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: #05668d !important;
  border-color: #05668d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #344055;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #13171f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #344055 !important;
  border-color: #344055 !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: #000000 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #05668d !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #344055 !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: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #021f2a !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: #0d1016 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #344055;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #1bb8f7;
}
.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: #a6b3c9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', 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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #ffffff !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='%23000000' %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-txb47l1wHN {
  background-image: url("../../../assets/images/shoe-human-body-fashion-flash-photography-lg-800x1000.webp");
}
.cid-txb47l1wHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-txb47l1wHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txb47l1wHN .container-fluid {
  padding: 0;
}
.cid-txb47l1wHN .row {
  padding: 0;
}
.cid-txb47l1wHN .title-wrapper {
  padding: 0 2rem;
}
.cid-txb47l1wHN .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cid-txb47l1wHN .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-txb47l1wHN .title-wrapper .mbr-section-title span {
  color: #ffffff;
}
.cid-txb47l1wHN .title-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cid-txb47l1wHN .title-wrapper .mbr-text {
    margin-bottom: 14px;
  }
}
.cid-txb47l1wHN .mbr-section-title {
  color: #FFFFFF;
}
.cid-txb47l1wHN .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-txb47l1wHN .mbr-section-title,
.cid-txb47l1wHN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-txbdk2YN1T {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-txbdk2YN1T .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-txbdk2YN1T .mbr-section-title {
  color: #344055;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-txbdk2YN1T .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-txbdk2YN1T .mbr-section-subtitle {
  color: #344055;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-txbdk2YN1T .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-txbdk2YN1T .mbr-text {
  color: #000000;
}
.cid-uhzg9fYPe4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uhzg9fYPe4 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhzg9fYPe4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhzg9fYPe4 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uhzgzZGSH0 {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uhzgzZGSH0 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uhzgzZGSH0 .mbr-section-title {
  color: #344055;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uhzgzZGSH0 .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uhzgzZGSH0 .mbr-section-subtitle {
  color: #344055;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uhzgzZGSH0 .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uhzgzZGSH0 .mbr-text {
  color: #000000;
}
.cid-uhziFEzOYT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhziFEzOYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhziFEzOYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhziFEzOYT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhziFEzOYT .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uhziFEzOYT .container {
    padding: 0 25px;
  }
}
.cid-uhziFEzOYT .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uhziFEzOYT .mbr-section-btn .btn {
  width: 100%;
  padding: 70px 20px;
  border-radius: 5em;
}
@media (max-width: 992px) {
  .cid-uhziFEzOYT .mbr-section-btn .btn {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .cid-uhziFEzOYT .mbr-section-btn .btn {
    padding: 20px;
  }
}
.cid-uhziFEzOYT .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 24px;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .cid-uhziFEzOYT .mbr-section-btn .btn .mbr-iconfont {
    display: none;
  }
}
.cid-uhziFEzOYT .mbr-section-btn .btn:hover .mbr-iconfont,
.cid-uhziFEzOYT .mbr-section-btn .btn:focus .mbr-iconfont {
  transform: rotate(0);
}
#custom-html-18 {
  /* Type valid CSS here */
}
#custom-html-18 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-18 p {
  font-size: 60px;
  color: #777;
}
.cid-txlao10oCx {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-txlao10oCx .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlao10oCx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlao10oCx .row {
  align-items: center;
}
.cid-txlao10oCx img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-txlao10oCx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txlao10oCx .mbr-section-title {
  color: #1b224b;
}
.cid-txlao10oCx .mbr-text,
.cid-txlao10oCx .mbr-section-btn {
  color: #000000;
}
.cid-uhzkpQXkaH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhzkpQXkaH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhzkpQXkaH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhzkpQXkaH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhzkpQXkaH .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uhzkpQXkaH .container {
    padding: 0 25px;
  }
}
.cid-uhzkpQXkaH .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uhzkpQXkaH .mbr-section-btn .btn {
  width: 100%;
  padding: 70px 20px;
  border-radius: 5em;
}
@media (max-width: 992px) {
  .cid-uhzkpQXkaH .mbr-section-btn .btn {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .cid-uhzkpQXkaH .mbr-section-btn .btn {
    padding: 20px;
  }
}
.cid-uhzkpQXkaH .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 24px;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .cid-uhzkpQXkaH .mbr-section-btn .btn .mbr-iconfont {
    display: none;
  }
}
.cid-uhzkpQXkaH .mbr-section-btn .btn:hover .mbr-iconfont,
.cid-uhzkpQXkaH .mbr-section-btn .btn:focus .mbr-iconfont {
  transform: rotate(0);
}
.cid-txbhNORobg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-txbhNORobg .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbhNORobg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txbhNORobg .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-txbhNORobg .row {
    align-items: center !important;
  }
}
.cid-txbhNORobg .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-txbhNORobg .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-txbhNORobg .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-txbhNORobg .mbr-section-title {
  color: #232323;
  margin-bottom: 0;
}
.cid-txbhNORobg .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-txbhNORobg .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-txbhNORobg .text-wrap {
    padding: 30px 0;
  }
}
.cid-txbhNORobg .mbr-title {
  color: #344055;
}
.cid-txbhNORobg .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-txbhNORobg .list-box {
  width: 100%;
}
.cid-txbhNORobg .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-txbhNORobg .list-text {
  position: relative;
}
.cid-txbhNORobg .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-txbhNORobg .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-txbhNORobg .mbr-section-btn {
  margin-top: 20px;
}
.cid-txbhNORobg .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-txbhNORobg .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-txbhNORobg .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-txbhNORobg .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uhDMB5myNJ {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhDMB5myNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDMB5myNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDMB5myNJ .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-uhDMB5myNJ .item .icon-wrap {
  text-align: center;
}
.cid-uhDMB5myNJ .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-uhDMB5myNJ .item:last-child:before {
  display: none;
}
.cid-uhDMB5myNJ .item.last::before {
  display: none;
}
.cid-uhDMB5myNJ .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-uhDMB5myNJ .text-box {
  text-align: center;
}
.cid-uhDMB5myNJ span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-uhDMB5myNJ .card {
    margin-bottom: 2rem;
  }
  .cid-uhDMB5myNJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-txbixNNX63 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-txbixNNX63 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbixNNX63 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txbixNNX63 .text-wrap {
  width: 100%;
}
.cid-txbixNNX63 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-txbixNNX63 .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-txbixNNX63 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-txbixNNX63 .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-txbixNNX63 .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-txbixNNX63 .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-txbixNNX63 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  overflow: hidden;
  border: 1px solid rgba(5, 102, 141, 0.8);
  border-radius: 45px;
}
.cid-txbixNNX63 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-txbixNNX63 .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-txbixNNX63 .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(5, 102, 141, 0.8);
  background-color: rgba(34, 165, 229, 0.8);
}
.cid-txbixNNX63 .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-txbixNNX63 .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-txbixNNX63 .item-text {
  color: #353535;
  margin: 0;
}
.cid-txbixNNX63 .mbr-section-btn {
  margin-top: 10px;
}
.cid-txbixNNX63 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-txbixNNX63 .item-text,
.cid-txbixNNX63 .mbr-section-btn {
  color: #344055;
}
.cid-txbiyrdQs7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-txbiyrdQs7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbiyrdQs7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txbiyrdQs7 .text-wrap {
  width: 100%;
}
.cid-txbiyrdQs7 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-txbiyrdQs7 .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-txbiyrdQs7 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-txbiyrdQs7 .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-txbiyrdQs7 .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-txbiyrdQs7 .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-txbiyrdQs7 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  overflow: hidden;
  border: 1px solid rgba(5, 102, 141, 0.8);
  border-radius: 45px;
}
.cid-txbiyrdQs7 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-txbiyrdQs7 .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-txbiyrdQs7 .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(5, 102, 141, 0.8);
  background-color: rgba(34, 165, 229, 0.8);
}
.cid-txbiyrdQs7 .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-txbiyrdQs7 .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-txbiyrdQs7 .item-text {
  color: #353535;
  margin: 0;
}
.cid-txbiyrdQs7 .mbr-section-btn {
  margin-top: 10px;
}
.cid-txbiyrdQs7 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-txbiyrdQs7 .item-text,
.cid-txbiyrdQs7 .mbr-section-btn {
  color: #344055;
}
.cid-txbfRk7RA8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-txbfRk7RA8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbfRk7RA8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txbfRk7RA8 .row {
  justify-content: center;
}
.cid-txbfRk7RA8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-txbfRk7RA8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-txbfRk7RA8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-txbfRk7RA8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-txbfRk7RA8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-txbfRk7RA8 .mbr-text_1,
.cid-txbfRk7RA8 .mbr-text_2,
.cid-txbfRk7RA8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-txbfRk7RA8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #052734;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-txbfRk7RA8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #334d7a;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-txbfRk7RA8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #2e7490;
}
.cid-txbfRk7RA8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #2e7490;
}
.cid-txbfRk7RA8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #052734;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-txbfRk7RA8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #334d7a;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-txbfRk7RA8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #334d7a;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-txbfRk7RA8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #052734;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-txbfRk7RA8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #2e7490;
}
.cid-txbfRk7RA8 .mbr-section-title {
  color: #344055;
  text-align: center;
}
.cid-txbfRk7RA8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-txbfRk7RA8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-txbfRk7RA8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-txbfRk7RA8 .mbr-section-title DIV {
  text-align: left;
}
.cid-txbnhSYwtA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5d75;
}
.cid-txbnhSYwtA .mbr-text {
  color: #FFFCF5;
}
.cid-tCmbEVWewQ {
  background-image: url("../../../assets/images/clothing-fashion-model-blue-dress-turquoise-aqua-pencil-skirt-lg-auto-x2-1600x2400.webp");
}
.cid-tCmbEVWewQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCmbEVWewQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCmbEVWewQ .container-fluid {
  padding: 0;
}
.cid-tCmbEVWewQ .row {
  padding: 0;
}
.cid-tCmbEVWewQ .title-wrapper {
  padding: 0 2rem;
}
.cid-tCmbEVWewQ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cid-tCmbEVWewQ .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-tCmbEVWewQ .title-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-tCmbEVWewQ .title-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cid-tCmbEVWewQ .title-wrapper .mbr-text {
    margin-bottom: 14px;
  }
}
.cid-tCmbEVWewQ .mbr-section-title {
  color: #FFFFFF;
}
.cid-tCmbEVWewQ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tCmbEVWewQ .mbr-section-title,
.cid-tCmbEVWewQ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCmbEWgICg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tCmbEWgICg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCmbEWgICg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCmbEWgICg .row {
  justify-content: center;
}
.cid-tCmbEWgICg .item {
  margin-bottom: 2rem;
}
.cid-tCmbEWgICg .item .item-wrapper .img-wrapper {
  height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 12px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tCmbEWgICg .item .item-wrapper .img-wrapper {
    max-height: 480px;
  }
}
.cid-tCmbEWgICg .item .item-wrapper .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 600px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tCmbEWgICg .item .item-wrapper .img-wrapper img:hover {
  transform: scale(1.1, 1.1);
}
@media (max-width: 992px) {
  .cid-tCmbEWgICg .item .item-wrapper .img-wrapper img {
    max-height: 480px;
  }
}
.cid-tCmbEWgICg .item .item-wrapper .img-wrapper .mbr-section-title {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  pointer-events: visible;
  line-height: 74%;
}
.cid-tCmbEWgICg .item .item-wrapper .mbr-text {
  margin-bottom: 0;
  transition: all .3s ease;
  opacity: .5;
}
.cid-tCmbEWgICg .item-link {
  width: 100%;
  height: 100%;
  display: block;
}
.cid-tCmbEWgICg .mbr-section-title {
  color: #FFFFFF;
}
.cid-tCmbEWgICg .mbr-text {
  color: #000000;
}
.cid-tCmbEWF7FT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tCmbEWF7FT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tCmbEWF7FT .mbr-section-head {
  margin-bottom: 60px;
}
.cid-tCmbEWF7FT .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tCmbEWF7FT .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-tCmbEWF7FT .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tCmbEWF7FT form {
  width: 100%;
}
.cid-tCmbEWF7FT form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tCmbEWF7FT form p {
  color: #747474;
}
.cid-tCmbEWF7FT form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tCmbEWF7FT form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-tCmbEWF7FT form .form-group {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
.cid-tCmbEWF7FT form .form-control {
  height: 48px;
  border: 1px solid #e1e1e1 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 3px !important;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  transition: .3s;
}
.cid-tCmbEWF7FT form .form-control::-webkit-input-placeholder {
  color: #747474;
}
.cid-tCmbEWF7FT form .form-control::-moz-placeholder {
  color: #747474;
}
.cid-tCmbEWF7FT form .form-control:-moz-placeholder {
  color: #747474;
}
.cid-tCmbEWF7FT form .form-control:-ms-input-placeholder {
  color: #747474;
}
.cid-tCmbEWF7FT form select {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form textarea {
  height: 135px !important;
  min-height: 135px !important;
  padding: 12px;
  resize: none;
}
.cid-tCmbEWF7FT form textarea::-webkit-input-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form textarea::-moz-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form textarea:-moz-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form textarea:-ms-input-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form input,
.cid-tCmbEWF7FT form textarea {
  transition: .4s all;
}
.cid-tCmbEWF7FT form input:active,
.cid-tCmbEWF7FT form textarea:active,
.cid-tCmbEWF7FT form input:focus,
.cid-tCmbEWF7FT form textarea:focus {
  background-color: transparent !important;
  border-color: #a1c4e4 !important;
  outline: none !important;
}
.cid-tCmbEWF7FT form input:active::-webkit-input-placeholder,
.cid-tCmbEWF7FT form textarea:active::-webkit-input-placeholder,
.cid-tCmbEWF7FT form input:focus::-webkit-input-placeholder,
.cid-tCmbEWF7FT form textarea:focus::-webkit-input-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form input:active::-moz-placeholder,
.cid-tCmbEWF7FT form textarea:active::-moz-placeholder,
.cid-tCmbEWF7FT form input:focus::-moz-placeholder,
.cid-tCmbEWF7FT form textarea:focus::-moz-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form input:active:-moz-placeholder,
.cid-tCmbEWF7FT form textarea:active:-moz-placeholder,
.cid-tCmbEWF7FT form input:focus:-moz-placeholder,
.cid-tCmbEWF7FT form textarea:focus:-moz-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form input:active:-ms-input-placeholder,
.cid-tCmbEWF7FT form textarea:active:-ms-input-placeholder,
.cid-tCmbEWF7FT form input:focus:-ms-input-placeholder,
.cid-tCmbEWF7FT form textarea:focus:-ms-input-placeholder {
  color: #747474 !important;
}
.cid-tCmbEWF7FT form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tCmbEWF7FT form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tCmbEWF7FT form label {
  width: 100%;
  color: #000000;
  margin-bottom: 5px;
}
.cid-tCmbEWF7FT form .form-check label {
  color: #000000;
}
.cid-tCmbEWF7FT form .form-check-input {
  border-color: #e1e1e1 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tCmbEWF7FT form .form-check-input:focus,
.cid-tCmbEWF7FT form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #a1c4e4 !important;
}
.cid-tCmbEWF7FT form .form-check-input:checked {
  border-color: #000000 !important;
  background-color: #000000 !important;
}
.cid-tCmbEX0rXC {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tCmbEX0rXC .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tCmbEX0rXC .mbr-section-title {
  color: #344055;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tCmbEX0rXC .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tCmbEX0rXC .mbr-section-subtitle {
  color: #344055;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tCmbEX0rXC .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tCmbEX0rXC .mbr-text {
  color: #000000;
}
.cid-tCmbEXhr06 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tCmbEXhr06 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCmbEXhr06 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCmbEXhr06 .row {
  align-items: center;
}
.cid-tCmbEXhr06 img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tCmbEXhr06 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tCmbEXhr06 .mbr-section-title {
  color: #1b224b;
}
.cid-tCmbEXhr06 .mbr-text,
.cid-tCmbEXhr06 .mbr-section-btn {
  color: #000000;
}
.cid-tCmbEXCY1V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tCmbEXCY1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCmbEXCY1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCmbEXCY1V .row {
  justify-content: center;
}
.cid-tCmbEXCY1V .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-tCmbEXCY1V .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tCmbEXCY1V .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tCmbEXCY1V .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-tCmbEXCY1V .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-tCmbEXCY1V .mbr-text_1,
.cid-tCmbEXCY1V .mbr-text_2,
.cid-tCmbEXCY1V .mbr-text_3 {
  margin-bottom: 0;
}
.cid-tCmbEXCY1V .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #052734;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-tCmbEXCY1V .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #334d7a;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-tCmbEXCY1V .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #2e7490;
}
.cid-tCmbEXCY1V .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #2e7490;
}
.cid-tCmbEXCY1V .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #052734;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-tCmbEXCY1V .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #334d7a;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-tCmbEXCY1V .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #334d7a;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-tCmbEXCY1V .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #052734;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-tCmbEXCY1V .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #2e7490;
}
.cid-tCmbEXCY1V .mbr-section-title {
  color: #344055;
  text-align: center;
}
.cid-tCmbEXCY1V .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-tCmbEXCY1V .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-tCmbEXCY1V .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tCmbEXCY1V .mbr-section-title DIV {
  text-align: left;
}
.cid-tCmbEY0M6u {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tCmbEY0M6u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCmbEY0M6u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCmbEY0M6u .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tCmbEY0M6u .row {
    align-items: center !important;
  }
}
.cid-tCmbEY0M6u .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tCmbEY0M6u .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tCmbEY0M6u .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tCmbEY0M6u .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tCmbEY0M6u .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tCmbEY0M6u .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-tCmbEY0M6u .text-wrap {
    padding: 30px 0;
  }
}
.cid-tCmbEY0M6u .mbr-title {
  color: #344055;
}
.cid-tCmbEY0M6u .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tCmbEY0M6u .list-box {
  width: 100%;
}
.cid-tCmbEY0M6u .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tCmbEY0M6u .list-text {
  position: relative;
}
.cid-tCmbEY0M6u .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tCmbEY0M6u .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tCmbEY0M6u .mbr-section-btn {
  margin-top: 20px;
}
.cid-tCmbEY0M6u .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-tCmbEY0M6u .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tCmbEY0M6u .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-tCmbEY0M6u .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tCmbEYo0sl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tCmbEYo0sl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCmbEYo0sl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCmbEYo0sl .text-wrap {
  width: 100%;
}
.cid-tCmbEYo0sl .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tCmbEYo0sl .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tCmbEYo0sl .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tCmbEYo0sl .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tCmbEYo0sl .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tCmbEYo0sl .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tCmbEYo0sl .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  overflow: hidden;
  border: 1px solid rgba(5, 102, 141, 0.8);
  border-radius: 45px;
}
.cid-tCmbEYo0sl .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tCmbEYo0sl .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tCmbEYo0sl .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(5, 102, 141, 0.8);
  background-color: rgba(79, 93, 117, 0.8);
}
.cid-tCmbEYo0sl .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-tCmbEYo0sl .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-tCmbEYo0sl .item-text {
  color: #353535;
  margin: 0;
}
.cid-tCmbEYo0sl .mbr-section-btn {
  margin-top: 10px;
}
.cid-tCmbEYo0sl .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tCmbEYo0sl .item-text,
.cid-tCmbEYo0sl .mbr-section-btn {
  color: #344055;
}
.cid-tCmbEYPMPI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tCmbEYPMPI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCmbEYPMPI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCmbEYPMPI .text-wrap {
  width: 100%;
}
.cid-tCmbEYPMPI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tCmbEYPMPI .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tCmbEYPMPI .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tCmbEYPMPI .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tCmbEYPMPI .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tCmbEYPMPI .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tCmbEYPMPI .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  overflow: hidden;
  border: 1px solid rgba(5, 102, 141, 0.8);
  border-radius: 45px;
}
.cid-tCmbEYPMPI .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tCmbEYPMPI .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tCmbEYPMPI .item-title-wrap {
  padding: 45px 26px;
  border-radius: 0 0 45px 45px;
  border: 1px solid rgba(5, 102, 141, 0.8);
  background-color: rgba(79, 93, 117, 0.8);
}
.cid-tCmbEYPMPI .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-tCmbEYPMPI .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-tCmbEYPMPI .item-text {
  color: #353535;
  margin: 0;
}
.cid-tCmbEYPMPI .mbr-section-btn {
  margin-top: 10px;
}
.cid-tCmbEYPMPI .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tCmbEYPMPI .item-text,
.cid-tCmbEYPMPI .mbr-section-btn {
  color: #344055;
}
.cid-tCmbEZckss {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4f5d75;
}
.cid-tCmbEZckss .mbr-text {
  color: #FFFCF5;
}
