body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Viaoda Libre', display;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Viaoda Libre', display;
  font-size: 3.125rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.2rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #dd4717 !important;
}
.bg-success {
  background-color: #725686 !important;
}
.bg-info {
  background-color: #ffd66a !important;
}
.bg-warning {
  background-color: #349670 !important;
}
.bg-danger {
  background-color: #f4f3ee !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #dd4717 !important;
  border-color: #dd4717 !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #e62b56;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  border-color: #e62b56 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e62b56 !important;
  border-color: #e62b56 !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #e62b56 !important;
  border-color: #e62b56 !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #dd4717;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #dd4717 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #dd4717 !important;
  border-color: #dd4717 !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffd66a !important;
  border-color: #ffd66a !important;
  color: #6a4d00 !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #e62b56;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  border-color: #e62b56 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #6a4d00 !important;
  background-color: #e62b56 !important;
  border-color: #e62b56 !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #725686 !important;
  border-color: #725686 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #dd4717;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #dd4717 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #dd4717 !important;
  border-color: #dd4717 !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #349670 !important;
  border-color: #349670 !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #725686;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #725686 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #725686 !important;
  border-color: #725686 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #f4f3ee !important;
  border-color: #f4f3ee !important;
  color: #8a8259 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #725686;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #725686 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #8a8259 !important;
  background-color: #725686 !important;
  border-color: #725686 !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #dd4717;
  color: #dd4717;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e62b56;
  color: #e62b56;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #b01538;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e62b56 !important;
  border-color: #e62b56 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffd66a;
  color: #ffd66a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #ffc11e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #6a4d00 !important;
  background-color: #ffd66a !important;
  border-color: #ffd66a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #725686;
  color: #725686;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #4a3857;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #725686 !important;
  border-color: #725686 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #349670;
  color: #349670;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #205d46;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #349670 !important;
  border-color: #349670 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #f4f3ee;
  color: #f4f3ee;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #d6d2c0;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #8a8259 !important;
  background-color: #f4f3ee !important;
  border-color: #f4f3ee !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #dd4717 !important;
}
.text-secondary {
  color: #e62b56 !important;
}
.text-success {
  color: #725686 !important;
}
.text-info {
  color: #ffd66a !important;
}
.text-warning {
  color: #349670 !important;
}
.text-danger {
  color: #f4f3ee !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #81290d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #991231 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3d2e48 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ffba04 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #1a4a37 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ccc7b0 !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;
}
.nav-tabs .nav-link.active {
  color: #dd4717;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffd66a;
}
.alert-warning {
  background-color: #349670;
}
.alert-danger {
  background-color: #f4f3ee;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #dd4717;
  border-color: #dd4717;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #dd4717;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9d3c7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b19cbf;
}
.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: #79d1af;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Viaoda Libre', display;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Viaoda Libre', display;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #dd4717;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
form .btn {
  border-radius: 0 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #dd4717;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #dd4717;
}
.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: #dd4717;
  border-bottom-color: #dd4717;
}
.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: #dd4717 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e62b56 !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='%23dd4717' %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-se8xQhJViB {
  display: flex;
  background-image: url("../../../assets/images/1-2-copy-scaled-2000x1500.jpg");
}
.cid-se8xQhJViB .mbr-overlay {
  background-color: #353535;
  opacity: 0.4;
}
.cid-se8xQhJViB .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-se8xQhJViB {
    align-items: center;
  }
  .cid-se8xQhJViB .row {
    justify-content: flex-start;
  }
  .cid-se8xQhJViB .content-wrap {
    width: 42%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-se8xQhJViB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-se8xQhJViB {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-se8xQhJViB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-se8xQhJViB .content-wrap {
    width: 100%;
  }
}
.cid-se8xQhJViB .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-se8xQhJViB .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se8xQhJViB .mbr-text,
.cid-se8xQhJViB .mbr-section-btn {
  color: #ffffff;
}
.cid-se8hkYiDL2 .nav-item:focus,
.cid-se8hkYiDL2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se8hkYiDL2 .nav-item {
    position: relative;
  }
}
.cid-se8hkYiDL2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-se8hkYiDL2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #362641;
}
.cid-se8hkYiDL2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #362641 !important;
}
.cid-se8hkYiDL2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se8hkYiDL2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se8hkYiDL2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se8hkYiDL2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.show,
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se8hkYiDL2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se8hkYiDL2 .navbar.collapsed .right-menu,
.cid-se8hkYiDL2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar .navbar-collapse.show,
  .cid-se8hkYiDL2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-se8hkYiDL2 .navbar .navbar-collapse.show .brand-container,
  .cid-se8hkYiDL2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se8hkYiDL2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se8hkYiDL2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se8hkYiDL2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se8hkYiDL2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se8hkYiDL2 .navbar .right-menu,
  .cid-se8hkYiDL2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se8hkYiDL2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-se8hkYiDL2 .navbar.navbar-short .mbr-overlay {
  background: #362641 !important;
}
.cid-se8hkYiDL2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se8hkYiDL2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se8hkYiDL2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se8hkYiDL2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-se8hkYiDL2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se8hkYiDL2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se8hkYiDL2 .dropdown-item.active,
.cid-se8hkYiDL2 .dropdown-item:active {
  background-color: transparent;
}
.cid-se8hkYiDL2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se8hkYiDL2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se8hkYiDL2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #362641;
}
.cid-se8hkYiDL2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se8hkYiDL2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se8hkYiDL2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se8hkYiDL2 .navbar-buttons {
  margin-left: auto;
}
.cid-se8hkYiDL2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler:hover {
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler:active {
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd66a;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8hkYiDL2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-se8hkYiDL2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-se8hkYiDL2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se8hkYiDL2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se8hkYiDL2 .right-menu,
.cid-se8hkYiDL2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se8hkYiDL2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se8hkYiDL2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se8hkYiDL2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se8hkYiDL2 .card-wrapper {
  z-index: 3;
}
.cid-se8hkYiDL2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se8hkYiDL2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se8hkYiDL2 .navbar-brand img {
  width: auto !important;
}
.cid-se8vZzysmE {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #362641;
}
.cid-se8vZzysmE .mbr-overlay {
  padding: 0;
  background: #362641;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-se8vZzysmE .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se8vZzysmE .mbr-text,
.cid-se8vZzysmE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-se8vZzysmE .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 484px;
}
.cid-se8vZzysmE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-se8vZzysmE .section-subtext {
  color: #231f59;
  text-align: left;
}
.cid-se9eR3LagD {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #362641;
}
.cid-se9eR3LagD .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-se9eR3LagD .text-wrapper {
    padding-top: 30px;
  }
}
.cid-se9eR3LagD .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se9eR3LagD .mbr-text,
.cid-se9eR3LagD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-se9eR3LagD .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-se9eR3LagD .section-subtext {
  color: #e49dcd;
  text-align: left;
}
.cid-se9eRtKZek {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #362641;
}
@media (max-width: 991px) {
  .cid-se9eRtKZek .text-wrapper {
    padding-top: 30px;
  }
}
.cid-se9eRtKZek .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se9eRtKZek .mbr-text,
.cid-se9eRtKZek .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-se9eRtKZek .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-se9eRtKZek .section-subtext {
  color: #231f59;
  text-align: left;
}
.cid-ui8sNpT6uK {
  background-color: #ffffff;
}
.cid-ui8sNpT6uK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8sNpT6uK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8sNpT6uK .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ui8sNpT6uK .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-ui8sNpT6uK .container {
    padding: 0 26px;
  }
}
.cid-ui8sNpT6uK .row {
  justify-content: center;
}
.cid-ui8sNpT6uK .content-wrapper {
  display: flex;
  padding: 200px 60px;
  background-color: #362641;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-ui8sNpT6uK .content-wrapper {
    padding: 100px 20px;
    display: block;
    height: auto;
  }
}
.cid-ui8sNpT6uK .content-wrapper .mbr-section-title {
  width: 50%;
  padding-right: 45px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ui8sNpT6uK .content-wrapper .mbr-section-title {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-ui8sNpT6uK .content-wrapper .text-wrapper {
  width: 50%;
  padding-right: 150px;
}
@media (max-width: 1440px) {
  .cid-ui8sNpT6uK .content-wrapper .text-wrapper {
    padding-right: 45px;
  }
}
@media (max-width: 992px) {
  .cid-ui8sNpT6uK .content-wrapper .text-wrapper {
    width: 100%;
    padding-right: 0;
  }
}
.cid-ui8sNpT6uK .content-wrapper .text-wrapper .text-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ui8sNpT6uK .content-wrapper .text-wrapper .text-wrap {
    margin-bottom: 40px;
  }
}
.cid-ui8sNpT6uK .content-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-ui8sNpT6uK .content-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ui8sNpT6uK .mbr-section-title {
  color: #ffffff;
}
.cid-ui8sNpT6uK .mbr-section-subtitle {
  color: #000000;
}
.cid-ui8sNpT6uK .mbr-text {
  color: #000000;
}
.cid-ui8sNpT6uK .mbr-text,
.cid-ui8sNpT6uK .mbr-section-btn {
  color: #ffffff;
}
.cid-ui8tqLyhOv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #362641;
}
.cid-ui8tqLyhOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8tqLyhOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ui8tqLyhOv .container {
    padding: 0 30px;
  }
}
.cid-ui8tqLyhOv .content-wrapper {
  display: flex;
  position: relative;
  padding-bottom: 180px;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ui8tqLyhOv .content-wrapper {
    display: block;
  }
}
.cid-ui8tqLyhOv .content-wrapper .card {
  justify-content: center;
}
.cid-ui8tqLyhOv .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-ui8tqLyhOv .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-ui8tqLyhOv .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-ui8tqLyhOv .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-ui8tqLyhOv .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ui8tqLyhOv .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-ui8tqLyhOv .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ui8tqLyhOv .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #eaffe2;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-ui8tqLyhOv .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-ui8tqLyhOv .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-ui8tqLyhOv .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-ui8tqLyhOv .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ui8tqLyhOv .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
@media (max-width: 992px) {
  .cid-ui8tqLyhOv .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-ui8tqLyhOv .mbr-section-title {
  color: #144031;
}
.cid-ui8tqLyhOv .mbr-text {
  color: #ffffff;
}
.cid-ui8tqLyhOv .list {
  color: #144031;
}
.cid-ui8tqLyhOv .mbr-section-title,
.cid-ui8tqLyhOv .mbr-section-btn {
  color: #ffffff;
}
.cid-ui8waSHzao {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ui8waSHzao .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8waSHzao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8waSHzao .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-ui8waSHzao .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ui8waSHzao .container {
    padding: 0 20px;
  }
}
.cid-ui8waSHzao .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-ui8waSHzao .content-wrapper {
    padding: 46px 0;
  }
}
.cid-ui8waSHzao .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ui8waSHzao .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ui8waSHzao .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ui8waSHzao .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-ui8waSHzao .content-wrapper .image-wrapper img {
  display: inline-flex;
  width: 50%;
  border-radius: 20px !important;
  object-fit: cover;
  height: 280px;
}
@media (max-width: 992px) {
  .cid-ui8waSHzao .content-wrapper .image-wrapper img {
    width: 100%;
  }
}
.cid-ui8waSHzao .content-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-ui8waSHzao .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ui8waSHzao .mbr-section-title {
  color: #000000;
}
.cid-ui8waSHzao .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-ui8waSHzao .mbr-text,
.cid-ui8waSHzao .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-ui8waSHzao .mbr-section-title,
.cid-ui8waSHzao .mbr-section-btn,
.cid-ui8waSHzao .image-wrapper {
  text-align: center;
}
.cid-ui8ERzYZPq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #282727;
}
.cid-ui8ERzYZPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8ERzYZPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8ERzYZPq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ui8ERzYZPq .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-ui8ERzYZPq .container {
    padding: 0 25px;
  }
}
.cid-ui8ERzYZPq .video-block .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ui8ERzYZPq .video-block .video-wrapper {
  border: 1px solid #e33030;
}
.cid-ui8ERzYZPq .video-block .video-wrapper iframe {
  height: 450px;
  object-fit: cover;
}
.cid-ui8ERzYZPq .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-ui8ERzYZPq .video-block .video-wrapper .app-video-wrapper::before {
  color: #e33030;
  text-shadow: none;
}
.cid-ui8ERzYZPq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ui8BUwRtj3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #362641;
}
.cid-ui8BUwRtj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8BUwRtj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8BUwRtj3 .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-ui8BUwRtj3 .dot-right {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 1500px) {
  .cid-ui8BUwRtj3 .container {
    max-width: 1400px;
  }
}
.cid-ui8BUwRtj3 .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ui8BUwRtj3 .card-wrapper {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  padding-top: 3rem;
  border-radius: 2rem;
}
.cid-ui8BUwRtj3 .row {
  justify-content: center;
}
.cid-ui8BUwRtj3 .card-title,
.cid-ui8BUwRtj3 .iconfont-wrapper,
.cid-ui8BUwRtj3 .dot {
  color: #ffffff;
}
.cid-ui8BUwRtj3 .mbr-section-title {
  color: #ffffff;
}
.cid-ui8BqiYM1o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #362641;
}
.cid-ui8BqiYM1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8BqiYM1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8BqiYM1o .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ui8BqiYM1o .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ui8BqiYM1o .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ui8BqiYM1o .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ui8BqiYM1o .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ui8BqiYM1o .mbr-section-title {
  color: #232323;
}
.cid-ui8COqcXyf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #282727;
  overflow: hidden;
}
.cid-ui8COqcXyf .media-container-row .mbr-text {
  color: #fffcee;
}
.cid-se8hkYiDL2 .nav-item:focus,
.cid-se8hkYiDL2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se8hkYiDL2 .nav-item {
    position: relative;
  }
}
.cid-se8hkYiDL2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-se8hkYiDL2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #362641;
}
.cid-se8hkYiDL2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #362641 !important;
}
.cid-se8hkYiDL2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se8hkYiDL2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se8hkYiDL2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se8hkYiDL2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.show,
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se8hkYiDL2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se8hkYiDL2 .navbar.collapsed .right-menu,
.cid-se8hkYiDL2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar .navbar-collapse.show,
  .cid-se8hkYiDL2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-se8hkYiDL2 .navbar .navbar-collapse.show .brand-container,
  .cid-se8hkYiDL2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se8hkYiDL2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se8hkYiDL2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se8hkYiDL2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se8hkYiDL2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se8hkYiDL2 .navbar .right-menu,
  .cid-se8hkYiDL2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se8hkYiDL2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-se8hkYiDL2 .navbar.navbar-short .mbr-overlay {
  background: #362641 !important;
}
.cid-se8hkYiDL2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se8hkYiDL2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se8hkYiDL2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se8hkYiDL2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-se8hkYiDL2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se8hkYiDL2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se8hkYiDL2 .dropdown-item.active,
.cid-se8hkYiDL2 .dropdown-item:active {
  background-color: transparent;
}
.cid-se8hkYiDL2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se8hkYiDL2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se8hkYiDL2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #362641;
}
.cid-se8hkYiDL2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se8hkYiDL2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se8hkYiDL2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se8hkYiDL2 .navbar-buttons {
  margin-left: auto;
}
.cid-se8hkYiDL2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler:hover {
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler:active {
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd66a;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8hkYiDL2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-se8hkYiDL2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-se8hkYiDL2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se8hkYiDL2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se8hkYiDL2 .right-menu,
.cid-se8hkYiDL2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se8hkYiDL2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se8hkYiDL2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se8hkYiDL2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se8hkYiDL2 .card-wrapper {
  z-index: 3;
}
.cid-se8hkYiDL2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se8hkYiDL2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se8hkYiDL2 .navbar-brand img {
  width: auto !important;
}
.cid-ui8G1lJCI4 {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-ui8G1lJCI4 img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 800px;
  border-radius: 8rem 8rem 0 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ui8G1lJCI4 img {
    height: 400px;
  }
}
.cid-ui8G1lJCI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8G1lJCI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8G1lJCI4 .card {
  justify-content: flex-end;
}
.cid-ui8G1lJCI4 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-ui8G1lJCI4 .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-ui8G1lJCI4 .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-ui8G1lJCI4 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ui8G1lJCI4 .text-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-ui8G1lJCI4 .text-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-ui8G1lJCI4 .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-ui8G1lJCI4 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ui8G1lJCI4 .image-wrapper {
  display: flex;
  align-items: flex-end;
  min-height: 720px;
}
@media (max-width: 992px) {
  .cid-ui8G1lJCI4 .image-wrapper {
    min-height: 400px;
  }
}
.cid-ui8G1lJCI4 .image-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-ui8G1lJCI4 .image-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 32px;
  border-radius: 1rem !important;
  background-color: #d0e59f;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ui8G1lJCI4 .image-wrapper .card-wrapper .card-wrap {
    width: 100%;
    padding: 40px 16px;
    display: block;
  }
}
.cid-ui8G1lJCI4 .image-wrapper .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 24px;
}
@media (max-width: 992px) {
  .cid-ui8G1lJCI4 .image-wrapper .card-wrapper .card-wrap .icon-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-ui8G1lJCI4 .image-wrapper .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  display: block;
}
.cid-ui8G1lJCI4 .image-wrapper .card-wrapper .card-wrap .icon-wrapper .card-text {
  margin-bottom: 0;
}
.cid-ui8G1lJCI4 .mbr-section-title {
  color: #000000;
}
.cid-ui8G1lJCI4 .mbr-text {
  color: #000000;
}
.cid-ui8G1lJCI4 .card-text {
  color: #000000;
}
.cid-ui8GpE9fj7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #362641;
}
.cid-ui8GpE9fj7 .mbr-overlay {
  padding: 0;
  background: #ebc6b8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-ui8GpE9fj7 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-ui8GpE9fj7 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-ui8GpE9fj7 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-ui8GpE9fj7 .section-text,
.cid-ui8GpE9fj7 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ui8GHyihkP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #362641;
}
.cid-ui8GHyihkP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8GHyihkP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8GHyihkP .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-ui8GHyihkP .dot-right {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 1500px) {
  .cid-ui8GHyihkP .container {
    max-width: 1400px;
  }
}
.cid-ui8GHyihkP .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ui8GHyihkP .card-wrapper {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  padding-top: 3rem;
  border-radius: 2rem;
}
.cid-ui8GHyihkP .row {
  justify-content: center;
}
.cid-ui8GHyihkP .card-title,
.cid-ui8GHyihkP .iconfont-wrapper,
.cid-ui8GHyihkP .dot {
  color: #ffffff;
}
.cid-ui8GHyihkP .mbr-section-title {
  color: #ffffff;
}
.cid-ui8GI4shL7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #362641;
}
.cid-ui8GI4shL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8GI4shL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8GI4shL7 .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ui8GI4shL7 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ui8GI4shL7 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ui8GI4shL7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ui8GI4shL7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ui8GI4shL7 .mbr-section-title {
  color: #232323;
}
.cid-ui8COqcXyf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #282727;
  overflow: hidden;
}
.cid-ui8COqcXyf .media-container-row .mbr-text {
  color: #fffcee;
}
.cid-ui8I7Ejt08 .nav-item:focus,
.cid-ui8I7Ejt08 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ui8I7Ejt08 .nav-item {
    position: relative;
  }
}
.cid-ui8I7Ejt08 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-ui8I7Ejt08 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #362641;
}
.cid-ui8I7Ejt08 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #362641 !important;
}
.cid-ui8I7Ejt08 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-ui8I7Ejt08 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-ui8I7Ejt08 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-ui8I7Ejt08 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ui8I7Ejt08 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ui8I7Ejt08 .navbar.collapsed .navbar-collapse.show,
.cid-ui8I7Ejt08 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ui8I7Ejt08 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-ui8I7Ejt08 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-ui8I7Ejt08 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ui8I7Ejt08 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ui8I7Ejt08 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ui8I7Ejt08 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-ui8I7Ejt08 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-ui8I7Ejt08 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ui8I7Ejt08 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-ui8I7Ejt08 .navbar.collapsed .right-menu,
.cid-ui8I7Ejt08 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-ui8I7Ejt08 .navbar .navbar-collapse.show,
  .cid-ui8I7Ejt08 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-ui8I7Ejt08 .navbar .navbar-collapse.show .brand-container,
  .cid-ui8I7Ejt08 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-ui8I7Ejt08 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ui8I7Ejt08 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ui8I7Ejt08 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ui8I7Ejt08 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ui8I7Ejt08 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ui8I7Ejt08 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ui8I7Ejt08 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-ui8I7Ejt08 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-ui8I7Ejt08 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-ui8I7Ejt08 .navbar .right-menu,
  .cid-ui8I7Ejt08 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-ui8I7Ejt08 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ui8I7Ejt08 .navbar.navbar-short .mbr-overlay {
  background: #362641 !important;
}
.cid-ui8I7Ejt08 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ui8I7Ejt08 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ui8I7Ejt08 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-ui8I7Ejt08 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-ui8I7Ejt08 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ui8I7Ejt08 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ui8I7Ejt08 .dropdown-item.active,
.cid-ui8I7Ejt08 .dropdown-item:active {
  background-color: transparent;
}
.cid-ui8I7Ejt08 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ui8I7Ejt08 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-ui8I7Ejt08 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #362641;
}
.cid-ui8I7Ejt08 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ui8I7Ejt08 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ui8I7Ejt08 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-ui8I7Ejt08 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-ui8I7Ejt08 .navbar-buttons {
  margin-left: auto;
}
.cid-ui8I7Ejt08 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-ui8I7Ejt08 button.navbar-toggler:hover {
  outline: none;
}
.cid-ui8I7Ejt08 button.navbar-toggler:active {
  outline: none;
}
.cid-ui8I7Ejt08 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd66a;
}
.cid-ui8I7Ejt08 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ui8I7Ejt08 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ui8I7Ejt08 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ui8I7Ejt08 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ui8I7Ejt08 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ui8I7Ejt08 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-ui8I7Ejt08 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-ui8I7Ejt08 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ui8I7Ejt08 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-ui8I7Ejt08 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-ui8I7Ejt08 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-ui8I7Ejt08 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ui8I7Ejt08 .right-menu,
.cid-ui8I7Ejt08 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-ui8I7Ejt08 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ui8I7Ejt08 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ui8I7Ejt08 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ui8I7Ejt08 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ui8I7Ejt08 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ui8I7Ejt08 .card-wrapper {
  z-index: 3;
}
.cid-ui8I7Ejt08 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-ui8I7Ejt08 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-ui8I7Ejt08 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-ui8I7Ejt08 .navbar-brand img {
  width: auto !important;
}
.cid-ui8I7EN7wg {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-ui8I7EN7wg img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 800px;
  border-radius: 8rem 8rem 0 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ui8I7EN7wg img {
    height: 400px;
  }
}
.cid-ui8I7EN7wg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8I7EN7wg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8I7EN7wg .card {
  justify-content: flex-end;
}
.cid-ui8I7EN7wg .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-ui8I7EN7wg .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-ui8I7EN7wg .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-ui8I7EN7wg .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ui8I7EN7wg .text-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-ui8I7EN7wg .text-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-ui8I7EN7wg .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-ui8I7EN7wg .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ui8I7EN7wg .image-wrapper {
  display: flex;
  align-items: flex-end;
  min-height: 720px;
}
@media (max-width: 992px) {
  .cid-ui8I7EN7wg .image-wrapper {
    min-height: 400px;
  }
}
.cid-ui8I7EN7wg .image-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-ui8I7EN7wg .image-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 32px;
  border-radius: 1rem !important;
  background-color: #d0e59f;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ui8I7EN7wg .image-wrapper .card-wrapper .card-wrap {
    width: 100%;
    padding: 40px 16px;
    display: block;
  }
}
.cid-ui8I7EN7wg .image-wrapper .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 24px;
}
@media (max-width: 992px) {
  .cid-ui8I7EN7wg .image-wrapper .card-wrapper .card-wrap .icon-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-ui8I7EN7wg .image-wrapper .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  display: block;
}
.cid-ui8I7EN7wg .image-wrapper .card-wrapper .card-wrap .icon-wrapper .card-text {
  margin-bottom: 0;
}
.cid-ui8I7EN7wg .mbr-section-title {
  color: #000000;
}
.cid-ui8I7EN7wg .mbr-text {
  color: #000000;
}
.cid-ui8I7EN7wg .card-text {
  color: #000000;
}
.cid-ui8I7F9QP9 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #362641;
}
.cid-ui8I7F9QP9 .mbr-overlay {
  padding: 0;
  background: #ebc6b8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-ui8I7F9QP9 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-ui8I7F9QP9 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-ui8I7F9QP9 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-ui8I7F9QP9 .section-text,
.cid-ui8I7F9QP9 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ui8I7Fv50d {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #362641;
}
.cid-ui8I7Fv50d .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8I7Fv50d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8I7Fv50d .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-ui8I7Fv50d .dot-right {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 1500px) {
  .cid-ui8I7Fv50d .container {
    max-width: 1400px;
  }
}
.cid-ui8I7Fv50d .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ui8I7Fv50d .card-wrapper {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  padding-top: 3rem;
  border-radius: 2rem;
}
.cid-ui8I7Fv50d .row {
  justify-content: center;
}
.cid-ui8I7Fv50d .card-title,
.cid-ui8I7Fv50d .iconfont-wrapper,
.cid-ui8I7Fv50d .dot {
  color: #ffffff;
}
.cid-ui8I7Fv50d .mbr-section-title {
  color: #ffffff;
}
.cid-ui8I7FVHa8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #362641;
}
.cid-ui8I7FVHa8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8I7FVHa8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8I7FVHa8 .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ui8I7FVHa8 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ui8I7FVHa8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ui8I7FVHa8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ui8I7FVHa8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ui8I7FVHa8 .mbr-section-title {
  color: #232323;
}
.cid-ui8I7GkuBu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #282727;
  overflow: hidden;
}
.cid-ui8I7GkuBu .media-container-row .mbr-text {
  color: #fffcee;
}
.cid-ui8JLlzvkt .nav-item:focus,
.cid-ui8JLlzvkt .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ui8JLlzvkt .nav-item {
    position: relative;
  }
}
.cid-ui8JLlzvkt .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-ui8JLlzvkt .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #362641;
}
.cid-ui8JLlzvkt .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #362641 !important;
}
.cid-ui8JLlzvkt .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-ui8JLlzvkt .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-ui8JLlzvkt .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-ui8JLlzvkt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ui8JLlzvkt .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ui8JLlzvkt .navbar.collapsed .navbar-collapse.show,
.cid-ui8JLlzvkt .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ui8JLlzvkt .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-ui8JLlzvkt .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-ui8JLlzvkt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ui8JLlzvkt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ui8JLlzvkt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ui8JLlzvkt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-ui8JLlzvkt .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-ui8JLlzvkt .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ui8JLlzvkt .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-ui8JLlzvkt .navbar.collapsed .right-menu,
.cid-ui8JLlzvkt .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-ui8JLlzvkt .navbar .navbar-collapse.show,
  .cid-ui8JLlzvkt .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-ui8JLlzvkt .navbar .navbar-collapse.show .brand-container,
  .cid-ui8JLlzvkt .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-ui8JLlzvkt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ui8JLlzvkt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ui8JLlzvkt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ui8JLlzvkt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ui8JLlzvkt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ui8JLlzvkt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ui8JLlzvkt .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-ui8JLlzvkt .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-ui8JLlzvkt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-ui8JLlzvkt .navbar .right-menu,
  .cid-ui8JLlzvkt .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-ui8JLlzvkt .navbar.navbar-short {
  min-height: 60px;
}
.cid-ui8JLlzvkt .navbar.navbar-short .mbr-overlay {
  background: #362641 !important;
}
.cid-ui8JLlzvkt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ui8JLlzvkt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ui8JLlzvkt .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-ui8JLlzvkt .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-ui8JLlzvkt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ui8JLlzvkt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ui8JLlzvkt .dropdown-item.active,
.cid-ui8JLlzvkt .dropdown-item:active {
  background-color: transparent;
}
.cid-ui8JLlzvkt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ui8JLlzvkt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-ui8JLlzvkt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #362641;
}
.cid-ui8JLlzvkt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ui8JLlzvkt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ui8JLlzvkt ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-ui8JLlzvkt ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-ui8JLlzvkt .navbar-buttons {
  margin-left: auto;
}
.cid-ui8JLlzvkt button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-ui8JLlzvkt button.navbar-toggler:hover {
  outline: none;
}
.cid-ui8JLlzvkt button.navbar-toggler:active {
  outline: none;
}
.cid-ui8JLlzvkt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd66a;
}
.cid-ui8JLlzvkt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ui8JLlzvkt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ui8JLlzvkt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ui8JLlzvkt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ui8JLlzvkt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ui8JLlzvkt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-ui8JLlzvkt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-ui8JLlzvkt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ui8JLlzvkt a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-ui8JLlzvkt a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-ui8JLlzvkt a.nav-link:hover:before {
  transform: scale(1);
}
.cid-ui8JLlzvkt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ui8JLlzvkt .right-menu,
.cid-ui8JLlzvkt .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-ui8JLlzvkt .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ui8JLlzvkt .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ui8JLlzvkt .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ui8JLlzvkt .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ui8JLlzvkt .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ui8JLlzvkt .card-wrapper {
  z-index: 3;
}
.cid-ui8JLlzvkt .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-ui8JLlzvkt .navbar-collapse {
    padding-top: 0;
  }
}
.cid-ui8JLlzvkt .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-ui8JLlzvkt .navbar-brand img {
  width: auto !important;
}
.cid-ui8JLmoUit {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-ui8JLmoUit img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 800px;
  border-radius: 8rem 8rem 0 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ui8JLmoUit img {
    height: 400px;
  }
}
.cid-ui8JLmoUit .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8JLmoUit .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8JLmoUit .card {
  justify-content: flex-end;
}
.cid-ui8JLmoUit .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-ui8JLmoUit .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-ui8JLmoUit .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-ui8JLmoUit .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ui8JLmoUit .text-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-ui8JLmoUit .text-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-ui8JLmoUit .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-ui8JLmoUit .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ui8JLmoUit .image-wrapper {
  display: flex;
  align-items: flex-end;
  min-height: 720px;
}
@media (max-width: 992px) {
  .cid-ui8JLmoUit .image-wrapper {
    min-height: 400px;
  }
}
.cid-ui8JLmoUit .image-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-ui8JLmoUit .image-wrapper .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 32px;
  border-radius: 1rem !important;
  background-color: #d0e59f;
  width: 55%;
}
@media (max-width: 992px) {
  .cid-ui8JLmoUit .image-wrapper .card-wrapper .card-wrap {
    width: 100%;
    padding: 40px 16px;
    display: block;
  }
}
.cid-ui8JLmoUit .image-wrapper .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 24px;
}
@media (max-width: 992px) {
  .cid-ui8JLmoUit .image-wrapper .card-wrapper .card-wrap .icon-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-ui8JLmoUit .image-wrapper .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #000000;
  display: block;
}
.cid-ui8JLmoUit .image-wrapper .card-wrapper .card-wrap .icon-wrapper .card-text {
  margin-bottom: 0;
}
.cid-ui8JLmoUit .mbr-section-title {
  color: #000000;
}
.cid-ui8JLmoUit .mbr-text {
  color: #000000;
}
.cid-ui8JLmoUit .card-text {
  color: #000000;
}
.cid-ui8JLmZ64U {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #362641;
}
.cid-ui8JLmZ64U .mbr-overlay {
  padding: 0;
  background: #ebc6b8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-ui8JLmZ64U .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-ui8JLmZ64U .title-text {
  color: #231f59;
  text-align: center;
}
.cid-ui8JLmZ64U H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-ui8JLmZ64U .section-text,
.cid-ui8JLmZ64U .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ui8Lcw5qat {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #282727;
}
.cid-ui8Lcw5qat .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8Lcw5qat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8Lcw5qat .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ui8Lcw5qat .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-ui8Lcw5qat .container {
    padding: 0 25px;
  }
}
.cid-ui8Lcw5qat .video-block .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ui8Lcw5qat .video-block .video-wrapper {
  border: 1px solid #e33030;
}
.cid-ui8Lcw5qat .video-block .video-wrapper iframe {
  height: 450px;
  object-fit: cover;
}
.cid-ui8Lcw5qat .video-block .video-wrapper .app-video-wrapper img {
  height: 450px;
  object-fit: cover;
}
.cid-ui8Lcw5qat .video-block .video-wrapper .app-video-wrapper::before {
  color: #e33030;
  text-shadow: none;
}
.cid-ui8Lcw5qat .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ui8JLnsoPp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #362641;
}
.cid-ui8JLnsoPp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8JLnsoPp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8JLnsoPp .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-ui8JLnsoPp .dot-right {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 1500px) {
  .cid-ui8JLnsoPp .container {
    max-width: 1400px;
  }
}
.cid-ui8JLnsoPp .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ui8JLnsoPp .card-wrapper {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  padding-top: 3rem;
  border-radius: 2rem;
}
.cid-ui8JLnsoPp .row {
  justify-content: center;
}
.cid-ui8JLnsoPp .card-title,
.cid-ui8JLnsoPp .iconfont-wrapper,
.cid-ui8JLnsoPp .dot {
  color: #ffffff;
}
.cid-ui8JLnsoPp .mbr-section-title {
  color: #ffffff;
}
.cid-ui8JLo3WVv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #362641;
}
.cid-ui8JLo3WVv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui8JLo3WVv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui8JLo3WVv .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ui8JLo3WVv .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ui8JLo3WVv .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ui8JLo3WVv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ui8JLo3WVv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ui8JLo3WVv .mbr-section-title {
  color: #232323;
}
.cid-ui8JLozf7a {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #282727;
  overflow: hidden;
}
.cid-ui8JLozf7a .media-container-row .mbr-text {
  color: #fffcee;
}
