body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Viaoda Libre', display;
  font-size: 4rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #c17b71 !important;
}
.bg-success {
  background-color: #c17b71 !important;
}
.bg-info {
  background-color: #4c4c4c !important;
}
.bg-warning {
  background-color: #5b5b5b !important;
}
.bg-danger {
  background-color: #4c4c4c !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #c17b71;
  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: #c17b71 !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: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #c17b71;
  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: #c17b71 !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: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #4c4c4c !important;
  border-color: #4c4c4c !important;
  color: #ffffff !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #c17b71;
  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: #c17b71 !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: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #c17b71;
  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: #c17b71 !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: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #c17b71;
  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: #c17b71 !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: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #4c4c4c !important;
  border-color: #4c4c4c !important;
  color: #ffffff !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #c17b71;
  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: #c17b71 !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: #ffffff !important;
  background-color: #c17b71 !important;
  border-color: #c17b71 !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: #c17b71;
  color: #c17b71;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #c17b71;
  color: #c17b71;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #a05146;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #4c4c4c;
  color: #4c4c4c;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #262626;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4c4c4c !important;
  border-color: #4c4c4c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #c17b71;
  color: #c17b71;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #a05146;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c17b71 !important;
  border-color: #c17b71 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #5b5b5b;
  color: #5b5b5b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #353535;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #4c4c4c;
  color: #4c4c4c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #262626;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #4c4c4c !important;
  border-color: #4c4c4c !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: #c17b71 !important;
}
.text-secondary {
  color: #c17b71 !important;
}
.text-success {
  color: #c17b71 !important;
}
.text-info {
  color: #4c4c4c !important;
}
.text-warning {
  color: #5b5b5b !important;
}
.text-danger {
  color: #4c4c4c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8e483e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #8e483e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #8e483e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #191919 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #282828 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #191919 !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: #c17b71;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4c4c4c;
}
.alert-warning {
  background-color: #5b5b5b;
}
.alert-danger {
  background-color: #4c4c4c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c17b71;
  border-color: #c17b71;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c17b71;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e8cdca;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e8cdca;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #bfbfbf;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9b9b9b;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bfbfbf;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #c17b71;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c17b71;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c17b71;
}
.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: #c17b71;
  border-bottom-color: #c17b71;
}
.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: #c17b71 !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: #c17b71 !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='%23c17b71' %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-seeAka30wu {
  background-image: url("../../../assets/images/oliver-pacas-lgd8ev8ar4e-unsplash-2000x1333.jpeg");
}
.cid-seeAka30wu .animated-element {
  color: #ffffff;
}
.cid-seeAka30wu .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@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-seeAka30wu .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-seeAka30wu .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-seeAka30wu .mbr-section-text,
.cid-seeAka30wu .mbr-section-btn {
  color: #ffffff;
}
.cid-seeAka30wu .typed-text .typed-text {
  color: #ef8e81;
}
.cid-sVxlXsBS2H {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sVxlXsBS2H .content {
  padding: 1rem;
}
.cid-sVxlXsBS2H h2,
.cid-sVxlXsBS2H h4,
.cid-sVxlXsBS2H p {
  margin: 0;
}
.cid-sVxlXsBS2H .mbr-section-title {
  color: #c17b71;
}
.cid-sVxlXsBS2H .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-sVxlXsBS2H .mbr-text {
  color: #6b6b6b;
  margin-top: 14px;
}
.cid-sVxlXsBS2H .mbr-section-btn {
  margin-top: 30.4px;
}
.cid-sVxlXsBS2H .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-sMRJ2jgBoN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/untitled-design-1920x1080.png");
}
.cid-sMRJ2jgBoN p {
  margin-bottom: 0;
}
.cid-sMRJ2jgBoN .section-header {
  margin-bottom: 2rem;
}
.cid-sMRJ2jgBoN .wrap {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
}
.cid-sMRJ2jgBoN .icon-wrapper {
  border-radius: 100%;
  border: 2px solid #c17b71;
}
.cid-sMRJ2jgBoN .icon {
  min-width: 33px;
  height: 33px;
  font-size: .7rem;
  font-weight: 900;
  color: black;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  transition: all 0.3s;
  transform: scaleY(-1);
}
.cid-sMRJ2jgBoN .icon:before {
  content: "\e908" !important;
}
.cid-sMRJ2jgBoN .panel-title.collapsed .icon {
  transform: scaleY(1) !important;
}
.cid-sMRJ2jgBoN .mbr-section-title {
  color: #c17b71;
  text-align: left;
}
.cid-sMRJ2jgBoN .card .card-header a.panel-title {
  background-color: transparent!important;
  margin-top: 0px!important;
}
.cid-sMRJ2jgBoN .accordion-content {
  max-width: 28rem !important;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-sMRJ2jgBoN .panel-group {
  width: 100%;
}
.cid-sMRJ2jgBoN .panel-title {
  border-radius: 0px;
}
.cid-sMRJ2jgBoN .card {
  margin-bottom: 1rem !important;
}
.cid-sMRJ2jgBoN .card .card-header {
  background: none;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sMRJ2jgBoN .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 900;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sMRJ2jgBoN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sMRJ2jgBoN .card .panel-body {
  padding: 1rem  0 1.5rem 0;
}
.cid-sMRJ2jgBoN .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sMRJ2jgBoN .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-sMRJ2jgBoN .header-text {
  color: #c17b71;
  margin-left: .75rem;
}
.cid-sMRJ2jgBoN .panel-text {
  color: #000000;
}
.cid-sMRJ2jgBoN .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sMRJ2jgBoN .accordion-section {
    margin-top: 2rem;
  }
}
.cid-sMRJ2jgBoN .sign {
  color: #c17b71;
}
.cid-sN3XhB0EIj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/17-3-1080x1080.jpeg");
}
@media (max-width: 767px) {
  .cid-sN3XhB0EIj .display-2 {
    font-size: 1.6rem;
  }
}
.cid-sN3XhB0EIj .align-wrapper {
  width: 100%;
}
.cid-sN3XhB0EIj h4 {
  display: inline-block;
  position: relative;
  width: fit-content;
  transition: all 0.3s;
}
.cid-sN3XhB0EIj h4:before {
  position: absolute;
  content: '';
  bottom: -6px;
  width: 0%;
  left: 0;
  height: 2px;
  transition: all 0.3s;
  background: #c17b71;
}
.cid-sN3XhB0EIj h4:hover {
  color: #c17b71;
}
.cid-sN3XhB0EIj h4:hover:before {
  width: 100%;
}
.cid-sN3XhB0EIj .mbr-section-title {
  color: #4c4a4b;
  text-align: center;
}
.cid-sN3XhB0EIj .mbr-section-text,
.cid-sN3XhB0EIj .align-wrapper,
.cid-sN3XhB0EIj .mbr-section-btn {
  color: #c17b71;
  text-align: center;
}
.cid-sLQkiDYibm {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/17-4-1080x1080.jpeg");
}
.cid-sLQkiDYibm .mbr-text {
  color: #767676;
}
.cid-sLQkiDYibm h4 {
  text-align: center;
}
.cid-sLQkiDYibm p {
  text-align: center;
}
.cid-sLQkiDYibm .card .card-img {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sLQkiDYibm .card:hover .step {
  color: #ffffff;
  border: 0px solid transparent;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sLQkiDYibm .card:hover .step:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cid-sLQkiDYibm .step {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sLQkiDYibm .step:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.3s;
  background: linear-gradient(45deg, #ecc5b6, #e9ddd8);
  border-radius: 50%;
}
.cid-sLQkiDYibm .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sLQkiDYibm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c17b71, #c17b71);
  display: inline-block;
}
@media (min-width: 768px) {
  .cid-sLQkiDYibm .mbr-section-title,
  .cid-sLQkiDYibm .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-sLQkiDYibm .card-title,
.cid-sLQkiDYibm .card-img {
  color: #c17b71;
}
.cid-sLQkiDYibm .mbr-section-title,
.cid-sLQkiDYibm .underline {
  color: #c17b71;
}
.cid-sMoTyHPaKu {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-sMoTyHPaKu .mbr-text {
  margin: 0;
}
.cid-sMoTyHPaKu .text-element {
  padding: 2rem;
  background-color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-sMoTyHPaKu .row-element,
.cid-sMoTyHPaKu .image-element {
  padding: 0;
}
.cid-sMoTyHPaKu .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMoTyHPaKu .image-element .img-wrap {
  width: 100% !important;
}
.cid-sMoTyHPaKu .image-element .img-wrap img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sMoTyHPaKu .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMoTyHPaKu .carousel-item.active,
.cid-sMoTyHPaKu .carousel-item-next,
.cid-sMoTyHPaKu .carousel-item-prev {
  display: flex;
}
.cid-sMoTyHPaKu .carousel-indicators {
  left: 50%;
  margin: 20px auto 0;
  align-items: center;
}
.cid-sMoTyHPaKu .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #c17b71;
}
.cid-sMoTyHPaKu .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #000000;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-sMoTyHPaKu .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sMoTyHPaKu .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-sMoTyHPaKu .carousel-controls {
    display: block;
  }
  .cid-sMoTyHPaKu .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-sMoTyHPaKu .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-sMoTyHPaKu .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-sMoTyHPaKu .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-sMoTyHPaKu .text-element {
    padding: 1rem;
  }
  .cid-sMoTyHPaKu .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sMoTyHPaKu .image-element {
    min-width: 50%;
  }
  .cid-sMoTyHPaKu .media-container-row {
    width: 100%;
  }
}
.cid-sMoTyHPaKu .mbr-subtitle {
  color: #4c4a4b;
}
.cid-sMoTyHPaKu .mbr-title,
.cid-sMoTyHPaKu .ornament {
  color: #c17b71;
}
.cid-sWTOT5UFx4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sWTOT5UFx4 .image_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
}
.cid-sWTOT5UFx4 .item-img {
  width: 100px;
  margin-bottom: 21px;
  height: 100%;
  display: inline-block;
}
.cid-sWTOT5UFx4 img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.cid-sWTOT5UFx4 .item {
  margin-bottom: 70px;
}
.cid-sWTOT5UFx4 .item-title {
  margin-bottom: 11px;
  color: #202020;
}
.cid-sWTOT5UFx4 .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-sWTOT5UFx4 .mbr-text {
  margin-bottom: 18px;
}
.cid-sWTOT5UFx4 .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-sWTOT5UFx4 .linkBtn a:after,
.cid-sWTOT5UFx4 .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-sWTOT5UFx4 .linkBtn a:before {
  left: 0;
}
.cid-sWTOT5UFx4 .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-sWTOT5UFx4 .linkBtn a:hover:before,
.cid-sWTOT5UFx4 .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-sWTOT5UFx4 .item-title,
.cid-sWTOT5UFx4 .image_wrapper {
  color: #c17b71;
}
.cid-sLQhwW1s1x {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/untitled-design-2-1920x1080.png");
}
.cid-sLQhwW1s1x .mbr-section-title {
  margin: 0;
}
.cid-sLQhwW1s1x .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sLQhwW1s1x .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffffff;
  display: inline-block;
}
.cid-sLQhwW1s1x .slider-testimonials {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
.cid-sLQhwW1s1x .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sLQhwW1s1x .carousel-item.active,
.cid-sLQhwW1s1x .carousel-item-next,
.cid-sLQhwW1s1x .carousel-item-prev {
  display: flex;
}
.cid-sLQhwW1s1x .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #c17b71;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 46%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-sLQhwW1s1x .carousel-control.carousel-control-prev {
  left: -25px;
}
.cid-sLQhwW1s1x .carousel-control.carousel-control-prev:hover {
  left: -30px;
}
.cid-sLQhwW1s1x .carousel-control.carousel-control-next {
  right: -25px;
}
.cid-sLQhwW1s1x .carousel-control.carousel-control-next:hover {
  right: -30px;
}
.cid-sLQhwW1s1x .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-sLQhwW1s1x .carousel-control:hover {
  background-color: #c17b71;
}
.cid-sLQhwW1s1x .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sLQhwW1s1x .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 767px) {
  .cid-sLQhwW1s1x .carousel-control-prev,
  .cid-sLQhwW1s1x .carousel-control-next {
    display: none;
  }
  .cid-sLQhwW1s1x .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-sLQhwW1s1x .slider-testimonials {
    padding: 2rem 1rem;
  }
}
@media (max-width: 230px) {
  .cid-sLQhwW1s1x .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sLQhwW1s1x .carousel-row:hover .carousel-control {
  visibility: visible;
}
.cid-sLQhwW1s1x .user_name,
.cid-sLQhwW1s1x .user_desk {
  text-align: right;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLQhwW1s1x .slider-testimonials {
    min-width: 100%;
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-sLQhwW1s1x .carousel-control-prev {
    left: -40px !important;
  }
  .cid-sLQhwW1s1x .carousel-control-prev:hover {
    left: -45px !important;
  }
  .cid-sLQhwW1s1x .carousel-control-next {
    right: -40px !important;
  }
  .cid-sLQhwW1s1x .carousel-control-next:hover {
    right: -45px !important;
  }
}
.cid-sLQhwW1s1x .mbr-section-title,
.cid-sLQhwW1s1x .underline {
  color: #c17b71;
}
.cid-sLQhwW1s1x .user_name {
  color: #c17b71;
}
.cid-sLQhwW1s1x .mbr-section-subtitle {
  color: #4c4a4b;
}
.cid-sNUonUxM3q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNUonUxM3q p {
  color: #767676;
}
.cid-sNUonUxM3q .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sNUonUxM3q .row-element,
.cid-sNUonUxM3q .image-element {
  padding: 0;
}
.cid-sNUonUxM3q .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNUonUxM3q .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sNUonUxM3q .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sNUonUxM3q .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c17b71, #c17b71);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sNUonUxM3q .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sNUonUxM3q .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sNUonUxM3q .text-content {
    padding: 2rem 1rem;
  }
  .cid-sNUonUxM3q .underline .line {
    height: 2px;
  }
  .cid-sNUonUxM3q .mbr-title,
  .cid-sNUonUxM3q .underline,
  .cid-sNUonUxM3q .mbr-text,
  .cid-sNUonUxM3q .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sNUonUxM3q .mbr-title,
.cid-sNUonUxM3q .underline {
  color: #c17b71;
}
.cid-sN3ZeFoZ4Y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/17-3-1080x1080.jpeg");
}
.cid-sN3ZeFoZ4Y .mbr-text,
.cid-sN3ZeFoZ4Y .mbr-section-subtitle {
  color: #767676;
}
.cid-sN3ZeFoZ4Y .mbr-text {
  margin-bottom: 0 !important;
  color: #767676;
  transition: .2s all;
}
.cid-sN3ZeFoZ4Y .card-title {
  color: #66458e;
}
.cid-sN3ZeFoZ4Y .card .card-img span {
  color: #c17b71;
  font-size: 60px;
  background: #c17b71;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-sN3ZeFoZ4Y .card-img {
  padding-bottom: 2.65rem !important;
}
@media (max-width: 767px) {
  .cid-sN3ZeFoZ4Y .mbr-section-subtitle,
  .cid-sN3ZeFoZ4Y .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sN3ZeFoZ4Y .card .card-img span {
    background: none;
  }
}
.cid-sN3ZeFoZ4Y .card-wrap {
  border-radius: 5px;
  padding: 4.2rem 2rem 4.1rem;
}
.cid-sN3ZeFoZ4Y .card1 {
  background-color: #fafafa;
}
.cid-sN3ZeFoZ4Y .card2 {
  background-color: #fafafa;
}
.cid-sN3ZeFoZ4Y .card3 {
  background-color: #fafafa;
}
.cid-sN3ZeFoZ4Y .card4 {
  background-color: #bbbbbb;
}
.cid-sN3ZeFoZ4Y .card-title,
.cid-sN3ZeFoZ4Y .card-img {
  color: #c17b71;
  text-transform: uppercase;
}
.cid-sN3ZeFoZ4Y .mbr-section-title {
  color: #c17b71;
}
.cid-sMdWsfrEbd {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/17-3-1080x1080.jpg");
}
.cid-sMdWsfrEbd .mbr-overlay {
  background: #ffffff;
  opacity: 0.5;
}
.cid-sMdWsfrEbd .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #c17b71;
  text-align: center;
}
.cid-sMdWsfrEbd .title-text {
  color: #4c4a4b;
  text-align: center;
}
.cid-sMdWsfrEbd H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sMdWsfrEbd .section-text,
.cid-sMdWsfrEbd .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sN3vcwE08Z {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sN3vcwE08Z .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-sN3vcwE08Z .counter-container ul li {
  margin-bottom: 0.2rem;
  list-style: none;
  position: relative;
}
.cid-sN3vcwE08Z .counter-container ul li:before {
  position: absolute;
  left: -2.2rem;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 11px 16px;
  line-height: 20px;
  transition: all 0.2s;
  color: #ffffff;
  background: #c17b71;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cid-sN3vcwE08Z .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-sN3vcwE08Z img {
    width: 90%;
  }
}
.cid-sN3vcwE08Z .card-title {
  color: #c17b71;
  text-align: left;
}
.cid-sN3vcwE08Z .mbr-text,
.cid-sN3vcwE08Z .mbr-section-btn UL {
  text-align: center;
}
.cid-sN3vcwE08Z .mbr-text,
.cid-sN3vcwE08Z .mbr-section-btn {
  text-align: left;
}
.cid-sN378YOKiV {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/untitled-design-2-1920x1080.png");
}
.cid-sN378YOKiV .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-sN378YOKiV .mbr-text,
.cid-sN378YOKiV .mbr-section-btn {
  color: #232323;
}
.cid-sN378YOKiV .btn {
  width: 100%;
}
.cid-sN378YOKiV .mbr-section-title {
  margin-bottom: 25px;
  color: #4c4a4b;
}
.cid-sN378YOKiV .mbr-section-subtitle {
  margin-bottom: 25px;
  color: #c17b71;
}
.cid-sN378YOKiV input::-webkit-input-placeholder,
.cid-sN378YOKiV textarea::-webkit-input-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sN378YOKiV input:-moz-placeholder,
.cid-sN378YOKiV textarea:-moz-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sN378YOKiV H1 {
  text-align: center;
}
.cid-sN378YOKiV P {
  color: #6a3649;
}
.cid-sN378YOKiV .mbr-text {
  color: #282727;
}
.cid-sMofJHqNEd {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/17-3-1080x1080.jpeg");
}
.cid-sMofJHqNEd .mbr-overlay {
  background: #ffffff;
  opacity: 0;
}
.cid-sMofJHqNEd .mbr-text {
  margin-bottom: 20.4px;
}
.cid-sMofJHqNEd .mbr-text,
.cid-sMofJHqNEd .mbr-section-btn {
  text-align: left;
  color: #4c4a4b;
}
.cid-sMofJHqNEd .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 484px;
}
.cid-sMofJHqNEd .mbr-section-subtitle {
  color: #c17b71;
}
.cid-sMofJHqNEd .section-subtext {
  color: #4c4a4b;
  text-align: left;
}
.cid-sN9vIHJ2ec {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/17-3-1080x1080.jpeg");
}
.cid-sN9vIHJ2ec .mbr-text,
.cid-sN9vIHJ2ec .mbr-section-subtitle {
  color: #767676;
}
.cid-sN9vIHJ2ec .mbr-text {
  margin-bottom: 0 !important;
  color: #c17b71;
  transition: .2s all;
}
.cid-sN9vIHJ2ec .card-title {
  color: #66458e;
}
.cid-sN9vIHJ2ec .card .card-img span {
  color: #c17b71;
  font-size: 60px;
  background: #c17b71;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-sN9vIHJ2ec .card-img {
  padding-bottom: 2.65rem !important;
}
@media (max-width: 767px) {
  .cid-sN9vIHJ2ec .mbr-section-subtitle,
  .cid-sN9vIHJ2ec .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sN9vIHJ2ec .card .card-img span {
    background: none;
  }
}
.cid-sN9vIHJ2ec .card-wrap {
  border-radius: 5px;
  padding: 4.2rem 2rem 4.1rem;
}
.cid-sN9vIHJ2ec .card1 {
  background-color: #fafafa;
}
.cid-sN9vIHJ2ec .card2 {
  background-color: #fafafa;
}
.cid-sN9vIHJ2ec .card3 {
  background-color: #fafafa;
}
.cid-sN9vIHJ2ec .card4 {
  background-color: #bbbbbb;
}
.cid-sN9vIHJ2ec .card-title,
.cid-sN9vIHJ2ec .card-img {
  color: #c17b71;
  text-transform: uppercase;
}
.cid-sN9vIHJ2ec .mbr-section-title {
  color: #c17b71;
}
.cid-sN9vIHJ2ec H4 {
  color: #4c4c4c;
}
.cid-seeC0rKSe0 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e9ddd8;
}
@media (max-width: 992px) {
  .cid-seeC0rKSe0 {
    background-color: #ffffff;
  }
  .cid-seeC0rKSe0 .accordion-content-wrapper {
    padding-top: 10px;
  }
  .cid-seeC0rKSe0 .mbr-section-subtitle {
    margin-top: 0;
    line-height: 2 !important;
  }
}
.cid-seeC0rKSe0 .mbr-overlay {
  padding: 0;
  background: #ffffff;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
  bottom: -5%;
}
.cid-seeC0rKSe0 .header-text {
  flex: 1 1 auto;
  letter-spacing: 1.61px;
}
.cid-seeC0rKSe0 h4 {
  letter-spacing: 3.27px !important;
  font-style: normal;
}
.cid-seeC0rKSe0 .panel-collapse {
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-seeC0rKSe0 .mbr-section-subtitle {
  font-weight: 500;
  color: #4c4a4b;
  margin: 30px 0;
}
.cid-seeC0rKSe0 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-seeC0rKSe0 .accordion-wrapper {
  padding: 0 25px;
}
.cid-seeC0rKSe0 .accordion-content-wrapper {
  padding: 50px 0;
  max-width: 484px;
  margin: 0 auto;
}
.cid-seeC0rKSe0 .vertical-center {
  align-items: center;
}
.cid-seeC0rKSe0 .panel-group {
  width: 100%;
}
.cid-seeC0rKSe0 .card {
  border-bottom: 1px solid #c17b71 !important;
  border-radius: 0px;
}
.cid-seeC0rKSe0 .card:first-of-type {
  border-top: 1px solid #c17b71;
}
.cid-seeC0rKSe0 .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
  background-color: transparent;
  padding: 20px 0;
}
.cid-seeC0rKSe0 .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-seeC0rKSe0 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-seeC0rKSe0 .card h4,
.cid-seeC0rKSe0 .card h5 {
  margin-bottom: 0;
}
.cid-seeC0rKSe0 .card p {
  margin: 0;
}
.cid-seeC0rKSe0 .card .panel-body {
  background-color: transparent;
  padding: 4px 0 20px 0;
}
.cid-seeC0rKSe0 .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-seeC0rKSe0 .sign {
  color: #ffffff;
}
.cid-seeC0rKSe0 .sign:before {
  content: "\e95d";
  font-weight: 700;
}
@media (max-width: 991px) {
  .cid-seeC0rKSe0 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-seeC0rKSe0 .header-text,
.cid-seeC0rKSe0 .sign P {
  text-align: left;
}
.cid-seeC0rKSe0 .mbr-text {
  color: #ffffff;
}
.cid-seeC0rKSe0 .mbri-arrow-up {
  max-height: 7px;
  overflow: hidden;
  vertical-align: middle;
}
.cid-seeC0rKSe0 .mbri-arrow-up:before {
  content: "\e94c";
  font-weight: 700;
}
.cid-seeC0rKSe0 .text-container {
  max-width: 934px;
}
.cid-seeC0rKSe0 .text-container p {
  padding: 30px 0 20.6px 0;
}
.cid-seeC0rKSe0 .panel-title {
  background: transparent;
}
.cid-seeC0rKSe0 H4 {
  color: #ffffff;
}
.cid-seeC0rKSe0 .header-text,
.cid-seeC0rKSe0 .sign {
  color: #c17b71;
}
.cid-seeC0rKSe0 .mbr-text,
.cid-seeC0rKSe0 .mbr-section-btn {
  color: #f2f2f2;
}
.cid-seeC0rKSe0 H5 {
  color: #ebc6b8;
}
.cid-seeC0rKSe0 .panel-text {
  color: #4c4a4b;
}
.cid-sWTKry5x4f {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWTKry5x4f p {
  color: #767676;
}
.cid-sWTKry5x4f .row-element,
.cid-sWTKry5x4f .image-element {
  padding: 0;
}
.cid-sWTKry5x4f .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sWTKry5x4f .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sWTKry5x4f .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sWTKry5x4f .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c17b71, #c17b71);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sWTKry5x4f .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sWTKry5x4f .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sWTKry5x4f .text-content {
    padding: 2rem 1rem;
  }
  .cid-sWTKry5x4f .underline .line {
    height: 2px;
  }
  .cid-sWTKry5x4f .mbr-title,
  .cid-sWTKry5x4f .underline,
  .cid-sWTKry5x4f .mbr-text,
  .cid-sWTKry5x4f .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sWTKry5x4f .mbr-title,
.cid-sWTKry5x4f .underline {
  color: #c17b71;
}
.cid-sNUuOSLo2k {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/untitled-design-2-1920x1080.png");
}
.cid-sNUuOSLo2k .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-sNUuOSLo2k .mbr-text,
.cid-sNUuOSLo2k .mbr-section-btn {
  color: #232323;
}
.cid-sNUuOSLo2k .btn {
  width: 100%;
}
.cid-sNUuOSLo2k .mbr-section-title {
  margin-bottom: 25px;
  color: #4c4a4b;
}
.cid-sNUuOSLo2k .mbr-section-subtitle {
  margin-bottom: 25px;
  color: #c17b71;
}
.cid-sNUuOSLo2k input::-webkit-input-placeholder,
.cid-sNUuOSLo2k textarea::-webkit-input-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNUuOSLo2k input:-moz-placeholder,
.cid-sNUuOSLo2k textarea:-moz-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNUuOSLo2k H1 {
  text-align: center;
}
.cid-sNUuOSLo2k P {
  color: #6a3649;
}
.cid-sNUuOSLo2k .mbr-text {
  color: #282727;
}
.cid-sNU04k8RGY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sNU04k8RGY .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #c17b71;
  text-align: center;
}
.cid-sNU04k8RGY .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sNU04k8RGY H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sNU04k8RGY .section-text,
.cid-sNU04k8RGY .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sMoJDeJRkp {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sMoJDeJRkp .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-sMoJDeJRkp .container {
  max-width: 1100px;
}
.cid-sMoJDeJRkp .text {
  position: absolute;
  width: 100%;
  padding: 0 10%;
}
.cid-sMoJDeJRkp .btn {
  white-space: nowrap;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 22px;
}
.cid-sMoJDeJRkp .mbr-iconfont {
  display: block;
  font-size: 3.5rem;
  color: #c17b71;
  height: 100%;
  padding-bottom: 7px;
}
.cid-sMoJDeJRkp .l2 {
  color: #4c4c4c;
}
.cid-sMoJDeJRkp .l1 {
  color: #4c4a4b;
}
.cid-sMoJDeJRkp .padd {
  color: #4c4c4c;
  text-align: center;
  padding-bottom: 60px;
}
.cid-sMoJDeJRkp .mbr-section-subtitle {
  color: #1b745e;
  text-align: center;
  font-style: italic;
  padding-bottom: 12px;
}
.cid-sMoJDeJRkp .features-image {
  padding-top: 32px;
}
.cid-sMoJDeJRkp .features-image:first-child {
  padding-top: 0px;
}
.cid-sMoJDeJRkp .features-image:nth-child(2) {
  padding-top: 0px;
}
.cid-sMoJDeJRkp .features-image:nth-child(3) {
  padding-top: 0px;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-sMoJDeJRkp .features-image {
    padding-top: 32px;
  }
  .cid-sMoJDeJRkp .features-image:first-child {
    padding-top: 0px;
  }
  .cid-sMoJDeJRkp .features-image:nth-child(2) {
    padding-top: 0px;
  }
  .cid-sMoJDeJRkp .features-image:nth-child(3) {
    padding-top: 32px;
  }
}
@media (max-width: 574px) {
  .cid-sMoJDeJRkp .features-image {
    padding-top: 32px;
  }
  .cid-sMoJDeJRkp .features-image:first-child {
    padding-top: 0px;
  }
  .cid-sMoJDeJRkp .features-image:nth-child(2) {
    padding-top: 32px;
  }
  .cid-sMoJDeJRkp .features-image:nth-child(3) {
    padding-top: 32px;
  }
}
.cid-sMoJDeJRkp .mbr-section-title {
  color: #c17b71;
}
.cid-sN8oEWdPaw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sMuzPtKhTw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sMuzPtKhTw .row {
  flex-direction: row-reverse;
}
.cid-sMuzPtKhTw .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #c17b71;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-sMuzPtKhTw .mbr-media {
  position: relative;
}
.cid-sMuzPtKhTw .mbr-media img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-sMuzPtKhTw .mbr-media {
    margin-bottom: 2rem;
  }
}
.cid-sMuzPtKhTw .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-sMuzPtKhTw .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-sMuzPtKhTw .card-title {
  padding: 0;
  margin: 0;
}
.cid-sMuzPtKhTw .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sMuzPtKhTw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sMuzPtKhTw .card-wrapper {
    width: fit-content;
  }
}
.cid-sMuzPtKhTw .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-sMuzPtKhTw .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sMuzPtKhTw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sMuzPtKhTw .card-title,
.cid-sMuzPtKhTw .card-icon {
  color: #5b6c8f;
}
.cid-sMuzPtKhTw .mbr-section-title {
  color: #c17b71;
}
.cid-sMuzPtKhTw .mbr-text,
.cid-sMuzPtKhTw .mbr-section-btn {
  color: #4c4a4b;
  text-align: left;
}
.cid-sMuzPtKhTw .price-title {
  text-align: center;
  color: #103178;
}
.cid-sMuzPtKhTw .price {
  text-align: center;
  color: #103178;
}
.cid-sMuzPtKhTw .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sMuzPtKhTw .mbr-media a:hover {
  background-image: none!important;
}
.cid-sMuzPtKhTw .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sMuzPtKhTw .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sMuzPtKhTw .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sMuzPtKhTw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sMuzPtKhTw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-se3MVcevFk .nav-item:focus,
.cid-se3MVcevFk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se3MVcevFk .nav-item {
    position: relative;
  }
}
.cid-se3MVcevFk .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-se3MVcevFk .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-se3MVcevFk .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-se3MVcevFk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se3MVcevFk .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-se3MVcevFk .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se3MVcevFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se3MVcevFk .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se3MVcevFk .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-se3MVcevFk .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se3MVcevFk .navbar.collapsed .right-menu,
.cid-se3MVcevFk .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse.show,
  .cid-se3MVcevFk .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-se3MVcevFk .navbar .navbar-collapse.show .brand-container,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se3MVcevFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se3MVcevFk .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-se3MVcevFk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se3MVcevFk .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se3MVcevFk .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-se3MVcevFk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se3MVcevFk .navbar .right-menu,
  .cid-se3MVcevFk .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se3MVcevFk .navbar.navbar-short {
  min-height: 60px;
}
.cid-se3MVcevFk .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se3MVcevFk .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se3MVcevFk .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-se3MVcevFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se3MVcevFk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se3MVcevFk .dropdown-item.active,
.cid-se3MVcevFk .dropdown-item:active {
  background-color: transparent;
}
.cid-se3MVcevFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se3MVcevFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se3MVcevFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se3MVcevFk ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se3MVcevFk .navbar-buttons {
  margin-left: auto;
}
.cid-se3MVcevFk 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-se3MVcevFk button.navbar-toggler:hover {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:active {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c17b71;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk .navbar-dropdown {
  position: fixed;
}
.cid-se3MVcevFk 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-se3MVcevFk 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-se3MVcevFk a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se3MVcevFk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se3MVcevFk .right-menu,
.cid-se3MVcevFk .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se3MVcevFk .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se3MVcevFk .card-wrapper {
  z-index: 3;
}
.cid-se3MVcevFk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se3MVcevFk .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se3MVcevFk .navbar-brand img {
  width: auto !important;
}
.cid-seeELHPvVE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-seeELHPvVE img,
.cid-seeELHPvVE .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-seeELHPvVE .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #c17b71;
}
.cid-seeELHPvVE .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-seeELHPvVE .item:focus,
.cid-seeELHPvVE span:focus {
  outline: none;
}
.cid-seeELHPvVE .item {
  cursor: pointer;
}
.cid-seeELHPvVE .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-seeELHPvVE .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-seeELHPvVE .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-seeELHPvVE .item-subtitle {
  color: #4c4a4b;
}
.cid-seeELHPvVE .mbr-text,
.cid-seeELHPvVE .mbr-section-btn {
  color: #c17b71;
}
.cid-sMlcYeufIU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sMlcYeufIU img,
.cid-sMlcYeufIU .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-sMlcYeufIU .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #c17b71;
}
.cid-sMlcYeufIU .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-sMlcYeufIU .item:focus,
.cid-sMlcYeufIU span:focus {
  outline: none;
}
.cid-sMlcYeufIU .item {
  cursor: pointer;
}
.cid-sMlcYeufIU .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-sMlcYeufIU .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sMlcYeufIU .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-sMlcYeufIU .item-subtitle {
  color: #4c4a4b;
}
.cid-sMlcYeufIU .mbr-text,
.cid-sMlcYeufIU .mbr-section-btn {
  color: #c17b71;
}
.cid-sNUpeaK2by {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNUpeaK2by p {
  color: #767676;
}
.cid-sNUpeaK2by .row-element,
.cid-sNUpeaK2by .image-element {
  padding: 0;
}
.cid-sNUpeaK2by .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNUpeaK2by .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sNUpeaK2by .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sNUpeaK2by .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c17b71, #c17b71);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sNUpeaK2by .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sNUpeaK2by .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sNUpeaK2by .text-content {
    padding: 2rem 1rem;
  }
  .cid-sNUpeaK2by .underline .line {
    height: 2px;
  }
  .cid-sNUpeaK2by .mbr-title,
  .cid-sNUpeaK2by .underline,
  .cid-sNUpeaK2by .mbr-text,
  .cid-sNUpeaK2by .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sNUpeaK2by .mbr-title,
.cid-sNUpeaK2by .underline {
  color: #c17b71;
}
.cid-sMpTfjBjkk {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-sMpTfjBjkk .row {
    justify-content: center;
  }
}
.cid-sMpTfjBjkk form .mbr-section-btn {
  width: 100%;
}
.cid-sMpTfjBjkk form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sMpTfjBjkk form .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sMpTfjBjkk .form-with-styler {
    padding: 30px;
  }
  .cid-sMpTfjBjkk .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sMpTfjBjkk input::-webkit-input-placeholder,
.cid-sMpTfjBjkk textarea::-webkit-input-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sMpTfjBjkk input:-moz-placeholder,
.cid-sMpTfjBjkk textarea:-moz-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sMpTfjBjkk .mbr-section-btn {
  margin-top: 10.8px;
}
.cid-sMpTfjBjkk .mbr-section-title {
  color: #c17b71;
  text-align: left;
}
.cid-sMpTfjBjkk .mbr-section-subtitle {
  color: #231f59;
  text-align: left;
}
.cid-sMpTfjBjkk .mbr-section-text,
.cid-sMpTfjBjkk .mbr-section-btn {
  text-align: left;
  color: #636363;
}
.cid-sMoUtHNfLP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sMoUtHNfLP .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-sMoUtHNfLP .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sMoUtHNfLP .mbr-text {
  color: #444;
}
.cid-sMoUtHNfLP h5 {
  margin-bottom: 0;
}
.cid-sMoUtHNfLP .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-sMoUtHNfLP .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMoUtHNfLP .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-sMoUtHNfLP .socicon {
  font-size: 1.3rem;
  background: #c17b71;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMoUtHNfLP .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sMoUtHNfLP .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sMoUtHNfLP .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sMoUtHNfLP .social-list a:hover {
  opacity: 0.4;
}
.cid-sMoUtHNfLP .media-container-row > div {
  padding: 0px;
}
.cid-sMoUtHNfLP .text2 {
  color: #4c4c4c;
  text-align: left;
}
.cid-sMoUtHNfLP .group-title {
  text-align: left;
  color: #c17b71;
}
.cid-sMoUtHNfLP .group-title SPAN {
  color: #ffffff;
}
.cid-sMoUtHNfLP .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-sMoUtHNfLP .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sMoUtHNfLP .social-list,
  .cid-sMoUtHNfLP .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sMoUtHNfLP h3 {
    margin-bottom: 10px;
  }
  .cid-sMoUtHNfLP .navbar-brand {
    text-align: center;
  }
}
.cid-sMoUtHNfLP .links SPAN {
  color: #9e9e9e;
}
.cid-sMoUtHNfLP .links,
.cid-sMoUtHNfLP .navbar-brand {
  color: #4c4a4b;
}
.cid-t8JxOyz6Ld {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 1000px) {
  .cid-t8JxOyz6Ld {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-t8JxOyz6Ld {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-t8JxOyz6Ld .info ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cid-t8JxOyz6Ld .info ul {
    align-items: center;
    padding: 0;
    margin: 0;
  }
}
.cid-t8JxOyz6Ld .info {
  padding: 0.25em 0;
}
@media (min-width: 769px) {
  .cid-t8JxOyz6Ld .info {
    padding: 3.25rem 0;
  }
}
.cid-t8JxOyz6Ld .info ul a {
  display: block;
}
.cid-t8JxOyz6Ld .info ul li {
  list-style: none;
}
.cid-t8JxOyz6Ld .nav-link {
  padding: 0;
  margin: 0;
}
.cid-t8JxOyz6Ld .first-column .mbr-text,
.cid-t8JxOyz6Ld .mbr-privacy,
.cid-t8JxOyz6Ld .info {
  margin: 0;
}
.cid-t8JxOyz6Ld .f-privacy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cid-t8JxOyz6Ld .mbr-privacy {
  margin-left: 1rem;
  text-align: left;
}
.cid-t8JxOyz6Ld .mbr-privacy-link:hover,
.cid-t8JxOyz6Ld .info-link:hover {
  text-decoration: underline;
}
.cid-t8JxOyz6Ld .f-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8JxOyz6Ld .f-row {
    flex-direction: column;
    align-items: center;
  }
}
.cid-t8JxOyz6Ld .f-item {
  flex: 0 0 50%;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .cid-t8JxOyz6Ld .f-item {
    flex: 1 1 auto;
    padding-bottom: 1rem;
  }
}
.cid-t8JxOyz6Ld .f-row ul {
  justify-content: center;
  display: flex;
}
.cid-t8JxOyz6Ld .f-privacy {
  justify-content: center;
}
.cid-t8JxOyz6Ld .f-item {
  flex: 1 1 100%;
}
.cid-t8JxOyz6Ld .f-row ul {
  display: flex;
  justify-content: center;
}
.cid-t8JxOyz6Ld .f-privacy {
  justify-content: center;
}
.cid-t8JxOyz6Ld .f-item {
  flex: 1 1 100%;
}
.cid-t8JxOyz6Ld .icons-wrapper ul {
  display: flex;
  margin: 0;
  padding: 0;
}
@media (max-width: 400px) {
  .cid-t8JxOyz6Ld .icons-wrapper ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cid-t8JxOyz6Ld .icons-wrapper ul li {
    margin-bottom: 1.5rem;
  }
}
.cid-t8JxOyz6Ld .icons-wrapper ul li {
  margin-right: 1.05rem;
  display: inline-block;
}
.cid-t8JxOyz6Ld .icons-wrapper ul li .mbr-iconfont {
  padding: 8px;
  border-radius: 50%;
  color: #98dee8;
  background: #40b0bf;
  font-size: 1.5rem;
  transition: background 0.3s linear;
}
.cid-t8JxOyz6Ld .icons-wrapper ul li .mbr-iconfont:hover {
  background: #2299aa;
}
.cid-t8JxOyz6Ld .icons-wrapper ul li:last-child {
  margin-right: 0;
}
.cid-t8JxOyz6Ld .col + .mbr-section-btn .btn,
.cid-t8JxOyz6Ld .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
  padding: 0 2.2rem !important;
}
.cid-t8JxOyz6Ld .dragArea > *:nth-last-child(2).col,
.cid-t8JxOyz6Ld .dragArea > *:nth-last-child(2).col-auto,
.cid-t8JxOyz6Ld .col + .mbr-section-btn,
.cid-t8JxOyz6Ld .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-t8JxOyz6Ld .first-column,
  .cid-t8JxOyz6Ld .second-column {
    padding-bottom: 2rem;
  }
  .cid-t8JxOyz6Ld .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-t8JxOyz6Ld .first-column,
  .cid-t8JxOyz6Ld .second-column,
  .cid-t8JxOyz6Ld .third-column {
    text-align: center;
  }
}
.cid-t8JxOyz6Ld .mbr-section-title {
  text-align: center;
}
.cid-t8JxOyz6Ld .mbr-section-info,
.cid-t8JxOyz6Ld .icons-wrapper {
  text-align: left;
}
.cid-t8JxOyz6Ld .mbr-privacy,
.cid-t8JxOyz6Ld .mbr-privacy-link {
  text-align: left;
}
.cid-sNUMJCNu9n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9ddd8;
}
.cid-sNUMJCNu9n .mbr-text {
  color: #4c4c4c;
  margin-bottom: 0;
  line-height: 1.25;
}
.cid-sNUMJCNu9n .foot-menu {
  margin-bottom: 0;
}
.cid-sNUMJCNu9n ul {
  list-style: none;
  padding: 0;
  text-align: right;
}
.cid-sNUMJCNu9n li {
  display: inline-block;
  line-height: 1.5;
  margin: .5rem .75rem;
}
.cid-sNUMJCNu9n li > a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):hover:after {
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sNUMJCNu9n ul {
    text-align: left;
  }
  .cid-sNUMJCNu9n .mbr-text {
    margin-bottom: .75rem;
    margin-left: .75rem;
  }
}
.cid-sNU2s31Rkb .nav-item:focus,
.cid-sNU2s31Rkb .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sNU2s31Rkb .nav-item {
    position: relative;
  }
}
.cid-sNU2s31Rkb .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-sNU2s31Rkb .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-sNU2s31Rkb .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sNU2s31Rkb .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sNU2s31Rkb .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-sNU2s31Rkb .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sNU2s31Rkb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sNU2s31Rkb .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNU2s31Rkb .navbar.collapsed .navbar-collapse.show,
.cid-sNU2s31Rkb .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sNU2s31Rkb .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sNU2s31Rkb .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sNU2s31Rkb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sNU2s31Rkb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNU2s31Rkb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNU2s31Rkb .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-sNU2s31Rkb .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sNU2s31Rkb .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sNU2s31Rkb .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sNU2s31Rkb .navbar.collapsed .right-menu,
.cid-sNU2s31Rkb .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sNU2s31Rkb .navbar .navbar-collapse.show,
  .cid-sNU2s31Rkb .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-sNU2s31Rkb .navbar .navbar-collapse.show .brand-container,
  .cid-sNU2s31Rkb .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sNU2s31Rkb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNU2s31Rkb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sNU2s31Rkb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNU2s31Rkb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNU2s31Rkb .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-sNU2s31Rkb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sNU2s31Rkb .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sNU2s31Rkb .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-sNU2s31Rkb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sNU2s31Rkb .navbar .right-menu,
  .cid-sNU2s31Rkb .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sNU2s31Rkb .navbar.navbar-short {
  min-height: 60px;
}
.cid-sNU2s31Rkb .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-sNU2s31Rkb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sNU2s31Rkb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sNU2s31Rkb .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sNU2s31Rkb .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-sNU2s31Rkb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNU2s31Rkb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNU2s31Rkb .dropdown-item.active,
.cid-sNU2s31Rkb .dropdown-item:active {
  background-color: transparent;
}
.cid-sNU2s31Rkb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNU2s31Rkb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sNU2s31Rkb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sNU2s31Rkb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNU2s31Rkb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNU2s31Rkb ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sNU2s31Rkb ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sNU2s31Rkb .navbar-buttons {
  margin-left: auto;
}
.cid-sNU2s31Rkb 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-sNU2s31Rkb button.navbar-toggler:hover {
  outline: none;
}
.cid-sNU2s31Rkb button.navbar-toggler:active {
  outline: none;
}
.cid-sNU2s31Rkb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c17b71;
}
.cid-sNU2s31Rkb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sNU2s31Rkb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sNU2s31Rkb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sNU2s31Rkb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sNU2s31Rkb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNU2s31Rkb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sNU2s31Rkb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sNU2s31Rkb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNU2s31Rkb .navbar-dropdown {
  position: fixed;
}
.cid-sNU2s31Rkb 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-sNU2s31Rkb 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-sNU2s31Rkb a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sNU2s31Rkb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sNU2s31Rkb .right-menu,
.cid-sNU2s31Rkb .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sNU2s31Rkb .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNU2s31Rkb .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNU2s31Rkb .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sNU2s31Rkb .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sNU2s31Rkb .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sNU2s31Rkb .card-wrapper {
  z-index: 3;
}
.cid-sNU2s31Rkb .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sNU2s31Rkb .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sNU2s31Rkb .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sNU2s31Rkb .navbar-brand img {
  width: auto !important;
}
.cid-sNelt1XqCy {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sNelt1XqCy .carousel,
.cid-sNelt1XqCy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sNelt1XqCy .item-wrapper {
  width: 100%;
}
.cid-sNelt1XqCy .carousel-caption {
  bottom: 40px;
}
.cid-sNelt1XqCy .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sNelt1XqCy .carousel-control {
  color: #000000;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  transition: all 0.3s;
}
.cid-sNelt1XqCy .carousel-control.carousel-control-prev {
  left: -100px;
  margin-left: 2.5rem;
}
.cid-sNelt1XqCy .carousel-control.carousel-control-next {
  right: -100px;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sNelt1XqCy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sNelt1XqCy .carousel-control:hover {
  color: #c17b71;
}
.cid-sNelt1XqCy .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (min-width: 990px) {
  .cid-sNelt1XqCy .mobi-mbri-arrow-next {
    margin-left: -50px;
  }
  .cid-sNelt1XqCy .mobi-mbri-arrow-prev {
    margin-right: -50px;
  }
}
.cid-sNelt1XqCy .carousel-indicators {
  display: none;
}
.cid-sNelt1XqCy .text-content {
  width: 100%;
}
.cid-sNelt1XqCy .left-side {
  text-align: left;
}
.cid-sNelt1XqCy .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-sNelt1XqCy .carousel-control {
    display: none;
  }
}
.cid-sNelt1XqCy .mbr-section-subtitle {
  color: #4c4a4b;
  text-transform: uppercase;
}
.cid-sNelt1XqCy .mbr-text {
  color: #c17b71;
  padding-top: 10px;
}
.cid-sNenLqPIQq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sNenLqPIQq .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #c17b71;
  text-align: center;
}
.cid-sNenLqPIQq .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sNenLqPIQq H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sNenLqPIQq .section-text,
.cid-sNenLqPIQq .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sNenLqPIQq .section-text,
.cid-sNenLqPIQq .mbr-section-btn DIV {
  text-align: center;
}
.cid-sNelTTiu7N {
  padding-top: 0rem;
  padding-bottom: 0.5rem;
  background-image: url("../../../assets/images/untitled-design-2-1920x1080.png");
}
.cid-sNelTTiu7N .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sNelTTiu7N .team-card:hover {
  transform: translateY(-10px);
}
.cid-sNelTTiu7N .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sNelTTiu7N .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sNelTTiu7N .card-wrap .image-wrap {
  background: #ffffff;
  padding-top: 30px;
  padding-right: 30px;
}
.cid-sNelTTiu7N .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sNelTTiu7N .card-wrap .content-wrap {
    padding: 2rem;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sNelTTiu7N .card-wrap .content-wrap {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
}
.cid-sNelTTiu7N .occupation {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-sNelTTiu7N .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-sNelTTiu7N .mbr-section-title {
  color: #c17b71;
  text-align: center;
}
.cid-sNelTTiu7N .card-subtitle {
  text-align: center;
}
.cid-sNelTTiu7N .card-title,
.cid-sNelTTiu7N .social-row {
  text-align: center;
}
.cid-sNemLIS7wW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/untitled-design-2-1920x1080.png");
}
.cid-sNemLIS7wW .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sNemLIS7wW .team-card:hover {
  transform: translateY(-10px);
}
.cid-sNemLIS7wW .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sNemLIS7wW .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sNemLIS7wW .card-wrap .image-wrap {
  background: #ffffff;
  padding-top: 30px;
  padding-right: 30px;
}
.cid-sNemLIS7wW .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sNemLIS7wW .card-wrap .content-wrap {
    padding: 2rem;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sNemLIS7wW .card-wrap .content-wrap {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
}
.cid-sNemLIS7wW .occupation {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-sNemLIS7wW .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-sNemLIS7wW .mbr-section-title {
  color: #c17b71;
}
.cid-sNemLIS7wW .card-subtitle {
  text-align: center;
}
.cid-sNemLIS7wW .card-title,
.cid-sNemLIS7wW .social-row {
  text-align: center;
}
.cid-sNemLIS7wW .card-subtitle DIV {
  text-align: center;
}
.cid-t4iLslRG10 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-t4iLslRG10 .mbr-overlay {
  padding: 0;
  background: #ffffff;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-t4iLslRG10 .mbr-text {
  margin-bottom: 20.4px;
}
.cid-t4iLslRG10 .mbr-text,
.cid-t4iLslRG10 .mbr-section-btn {
  text-align: left;
  color: #4c4a4b;
}
.cid-t4iLslRG10 .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 484px;
}
.cid-t4iLslRG10 .mbr-section-subtitle {
  color: #c17b71;
}
.cid-t4iLslRG10 .section-subtext {
  color: #c17b71;
}
.cid-sNUk7zZevi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/17-3-1080x1080.jpeg");
}
.cid-sNUk7zZevi .mbr-text,
.cid-sNUk7zZevi .mbr-section-subtitle {
  color: #767676;
}
.cid-sNUk7zZevi .mbr-text {
  margin-bottom: 0 !important;
  color: #c17b71;
  transition: .2s all;
}
.cid-sNUk7zZevi .card-title {
  color: #66458e;
}
.cid-sNUk7zZevi .card .card-img span {
  color: #c17b71;
  font-size: 60px;
  background: #c17b71;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-sNUk7zZevi .card-img {
  padding-bottom: 2.65rem !important;
}
@media (max-width: 767px) {
  .cid-sNUk7zZevi .mbr-section-subtitle,
  .cid-sNUk7zZevi .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sNUk7zZevi .card .card-img span {
    background: none;
  }
}
.cid-sNUk7zZevi .card-wrap {
  border-radius: 5px;
  padding: 4.2rem 2rem 4.1rem;
}
.cid-sNUk7zZevi .card1 {
  background-color: #fafafa;
}
.cid-sNUk7zZevi .card2 {
  background-color: #fafafa;
}
.cid-sNUk7zZevi .card3 {
  background-color: #fafafa;
}
.cid-sNUk7zZevi .card4 {
  background-color: #bbbbbb;
}
.cid-sNUk7zZevi .card-title,
.cid-sNUk7zZevi .card-img {
  color: #c17b71;
  text-transform: uppercase;
}
.cid-sNUk7zZevi .mbr-section-title {
  color: #c17b71;
}
.cid-sNUk7zZevi H4 {
  color: #4c4c4c;
}
.cid-sNU7rrVKZJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/untitled-design-2-1920x1080.png");
}
.cid-sNU7rrVKZJ .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-sNU7rrVKZJ .mbr-text,
.cid-sNU7rrVKZJ .mbr-section-btn {
  color: #232323;
}
.cid-sNU7rrVKZJ .btn {
  width: 100%;
}
.cid-sNU7rrVKZJ .mbr-section-title {
  margin-bottom: 25px;
  color: #4c4a4b;
}
.cid-sNU7rrVKZJ .mbr-section-subtitle {
  margin-bottom: 25px;
  color: #c17b71;
}
.cid-sNU7rrVKZJ input::-webkit-input-placeholder,
.cid-sNU7rrVKZJ textarea::-webkit-input-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNU7rrVKZJ input:-moz-placeholder,
.cid-sNU7rrVKZJ textarea:-moz-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNU7rrVKZJ H1 {
  text-align: center;
}
.cid-sNU7rrVKZJ P {
  color: #6a3649;
}
.cid-sNU7rrVKZJ .mbr-text {
  color: #282727;
}
.cid-sNU3Ak2RPb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sNU3Ak2RPb .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #c17b71;
  text-align: center;
}
.cid-sNU3Ak2RPb .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sNU3Ak2RPb H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sNU3Ak2RPb .section-text,
.cid-sNU3Ak2RPb .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sNOqV8LjyC {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sNOqV8LjyC .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-sNOqV8LjyC .container {
  max-width: 1100px;
}
.cid-sNOqV8LjyC .text {
  position: absolute;
  width: 100%;
  padding: 0 10%;
}
.cid-sNOqV8LjyC .btn {
  white-space: nowrap;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 22px;
}
.cid-sNOqV8LjyC .mbr-iconfont {
  display: block;
  font-size: 3.5rem;
  color: #c17b71;
  height: 100%;
  padding-bottom: 7px;
}
.cid-sNOqV8LjyC .l2 {
  color: #4c4c4c;
}
.cid-sNOqV8LjyC .l1 {
  color: #4c4a4b;
}
.cid-sNOqV8LjyC .padd {
  color: #4c4c4c;
  text-align: center;
  padding-bottom: 60px;
}
.cid-sNOqV8LjyC .mbr-section-subtitle {
  color: #1b745e;
  text-align: center;
  font-style: italic;
  padding-bottom: 12px;
}
.cid-sNOqV8LjyC .features-image {
  padding-top: 32px;
}
.cid-sNOqV8LjyC .features-image:first-child {
  padding-top: 0px;
}
.cid-sNOqV8LjyC .features-image:nth-child(2) {
  padding-top: 0px;
}
.cid-sNOqV8LjyC .features-image:nth-child(3) {
  padding-top: 0px;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-sNOqV8LjyC .features-image {
    padding-top: 32px;
  }
  .cid-sNOqV8LjyC .features-image:first-child {
    padding-top: 0px;
  }
  .cid-sNOqV8LjyC .features-image:nth-child(2) {
    padding-top: 0px;
  }
  .cid-sNOqV8LjyC .features-image:nth-child(3) {
    padding-top: 32px;
  }
}
@media (max-width: 574px) {
  .cid-sNOqV8LjyC .features-image {
    padding-top: 32px;
  }
  .cid-sNOqV8LjyC .features-image:first-child {
    padding-top: 0px;
  }
  .cid-sNOqV8LjyC .features-image:nth-child(2) {
    padding-top: 32px;
  }
  .cid-sNOqV8LjyC .features-image:nth-child(3) {
    padding-top: 32px;
  }
}
.cid-sNOqV8LjyC .mbr-section-title {
  color: #c17b71;
}
.cid-sNOqWlsGSx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sNOqXoDrPO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sNOqXoDrPO .row {
  flex-direction: row-reverse;
}
.cid-sNOqXoDrPO .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #c17b71;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-sNOqXoDrPO .mbr-media {
  position: relative;
}
.cid-sNOqXoDrPO .mbr-media img {
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-sNOqXoDrPO .mbr-media {
    margin-bottom: 2rem;
  }
}
.cid-sNOqXoDrPO .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-sNOqXoDrPO .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-sNOqXoDrPO .card-title {
  padding: 0;
  margin: 0;
}
.cid-sNOqXoDrPO .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sNOqXoDrPO .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sNOqXoDrPO .card-wrapper {
    width: fit-content;
  }
}
.cid-sNOqXoDrPO .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-sNOqXoDrPO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sNOqXoDrPO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sNOqXoDrPO .card-title,
.cid-sNOqXoDrPO .card-icon {
  color: #5b6c8f;
}
.cid-sNOqXoDrPO .mbr-section-title {
  color: #c17b71;
}
.cid-sNOqXoDrPO .mbr-text,
.cid-sNOqXoDrPO .mbr-section-btn {
  color: #4c4a4b;
  text-align: left;
}
.cid-sNOqXoDrPO .price-title {
  text-align: center;
  color: #103178;
}
.cid-sNOqXoDrPO .price {
  text-align: center;
  color: #103178;
}
.cid-sNOqXoDrPO .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sNOqXoDrPO .mbr-media a:hover {
  background-image: none!important;
}
.cid-sNOqXoDrPO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sNOqXoDrPO .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sNOqXoDrPO .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sNOqXoDrPO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sNOqXoDrPO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sNUwb9WUUR {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sNUwb9WUUR img,
.cid-sNUwb9WUUR .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-sNUwb9WUUR .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #c17b71;
}
.cid-sNUwb9WUUR .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-sNUwb9WUUR .item:focus,
.cid-sNUwb9WUUR span:focus {
  outline: none;
}
.cid-sNUwb9WUUR .item {
  cursor: pointer;
}
.cid-sNUwb9WUUR .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-sNUwb9WUUR .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sNUwb9WUUR .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-sNUwb9WUUR .item-subtitle {
  color: #4c4a4b;
}
.cid-sNUwb9WUUR .mbr-text,
.cid-sNUwb9WUUR .mbr-section-btn {
  color: #c17b71;
}
.cid-sNUwbInNUV {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sNUwbInNUV img,
.cid-sNUwbInNUV .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-sNUwbInNUV .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #c17b71;
}
.cid-sNUwbInNUV .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-sNUwbInNUV .item:focus,
.cid-sNUwbInNUV span:focus {
  outline: none;
}
.cid-sNUwbInNUV .item {
  cursor: pointer;
}
.cid-sNUwbInNUV .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-sNUwbInNUV .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sNUwbInNUV .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-sNUwbInNUV .item-subtitle {
  color: #4c4a4b;
}
.cid-sNUwbInNUV .mbr-text,
.cid-sNUwbInNUV .mbr-section-btn {
  color: #c17b71;
}
.cid-sNUyoNNlyr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNUyoNNlyr p {
  color: #767676;
}
.cid-sNUyoNNlyr .row-element,
.cid-sNUyoNNlyr .image-element {
  padding: 0;
}
.cid-sNUyoNNlyr .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNUyoNNlyr .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sNUyoNNlyr .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sNUyoNNlyr .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c17b71, #c17b71);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sNUyoNNlyr .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sNUyoNNlyr .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sNUyoNNlyr .text-content {
    padding: 2rem 1rem;
  }
  .cid-sNUyoNNlyr .underline .line {
    height: 2px;
  }
  .cid-sNUyoNNlyr .mbr-title,
  .cid-sNUyoNNlyr .underline,
  .cid-sNUyoNNlyr .mbr-text,
  .cid-sNUyoNNlyr .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sNUyoNNlyr .mbr-title,
.cid-sNUyoNNlyr .underline {
  color: #c17b71;
}
.cid-sNOr2WOaUu {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-sNOr2WOaUu .row {
    justify-content: center;
  }
}
.cid-sNOr2WOaUu form .mbr-section-btn {
  width: 100%;
}
.cid-sNOr2WOaUu form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sNOr2WOaUu form .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sNOr2WOaUu .form-with-styler {
    padding: 30px;
  }
  .cid-sNOr2WOaUu .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sNOr2WOaUu input::-webkit-input-placeholder,
.cid-sNOr2WOaUu textarea::-webkit-input-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNOr2WOaUu input:-moz-placeholder,
.cid-sNOr2WOaUu textarea:-moz-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNOr2WOaUu .mbr-section-btn {
  margin-top: 10.8px;
}
.cid-sNOr2WOaUu .mbr-section-title {
  color: #c17b71;
  text-align: left;
}
.cid-sNOr2WOaUu .mbr-section-subtitle {
  color: #231f59;
  text-align: left;
}
.cid-sNOr2WOaUu .mbr-section-text,
.cid-sNOr2WOaUu .mbr-section-btn {
  text-align: left;
  color: #636363;
}
.cid-sNU2SF2Ui8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-sNU2SF2Ui8 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-sNU2SF2Ui8 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sNU2SF2Ui8 .mbr-text {
  color: #444;
}
.cid-sNU2SF2Ui8 h5 {
  margin-bottom: 0;
}
.cid-sNU2SF2Ui8 .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-sNU2SF2Ui8 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sNU2SF2Ui8 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-sNU2SF2Ui8 .socicon {
  font-size: 1.3rem;
  background: #c17b71;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNU2SF2Ui8 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNU2SF2Ui8 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNU2SF2Ui8 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sNU2SF2Ui8 .social-list a:hover {
  opacity: 0.4;
}
.cid-sNU2SF2Ui8 .media-container-row > div {
  padding: 0px;
}
.cid-sNU2SF2Ui8 .text2 {
  color: #4c4c4c;
  text-align: left;
}
.cid-sNU2SF2Ui8 .group-title {
  text-align: left;
  color: #c17b71;
}
.cid-sNU2SF2Ui8 .group-title SPAN {
  color: #ffffff;
}
.cid-sNU2SF2Ui8 .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-sNU2SF2Ui8 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sNU2SF2Ui8 .social-list,
  .cid-sNU2SF2Ui8 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sNU2SF2Ui8 h3 {
    margin-bottom: 10px;
  }
  .cid-sNU2SF2Ui8 .navbar-brand {
    text-align: center;
  }
}
.cid-sNU2SF2Ui8 .links SPAN {
  color: #9e9e9e;
}
.cid-sNU2SF2Ui8 .links,
.cid-sNU2SF2Ui8 .navbar-brand {
  color: #4c4a4b;
}
.cid-sNUMJCNu9n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9ddd8;
}
.cid-sNUMJCNu9n .mbr-text {
  color: #4c4c4c;
  margin-bottom: 0;
  line-height: 1.25;
}
.cid-sNUMJCNu9n .foot-menu {
  margin-bottom: 0;
}
.cid-sNUMJCNu9n ul {
  list-style: none;
  padding: 0;
  text-align: right;
}
.cid-sNUMJCNu9n li {
  display: inline-block;
  line-height: 1.5;
  margin: .5rem .75rem;
}
.cid-sNUMJCNu9n li > a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):hover:after {
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sNUMJCNu9n ul {
    text-align: left;
  }
  .cid-sNUMJCNu9n .mbr-text {
    margin-bottom: .75rem;
    margin-left: .75rem;
  }
}
.cid-sNULja4z45 .nav-item:focus,
.cid-sNULja4z45 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sNULja4z45 .nav-item {
    position: relative;
  }
}
.cid-sNULja4z45 .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-sNULja4z45 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-sNULja4z45 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sNULja4z45 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sNULja4z45 .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-sNULja4z45 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sNULja4z45 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sNULja4z45 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULja4z45 .navbar.collapsed .navbar-collapse.show,
.cid-sNULja4z45 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sNULja4z45 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sNULja4z45 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sNULja4z45 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sNULja4z45 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNULja4z45 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNULja4z45 .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-sNULja4z45 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sNULja4z45 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sNULja4z45 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sNULja4z45 .navbar.collapsed .right-menu,
.cid-sNULja4z45 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sNULja4z45 .navbar .navbar-collapse.show,
  .cid-sNULja4z45 .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-sNULja4z45 .navbar .navbar-collapse.show .brand-container,
  .cid-sNULja4z45 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sNULja4z45 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNULja4z45 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sNULja4z45 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNULja4z45 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNULja4z45 .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-sNULja4z45 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sNULja4z45 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sNULja4z45 .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-sNULja4z45 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sNULja4z45 .navbar .right-menu,
  .cid-sNULja4z45 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sNULja4z45 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sNULja4z45 .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-sNULja4z45 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sNULja4z45 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sNULja4z45 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sNULja4z45 .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-sNULja4z45 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNULja4z45 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNULja4z45 .dropdown-item.active,
.cid-sNULja4z45 .dropdown-item:active {
  background-color: transparent;
}
.cid-sNULja4z45 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNULja4z45 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sNULja4z45 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sNULja4z45 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNULja4z45 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNULja4z45 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sNULja4z45 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sNULja4z45 .navbar-buttons {
  margin-left: auto;
}
.cid-sNULja4z45 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-sNULja4z45 button.navbar-toggler:hover {
  outline: none;
}
.cid-sNULja4z45 button.navbar-toggler:active {
  outline: none;
}
.cid-sNULja4z45 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c17b71;
}
.cid-sNULja4z45 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sNULja4z45 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sNULja4z45 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sNULja4z45 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sNULja4z45 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNULja4z45 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sNULja4z45 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sNULja4z45 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNULja4z45 .navbar-dropdown {
  position: fixed;
}
.cid-sNULja4z45 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-sNULja4z45 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-sNULja4z45 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sNULja4z45 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sNULja4z45 .right-menu,
.cid-sNULja4z45 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sNULja4z45 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULja4z45 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULja4z45 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sNULja4z45 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sNULja4z45 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sNULja4z45 .card-wrapper {
  z-index: 3;
}
.cid-sNULja4z45 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sNULja4z45 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sNULja4z45 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sNULja4z45 .navbar-brand img {
  width: auto !important;
}
.cid-sNULjaPk8V {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sNULjaPk8V .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #c17b71;
  text-align: center;
}
.cid-sNULjaPk8V .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sNULjaPk8V H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sNULjaPk8V .section-text,
.cid-sNULjaPk8V .mbr-section-btn {
  text-align: center;
  color: #4c4c4c;
}
.cid-sNULjaPk8V .section-text,
.cid-sNULjaPk8V .mbr-section-btn DIV {
  text-align: left;
}
.cid-sNULjgRWV6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-sNULjgRWV6 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-sNULjgRWV6 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sNULjgRWV6 .mbr-text {
  color: #444;
}
.cid-sNULjgRWV6 h5 {
  margin-bottom: 0;
}
.cid-sNULjgRWV6 .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-sNULjgRWV6 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sNULjgRWV6 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-sNULjgRWV6 .socicon {
  font-size: 1.3rem;
  background: #c17b71;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNULjgRWV6 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULjgRWV6 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNULjgRWV6 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sNULjgRWV6 .social-list a:hover {
  opacity: 0.4;
}
.cid-sNULjgRWV6 .media-container-row > div {
  padding: 0px;
}
.cid-sNULjgRWV6 .text2 {
  color: #4c4c4c;
  text-align: left;
}
.cid-sNULjgRWV6 .group-title {
  text-align: left;
  color: #c17b71;
}
.cid-sNULjgRWV6 .group-title SPAN {
  color: #ffffff;
}
.cid-sNULjgRWV6 .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-sNULjgRWV6 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sNULjgRWV6 .social-list,
  .cid-sNULjgRWV6 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sNULjgRWV6 h3 {
    margin-bottom: 10px;
  }
  .cid-sNULjgRWV6 .navbar-brand {
    text-align: center;
  }
}
.cid-sNULjgRWV6 .links SPAN {
  color: #9e9e9e;
}
.cid-sNULjgRWV6 .links,
.cid-sNULjgRWV6 .navbar-brand {
  color: #4c4a4b;
}
.cid-sNUMJCNu9n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9ddd8;
}
.cid-sNUMJCNu9n .mbr-text {
  color: #4c4c4c;
  margin-bottom: 0;
  line-height: 1.25;
}
.cid-sNUMJCNu9n .foot-menu {
  margin-bottom: 0;
}
.cid-sNUMJCNu9n ul {
  list-style: none;
  padding: 0;
  text-align: right;
}
.cid-sNUMJCNu9n li {
  display: inline-block;
  line-height: 1.5;
  margin: .5rem .75rem;
}
.cid-sNUMJCNu9n li > a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):hover:after {
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sNUMJCNu9n ul {
    text-align: left;
  }
  .cid-sNUMJCNu9n .mbr-text {
    margin-bottom: .75rem;
    margin-left: .75rem;
  }
}
.cid-sNULJVVif3 .nav-item:focus,
.cid-sNULJVVif3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sNULJVVif3 .nav-item {
    position: relative;
  }
}
.cid-sNULJVVif3 .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-sNULJVVif3 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-sNULJVVif3 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sNULJVVif3 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sNULJVVif3 .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-sNULJVVif3 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sNULJVVif3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sNULJVVif3 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULJVVif3 .navbar.collapsed .navbar-collapse.show,
.cid-sNULJVVif3 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sNULJVVif3 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sNULJVVif3 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sNULJVVif3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sNULJVVif3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNULJVVif3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNULJVVif3 .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-sNULJVVif3 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sNULJVVif3 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sNULJVVif3 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sNULJVVif3 .navbar.collapsed .right-menu,
.cid-sNULJVVif3 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sNULJVVif3 .navbar .navbar-collapse.show,
  .cid-sNULJVVif3 .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-sNULJVVif3 .navbar .navbar-collapse.show .brand-container,
  .cid-sNULJVVif3 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sNULJVVif3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNULJVVif3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sNULJVVif3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNULJVVif3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNULJVVif3 .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-sNULJVVif3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sNULJVVif3 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sNULJVVif3 .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-sNULJVVif3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sNULJVVif3 .navbar .right-menu,
  .cid-sNULJVVif3 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sNULJVVif3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sNULJVVif3 .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-sNULJVVif3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sNULJVVif3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sNULJVVif3 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sNULJVVif3 .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-sNULJVVif3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNULJVVif3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNULJVVif3 .dropdown-item.active,
.cid-sNULJVVif3 .dropdown-item:active {
  background-color: transparent;
}
.cid-sNULJVVif3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNULJVVif3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sNULJVVif3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sNULJVVif3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNULJVVif3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNULJVVif3 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sNULJVVif3 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sNULJVVif3 .navbar-buttons {
  margin-left: auto;
}
.cid-sNULJVVif3 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-sNULJVVif3 button.navbar-toggler:hover {
  outline: none;
}
.cid-sNULJVVif3 button.navbar-toggler:active {
  outline: none;
}
.cid-sNULJVVif3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c17b71;
}
.cid-sNULJVVif3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sNULJVVif3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sNULJVVif3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sNULJVVif3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sNULJVVif3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNULJVVif3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sNULJVVif3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sNULJVVif3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNULJVVif3 .navbar-dropdown {
  position: fixed;
}
.cid-sNULJVVif3 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-sNULJVVif3 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-sNULJVVif3 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sNULJVVif3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sNULJVVif3 .right-menu,
.cid-sNULJVVif3 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sNULJVVif3 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULJVVif3 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULJVVif3 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sNULJVVif3 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sNULJVVif3 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sNULJVVif3 .card-wrapper {
  z-index: 3;
}
.cid-sNULJVVif3 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sNULJVVif3 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sNULJVVif3 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sNULJVVif3 .navbar-brand img {
  width: auto !important;
}
.cid-sNULJWjVbn {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sNULJWjVbn .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #c17b71;
  text-align: center;
}
.cid-sNULJWjVbn .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sNULJWjVbn H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sNULJWjVbn .section-text,
.cid-sNULJWjVbn .mbr-section-btn {
  text-align: center;
  color: #4c4c4c;
}
.cid-sNULJWjVbn .section-text,
.cid-sNULJWjVbn .mbr-section-btn DIV {
  text-align: left;
}
.cid-sNUM1hDRUv {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-sNUM1hDRUv .row {
    justify-content: center;
  }
}
.cid-sNUM1hDRUv form .mbr-section-btn {
  width: 100%;
}
.cid-sNUM1hDRUv form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sNUM1hDRUv form .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sNUM1hDRUv .form-with-styler {
    padding: 30px;
  }
  .cid-sNUM1hDRUv .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sNUM1hDRUv input::-webkit-input-placeholder,
.cid-sNUM1hDRUv textarea::-webkit-input-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNUM1hDRUv input:-moz-placeholder,
.cid-sNUM1hDRUv textarea:-moz-placeholder {
  color: #4c4c4c !important;
  opacity: 0.5;
}
.cid-sNUM1hDRUv .mbr-section-btn {
  margin-top: 10.8px;
}
.cid-sNUM1hDRUv .mbr-section-title {
  color: #c17b71;
  text-align: left;
}
.cid-sNUM1hDRUv .mbr-section-subtitle {
  color: #231f59;
  text-align: left;
}
.cid-sNUM1hDRUv .mbr-section-text,
.cid-sNUM1hDRUv .mbr-section-btn {
  text-align: left;
  color: #636363;
}
.cid-sNULJX0UmU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-sNULJX0UmU .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-sNULJX0UmU .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sNULJX0UmU .mbr-text {
  color: #444;
}
.cid-sNULJX0UmU h5 {
  margin-bottom: 0;
}
.cid-sNULJX0UmU .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-sNULJX0UmU .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sNULJX0UmU .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  object-fit: cover;
  display: inline;
}
.cid-sNULJX0UmU .socicon {
  font-size: 1.3rem;
  background: #c17b71;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNULJX0UmU .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sNULJX0UmU .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNULJX0UmU .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sNULJX0UmU .social-list a:hover {
  opacity: 0.4;
}
.cid-sNULJX0UmU .media-container-row > div {
  padding: 0px;
}
.cid-sNULJX0UmU .text2 {
  color: #4c4c4c;
  text-align: left;
}
.cid-sNULJX0UmU .group-title {
  text-align: left;
  color: #c17b71;
}
.cid-sNULJX0UmU .group-title SPAN {
  color: #ffffff;
}
.cid-sNULJX0UmU .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-sNULJX0UmU .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sNULJX0UmU .social-list,
  .cid-sNULJX0UmU .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sNULJX0UmU h3 {
    margin-bottom: 10px;
  }
  .cid-sNULJX0UmU .navbar-brand {
    text-align: center;
  }
}
.cid-sNULJX0UmU .links SPAN {
  color: #9e9e9e;
}
.cid-sNULJX0UmU .links,
.cid-sNULJX0UmU .navbar-brand {
  color: #4c4a4b;
}
.cid-sNUMJCNu9n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9ddd8;
}
.cid-sNUMJCNu9n .mbr-text {
  color: #4c4c4c;
  margin-bottom: 0;
  line-height: 1.25;
}
.cid-sNUMJCNu9n .foot-menu {
  margin-bottom: 0;
}
.cid-sNUMJCNu9n ul {
  list-style: none;
  padding: 0;
  text-align: right;
}
.cid-sNUMJCNu9n li {
  display: inline-block;
  line-height: 1.5;
  margin: .5rem .75rem;
}
.cid-sNUMJCNu9n li > a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):hover:after {
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sNUMJCNu9n ul {
    text-align: left;
  }
  .cid-sNUMJCNu9n .mbr-text {
    margin-bottom: .75rem;
    margin-left: .75rem;
  }
}
