body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #829d85 !important;
}
.bg-success {
  background-color: #446a49 !important;
}
.bg-info {
  background-color: #d0c4b7 !important;
}
.bg-warning {
  background-color: #caa9a8 !important;
}
.bg-danger {
  background-color: #895957 !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #829d85;
  border: 1px solid #829d85;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #829d85 !important;
  color: #363636 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #363636 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #829d85 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #363636 !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #987a5a;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary,
.btn-secondary:active {
  background-color: transparent  !important;
  border-color: #987a5a !important;
  color: #1f1b24 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #1f1b24 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  background-color: #987a5a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d0c4b7;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info,
.btn-info:active {
  background-color: transparent  !important;
  border-color: #d0c4b7 !important;
  color: #686174 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #686174 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  background-color: #d0c4b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #446a49;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success,
.btn-success:active {
  background-color: transparent  !important;
  border-color: #446a49 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  background-color: #446a49 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #caa9a8;
  border: 1px solid #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning,
.btn-warning:active {
  background-color: transparent  !important;
  border-color: #caa9a8 !important;
  color: #54566c !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #54566c !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  background-color: #caa9a8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #895957;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger,
.btn-danger:active {
  background-color: transparent  !important;
  border-color: #895957 !important;
  color: #141519 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #141519 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  background-color: #895957 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white,
.btn-white:active {
  background-color: transparent  !important;
  border-color: #ffffff !important;
  color: #a6a6a6 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #a6a6a6 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  background-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #353535;
  border: 1px solid #353535;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black,
.btn-black:active {
  background-color: transparent  !important;
  border-color: #353535 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  background-color: #353535 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #000000 !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #829d85;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #363636;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #363636 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #363636 !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  color: #1f1b24;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1f1b24 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info-outline,
.btn-info-outline:active {
  color: #686174;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #686174 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success-outline,
.btn-success-outline:active {
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning-outline,
.btn-warning-outline:active {
  color: #54566c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #54566c !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !important;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger-outline,
.btn-danger-outline:active {
  color: #141519;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #141519 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !important;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #353535;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black-outline,
.btn-black-outline:active {
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #000000 !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white-outline,
.btn-white-outline:active {
  color: #a6a6a6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #a6a6a6 !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.text-primary {
  color: #829d85 !important;
}
.text-secondary {
  color: #987a5a !important;
}
.text-success {
  color: #446a49 !important;
}
.text-info {
  color: #d0c4b7 !important;
}
.text-warning {
  color: #caa9a8 !important;
}
.text-danger {
  color: #895957 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #353535 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #516854 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #584734 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1c2c1e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a89179 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a36a69 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4b302f !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #020202 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #829d85;
}
.nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d0c4b7;
}
.alert-warning {
  background-color: #caa9a8;
}
.alert-danger {
  background-color: #895957;
}
.mbr-gallery-filter li.active .btn {
  background-color: #829d85;
  border-color: #829d85;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #829d85;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c9d5cb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #80ae86;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c19f9e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #829d85 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #829d85;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #829d85;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #829d85;
}
.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: #829d85;
  border-bottom-color: #829d85;
}
.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: #000000 !important;
  background-color: #829d85 !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: #987a5a !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='%23829d85' %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-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1190px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 670px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 200px;
  min-height: 60px;
  padding: 14px 28px;
  font-weight: 500;
  transition-duration: .35s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  z-index: 2;
}
.mbr-section-btn .btn.btn-black {
  color: #ffffff !important;
}
.mbr-section-btn .btn.btn-white {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-black-outline {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-white-outline {
  color: #ffffff !important;
}
.mbr-section-btn .btn:hover {
  transform: scale(0.9);
}
.mbr-section-btn .btn:hover:before {
  transform: rotate(0deg) scale(1.1111);
}
.cid-tSop1z5WmU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tSop1z5WmU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSop1z5WmU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSop1z5WmU .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-tSop1z5WmU .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tSop1z5WmU .main-title {
  color: #6c6c6c;
  margin-bottom: 0;
}
.cid-tSop1z5WmU .main-subtitle {
  color: #6c6c6c;
  margin-top: 20px;
}
.cid-tSop1z5WmU .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSop1z5WmU .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tSop1z5WmU .col-text {
    order: 2;
  }
}
.cid-tSop1z5WmU .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tSop1z5WmU .text-wrap {
    margin-top: 0;
    padding: 80px 0 55px;
  }
}
.cid-tSop1z5WmU .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tSop1z5WmU .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tSop1z5WmU .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
.cid-tSop1z5WmU .mbr-section-title {
  color: #353535;
}
.cid-tSop1z5WmU .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .mbr-text {
    margin-top: 12px;
  }
}
.cid-tSop1z5WmU .link-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .cid-tSop1z5WmU .link-wrap {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tSop1z5WmU .link-wrap {
    margin-top: 40px;
  }
}
.cid-tSop1z5WmU .link-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  color: #987A5A;
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-text {
    min-height: 160px;
  }
}
.cid-tSop1z5WmU .link-text a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  padding: 10px;
  color: inherit !important;
  transition: .3s all !important;
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-text a {
    min-height: 160px;
  }
}
.cid-tSop1z5WmU .link-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: .3s all;
}
.cid-tSop1z5WmU .link-item:nth-child(1) {
  background-image: url("../../../assets/images/frame9.png");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-item:nth-child(1) {
    margin-right: auto;
  }
}
.cid-tSop1z5WmU .link-item:nth-child(2) {
  margin: 12px -10px 0;
  background-image: url("../../../assets/images/frame10.png");
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-item:nth-child(2) {
    margin: -20px 0 0;
    margin-left: auto;
  }
}
.cid-tSop1z5WmU .link-item:nth-child(2) .link-text {
  min-height: 135px;
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-item:nth-child(2) .link-text {
    min-height: 160px;
  }
}
.cid-tSop1z5WmU .link-item:nth-child(3) {
  background-image: url("../../../assets/images/frame11.png");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-item:nth-child(3) {
    margin: -20px 0 0;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-tSop1z5WmU .link-item {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-tSop1z5WmU .link-item {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .cid-tSop1z5WmU .link-item:hover {
    transform: rotate(-12deg);
  }
  .cid-tSop1z5WmU .link-item:hover .link-text a {
    color: inherit !important;
    transform: rotate(12deg) scale(0.9);
  }
  .cid-tSop1z5WmU .link-item:nth-child(2):hover {
    transform: rotate(12deg);
  }
  .cid-tSop1z5WmU .link-item:nth-child(2):hover .link-text a {
    color: inherit !important;
    transform: rotate(-12deg) scale(0.9);
  }
}
.cid-tSop1z5WmU .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tSop1z5WmU .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tSop1z5WmU .col-img {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    order: 1;
    margin-bottom: -45px;
  }
}
.cid-tSop1z5WmU .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tSop1z5WmU .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tSop1z5WmU .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tSop1z5WmU .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
.cid-tSop1z5WmU .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tSr7cZglxQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tSr7cZglxQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSr7cZglxQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tSr7cZglxQ .container {
    padding: 0 30px;
  }
}
.cid-tSr7cZglxQ .row {
  justify-content: center;
}
.cid-tSr7cZglxQ .title-wrapper {
  margin-bottom: 55px;
}
.cid-tSr7cZglxQ .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tSr7cZglxQ .title-wrapper .link-wrapper:hover .mbr-link {
  color: #ff6839;
}
.cid-tSr7cZglxQ .title-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-tSr7cZglxQ .card {
  padding: 0 8px;
}
.cid-tSr7cZglxQ .card:nth-child(2n) {
  padding: 80px 8px 0;
}
@media (max-width: 992px) {
  .cid-tSr7cZglxQ .card:nth-child(2n) {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tSr7cZglxQ .card {
    padding: 0 12px;
  }
}
.cid-tSr7cZglxQ .card a {
  display: block;
}
.cid-tSr7cZglxQ .card a:hover .image-wrapper .mbr-iconfont {
  opacity: 1;
}
.cid-tSr7cZglxQ .card a:hover .image-wrapper::before {
  opacity: .5;
}
.cid-tSr7cZglxQ .card a .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cid-tSr7cZglxQ .card a .image-wrapper img {
  height: 215px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tSr7cZglxQ .card a .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
  }
}
.cid-tSr7cZglxQ .card a .image-wrapper .mbr-iconfont {
  position: absolute;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-tSr7cZglxQ .card a .image-wrapper:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-tSr7cZglxQ .text-wrapper {
  margin-top: 44px;
}
.cid-tSr7cZglxQ .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tSr7cZglxQ .mbr-section-title {
  color: #6c6c6c;
  text-align: center;
}
.cid-tSr7cZglxQ .mbr-link {
  color: #000000;
  text-align: center;
}
.cid-tSr7cZglxQ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tQeAEZ8PmU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tQeAEZ8PmU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQeAEZ8PmU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQeAEZ8PmU .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tQeAEZ8PmU .row {
    flex-wrap: wrap;
  }
}
.cid-tQeAEZ8PmU .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQeAEZ8PmU .text-wrap {
    margin-bottom: 50px;
  }
}
.cid-tQeAEZ8PmU .mbr-section-title {
  color: #6c6c6c;
  margin-bottom: 30px;
}
.cid-tQeAEZ8PmU .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tQeAEZ8PmU .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-tQeAEZ8PmU .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tQeAEZ8PmU .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tQeAEZ8PmU .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tQeAEZ8PmU .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tQeAEZ8PmU .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tQeAEZ8PmU .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tQeAEZ8PmU form {
  width: 100%;
}
.cid-tQeAEZ8PmU form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tQeAEZ8PmU form p {
  color: #353535;
}
.cid-tQeAEZ8PmU form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tQeAEZ8PmU form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-tQeAEZ8PmU form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-tQeAEZ8PmU form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-tQeAEZ8PmU form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #829d85 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 0;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  transition: .3s;
}
.cid-tQeAEZ8PmU form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-tQeAEZ8PmU form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-tQeAEZ8PmU form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-tQeAEZ8PmU form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-tQeAEZ8PmU form select {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-tQeAEZ8PmU form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form input,
.cid-tQeAEZ8PmU form textarea {
  transition: .4s all;
}
.cid-tQeAEZ8PmU form input:active,
.cid-tQeAEZ8PmU form textarea:active,
.cid-tQeAEZ8PmU form input:focus,
.cid-tQeAEZ8PmU form textarea:focus {
  background-color: transparent !important;
  border-color: #829d85 !important;
  outline: none !important;
}
.cid-tQeAEZ8PmU form input:active::-webkit-input-placeholder,
.cid-tQeAEZ8PmU form textarea:active::-webkit-input-placeholder,
.cid-tQeAEZ8PmU form input:focus::-webkit-input-placeholder,
.cid-tQeAEZ8PmU form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form input:active::-moz-placeholder,
.cid-tQeAEZ8PmU form textarea:active::-moz-placeholder,
.cid-tQeAEZ8PmU form input:focus::-moz-placeholder,
.cid-tQeAEZ8PmU form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form input:active:-moz-placeholder,
.cid-tQeAEZ8PmU form textarea:active:-moz-placeholder,
.cid-tQeAEZ8PmU form input:focus:-moz-placeholder,
.cid-tQeAEZ8PmU form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form input:active:-ms-input-placeholder,
.cid-tQeAEZ8PmU form textarea:active:-ms-input-placeholder,
.cid-tQeAEZ8PmU form input:focus:-ms-input-placeholder,
.cid-tQeAEZ8PmU form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tQeAEZ8PmU form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-tQeAEZ8PmU form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-tQeAEZ8PmU form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-tQeAEZ8PmU form .form-check label {
  color: #353535;
}
.cid-tQeAEZ8PmU form .form-check-input {
  border-color: #829d85 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tQeAEZ8PmU form .form-check-input:focus,
.cid-tQeAEZ8PmU form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #829d85 !important;
}
.cid-tQeAEZ8PmU form .form-check-input:checked {
  border-color: #829d85 !important;
  background-color: #FFFCF5 !important;
}
.cid-tqnCYjVLFo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #829d85;
}
.cid-tqnCYjVLFo .mbr-text {
  color: #FFFCF5;
}
.cid-tSosv7uB1a.popup-builder {
  background-color: #ffffff;
}
.cid-tSosv7uB1a.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tSosv7uB1a.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tSosv7uB1a .modal-content,
.cid-tSosv7uB1a .modal-dialog {
  height: auto;
}
.cid-tSosv7uB1a .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tSosv7uB1a .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tSosv7uB1a .form-wrapper .mbr-form .form-group,
  .cid-tSosv7uB1a .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tSosv7uB1a .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tSosv7uB1a .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tSosv7uB1a .mbr-text {
  text-align: center;
}
.cid-tSosv7uB1a .pt-0 {
  padding-top: 0 !important;
}
.cid-tSosv7uB1a .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tSosv7uB1a .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tSosv7uB1a .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tSosv7uB1a .modal-open {
  overflow: hidden;
}
.cid-tSosv7uB1a .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tSosv7uB1a .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tSosv7uB1a .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tSosv7uB1a .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tSosv7uB1a .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tSosv7uB1a .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tSosv7uB1a .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tSosv7uB1a .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tSosv7uB1a .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tSosv7uB1a .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tSosv7uB1a .modal-backdrop.fade {
  opacity: 0;
}
.cid-tSosv7uB1a .modal-backdrop.show {
  opacity: .5;
}
.cid-tSosv7uB1a .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tSosv7uB1a .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tSosv7uB1a .modal-header {
    padding: 1rem;
  }
}
.cid-tSosv7uB1a .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tSosv7uB1a .modal-header .close svg {
  fill: #353535;
}
.cid-tSosv7uB1a .modal-header .close:hover {
  opacity: 1;
}
.cid-tSosv7uB1a .modal-header .close:focus {
  outline: none;
}
.cid-tSosv7uB1a .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #353535;
}
.cid-tSosv7uB1a .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tSosv7uB1a .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSosv7uB1a .modal-body {
    padding: 1rem;
  }
}
.cid-tSosv7uB1a .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tSosv7uB1a .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSosv7uB1a .modal-footer {
    padding: 1rem;
  }
}
.cid-tSosv7uB1a .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tSosv7uB1a .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tSosv7uB1a .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tSosv7uB1a .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tSosv7uB1a .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tSosv7uB1a .modal-lg,
  .cid-tSosv7uB1a .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tSosv7uB1a .modal-xl {
    max-width: 1140px;
  }
}
.cid-tSosv7uB1a .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tSosv7uB1a .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tSosv7uB1a .form-group {
  margin-bottom: 1rem;
}
.cid-tSosv7uB1a .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tSosv7uB1a .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tSosv7uB1a .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tSosv7uB1a .mbr-section-btn {
  margin: 0;
}
.cid-tSosv7uB1a .mbr-section-btn .btn {
  margin: 0;
}
