@import url(https://fonts.googleapis.com/css?family=Viaoda+Libre:400&amp;display=swap);
@import url(https://fonts.googleapis.com/css?family=Sora:100,200,300,400,500,600,700,800&amp;display=swap);





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: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.875rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 1.31rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6375rem;
}
/* ---- 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: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.048rem;
    font-size: calc( 1.1085rem + (1.31 - 1.1085) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1085rem + (1.31 - 1.1085) * ((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: #6a3649 !important;
}
.bg-success {
  background-color: #a5bdce !important;
}
.bg-info {
  background-color: #c17b71 !important;
}
.bg-warning {
  background-color: #c17b71 !important;
}
.bg-danger {
  background-color: #e9ddd8 !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #6a3649 !important;
  border-color: #6a3649 !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #231f59;
  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: #231f59 !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: #231f59 !important;
  border-color: #231f59 !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #231f59 !important;
  border-color: #231f59 !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #6a3649;
  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: #6a3649 !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: #6a3649 !important;
  border-color: #6a3649 !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
  color: #ffffff !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #231f59;
  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: #231f59 !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: #ffffff !important;
  background-color: #231f59 !important;
  border-color: #231f59 !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #a5bdce !important;
  border-color: #a5bdce !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #6a3649;
  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: #6a3649 !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: #6a3649 !important;
  border-color: #6a3649 !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #a5bdce;
  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: #a5bdce !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: #a5bdce !important;
  border-color: #a5bdce !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #e9ddd8 !important;
  border-color: #e9ddd8 !important;
  color: #7c5646 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #a5bdce;
  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: #a5bdce !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: #7c5646 !important;
  background-color: #a5bdce !important;
  border-color: #a5bdce !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: #6a3649;
  color: #6a3649;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #231f59;
  color: #231f59;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #0d0b20;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #231f59 !important;
  border-color: #231f59 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #c17b71;
  color: #c17b71;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #a05146;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #a5bdce;
  color: #a5bdce;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #7399b3;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a5bdce !important;
  border-color: #a5bdce !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c17b71;
  color: #c17b71;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #a05146;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e9ddd8;
  color: #e9ddd8;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #cdb2a7;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #7c5646 !important;
  background-color: #e9ddd8 !important;
  border-color: #e9ddd8 !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: #6a3649 !important;
}
.text-secondary {
  color: #231f59 !important;
}
.text-success {
  color: #a5bdce !important;
}
.text-info {
  color: #c17b71 !important;
}
.text-warning {
  color: #c17b71 !important;
}
.text-danger {
  color: #e9ddd8 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #26141a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #05050d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #638daa !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #8e483e !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e483e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c4a497 !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: #6a3649;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c17b71;
}
.alert-warning {
  background-color: #c17b71;
}
.alert-danger {
  background-color: #e9ddd8;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6a3649;
  border-color: #6a3649;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6a3649;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b46c86;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e8cdca;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e8cdca;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6a3649;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6a3649;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6a3649;
}
.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: #6a3649;
  border-bottom-color: #6a3649;
}
.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: #6a3649 !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: #231f59 !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='%236a3649' %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-se9wq7tyVG .nav-item:focus,
.cid-se9wq7tyVG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se9wq7tyVG .nav-item {
    position: relative;
  }
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #e9ddd8;
}
.cid-se9wq7tyVG .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #e9ddd8 !important;
}
.cid-se9wq7tyVG .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se9wq7tyVG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se9wq7tyVG .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.show,
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se9wq7tyVG .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se9wq7tyVG .navbar.collapsed .right-menu,
.cid-se9wq7tyVG .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se9wq7tyVG .navbar .navbar-collapse.show,
  .cid-se9wq7tyVG .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-se9wq7tyVG .navbar .navbar-collapse.show .brand-container,
  .cid-se9wq7tyVG .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se9wq7tyVG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se9wq7tyVG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se9wq7tyVG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se9wq7tyVG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se9wq7tyVG .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-se9wq7tyVG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se9wq7tyVG .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se9wq7tyVG .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-se9wq7tyVG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se9wq7tyVG .navbar .right-menu,
  .cid-se9wq7tyVG .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se9wq7tyVG .navbar.navbar-short {
  min-height: 60px;
}
.cid-se9wq7tyVG .navbar.navbar-short .mbr-overlay {
  background: #e9ddd8 !important;
}
.cid-se9wq7tyVG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se9wq7tyVG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se9wq7tyVG .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se9wq7tyVG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se9wq7tyVG .dropdown-item.active,
.cid-se9wq7tyVG .dropdown-item:active {
  background-color: transparent;
}
.cid-se9wq7tyVG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se9wq7tyVG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se9wq7tyVG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e9ddd8;
}
.cid-se9wq7tyVG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se9wq7tyVG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se9wq7tyVG ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se9wq7tyVG ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se9wq7tyVG .navbar-buttons {
  margin-left: auto;
}
.cid-se9wq7tyVG 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-se9wq7tyVG button.navbar-toggler:hover {
  outline: none;
}
.cid-se9wq7tyVG button.navbar-toggler:active {
  outline: none;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #6a3649;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9wq7tyVG 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-se9wq7tyVG 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-se9wq7tyVG a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se9wq7tyVG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se9wq7tyVG .right-menu,
.cid-se9wq7tyVG .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se9wq7tyVG .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se9wq7tyVG .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se9wq7tyVG .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se9wq7tyVG .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se9wq7tyVG .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se9wq7tyVG .card-wrapper {
  z-index: 3;
}
.cid-se9wq7tyVG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se9wq7tyVG .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se9wq7tyVG .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se9wq7tyVG .navbar-brand img {
  width: auto !important;
}
.cid-se9xvEJjCT {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("https://mobirise.com/extensions/spiritm4/assets/images/001-1920x1280.jpg");
  }
.cid-se9xvEJjCT .mbr-overlay {
  background-color: #fff;
  opacity: 0.2;
}
.cid-se9xvEJjCT .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-se9xvEJjCT {
    align-items: center;
  }
  .cid-se9xvEJjCT .row {
    justify-content: flex-start;
  }
  .cid-se9xvEJjCT .content-wrap {
    width: 42%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-se9xvEJjCT .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-se9xvEJjCT {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-se9xvEJjCT .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-se9xvEJjCT .content-wrap {
    width: 100%;
  }
}
.cid-se9xvEJjCT .mbr-section-title {
  color: #231f59;
  text-align: left;
}
.cid-se9xvEJjCT .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se9xvEJjCT .mbr-text,
.cid-se9xvEJjCT .mbr-section-btn {
  color: #282727;
}
.cid-se9yl7yFdt {
  display: flex;
  background-image: url("https://mobirise.com/extensions/spiritm4/assets/images/theme-bg-thiny-1920x1061.jpg");
}
.cid-se9yl7yFdt .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-se9yl7yFdt .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-se9yl7yFdt {
    align-items: center;
  }
  .cid-se9yl7yFdt .row {
    justify-content: flex-start;
  }
  .cid-se9yl7yFdt .content-wrap {
    width: 42%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-se9yl7yFdt .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-se9yl7yFdt {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-se9yl7yFdt .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-se9yl7yFdt .content-wrap {
    width: 100%;
  }
}
.cid-se9yl7yFdt .mbr-section-title {
  color: #6a3649;
  text-align: right;
}
.cid-se9yl7yFdt .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se9yl7yFdt .mbr-text,
.cid-se9yl7yFdt .mbr-section-btn {
  color: #282727;
}
.cid-se9yIEIR7R {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f1eb;
}
.cid-se9yIEIR7R .mbr-overlay {
  padding: 0;
  background: #cbddea;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-se9yIEIR7R img,
.cid-se9yIEIR7R .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-se9yIEIR7R .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-se9yIEIR7R .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-se9yIEIR7R .item:focus,
.cid-se9yIEIR7R span:focus {
  outline: none;
}
.cid-se9yIEIR7R .item {
  cursor: pointer;
}
.cid-se9yIEIR7R .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-se9yIEIR7R .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-se9yIEIR7R .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-se9yIEIR7R .item-subtitle {
  color: #6a3649;
}
.cid-se9yIEIR7R .mbr-text,
.cid-se9yIEIR7R .mbr-section-btn {
  color: #231f59;
}
.cid-se9I0MeE3E {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f2f1eb;
}
.cid-se9I0MeE3E .mbr-section-head {
  margin-bottom: 60px;
}
.cid-se9I0MeE3E .video-wrapper iframe {
  width: 100%;
}
.cid-se9I0MeE3E .mbr-section-title,
.cid-se9I0MeE3E .mbr-section-subtitle,
.cid-se9I0MeE3E .mbr-text {
  text-align: center;
}
.cid-se9I0MeE3E .mbr-text {
  color: #282727;
}
.cid-se9I0MeE3E .mbr-section-subtitle {
  color: #6a3649;
  text-align: center;
}
.cid-se9I0MeE3E .mbr-section-title {
  color: #231f59;
}
.cid-sedRzdSsvm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #cbddea;
}
.cid-sedRzdSsvm .mbr-overlay {
  padding: 0;
  background: #f2f1eb;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sedRzdSsvm img,
.cid-sedRzdSsvm .item-img {
  width: 100%;
}
.cid-sedRzdSsvm .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-sedRzdSsvm .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-sedRzdSsvm .item:focus,
.cid-sedRzdSsvm span:focus {
  outline: none;
}
.cid-sedRzdSsvm .item {
  cursor: pointer;
}
.cid-sedRzdSsvm .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-sedRzdSsvm .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sedRzdSsvm .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-sedRzdSsvm .item-subtitle {
  color: #6a3649;
}
.cid-sedRzdSsvm .mbr-text,
.cid-sedRzdSsvm .mbr-section-btn {
  color: #110d3e;
}
.cid-sedUyCVes7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cbddea;
}
.cid-sedUyCVes7 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sedUyCVes7 .copyright-section,
.cid-sedUyCVes7 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sedUyCVes7 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sedUyCVes7 .logo-section img {
  margin: 0 auto;
}
.cid-sedUyCVes7 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sedUyCVes7 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sedUyCVes7 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sedUyCVes7 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sedUyCVes7 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sedUyCVes7 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sedUyCVes7 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sedUyCVes7 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sedUyCVes7 .copyright-section {
    order: 1;
  }
  .cid-sedUyCVes7 .copyright-section hr {
    display: none;
  }
  .cid-sedUyCVes7 .social-media {
    margin-top: 30px;
  }
  .cid-sedUyCVes7 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sedUyCVes7 .line {
    margin: 25px 0;
  }
  .cid-sedUyCVes7 .mobirise-rights,
  .cid-sedUyCVes7 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sedUyCVes7 .mbr-text,
.cid-sedUyCVes7 .copyright-section {
  color: #6a3649;
}
.cid-se9wq7tyVG .nav-item:focus,
.cid-se9wq7tyVG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se9wq7tyVG .nav-item {
    position: relative;
  }
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #e9ddd8;
}
.cid-se9wq7tyVG .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #e9ddd8 !important;
}
.cid-se9wq7tyVG .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se9wq7tyVG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se9wq7tyVG .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.show,
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se9wq7tyVG .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se9wq7tyVG .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se9wq7tyVG .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se9wq7tyVG .navbar.collapsed .right-menu,
.cid-se9wq7tyVG .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se9wq7tyVG .navbar .navbar-collapse.show,
  .cid-se9wq7tyVG .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-se9wq7tyVG .navbar .navbar-collapse.show .brand-container,
  .cid-se9wq7tyVG .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se9wq7tyVG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se9wq7tyVG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se9wq7tyVG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se9wq7tyVG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se9wq7tyVG .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-se9wq7tyVG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se9wq7tyVG .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se9wq7tyVG .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-se9wq7tyVG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se9wq7tyVG .navbar .right-menu,
  .cid-se9wq7tyVG .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se9wq7tyVG .navbar.navbar-short {
  min-height: 60px;
}
.cid-se9wq7tyVG .navbar.navbar-short .mbr-overlay {
  background: #e9ddd8 !important;
}
.cid-se9wq7tyVG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se9wq7tyVG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se9wq7tyVG .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se9wq7tyVG .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-se9wq7tyVG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se9wq7tyVG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se9wq7tyVG .dropdown-item.active,
.cid-se9wq7tyVG .dropdown-item:active {
  background-color: transparent;
}
.cid-se9wq7tyVG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se9wq7tyVG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se9wq7tyVG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e9ddd8;
}
.cid-se9wq7tyVG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se9wq7tyVG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se9wq7tyVG ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se9wq7tyVG ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se9wq7tyVG .navbar-buttons {
  margin-left: auto;
}
.cid-se9wq7tyVG 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-se9wq7tyVG button.navbar-toggler:hover {
  outline: none;
}
.cid-se9wq7tyVG button.navbar-toggler:active {
  outline: none;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #6a3649;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se9wq7tyVG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se9wq7tyVG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9wq7tyVG 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-se9wq7tyVG 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-se9wq7tyVG a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se9wq7tyVG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se9wq7tyVG .right-menu,
.cid-se9wq7tyVG .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se9wq7tyVG .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se9wq7tyVG .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se9wq7tyVG .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se9wq7tyVG .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se9wq7tyVG .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se9wq7tyVG .card-wrapper {
  z-index: 3;
}
.cid-se9wq7tyVG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se9wq7tyVG .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se9wq7tyVG .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se9wq7tyVG .navbar-brand img {
  width: auto !important;
}
.cid-sedUyCVes7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cbddea;
}
.cid-sedUyCVes7 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sedUyCVes7 .copyright-section,
.cid-sedUyCVes7 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sedUyCVes7 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sedUyCVes7 .logo-section img {
  margin: 0 auto;
}
.cid-sedUyCVes7 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sedUyCVes7 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sedUyCVes7 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sedUyCVes7 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sedUyCVes7 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sedUyCVes7 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sedUyCVes7 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sedUyCVes7 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sedUyCVes7 .copyright-section {
    order: 1;
  }
  .cid-sedUyCVes7 .copyright-section hr {
    display: none;
  }
  .cid-sedUyCVes7 .social-media {
    margin-top: 30px;
  }
  .cid-sedUyCVes7 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sedUyCVes7 .line {
    margin: 25px 0;
  }
  .cid-sedUyCVes7 .mobirise-rights,
  .cid-sedUyCVes7 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sedUyCVes7 .mbr-text,
.cid-sedUyCVes7 .copyright-section {
  color: #6a3649;
}
.cid-seeluVu9rG {
  display: flex;
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #5d1f36;
}
.cid-seeluVu9rG .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-seeluVu9rG {
    align-items: center;
  }
  .cid-seeluVu9rG .row {
    justify-content: flex-start;
  }
  .cid-seeluVu9rG .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-seeluVu9rG .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-seeluVu9rG {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-seeluVu9rG .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-seeluVu9rG .content-wrap {
    width: 100%;
  }
}
.cid-seeluVu9rG .mbr-section-title {
  color: #f2f1eb;
  text-align: left;
}
.cid-seeluVu9rG .mbr-text {
  margin-bottom: 20.4px;
}
.cid-seeluVu9rG .mbr-text,
.cid-seeluVu9rG .mbr-section-btn {
  color: #282727;
}
.cid-seemwYAmR7 {
  background-image: url("https://mobirise.com/extensions/spiritm4/assets/images/004.jpg");
}
.cid-seemwYAmR7 .animated-element {
  color: #6a3649;
}
.cid-seemwYAmR7 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #6a3649;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-seemwYAmR7 .typed-text {
  margin-bottom: 30px;
  color: #6a3649;
}
.cid-seemwYAmR7 .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-seemwYAmR7 .mbr-section-text,
.cid-seemwYAmR7 .mbr-section-btn {
  color: #4c4a4b;
}
.cid-seemwYAmR7 .typed-text .typed-text {
  color: #ef8e81;
}
.cid-seemxkEmn7 {
  display: flex;
  background-image: url("https://mobirise.com/extensions/spiritm4/assets/images/005.jpg");
}
.cid-seemxkEmn7 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-seemxkEmn7 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-seemxkEmn7 {
    align-items: center;
  }
  .cid-seemxkEmn7 .row {
    justify-content: flex-start;
  }
  .cid-seemxkEmn7 .content-wrap {
    width: 42%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-seemxkEmn7 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-seemxkEmn7 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-seemxkEmn7 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-seemxkEmn7 .content-wrap {
    width: 100%;
  }
}
.cid-seemxkEmn7 .mbr-section-title {
  color: #6a3649;
  text-align: left;
}
.cid-seemxkEmn7 .mbr-text {
  margin-bottom: 20.4px;
}
.cid-seemxkEmn7 .mbr-text,
.cid-seemxkEmn7 .mbr-section-btn {
  color: #282727;
}
.cid-seemxIzJMK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f1eb;
}
.cid-seemxIzJMK .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-seemxIzJMK .mbr-text {
  margin-bottom: 20.4px;
}
.cid-seemxIzJMK .mbr-text,
.cid-seemxIzJMK .mbr-section-btn {
  text-align: left;
  color: #4c4a4b;
}
.cid-seemxIzJMK .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 484px;
}
.cid-seemxIzJMK .mbr-section-subtitle {
  color: #6a3649;
}
.cid-seemxIzJMK .section-subtext {
  color: #231f59;
}
.cid-seepODPEL2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f1eb;
}
.cid-seepODPEL2 .mbr-overlay {
  padding: 0;
  background: #cbddea;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-seepODPEL2 img,
.cid-seepODPEL2 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-seepODPEL2 .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-seepODPEL2 .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-seepODPEL2 .item:focus,
.cid-seepODPEL2 span:focus {
  outline: none;
}
.cid-seepODPEL2 .item {
  cursor: pointer;
}
.cid-seepODPEL2 .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-seepODPEL2 .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-seepODPEL2 .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-seepODPEL2 .item-subtitle {
  color: #6a3649;
}
.cid-seepODPEL2 .mbr-text,
.cid-seepODPEL2 .mbr-section-btn {
  color: #282727;
}
.cid-seepPnvSxS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e9ddd8;
}
.cid-seepPnvSxS .titles-section {
  margin-bottom: 40px;
}
.cid-seepPnvSxS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #231f59;
}
.cid-seepPnvSxS .mbr-section-title {
  color: #6a3649;
}
.cid-seepPnvSxS .mbr-section-subtitle {
  color: #6a3649;
}
.cid-seepPnvSxS .card-text {
  text-align: center;
  color: #4c4a4b;
}
.cid-seepPnvSxS .card .card-title,
.cid-seepPnvSxS .iconfont-wrapper {
  color: #6a3649;
}
.cid-seendc9BmC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #231f59;
}
.cid-seendc9BmC .mbr-overlay {
  padding: 0;
  background: #cbddea;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
@media (max-width: 992px) {
  .cid-seendc9BmC .mbr-overlay {
    background-color: #231f59;
  }
}
.cid-seendc9BmC .mbr-text {
  color: #ebc6b8;
}
.cid-seendc9BmC .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-seendc9BmC .mbr-section-subtitle {
  color: #a5bdce;
}
.cid-seepVT1wX0 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-seepVT1wX0 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-seepVT1wX0 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-seepVT1wX0 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-seepVT1wX0 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-seepVT1wX0 .section-text,
.cid-seepVT1wX0 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-seepWkFHUC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f1eb;
}
.cid-seepWkFHUC .svg-wrapper {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1964' height='920'%3E%3Cpolygon points='0,0 985,0 920,23 0,23' class='svg1' style='fill:%236a3649'%3E%3C/polygon%3E%3Cpolygon points='985,0 1964,0 1941,23 920,23' class='svg2' style='fill:%23c17b71'%3E%3C/polygon%3E%3Cpolygon points='1964,0 1964,469.65 1941,525.5 1941,23' class='svg3' style='fill:%23a5bdce'%3E%3C/polygon%3E%3Cpolygon points='1964,469.65 1964,920 1941,920 1941,525.5' class='svg4' style='fill:%23e9ddd8'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 100%;
  max-height: 454px;
  height: 100%;
  position: absolute;
  top: -25px;
  right: 30px;
  bottom: 25px;
}
@media (max-width: 992px) {
  .cid-seepWkFHUC .svg-wrapper {
    top: -10px;
    right: 10px;
  }
}
.cid-seepWkFHUC .text-wrapper {
  padding: 70px 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  background-color: #ebc6b8;
  flex-direction: column;
}
.cid-seepWkFHUC .mbr-section-title,
.cid-seepWkFHUC .mbr-section-text,
.cid-seepWkFHUC .section-subtitle,
.cid-seepWkFHUC .mbr-section-btn {
  z-index: 0;
}
.cid-seepWkFHUC .section-subtitle {
  margin-bottom: 20.4px;
}
.cid-seepWkFHUC .section-subtitle,
.cid-seepWkFHUC .mbr-section-btn {
  color: #4c4c4c;
}
.cid-seepWkFHUC .mbr-section-text,
.cid-seepWkFHUC .mbr-section-btn {
  color: #4c4c4c;
}
.cid-seepWkFHUC .mbr-section-title {
  color: #231f59;
}
.cid-seemBVnqGQ {
  display: flex;
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #5d1f36;
}
.cid-seemBVnqGQ .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-seemBVnqGQ {
    align-items: center;
  }
  .cid-seemBVnqGQ .row {
    justify-content: flex-start;
  }
  .cid-seemBVnqGQ .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-seemBVnqGQ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-seemBVnqGQ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-seemBVnqGQ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-seemBVnqGQ .content-wrap {
    width: 100%;
  }
}
.cid-seemBVnqGQ .mbr-section-title {
  color: #f2f1eb;
  text-align: left;
}
.cid-seemBVnqGQ .mbr-text {
  margin-bottom: 20.4px;
}
.cid-seemBVnqGQ .mbr-text,
.cid-seemBVnqGQ .mbr-section-btn {
  color: #282727;
}
.cid-seemQeGzfk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e9ddd8;
}
.cid-seemQeGzfk .mbr-overlay {
  padding: 0;
  background: #ffffff;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-seemQeGzfk .mbr-section-head {
  margin-bottom: 60px;
}
.cid-seemQeGzfk .video-wrapper iframe {
  width: 100%;
}
.cid-seemQeGzfk .mbr-section-title,
.cid-seemQeGzfk .mbr-section-subtitle,
.cid-seemQeGzfk .mbr-text {
  text-align: center;
}
.cid-seemQeGzfk .mbr-text {
  color: #282727;
}
.cid-seemQeGzfk .mbr-section-subtitle {
  color: #6a3649;
  text-align: center;
}
.cid-seemQeGzfk .mbr-section-title {
  color: #231f59;
}
.cid-seemRW4SVy {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #cbddea;
}
@media (max-width: 992px) {
  .cid-seemRW4SVy {
    background-color: #231f59;
  }
  .cid-seemRW4SVy .accordion-content-wrapper {
    padding-top: 10px;
  }
  .cid-seemRW4SVy .mbr-section-subtitle {
    margin-top: 0;
    line-height: 2 !important;
  }
}
.cid-seemRW4SVy .mbr-overlay {
  padding: 0;
  background: #231f59;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
  bottom: -5%;
}
.cid-seemRW4SVy .header-text {
  flex: 1 1 auto;
  letter-spacing: 1.61px;
}
.cid-seemRW4SVy h4 {
  letter-spacing: 3.27px !important;
  font-style: normal;
}
.cid-seemRW4SVy .panel-collapse {
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-seemRW4SVy .mbr-section-subtitle {
  font-weight: 500;
  color: #a5bdce;
  margin: 30px 0;
}
.cid-seemRW4SVy .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-seemRW4SVy .accordion-wrapper {
  padding: 0 25px;
}
.cid-seemRW4SVy .accordion-content-wrapper {
  padding: 50px 0;
  max-width: 484px;
  margin: 0 auto;
}
.cid-seemRW4SVy .vertical-center {
  align-items: center;
}
.cid-seemRW4SVy .panel-group {
  width: 100%;
}
.cid-seemRW4SVy .card {
  border-bottom: 1px solid #7394ab !important;
  border-radius: 0px;
}
.cid-seemRW4SVy .card:first-of-type {
  border-top: 1px solid #7394ab;
}
.cid-seemRW4SVy .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
  background-color: transparent;
  padding: 20px 0;
}
.cid-seemRW4SVy .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-seemRW4SVy .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-seemRW4SVy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-seemRW4SVy .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-seemRW4SVy .card h4,
.cid-seemRW4SVy .card h5 {
  margin-bottom: 0;
}
.cid-seemRW4SVy .card p {
  margin: 0;
}
.cid-seemRW4SVy .card .panel-body {
  background-color: transparent;
  padding: 4px 0 20px 0;
}
.cid-seemRW4SVy .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-seemRW4SVy .sign {
  color: #ffffff;
}
.cid-seemRW4SVy .sign:before {
  content: "\e95d";
  font-weight: 700;
}
@media (max-width: 991px) {
  .cid-seemRW4SVy .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-seemRW4SVy .header-text,
.cid-seemRW4SVy .sign P {
  text-align: left;
}
.cid-seemRW4SVy .mbr-text {
  color: #ffffff;
}
.cid-seemRW4SVy .mbri-arrow-up {
  max-height: 7px;
  overflow: hidden;
  vertical-align: middle;
}
.cid-seemRW4SVy .mbri-arrow-up:before {
  content: "\e94c";
  font-weight: 700;
}
.cid-seemRW4SVy .text-container {
  max-width: 934px;
}
.cid-seemRW4SVy .text-container p {
  padding: 30px 0 20.6px 0;
}
.cid-seemRW4SVy .panel-title {
  background: transparent;
}
.cid-seemRW4SVy H4 {
  color: #ffffff;
}
.cid-seemRW4SVy .header-text,
.cid-seemRW4SVy .sign {
  color: #ebc6b8;
}
.cid-seemRW4SVy .mbr-text,
.cid-seemRW4SVy .mbr-section-btn {
  color: #ebc6b8;
}
.cid-seemRW4SVy H5 {
  color: #ebc6b8;
}
.cid-seemRW4SVy .panel-text {
  color: #ffffff;
}
.cid-seemT3HFLh {
  padding-top: 0;
  padding-bottom: 0;
}
.cid-seemT3HFLh .carousel {
  width: 100%;
}
.cid-seemT3HFLh .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-seemT3HFLh .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-seemT3HFLh .mbr-overlay {
  z-index: 1;
}
.cid-seemT3HFLh .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 40%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-seemT3HFLh .carousel-caption {
    height: 68%;
  }
}
.cid-seemT3HFLh .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 40%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #c17b71;
  opacity: 1;
}
.cid-seemT3HFLh .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-seemT3HFLh .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-seemT3HFLh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-seemT3HFLh .carousel-control:hover {
  opacity: 0.6;
}
.cid-seemT3HFLh .item-wrapper {
  width: 100%;
}
.cid-seemT3HFLh .mbr-section-subtitle,
.cid-seemT3HFLh .slider-subtitle {
  margin-bottom: 30px;
}
.cid-seemT3HFLh .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-seemT3HFLh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-seemT3HFLh .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-seemT3HFLh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-seemT3HFLh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-seemT3HFLh .carousel-indicators li.active,
.cid-seemT3HFLh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-seemT3HFLh .carousel-indicators li::after,
.cid-seemT3HFLh .carousel-indicators li::before {
  content: none;
}
.cid-seemT3HFLh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-seemT3HFLh .carousel-indicators {
    display: none !important;
  }
}
.cid-seemT3HFLh H5 {
  color: #e9ddd8;
}
.cid-seemT3HFLh .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-seemT3HFLh P {
  color: #ffffff;
}
.cid-seemUfvu90 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-seemUfvu90 .row {
    justify-content: center;
  }
}
.cid-seemUfvu90 form .mbr-section-btn {
  width: 100%;
}
.cid-seemUfvu90 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-seemUfvu90 form .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-seemUfvu90 .form-with-styler {
    padding: 30px;
  }
  .cid-seemUfvu90 .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-seemUfvu90 input::-webkit-input-placeholder,
.cid-seemUfvu90 textarea::-webkit-input-placeholder {
  color: #c17b71 !important;
  opacity: 0.5;
}
.cid-seemUfvu90 input:-moz-placeholder,
.cid-seemUfvu90 textarea:-moz-placeholder {
  color: #c17b71 !important;
  opacity: 0.5;
}
.cid-seemUfvu90 .mbr-section-btn {
  margin-top: 10.8px;
}
.cid-seemUfvu90 .mbr-section-title {
  color: #231f59;
  text-align: left;
}
.cid-seemUfvu90 .mbr-section-subtitle {
  color: #231f59;
  text-align: left;
}
.cid-seemUfvu90 .mbr-section-text,
.cid-seemUfvu90 .mbr-section-btn {
  text-align: left;
  color: #282727;
}
.cid-seemUse29g {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f2f1eb;
}
.cid-seemUse29g .mbr-text,
.cid-seemUse29g .mbr-section-btn {
  color: #232323;
}
.cid-seemUse29g .btn {
  width: 100%;
}
.cid-seemUse29g .mbr-section-title {
  margin-bottom: 25px;
  color: #5d1f36;
}
.cid-seemUse29g .mbr-section-subtitle {
  margin-bottom: 25px;
  color: #6a3649;
}
.cid-seemUse29g input::-webkit-input-placeholder,
.cid-seemUse29g textarea::-webkit-input-placeholder {
  color: #c17b71 !important;
  opacity: 0.5;
}
.cid-seemUse29g input:-moz-placeholder,
.cid-seemUse29g textarea:-moz-placeholder {
  color: #c17b71 !important;
  opacity: 0.5;
}
.cid-seemUse29g H1 {
  text-align: center;
}
.cid-seemUse29g P {
  color: #6a3649;
}
.cid-seemUse29g .mbr-text {
  color: #282727;
}
.cid-seen5O4Yqm {
  display: flex;
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #5d1f36;
}
.cid-seen5O4Yqm .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-seen5O4Yqm {
    align-items: center;
  }
  .cid-seen5O4Yqm .row {
    justify-content: flex-start;
  }
  .cid-seen5O4Yqm .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-seen5O4Yqm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-seen5O4Yqm {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-seen5O4Yqm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-seen5O4Yqm .content-wrap {
    width: 100%;
  }
}
.cid-seen5O4Yqm .mbr-section-title {
  color: #f2f1eb;
  text-align: left;
}
.cid-seen5O4Yqm .mbr-text {
  margin-bottom: 20.4px;
}
.cid-seen5O4Yqm .mbr-text,
.cid-seen5O4Yqm .mbr-section-btn {
  color: #282727;
}
.cid-seenl8mpkC {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #7b4c5d;
}
.cid-seenl8mpkC .mbr-overlay {
  padding: 0;
  background: #6a3649;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-seenl8mpkC img,
.cid-seenl8mpkC .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-seenl8mpkC .item-img {
  margin-bottom: 30px;
}
.cid-seenl8mpkC .mbr-section-head h5 {
  margin-bottom: 30px;
}
.cid-seenl8mpkC .item-title {
  margin-bottom: 20px;
}
.cid-seenl8mpkC .item-subtitle {
  margin: 0 0 25px 0;
}
.cid-seenl8mpkC .item-content {
  padding: 0;
}
.cid-seenl8mpkC .item:focus,
.cid-seenl8mpkC span:focus {
  outline: none;
}
.cid-seenl8mpkC .item {
  cursor: pointer;
  margin-bottom: 30px;
}
.cid-seenl8mpkC .item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .cid-seenl8mpkC .item:nth-child(2n+1):nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-seenl8mpkC .item:nth-child(3n+1):nth-last-child(3),
  .cid-seenl8mpkC .item:nth-child(3n+2):nth-last-child(2) {
    margin-bottom: 0;
  }
}
.cid-seenl8mpkC .mb-6 {
  margin-bottom: 60px;
}
.cid-seenl8mpkC .list-item-header {
  margin-bottom: 10px;
}
.cid-seenl8mpkC .list-block:not(:last-child) {
  margin-bottom: 30px;
}
.cid-seenl8mpkC .item-wrapper {
  background-color: transparent;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-seenl8mpkC .mbr-section-title {
  color: #ebc6b8;
  text-align: center;
}
.cid-seenl8mpkC .mbr-text {
  text-align: left;
  margin: 0;
  padding: 0;
}
.cid-seenl8mpkC LI {
  color: #4479d9;
}
.cid-seenl8mpkC .line {
  display: block;
  width: 100%;
  height: 1px;
  background: #bfb1ab;
  margin: 5px 0 10px 0;
}
.cid-seenl8mpkC p {
  margin: 0;
}
.cid-seenl8mpkC .list-group .list-item {
  color: #9fdbf8;
}
.cid-seenl8mpkC .list-group .list-item-header {
  color: #e9ddd8;
  text-align: left;
}
.cid-seenl8mpkC .list-group .list-item,
.cid-seenl8mpkC .line {
  color: #ffffff;
}
.cid-seenl8mpkC .mbr-section-subtitle {
  color: #ebc6b8;
  text-align: center;
}
.cid-seenl8mpkC .page-subtitle {
  color: #ebc6b8;
}
.cid-seenl8mpkC .item-title {
  color: #ebc6b8;
}
.cid-seenl8mpkC .item-subtitle {
  text-align: left;
  min-height: 35px;
}
.cid-seepW3b6tu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a5bdce;
}
.cid-seepW3b6tu .mbr-overlay {
  padding: 0;
  background: #cbddea;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
  bottom: -5%;
}
@media (max-width: 991px) {
  .cid-seepW3b6tu .text-wrapper {
    padding-top: 30px;
  }
}
.cid-seepW3b6tu .mbr-text {
  margin-bottom: 20.4px;
}
.cid-seepW3b6tu .mbr-text,
.cid-seepW3b6tu .mbr-section-btn {
  text-align: left;
  color: #4c4c4c;
}
.cid-seepW3b6tu .mbr-section-subtitle {
  color: #6a3649;
  text-align: left;
}
.cid-seepW3b6tu .section-subtext {
  color: #231f59;
  text-align: left;
}
