body {
  background-color: #ebe9ed;
}
body {
  font-family: 'Manrope', sans-serif;
}
.display-1 {
  font-family: 'Manrope', sans-serif;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: .0625rem;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'Manrope', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-5 {
  font-family: 'Manrope', sans-serif;
  font-size: 3.25rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 4.0625rem;
}
.display-7 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 0.9 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 0.8 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #774c60 !important;
}
.bg-success {
  background-color: #20ac6b !important;
}
.bg-info {
  background-color: #0aa3c2 !important;
}
.bg-warning {
  background-color: #cc9900 !important;
}
.bg-danger {
  background-color: #ae1e2c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #774c60 !important;
  border-color: #774c60 !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: #422a35 !important;
  border-color: #422a35 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #422a35 !important;
  border-color: #422a35 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #eacdc2 !important;
  border-color: #eacdc2 !important;
  color: #81442c !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: #d49882 !important;
  border-color: #d49882 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #81442c !important;
  background-color: #d49882 !important;
  border-color: #d49882 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0aa3c2 !important;
  border-color: #0aa3c2 !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: #065e70 !important;
  border-color: #065e70 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #065e70 !important;
  border-color: #065e70 !important;
}
.btn-success,
.btn-success:active {
  background-color: #20ac6b !important;
  border-color: #20ac6b !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: #12633e !important;
  border-color: #12633e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #12633e !important;
  border-color: #12633e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cc9900 !important;
  border-color: #cc9900 !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: #755800 !important;
  border-color: #755800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ae1e2c !important;
  border-color: #ae1e2c !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: #641119 !important;
  border-color: #641119 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #641119 !important;
  border-color: #641119 !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: #774c60;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #422a35 !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: #774c60 !important;
  border-color: #774c60 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eacdc2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d49882 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #81442c !important;
  background-color: #eacdc2 !important;
  border-color: #eacdc2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0aa3c2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #065e70 !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: #0aa3c2 !important;
  border-color: #0aa3c2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #20ac6b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #12633e !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: #20ac6b !important;
  border-color: #20ac6b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cc9900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #755800 !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: #cc9900 !important;
  border-color: #cc9900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ae1e2c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #641119 !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: #ae1e2c !important;
  border-color: #ae1e2c !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: #774c60 !important;
}
.text-secondary {
  color: #eacdc2 !important;
}
.text-success {
  color: #20ac6b !important;
}
.text-info {
  color: #0aa3c2 !important;
}
.text-warning {
  color: #cc9900 !important;
}
.text-danger {
  color: #ae1e2c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #39242e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d08f76 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #105636 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #055161 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #664d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #570f16 !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: #774c60;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0aa3c2;
}
.alert-warning {
  background-color: #cc9900;
}
.alert-danger {
  background-color: #ae1e2c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #774c60;
  border-color: #774c60;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #774c60;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b68da0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #68e3aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #55dbf6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe599;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e56773;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.125rem;
}
.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: #774c60 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.125rem;
}
blockquote {
  border-color: #774c60;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #774c60;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #774c60;
}
.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: #774c60;
  border-bottom-color: #774c60;
}
.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: #774c60 !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: #eacdc2 !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='%23774c60' %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;
}
.container {
  max-width: 1056px;
}
.btn {
  border-radius: 100vw;
  padding: 0.75rem 1.5rem;
}
.cid-uDsLjFU1CI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI {
    min-height: 105px;
  }
}
.cid-uDsLjFU1CI nav.navbar {
  position: fixed;
}
.cid-uDsLjFU1CI .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI .container {
    flex-wrap: nowrap;
  }
}
.cid-uDsLjFU1CI .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uDsLjFU1CI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDsLjFU1CI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDsLjFU1CI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uDsLjFU1CI .dropdown-item:hover,
.cid-uDsLjFU1CI .dropdown-item:focus {
  background: #774c60 !important;
  color: white !important;
}
.cid-uDsLjFU1CI .dropdown-item:hover span {
  color: white;
}
.cid-uDsLjFU1CI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uDsLjFU1CI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uDsLjFU1CI .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uDsLjFU1CI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDsLjFU1CI .nav-link {
  position: relative;
}
.cid-uDsLjFU1CI .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDsLjFU1CI .dropdown-menu,
.cid-uDsLjFU1CI .navbar.opened {
  background: #ebe9ed !important;
}
.cid-uDsLjFU1CI .nav-item:focus,
.cid-uDsLjFU1CI .nav-link:focus {
  outline: none;
}
.cid-uDsLjFU1CI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDsLjFU1CI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDsLjFU1CI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDsLjFU1CI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDsLjFU1CI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDsLjFU1CI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDsLjFU1CI .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ebe9ed;
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI .navbar {
    min-height: 105px;
  }
}
.cid-uDsLjFU1CI .navbar.opened {
  transition: all 0.3s;
}
.cid-uDsLjFU1CI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDsLjFU1CI .navbar .navbar-logo img {
  width: auto;
}
.cid-uDsLjFU1CI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uDsLjFU1CI .navbar.collapsed {
  justify-content: center;
}
.cid-uDsLjFU1CI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDsLjFU1CI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uDsLjFU1CI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDsLjFU1CI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDsLjFU1CI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uDsLjFU1CI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDsLjFU1CI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDsLjFU1CI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDsLjFU1CI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDsLjFU1CI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDsLjFU1CI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDsLjFU1CI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDsLjFU1CI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uDsLjFU1CI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDsLjFU1CI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDsLjFU1CI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDsLjFU1CI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDsLjFU1CI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDsLjFU1CI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uDsLjFU1CI .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uDsLjFU1CI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDsLjFU1CI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDsLjFU1CI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uDsLjFU1CI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #170d20;
}
.cid-uDsLjFU1CI .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #774c60;
}
.cid-uDsLjFU1CI .navbar-brand .navbar-caption:hover {
  color: #774c60 !important;
}
.cid-uDsLjFU1CI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDsLjFU1CI .dropdown-item.active,
.cid-uDsLjFU1CI .dropdown-item:active {
  background-color: transparent;
}
.cid-uDsLjFU1CI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDsLjFU1CI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDsLjFU1CI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDsLjFU1CI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe9ed;
}
.cid-uDsLjFU1CI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDsLjFU1CI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDsLjFU1CI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDsLjFU1CI .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uDsLjFU1CI .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uDsLjFU1CI .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uDsLjFU1CI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDsLjFU1CI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #170d20;
}
.cid-uDsLjFU1CI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDsLjFU1CI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDsLjFU1CI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDsLjFU1CI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDsLjFU1CI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDsLjFU1CI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDsLjFU1CI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDsLjFU1CI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDsLjFU1CI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDsLjFU1CI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uDsLjFU1CI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDsLjFU1CI .navbar {
    height: 60px;
  }
  .cid-uDsLjFU1CI .navbar.opened {
    height: auto;
  }
  .cid-uDsLjFU1CI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uDsLjFU1CI .navbar {
    min-height: 105px;
  }
}
.cid-uDsLjFU1CI .nav-link,
.cid-uDsLjFU1CI .dropdown-item {
  color: #170D20;
}
.cid-uDsLjFVn6N {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #170d20;
}
.cid-uDsLjFVn6N .container {
  max-width: 1312px;
}
.cid-uDsLjFVn6N .col-text {
  display: grid;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
.cid-uDsLjFVn6N .label-text {
  color: #FFFFFF;
  width: 100%;
}
.cid-uDsLjFVn6N .mbr-section-title {
  color: #ffffff;
  width: 100%;
}
.cid-uDsLjFVn6N .btn {
  padding: 1.6rem 3.5rem 2rem;
  font-weight: 400;
}
.cid-uDsLjFVn6N .advantages-container {
  display: grid;
  margin-top: 1rem;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 4.5rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uDsLjFVn6N .advantages-container {
    grid-auto-flow: row;
  }
}
.cid-uDsLjFVn6N .advantage {
  display: flex;
  align-items: flex-start;
}
.cid-uDsLjFVn6N .advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background-color: #774c60;
}
.cid-uDsLjFVn6N .advantage-icon span {
  color: #ffffff;
}
.cid-uDsLjFVn6N .advantage-text {
  color: #FFFFFF;
}
.cid-uDsLjFVn6N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFVn6N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFVn6N .mbr-section-title,
.cid-uDsLjFVn6N .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uF9JKsSbTB {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #170d20;
}
.cid-uF9JKsSbTB .container {
  max-width: 1312px;
}
.cid-uF9JKsSbTB .col-text {
  display: grid;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
.cid-uF9JKsSbTB .label-text {
  color: #FFFFFF;
  width: 100%;
}
.cid-uF9JKsSbTB .mbr-section-title {
  color: #ffffff;
  width: 100%;
}
.cid-uF9JKsSbTB .btn {
  padding: 1.6rem 3.5rem 2rem;
  font-weight: 400;
}
.cid-uF9JKsSbTB .advantages-container {
  display: grid;
  margin-top: 1rem;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 4.5rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uF9JKsSbTB .advantages-container {
    grid-auto-flow: row;
  }
}
.cid-uF9JKsSbTB .advantage {
  display: flex;
  align-items: flex-start;
}
.cid-uF9JKsSbTB .advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background-color: #774c60;
}
.cid-uF9JKsSbTB .advantage-icon span {
  color: #ffffff;
}
.cid-uF9JKsSbTB .advantage-text {
  color: #FFFFFF;
}
.cid-uF9JKsSbTB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF9JKsSbTB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF9JKsSbTB .mbr-section-title,
.cid-uF9JKsSbTB .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uF9JNdxUMt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #170d20;
}
.cid-uF9JNdxUMt .container {
  max-width: 1312px;
}
.cid-uF9JNdxUMt .col-text {
  display: grid;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
.cid-uF9JNdxUMt .label-text {
  color: #FFFFFF;
  width: 100%;
}
.cid-uF9JNdxUMt .mbr-section-title {
  color: #ffffff;
  width: 100%;
}
.cid-uF9JNdxUMt .btn {
  padding: 1.6rem 3.5rem 2rem;
  font-weight: 400;
}
.cid-uF9JNdxUMt .advantages-container {
  display: grid;
  margin-top: 1rem;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 4.5rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-uF9JNdxUMt .advantages-container {
    grid-auto-flow: row;
  }
}
.cid-uF9JNdxUMt .advantage {
  display: flex;
  align-items: flex-start;
}
.cid-uF9JNdxUMt .advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background-color: #774c60;
}
.cid-uF9JNdxUMt .advantage-icon span {
  color: #ffffff;
}
.cid-uF9JNdxUMt .advantage-text {
  color: #FFFFFF;
}
.cid-uF9JNdxUMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF9JNdxUMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF9JNdxUMt .mbr-section-title,
.cid-uF9JNdxUMt .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uDsLjFVNi0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #170d20;
}
.cid-uDsLjFVNi0 .col-text {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .cid-uDsLjFVNi0 .col-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.cid-uDsLjFVNi0 .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-uDsLjFVNi0 .advantages-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uDsLjFVNi0 .advantages-container {
    grid-auto-flow: row;
  }
}
.cid-uDsLjFVNi0 .advantage {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.cid-uDsLjFVNi0 .advantage-title {
  width: 100%;
  color: #A7788D;
}
.cid-uDsLjFVNi0 .advantage-text {
  width: 100%;
  color: #FFFFFF;
}
.cid-uDsLjFVNi0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFVNi0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFVh6d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #170d20;
}
.cid-uDsLjFVh6d .main-wrap {
  width: 100%;
  min-height: 40rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uDsLjFVh6d .main-wrap {
    flex-wrap: wrap;
    min-height: auto;
  }
}
.cid-uDsLjFVh6d .row {
  align-items: center;
}
.cid-uDsLjFVh6d .img-wrap {
  display: flex;
  position: absolute;
  top: 0;
  max-height: 100%;
  max-width: 62%;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uDsLjFVh6d .img-wrap {
    position: static;
    max-width: 100%;
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFVh6d .img-wrap {
    right: 0;
  }
}
.cid-uDsLjFVh6d .img-wrap img {
  object-fit: contain;
}
@media (max-width: 991px) {
  .cid-uDsLjFVh6d .img-wrap img {
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjFVh6d .col-text {
    max-width: 27rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFVh6d .col-text {
    padding-right: 4rem;
  }
}
.cid-uDsLjFVh6d .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  transition: background-color 0.6s, color 0.6s;
}
.cid-uDsLjFVh6d .mbr-text {
  color: #fcf8f8;
  width: 100%;
  transition: background-color 0.6s, color 0.6s;
}
.cid-uDsLjFVh6d .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  transition: background-color 0.6s, color 0.6s;
  cursor: pointer;
}
.cid-uDsLjFVh6d .text-wrapper:hover {
  color: #a7788d;
}
.cid-uDsLjFVh6d .text-wrapper:hover .mbr-section-title {
  color: #a7788d;
}
.cid-uDsLjFVh6d .text-wrapper:hover .mbr-text {
  color: #a7788d;
}
.cid-uDsLjFVh6d .text-wrapper:hover a {
  color: #a7788d !important;
}
.cid-uDsLjFVh6d .text-wrapper a {
  transition: background-color 0.6s, color 0.6s;
}
.cid-uDsLjFVh6d .text-wrapper a:hover {
  background-image: none !important;
  color: #a7788d !important;
}
.cid-uDsLjFVh6d .icon-box {
  margin-top: 1rem;
}
.cid-uDsLjFVh6d .icon-box span {
  color: #a7788d;
}
.cid-uDsLjFVh6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFVh6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFVh6d .mbr-section-title,
.cid-uDsLjFVh6d .mbr-section-btn {
  color: #efede1;
  text-align: right;
}
.cid-uDsLjFWxRf {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #170d20;
}
.cid-uDsLjFWxRf .item:focus,
.cid-uDsLjFWxRf span:focus {
  outline: none;
}
.cid-uDsLjFWxRf .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uDsLjFWxRf .item {
  padding: 10px 0;
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uDsLjFWxRf .item {
    min-height: 45px;
  }
}
.cid-uDsLjFWOGA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjFWOGA .row {
  align-items: center;
}
.cid-uDsLjFWOGA .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uDsLjFWOGA .image-wrapper {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFWOGA .image-wrapper {
    padding-left: 2rem;
  }
}
.cid-uDsLjFWOGA .image-wrapper .img-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-uDsLjFWOGA .image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.cid-uDsLjFWOGA .home-meet_headshot-filter {
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #4a2336;
  opacity: 0.7;
  pointer-events: none;
  display: block;
}
@media (max-width: 991px) {
  .cid-uDsLjFWOGA .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFWOGA .col-text {
    padding-right: 2rem;
  }
}
.cid-uDsLjFWOGA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsLjFWOGA .mbr-section-title {
  margin-bottom: 1rem;
  color: #170D20;
  width: 100%;
}
.cid-uDsLjFWOGA .mbr-text {
  color: #002549;
  width: 100%;
}
.cid-uDsLjFWOGA .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-uDsLjFWOGA .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uDsLjFWOGA .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uDsLjFWOGA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFWOGA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFWOGA .mbr-text,
.cid-uDsLjFWOGA .mbr-section-btn {
  color: #e07424;
}
.cid-uDsLjFWGW9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uDsLjFWGW9 .container {
  max-width: 800px;
}
.cid-uDsLjFWGW9 .col-text {
  position: relative;
  margin-bottom: 8rem;
}
.cid-uDsLjFWGW9 .mbr-text {
  color: #170D20;
  position: relative;
  z-index: 2;
}
.cid-uDsLjFWGW9 .icon-box {
  position: absolute;
  bottom: -3.2rem;
  right: -5.5rem;
}
@media (max-width: 1199px) {
  .cid-uDsLjFWGW9 .icon-box {
    bottom: -6.6rem;
    right: 1.2rem;
  }
}
.cid-uDsLjFWGW9 .icon-box span {
  color: #4a2336;
}
.cid-uDsLjFWGW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFWGW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFXQEk {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uDsLjFXQEk .container {
  max-width: 832px;
}
.cid-uDsLjFXQEk .mbr-text {
  color: #170D20;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
}
.cid-uDsLjFXQEk .mbr-text span {
  font-weight: inherit;
  line-height: inherit;
  color: #e1965f;
}
.cid-uDsLjFXQEk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFXQEk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFXKWZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjFXKWZ .row {
  flex-direction: row-reverse;
}
.cid-uDsLjFXKWZ .row {
  align-items: center;
}
.cid-uDsLjFXKWZ .image-wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uDsLjFXKWZ .image-wrapper {
    justify-content: center;
    padding-bottom: 2rem;
    order: 1;
  }
}
@media (min-width: 768px) {
  .cid-uDsLjFXKWZ .image-wrapper {
    justify-content: flex-start;
    padding-right: 2rem;
  }
}
.cid-uDsLjFXKWZ .image-wrapper img {
  object-fit: cover;
  height: 420px;
  width: 300px;
  max-width: 100%;
  border-top-left-radius: 100vw;
  border-top-right-radius: 100vw;
}
@media (max-width: 768px) {
  .cid-uDsLjFXKWZ .image-wrapper img {
    width: 270px;
    height: 350px;
  }
}
@media (max-width: 425px) {
  .cid-uDsLjFXKWZ .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uDsLjFXKWZ .col-text {
    padding-top: 2rem;
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-uDsLjFXKWZ .col-text {
    padding-left: 2rem;
  }
}
.cid-uDsLjFXKWZ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsLjFXKWZ .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-uDsLjFXKWZ .mbr-text {
  color: #170D20;
  width: 100%;
}
.cid-uDsLjFXKWZ .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-uDsLjFXKWZ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uDsLjFXKWZ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uDsLjFXKWZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFXKWZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFXKWZ .mbr-section-title,
.cid-uDsLjFXKWZ .mbr-section-btn {
  color: #170D20;
}
.cid-uDsMHl0iXH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsMHl0iXH .row {
  flex-direction: row-reverse;
}
.cid-uDsMHl0iXH .row {
  align-items: center;
}
.cid-uDsMHl0iXH .image-wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uDsMHl0iXH .image-wrapper {
    justify-content: center;
    padding-bottom: 2rem;
    order: 1;
  }
}
@media (min-width: 768px) {
  .cid-uDsMHl0iXH .image-wrapper {
    justify-content: flex-start;
    padding-right: 2rem;
  }
}
.cid-uDsMHl0iXH .image-wrapper img {
  object-fit: cover;
  height: 420px;
  width: 300px;
  max-width: 100%;
  border-top-left-radius: 100vw;
  border-top-right-radius: 100vw;
}
@media (max-width: 768px) {
  .cid-uDsMHl0iXH .image-wrapper img {
    width: 270px;
    height: 350px;
  }
}
@media (max-width: 425px) {
  .cid-uDsMHl0iXH .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-uDsMHl0iXH .col-text {
    padding-top: 2rem;
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-uDsMHl0iXH .col-text {
    padding-left: 2rem;
  }
}
.cid-uDsMHl0iXH .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsMHl0iXH .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-uDsMHl0iXH .mbr-text {
  color: #170D20;
  width: 100%;
}
.cid-uDsMHl0iXH .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-uDsMHl0iXH .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uDsMHl0iXH .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uDsMHl0iXH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsMHl0iXH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsMHl0iXH .mbr-section-title,
.cid-uDsMHl0iXH .mbr-section-btn {
  color: #170D20;
}
.cid-uDsLjFY9xn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe9ed;
  background-image: radial-gradient(circle farthest-side at 0 150%, #774c60, #ebe9ed);
}
@media (min-width: 768px) {
  .cid-uDsLjFY9xn .col-text {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFY9xn .col-text {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}
.cid-uDsLjFY9xn .container {
  max-width: 1312px;
}
.cid-uDsLjFY9xn .label-text {
  color: #170D20;
  position: relative;
  z-index: 2;
}
.cid-uDsLjFY9xn .mbr-section-title {
  color: #002549;
}
.cid-uDsLjFY9xn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFY9xn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFY9xn .mbr-section-title,
.cid-uDsLjFY9xn .mbr-section-btn {
  color: #170D20;
}
.cid-uDsLjFZlp2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjFZlp2 .container {
  max-width: 1312px;
}
.cid-uDsLjFZlp2 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-uDsLjFZlp2 .row {
    padding: 0 0.75rem;
  }
}
.cid-uDsLjFZlp2 .text-container {
  width: 100%;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uDsLjFZlp2 .text-container {
    text-align: center !important;
  }
}
.cid-uDsLjFZlp2 .mbr-section-title {
  margin-bottom: 5rem;
  width: 100%;
  color: #170D20;
}
.cid-uDsLjFZlp2 .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uDsLjFZlp2 .cards-container {
    grid-column-gap: 5rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-uDsLjFZlp2 .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center !important;
  }
}
.cid-uDsLjFZlp2 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uDsLjFZlp2 .item-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-uDsLjFZlp2 .card-title {
  color: #002549;
  margin-bottom: 1rem;
}
.cid-uDsLjFZlp2 .card-text {
  color: #170D20;
}
.cid-uDsLjFZlp2 .icon-wrap {
  margin-bottom: 1rem;
}
.cid-uDsLjFZlp2 .icon-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #170d20;
  text-align: center;
  display: inline-block;
}
.cid-uDsLjFZlp2 .icon-box span {
  font-size: 2rem;
  color: #170d20;
  line-height: 1.7;
}
.cid-uDsLjFZlp2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFZlp2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFZlp2 .card-title,
.cid-uDsLjFZlp2 .icon-wrap {
  color: #170D20;
}
.cid-uDsLjFZTVh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjFZTVh .container {
  max-width: 1056px;
}
.cid-uDsLjFZTVh .row {
  align-items: center;
}
.cid-uDsLjFZTVh .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uDsLjFZTVh .image-wrapper {
    padding-bottom: 2rem;
    order: 1;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFZTVh .image-wrapper {
    padding-left: 6rem;
  }
}
.cid-uDsLjFZTVh .image-wrapper img {
  object-fit: cover;
  height: 420px;
  width: 300px;
  max-width: 100%;
  border-top-left-radius: 100vw;
  border-top-right-radius: 100vw;
}
@media (max-width: 768px) {
  .cid-uDsLjFZTVh .image-wrapper img {
    width: 270px;
    height: 350px;
  }
}
@media (max-width: 425px) {
  .cid-uDsLjFZTVh .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjFZTVh .col-text {
    padding-top: 2rem;
    order: 2;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjFZTVh .col-text {
    padding-right: 6rem;
  }
}
.cid-uDsLjFZTVh .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsLjFZTVh .mbr-section-title {
  margin-bottom: 1rem;
  color: #170D20;
  width: 100%;
}
.cid-uDsLjFZTVh .mbr-text {
  color: #002549;
  width: 100%;
}
.cid-uDsLjFZTVh .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-uDsLjFZTVh .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uDsLjFZTVh .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uDsLjFZTVh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjFZTVh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjFZTVh .mbr-text,
.cid-uDsLjFZTVh .mbr-section-btn {
  color: #170D20;
}
.cid-uDsLjG0Mor {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG0Mor .container {
  max-width: 1312px;
}
.cid-uDsLjG0Mor img,
.cid-uDsLjG0Mor .item-img {
  transition: transform 3s, filter 0.5s;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
}
.cid-uDsLjG0Mor .img-filter {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #4a2336;
  opacity: 0;
  transition: 0.5s all;
  pointer-events: none;
}
.cid-uDsLjG0Mor .item:focus,
.cid-uDsLjG0Mor span:focus {
  outline: none;
}
.cid-uDsLjG0Mor .item-wrap {
  position: relative;
  flex-grow: 1;
}
.cid-uDsLjG0Mor .item-wrapper {
  position: relative;
  background: #170d20;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uDsLjG0Mor .item-wrapper:hover .img-filter {
  opacity: 0.6;
  z-index: 1;
}
.cid-uDsLjG0Mor .item-wrapper:hover img {
  transform: scale3d(1.2, 1.2, 1);
  filter: saturate(0);
}
.cid-uDsLjG0Mor .item-wrapper .item-content {
  display: grid;
  justify-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.cid-uDsLjG0Mor .item-wrapper .item-content {
  padding: 1.5rem 1.5rem 0;
}
.cid-uDsLjG0Mor .item-wrapper .item-footer {
  padding: 0 1.5rem 0.9rem;
}
.cid-uDsLjG0Mor .mbr-section-btn {
  margin-top: auto !important;
  padding-top: 0.9rem !important;
}
.cid-uDsLjG0Mor .mbr-section-head {
  margin-bottom: 4rem;
}
.cid-uDsLjG0Mor .mbr-section-title {
  color: #170D20;
}
.cid-uDsLjG0Mor .mbr-section-subtitle {
  color: #002549;
}
.cid-uDsLjG0Mor .mbr-text {
  color: #FFFFFF;
  width: 100%;
}
.cid-uDsLjG0Mor .item-title-container {
  width: 100%;
}
.cid-uDsLjG0Mor .item-title {
  color: #002549;
  width: 100%;
  max-width: 100%;
}
.cid-uDsLjG0Mor .item-title span {
  background-color: #ffffff;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 2em;
  padding-bottom: 4px;
  line-height: inherit;
  font-size: inherit;
}
.cid-uDsLjG0Mor .item-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-uDsLjG0Mor .item {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .cid-uDsLjG0Mor .item {
    max-width: 416px;
    margin: 0 auto;
    padding: 0 0.75rem;
  }
}
.cid-uDsLjG0Mor .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uDsLjG0Mor .embla__container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uDsLjG0Mor .embla__container {
    margin: 0 -1rem;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjG0Mor .embla__container {
    margin: 0 -0.75rem;
  }
}
.cid-uDsLjG0Mor .item-subtitle,
.cid-uDsLjG0Mor .item-footer {
  color: #FFFFFF;
}
.cid-uDsLjG0yd3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG0yd3 .container {
  max-width: 1312px;
}
.cid-uDsLjG0yd3 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-uDsLjG0yd3 .row {
    padding: 0 0.75rem;
  }
}
.cid-uDsLjG0yd3 .text-container {
  width: 100%;
  padding: 0;
}
.cid-uDsLjG0yd3 .mbr-section-title {
  margin-bottom: 4rem;
  width: 100%;
  color: #170D20;
}
.cid-uDsLjG0yd3 .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uDsLjG0yd3 .cards-container {
    max-width: 30rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uDsLjG0yd3 .item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uDsLjG0yd3 .item-wrapper {
    flex-direction: column;
  }
}
.cid-uDsLjG0yd3 .card-title {
  color: #170D20;
}
.cid-uDsLjG0yd3 .card-name-text {
  margin-top: 2rem;
}
.cid-uDsLjG0yd3 .card-name {
  color: #170D20;
}
.cid-uDsLjG0yd3 .card-prof {
  color: #170D20;
}
.cid-uDsLjG0yd3 .mbr-iconfont {
  font-size: 25px;
  color: #4a2336;
}
.cid-uDsLjG0yd3 .icon-box {
  margin-right: 2rem;
  display: flex;
  justify-content: center;
}
.cid-uDsLjG0yd3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG0yd3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG1x1n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG1x1n .container {
  max-width: 1312px;
}
.cid-uDsLjG1x1n img,
.cid-uDsLjG1x1n .item-img {
  transition: transform 3s, filter 0.5s;
  overflow: hidden;
  height: 100%;
  height: 224px;
  object-fit: cover;
}
.cid-uDsLjG1x1n .img-filter {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #4a2336;
  opacity: 0;
  transition: 0.5s all;
  pointer-events: none;
}
.cid-uDsLjG1x1n .item:focus,
.cid-uDsLjG1x1n span:focus {
  outline: none;
}
.cid-uDsLjG1x1n .item-wrapper {
  position: relative;
}
.cid-uDsLjG1x1n .slide-content {
  position: relative;
  background: #170d20;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uDsLjG1x1n .slide-content:hover .img-filter {
  opacity: 0.6;
  z-index: 1;
}
.cid-uDsLjG1x1n .slide-content:hover img {
  transform: scale3d(1.2, 1.2, 1);
  filter: saturate(0);
}
.cid-uDsLjG1x1n .slide-content .item-content {
  display: grid;
  justify-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.cid-uDsLjG1x1n .slide-content .item-content {
  padding: 1.5rem;
}
.cid-uDsLjG1x1n .mbr-section-btn {
  margin-top: auto !important;
  padding-top: 0.9rem !important;
}
.cid-uDsLjG1x1n .mbr-section-head {
  margin-bottom: 3.25rem;
}
.cid-uDsLjG1x1n .section-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uDsLjG1x1n .section-title-container .btn {
  padding: 0.75rem 2.5rem;
}
.cid-uDsLjG1x1n .section-title-container .btn-info-outline:hover {
  background-color: #f0edeb !important;
}
.cid-uDsLjG1x1n .mbr-section-title {
  color: #170D20;
}
.cid-uDsLjG1x1n .mbr-section-subtitle {
  color: #002549;
}
.cid-uDsLjG1x1n .mbr-text {
  color: #FFFFFF;
  width: 100%;
  text-align: center;
}
.cid-uDsLjG1x1n .item-title-container {
  width: 100%;
}
.cid-uDsLjG1x1n .item-title {
  color: #170D20;
  width: 100%;
  max-width: 100%;
}
.cid-uDsLjG1x1n .item-title span {
  background-color: #ebe9ed;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 4px;
  border-radius: 2em;
  line-height: inherit;
  font-size: inherit;
}
.cid-uDsLjG1x1n .item-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-uDsLjG1x1n .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 405px;
  max-width: 405px;
}
@media (max-width: 768px) {
  .cid-uDsLjG1x1n .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uDsLjG1x1n .embla__button--next,
.cid-uDsLjG1x1n .embla__button--prev {
  display: flex;
}
.cid-uDsLjG1x1n .embla__button-container {
  display: flex;
  flex-wrap: nowrap;
  width: 144px;
  margin-left: auto;
  margin-right: 1rem;
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .cid-uDsLjG1x1n .embla__button-container {
    margin-right: auto;
  }
}
.cid-uDsLjG1x1n .embla__button {
  display: flex;
  width: 64px;
  height: 64px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #170d20;
  border: 1px solid #170d20;
  border-radius: 50%;
  transition: all 0.3s;
  justify-content: center;
  align-items: center;
}
.cid-uDsLjG1x1n .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uDsLjG1x1n .embla__button.embla__button--prev {
  margin-right: auto;
}
.cid-uDsLjG1x1n .embla__button.embla__button--next {
  margin-left: auto;
}
.cid-uDsLjG1x1n .embla {
  position: relative;
  width: 100%;
}
.cid-uDsLjG1x1n .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uDsLjG1x1n .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uDsLjG1x1n .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uDsLjG1x1n .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uDsLjG1x1n .item-subtitle,
.cid-uDsLjG1x1n .item-footer {
  color: #FFFFFF;
}
.cid-uDsLjG2P2F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG2P2F .mbr-section-head {
  margin-bottom: 4rem;
}
.cid-uDsLjG2P2F .mbr-section-title {
  color: #170D20;
}
.cid-uDsLjG2P2F .mbr-section-subtitle {
  color: #002549;
}
.cid-uDsLjG2P2F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG2P2F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG2Amg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #170d20;
}
.cid-uDsLjG2Amg .container {
  max-width: 1312px;
}
.cid-uDsLjG2Amg img,
.cid-uDsLjG2Amg .item-img {
  position: relative;
  overflow: hidden;
}
.cid-uDsLjG2Amg img {
  height: 415px;
  transition: transform 3s, filter 0.5s;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDsLjG2Amg img {
    height: 350px;
  }
}
.cid-uDsLjG2Amg .img-filter {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #4a2336;
  opacity: 0;
  transition: 0.5s all;
  pointer-events: none;
}
.cid-uDsLjG2Amg .item:focus,
.cid-uDsLjG2Amg span:focus {
  outline: none;
}
.cid-uDsLjG2Amg .item-wrap {
  flex-grow: 1;
}
.cid-uDsLjG2Amg .item-wrapper {
  position: relative;
  background: #ebe9ed;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uDsLjG2Amg .item-wrapper:hover .img-filter {
  opacity: 0.6;
  z-index: 1;
}
.cid-uDsLjG2Amg .item-wrapper:hover img {
  transform: scale3d(1.2, 1.2, 1);
  filter: saturate(0);
}
.cid-uDsLjG2Amg .item-wrapper .item-content {
  display: grid;
  justify-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.cid-uDsLjG2Amg .item-wrapper .item-content {
  padding: 1.5rem 1.5rem 0;
}
.cid-uDsLjG2Amg .item-wrapper .item-footer {
  padding: 0 1.5rem 0.9rem;
}
.cid-uDsLjG2Amg .mbr-section-btn {
  margin-top: auto !important;
  padding-top: 0.9rem !important;
}
.cid-uDsLjG2Amg .mbr-section-head {
  margin-bottom: 4rem;
}
.cid-uDsLjG2Amg .mbr-section-title {
  color: #FFFFFF;
}
.cid-uDsLjG2Amg .mbr-section-subtitle {
  color: #002549;
}
.cid-uDsLjG2Amg .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uDsLjG2Amg .item-price-container .item-price {
  width: 100%;
  max-width: 100%;
  background-color: #774c60;
  padding: 8px 1rem;
  border-radius: 2em;
  display: inline-block;
}
.cid-uDsLjG2Amg .item-subtitle {
  color: #ffffff;
  width: 100%;
}
.cid-uDsLjG2Amg .item {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .cid-uDsLjG2Amg .item {
    max-width: 416px;
    margin: 0 auto;
    padding: 0 0.75rem;
  }
}
.cid-uDsLjG2Amg .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uDsLjG2Amg .embla__container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uDsLjG2Amg .embla__container {
    margin: 0 -1rem;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjG2Amg .embla__container {
    margin: 0 -0.75rem;
  }
}
.cid-uDsLjG2Amg .item-title {
  text-align: left;
  color: #170D20;
}
.cid-uDsLjG2Amg .item-subtitle,
.cid-uDsLjG2Amg .item-footer {
  color: #170D20;
}
.cid-uDsLjG2Amg .item-price,
.cid-uDsLjG2Amg .item-price-container {
  color: #FFFFFF;
  text-align: left;
}
.cid-uDsLjG39Lk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG39Lk .container {
  max-width: 1312px;
}
.cid-uDsLjG39Lk .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-uDsLjG39Lk .row {
    padding: 0 0.75rem;
  }
}
.cid-uDsLjG39Lk .text-container {
  width: 100%;
  padding: 0;
}
.cid-uDsLjG39Lk .mbr-section-title {
  margin-bottom: 4rem;
  width: 100%;
  color: #170D20;
}
.cid-uDsLjG39Lk .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uDsLjG39Lk .cards-container {
    grid-column-gap: 4rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-uDsLjG39Lk .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-uDsLjG39Lk .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uDsLjG39Lk .item-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-uDsLjG39Lk .card-title {
  color: #170D20;
  margin-bottom: 1rem;
}
.cid-uDsLjG39Lk .card-text {
  color: #170D20;
}
.cid-uDsLjG39Lk .mbr-iconfont {
  font-size: 25px;
  color: #4a2336;
}
.cid-uDsLjG39Lk .icon-box {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.cid-uDsLjG39Lk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG39Lk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG39Lk .btn-wrapper {
  margin-top: -10%;
  margin-right: -5%;
}
.cid-uDsLjG3sFy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe9ed;
  background-image: radial-gradient(circle farthest-side at 0 150%, #774c60, #ebe9ed);
}
.cid-uDsLjG3sFy .item:focus,
.cid-uDsLjG3sFy span:focus {
  outline: none;
}
.cid-uDsLjG3sFy .item {
  cursor: pointer;
}
.cid-uDsLjG3sFy .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uDsLjG3sFy .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uDsLjG3sFy .grid-container-1,
.cid-uDsLjG3sFy .grid-container-2 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uDsLjG3sFy .grid-container-1,
  .cid-uDsLjG3sFy .grid-container-2 {
    gap: 0 1rem;
  }
}
.cid-uDsLjG3sFy .mbr-section-title {
  margin-bottom: 4rem;
  color: #002549;
  text-align: center;
}
.cid-uDsLjG3sFy .content-head {
  max-width: 800px;
}
.cid-uDsLjG3sFy .container,
.cid-uDsLjG3sFy .container-fluid {
  overflow: hidden;
}
.cid-uDsLjG3sFy .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uDsLjG3sFy .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uDsLjG3sFy .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uDsLjG3sFy .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uDsLjG3sFy .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uDsLjG3sFy .grid-container-1,
.cid-uDsLjG3sFy .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uDsLjG3sFy .grid-container-1 {
  align-items: flex-end;
}
.cid-uDsLjG3sFy .grid-container-2 {
  align-items: flex-start;
}
.cid-uDsLjG3m5s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG3m5s .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uDsLjG3m5s .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG3m5s .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjG3m5s .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG3m5s .col-text {
    padding-right: 4.625rem;
  }
}
.cid-uDsLjG3m5s .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsLjG3m5s .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-uDsLjG3m5s .mbr-text {
  color: #170D20;
  width: 100%;
}
.cid-uDsLjG3m5s .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-uDsLjG3m5s .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-left: 5rem;
  border-left: 1px solid #170d20;
}
@media (max-width: 767px) {
  .cid-uDsLjG3m5s .cards-container {
    padding-left: 2rem;
  }
}
.cid-uDsLjG3m5s .card-text-container {
  flex-grow: 1;
}
.cid-uDsLjG3m5s .mbr-section-subtitle {
  color: #002549;
  width: 100%;
}
.cid-uDsLjG3m5s .card-text {
  color: #170D20;
  width: 100%;
}
.cid-uDsLjG3m5s .icon-box {
  margin-top: 0.35rem;
  margin-right: 1rem;
  transform: rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-uDsLjG3m5s .icon-box span {
  color: #4a2336;
}
.cid-uDsLjG3m5s .card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.cid-uDsLjG3m5s .card:hover .icon-box {
  margin-top: 0;
  margin-bottom: 0.35rem;
  transform: rotateZ(0);
}
.cid-uDsLjG3m5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG3m5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG3m5s .mbr-section-title,
.cid-uDsLjG3m5s .mbr-section-btn {
  color: #170D20;
}
.cid-uDsLjG41au {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG41au .row {
  align-items: center;
}
.cid-uDsLjG41au .image-wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uDsLjG41au .image-wrapper {
    justify-content: center;
    padding-bottom: 2rem;
    order: 1;
  }
}
@media (min-width: 768px) {
  .cid-uDsLjG41au .image-wrapper {
    justify-content: flex-end;
    padding-left: 2rem;
  }
}
.cid-uDsLjG41au .image-wrapper img {
  object-fit: cover;
  width: 300px;
  height: 300px;
  border-radius: 100% !important;
}
@media (max-width: 768px) {
  .cid-uDsLjG41au .image-wrapper img {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 768px) {
  .cid-uDsLjG41au .col-text {
    padding-top: 2rem;
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-uDsLjG41au .col-text {
    padding-right: 2rem;
  }
}
.cid-uDsLjG41au .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsLjG41au .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-uDsLjG41au .mbr-text {
  color: #170D20;
  width: 100%;
}
.cid-uDsLjG41au .btn-container {
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .cid-uDsLjG41au .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uDsLjG41au .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uDsLjG41au .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG41au .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG41au .mbr-section-title,
.cid-uDsLjG41au .mbr-section-btn {
  color: #170D20;
}
.cid-uDsLjG4Uly {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG4Uly .container {
  max-width: 1312px;
}
.cid-uDsLjG4Uly .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-uDsLjG4Uly .row {
    padding: 0 16px;
  }
}
.cid-uDsLjG4Uly .content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6rem;
  background-color: #170d20;
}
@media (max-width: 991px) {
  .cid-uDsLjG4Uly .content-wrap {
    padding: 48px 32px;
  }
}
@media (max-width: 567px) {
  .cid-uDsLjG4Uly .content-wrap {
    padding: 32px 20px;
  }
}
.cid-uDsLjG4Uly .image-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uDsLjG4Uly .image-wrapper {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG4Uly .image-wrapper {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjG4Uly .col-text {
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG4Uly .col-text {
    padding-right: 1rem;
  }
}
.cid-uDsLjG4Uly .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsLjG4Uly .mbr-text {
  color: #ffffff;
  width: 100%;
}
.cid-uDsLjG4Uly .btn-container {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDsLjG4Uly .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG4Uly .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uDsLjG4Uly .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uDsLjG4Uly .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uDsLjG4Uly .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG4Uly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG4Uly .mbr-text,
.cid-uDsLjG4Uly .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uDsLjG4aKG {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #170d20;
}
.cid-uDsLjG4aKG .section-about-header_background-glow {
  position: absolute;
  left: -40%;
  top: auto;
  right: auto;
  bottom: -70%;
  width: 120vmax;
  height: 120vmax;
  border-radius: 50%;
  background-image: radial-gradient(circle farthest-side at 50% 50%, #140022 30%, transparent);
}
.cid-uDsLjG4aKG .col-text {
  display: grid;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}
.cid-uDsLjG4aKG .mbr-section-title {
  color: #ffffff;
}
.cid-uDsLjG4aKG .btn {
  padding: 1.6rem 3.5rem 2rem;
  font-weight: 400;
}
.cid-uDsLjG4aKG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG4aKG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG4aKG .mbr-section-title,
.cid-uDsLjG4aKG .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uDsLjG51fJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG51fJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("https://r.mobirisesite.com/1226103/assets/images/background1.jpg?rnd=1749902750969");
}
.cid-uDsLjG5O8E {
  background-image: url("https://r.mobirisesite.com/1226103/assets/images/photo-1435686858161-59da32dfd4b4.jpeg");
}
.cid-uDsLjG5O8E .mbr-overlay {
  z-index: 1;
}
.cid-uDsLjG5O8E .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 4rem;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uDsLjG5O8E .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjG5O8E .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-uDsLjG5O8E .item-title {
  width: 100%;
  color: #002549;
  margin-bottom: 1rem;
}
.cid-uDsLjG5O8E .mbr-text {
  color: #002549;
}
.cid-uDsLjG5O8E .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-uDsLjG5O8E .card-container {
  display: flex;
}
.cid-uDsLjG5O8E .card-container .card {
  border-radius: 0;
}
.cid-uDsLjG5O8E .card-container .card .item-img {
  display: flex;
}
.cid-uDsLjG5O8E .card-container .card .item-img img {
  width: 100%;
  height: 50vw;
  max-height: 60rem;
  object-fit: cover;
}
.cid-uDsLjG5wbq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #170d20;
}
.cid-uDsLjG5wbq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG5wbq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG5wbq .row {
  justify-content: center;
}
.cid-uDsLjG5wbq .content-wrapper .title-wrapper {
  margin-bottom: 4rem;
}
.cid-uDsLjG5wbq .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card {
  border-radius: 64px !important;
  padding: 32px;
  background-color: #774c60;
  margin-top: 20px;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uDsLjG5wbq .content-wrapper .panel-group .card {
    padding: 24px;
  }
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  border-radius: 100%;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 21px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-uDsLjG5wbq .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uDsLjG5wbq .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-uDsLjG5wbq .mbr-desc,
.cid-uDsLjG5wbq .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-uDsLjG5wbq .panel-title-edit {
  color: #FFFFFF;
}
.cid-uDsLjG5wbq .panel-text {
  color: #FFFFFF;
}
.cid-uDsLjG6Z50 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uDsLjG6Z50 .row {
    max-width: 30rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.cid-uDsLjG6Z50 .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uDsLjG6Z50 .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG6Z50 .col-card {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjG6Z50 .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG6Z50 .col-text {
    padding-right: 2rem;
  }
}
.cid-uDsLjG6Z50 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uDsLjG6Z50 .mbr-section-title {
  margin-bottom: 1.3rem;
  color: #002549;
}
.cid-uDsLjG6Z50 .mbr-text {
  color: #170D20;
  max-width: 20rem;
}
.cid-uDsLjG6Z50 .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.cid-uDsLjG6Z50 .card-text {
  color: #170D20;
  flex-grow: 1;
}
.cid-uDsLjG6Z50 .icon-box {
  margin-top: 0.35rem;
  margin-right: 1rem;
  transform: rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: 0.3s all;
}
.cid-uDsLjG6Z50 .icon-box span {
  color: #4a2336;
}
.cid-uDsLjG6Z50 .card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.cid-uDsLjG6Z50 .card:hover .icon-box {
  margin-top: 0;
  margin-bottom: 0.35rem;
  transform: rotateZ(0);
}
.cid-uDsLjG6Z50 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG6Z50 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG6Z50 .mbr-section-title,
.cid-uDsLjG6Z50 .mbr-section-btn {
  color: #170D20;
}
.cid-uDsLjG626b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe9ed;
  background-image: radial-gradient(circle farthest-side at 160% 170%, #774c60 40%, transparent);
}
@media (max-width: 991px) {
  .cid-uDsLjG626b .col-form {
    padding-top: 2rem;
  }
  .cid-uDsLjG626b .col-form .dragArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 29rem;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG626b .col-form {
    padding-right: 5.75rem;
  }
}
.cid-uDsLjG626b .col-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uDsLjG626b .col-img {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG626b .col-img {
    padding-left: 5.75rem;
  }
}
.cid-uDsLjG626b .mbr-text,
.cid-uDsLjG626b .mbr-section-btn {
  color: #232323;
}
.cid-uDsLjG626b .mbr-text,
.cid-uDsLjG626b .mbr-section-title {
  color: #002549;
  width: 100%;
  margin-bottom: 2rem !important;
}
@media (max-width: 991px) {
  .cid-uDsLjG626b .mbr-text,
  .cid-uDsLjG626b .mbr-section-title {
    text-align: center;
  }
}
.cid-uDsLjG626b .form-group {
  padding: 0 !important;
  max-width: 20rem;
}
.cid-uDsLjG626b .form-group input {
  color: #002549;
}
.cid-uDsLjG626b .form-group input::placeholder {
  color: #C3AFAD;
}
.cid-uDsLjG626b .form-group input::-moz-placeholder {
  color: #C3AFAD;
}
.cid-uDsLjG626b .form-group input:-moz-placeholder {
  color: #C3AFAD;
}
.cid-uDsLjG626b .form-group input:-ms-input-placeholder {
  color: #C3AFAD;
}
.cid-uDsLjG626b .form-control {
  font-size: 1.2rem !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid transparent;
  border-radius: 1.25rem;
  background-color: #fff;
  text-align: center;
}
.cid-uDsLjG626b .mbr-section-btn {
  padding: 0 !important;
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
  max-width: 20rem;
}
.cid-uDsLjG626b .mbr-section-btn .btn {
  width: 100%;
}
.cid-uDsLjG626b a.btn {
  height: 100%;
  margin: 0;
  padding: 14px 40px;
}
.cid-uDsLjG626b .book-page1 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #ffffff;
  background-image: linear-gradient(135deg, #ebe9ed, #ffffff);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uDsLjG626b .book-page2 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #ffffff;
  background-image: linear-gradient(315deg, #a7788d, #ffffff);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uDsLjG626b .image-wrapper {
  justify-content: center;
  display: flex;
  transition: 0.5s all;
  transform-style: preserve-3d;
  position: relative;
  z-index: 5;
  width: max-content;
}
.cid-uDsLjG626b .image-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 4;
  transition: 0.5s all;
  transform-style: preserve-3d;
}
.cid-uDsLjG626b .image-wrapper:hover {
  transform: rotateZ(-4deg);
}
.cid-uDsLjG626b .image-wrapper:hover img {
  transform: rotateZ(0);
}
.cid-uDsLjG626b .image-wrapper:hover .book-page1 {
  transform: rotateZ(4deg);
}
.cid-uDsLjG626b .image-wrapper:hover .book-page2 {
  transform: rotateZ(1.8deg);
}
@media (max-width: 991px) {
  .cid-uDsLjG626b .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-uDsLjG626b .justify-content-center {
  align-items: center;
}
.cid-uDsLjG626b .mbr-section-title {
  color: #170D20;
}
.cid-uDsLjG626b .mbr-text {
  color: #170D20;
}
.cid-uDsLjG71tJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDsLjG71tJ .col-card {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uDsLjG71tJ .col-card {
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG71tJ .col-card {
    padding-left: 4.625rem;
  }
}
@media (max-width: 991px) {
  .cid-uDsLjG71tJ .col-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDsLjG71tJ .col-text {
    padding-right: 4.625rem;
  }
}
.cid-uDsLjG71tJ .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uDsLjG71tJ .mbr-section-title {
  margin-bottom: 16px;
  color: #002549;
}
.cid-uDsLjG71tJ .mbr-text {
  color: #170D20;
}
.cid-uDsLjG71tJ .list {
  color: #002549;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uDsLjG71tJ .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uDsLjG71tJ .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uDsLjG71tJ .mbr-section-btn .btn {
  min-width: 180px;
  padding: 0.875rem 2.5rem;
}
.cid-uDsLjG71tJ .cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5rem;
  border-left: 1px solid #170d20;
}
@media (max-width: 767px) {
  .cid-uDsLjG71tJ .cards-container {
    padding-left: 2rem;
  }
}
.cid-uDsLjG71tJ .card-text-container {
  flex-grow: 1;
}
.cid-uDsLjG71tJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDsLjG71tJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDsLjG71tJ .mbr-section-title,
.cid-uDsLjG71tJ .mbr-section-btn {
  color: #170D20;
}
.cid-uDsLjG71tJ .list,
.cid-uDsLjG71tJ .item-wrap {
  color: #170D20;
}
.cid-uDsLjG71IH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ebe9ed;
  overflow: hidden;
}
.cid-uDsLjG71IH .mbr-text {
  color: #002549;
}
.cid-uDsLjG71IH .media-container-row .mbr-text {
  color: #170D20;
}
