body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color:#8D7763
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #bf7e50 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #a07227 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #3e2417 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bf7e50 !important;
  border-color: #bf7e50 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #875531 !important;
  border-color: #875531 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #875531 !important;
  border-color: #875531 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e69b3b !important;
  border-color: #e69b3b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b36f17 !important;
  border-color: #b36f17 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b36f17 !important;
  border-color: #b36f17 !important;
}
.btn-info,
.btn-info:active {
  background-color: #a07227 !important;
  border-color: #a07227 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #5a4016 !important;
  border-color: #5a4016 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5a4016 !important;
  border-color: #5a4016 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3e2417 !important;
  border-color: #3e2417 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bf7e50;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #875531 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bf7e50 !important;
  border-color: #bf7e50 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e69b3b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b36f17 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e69b3b !important;
  border-color: #e69b3b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a07227;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5a4016 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a07227 !important;
  border-color: #a07227 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3e2417;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3e2417 !important;
  border-color: #3e2417 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #bf7e50 !important;
}
.text-secondary {
  color: #e69b3b !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #a07227 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #3e2417 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #7c4e2d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a66615 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4e3813 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bf7e50;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a07227;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #3e2417;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bf7e50;
  border-color: #bf7e50;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bf7e50;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e1c3ad;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbb16b;
}
.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: #ca8e70;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #bf7e50 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #bf7e50;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bf7e50;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bf7e50;
}
.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: #bf7e50;
  border-bottom-color: #bf7e50;
}
.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: #bf7e50 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e69b3b !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='%23bf7e50' %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-syUDk44tIn {
  display: flex;
  background-image: url("../../../assets/images/dsc04373-corrected-and-centered-1863x1165.jpg");
}
.cid-syUDk44tIn .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-syUDk44tIn .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-syUDk44tIn {
    align-items: flex-end;
  }
  .cid-syUDk44tIn .row {
    justify-content: flex-start;
  }
  .cid-syUDk44tIn .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-syUDk44tIn .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-syUDk44tIn {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-syUDk44tIn .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syUDk44tIn .content-wrap {
    width: 100%;
  }
}
.cid-syUDk44tIn .mbr-section-title {
  color: #fdf4cd;
  text-align: right;
}
.cid-syUDk44tIn .mbr-text,
.cid-syUDk44tIn .mbr-section-btn {
  color: #f4e2c3;
  text-align: right;
}
.cid-syOEUcTBWU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-syOEUcTBWU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-syOEUcTBWU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syOEUcTBWU .text-wrapper {
    padding: 2rem;
  }
}
.cid-syOEUcTBWU .mbr-section-title {
  color: #a07227;
}
.cid-syOEUcTBWU .mbr-text {
  color: #a07227;
}
.cid-sz55HBOXlt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sz55HBOXlt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz55HBOXlt .row {
  flex-direction: row-reverse;
}
.cid-sz55HBOXlt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz55HBOXlt .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz55HBOXlt .mbr-section-title {
  color: #af8b48;
}
.cid-sz55HBOXlt .mbr-text {
  color: #403c3c;
}
.cid-sB9AvRXk09 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sB9AvRXk09 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9AvRXk09 .row {
  flex-direction: row-reverse;
}
.cid-sB9AvRXk09 img {
  width: 100%;
}
.cid-sAZKzBmaO6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sAZKzBmaO6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAZKzBmaO6 .row {
  flex-direction: row-reverse;
}
.cid-sAZKzBmaO6 img {
  width: 100%;
}
.cid-sB9JGSR2TB {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sB9JGSR2TB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9JGSR2TB .row {
  flex-direction: row-reverse;
}
.cid-sB9JGSR2TB img {
  width: 100%;
}
.cid-syOIYyCuEZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f4e2c3;
}
.cid-syOIYyCuEZ img,
.cid-syOIYyCuEZ .item-img {
  width: 100%;
}
.cid-syOIYyCuEZ .item:focus,
.cid-syOIYyCuEZ span:focus {
  outline: none;
}
.cid-syOIYyCuEZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-syOIYyCuEZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f5edcb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-syOIYyCuEZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-syOIYyCuEZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-syOIYyCuEZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-syOIYyCuEZ .mbr-section-title {
  color: #232323;
}
.cid-syOIYyCuEZ .mbr-text,
.cid-syOIYyCuEZ .mbr-section-btn {
  text-align: left;
  color: #987A60;
}
.cid-syOIYyCuEZ .item-title {
  text-align: left;
  color: #f64b2a;
}
.cid-syOIYyCuEZ .item-subtitle {
  text-align: center;
}
.cid-sySBVsbJP6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f4e2c3;
}
.cid-sySBVsbJP6 img,
.cid-sySBVsbJP6 .item-img {
  width: 100%;
}
.cid-sySBVsbJP6 .item:focus,
.cid-sySBVsbJP6 span:focus {
  outline: none;
}
.cid-sySBVsbJP6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sySBVsbJP6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f5edcb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sySBVsbJP6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sySBVsbJP6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sySBVsbJP6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sySBVsbJP6 .mbr-section-title {
  color: #232323;
}
.cid-sySBVsbJP6 .mbr-text,
.cid-sySBVsbJP6 .mbr-section-btn {
  text-align: left;
  color: #987A60;
}
.cid-sySBVsbJP6 .item-title {
  text-align: left;
  color: #f64b2a;
}
.cid-sySBVsbJP6 .item-subtitle {
  text-align: center;
}
.cid-sB9WXSxTlF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sB9WXSxTlF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9WXSxTlF .row {
  flex-direction: row-reverse;
}
.cid-sB9WXSxTlF img {
  width: 100%;
}
.cid-sB429G5ZPY {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-sB429G5ZPY .mbr-section-subtitle {
  color: #474034;
}
.cid-sB429G5ZPY .mbr-text {
  color: #232323;
}
.cid-sB429G5ZPY .mbr-section-title {
  color: #6c614f;
}
.cid-syUKHNlaFU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-syUKHNlaFU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-syUKHNlaFU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syUKHNlaFU .text-wrapper {
    padding: 2rem;
  }
}
.cid-syUKHNlaFU .mbr-section-title {
  color: #a07227;
}
.cid-syUKHNlaFU .mbr-text {
  color: #a07227;
}
.cid-syUTdnpb8L {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fdf4cd;
}
.cid-syUTdnpb8L .google-map {
  height: 30rem;
  position: relative;
}
.cid-syUTdnpb8L .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syUTdnpb8L .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syUTdnpb8L .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syUTdnpb8L .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syUTdnpb8L .mbr-section-title {
  color: #f64b2a;
  text-align: left;
}
.cid-syVaaFApY9 {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/juudgescourt126-2-1511x432.jpg");
}
.cid-syVaaFApY9 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-syVaaFApY9 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-syVaaFApY9 {
    align-items: flex-end;
  }
  .cid-syVaaFApY9 .row {
    justify-content: center;
  }
  .cid-syVaaFApY9 .content-wrap {
    width: 91%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-syVaaFApY9 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-syVaaFApY9 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-syVaaFApY9 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syVaaFApY9 .content-wrap {
    width: 100%;
  }
}
.cid-syZtSSlSuu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-syZtSSlSuu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-syZtSSlSuu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syZtSSlSuu .text-wrapper {
    padding: 2rem;
  }
}
.cid-syZtSSlSuu .mbr-section-title {
  color: #a07227;
}
.cid-syZtSSlSuu .mbr-text {
  color: #a07227;
}
.cid-szDEc8wren {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szDEc8wren .mbr-section-title {
  color: #e43f3f;
}
.cid-szDEc8wren .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szDEc8wren .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUV5VGcff {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUV5VGcff .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUV5VGcff img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUV5VGcff .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUV5VGcff .mbr-section-title {
  color: #a07227;
}
.cid-sBUV5VGcff .mbr-text {
  color: #a07227;
}
.cid-sCc8hxlBjA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sCc8hxlBjA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sCc8hxlBjA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sCc8hxlBjA .text-wrapper {
    padding: 2rem;
  }
}
.cid-sCc8hxlBjA .mbr-section-title {
  color: #a07227;
}
.cid-sCc8hxlBjA .mbr-text {
  color: #a07227;
}
.cid-szrCEGsbU2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szrCEGsbU2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szrCEGsbU2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szrCEGsbU2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szrCEGsbU2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szrCEGsbU2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szrCEGsbU2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szrCEGsbU2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-szrCEGsbU2 foot-menu-item {
  text-align: right;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: relative !important;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: absolute !important;
}
.cid-szbOGkMoWy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szbOGkMoWy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szbOGkMoWy .dropdown-item:hover,
.cid-szbOGkMoWy .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szbOGkMoWy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szbOGkMoWy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szbOGkMoWy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szbOGkMoWy .nav-link {
  position: relative;
}
.cid-szbOGkMoWy .container {
  display: flex;
  margin: auto;
}
.cid-szbOGkMoWy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown-menu,
.cid-szbOGkMoWy .navbar.opened {
  background: #5F6674 !important;
}
.cid-szbOGkMoWy .nav-item:focus,
.cid-szbOGkMoWy .nav-link:focus {
  outline: none;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szbOGkMoWy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szbOGkMoWy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szbOGkMoWy .navbar.opened {
  transition: all 0.3s;
}
.cid-szbOGkMoWy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szbOGkMoWy .navbar .navbar-logo img {
  width: auto;
}
.cid-szbOGkMoWy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar.collapsed {
  justify-content: center;
}
.cid-szbOGkMoWy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szbOGkMoWy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szbOGkMoWy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szbOGkMoWy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szbOGkMoWy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szbOGkMoWy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szbOGkMoWy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szbOGkMoWy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szbOGkMoWy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szbOGkMoWy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szbOGkMoWy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szbOGkMoWy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szbOGkMoWy .navbar.navbar-short {
  min-height: 60px;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szbOGkMoWy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szbOGkMoWy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szbOGkMoWy .dropdown-item.active,
.cid-szbOGkMoWy .dropdown-item:active {
  background-color: transparent;
}
.cid-szbOGkMoWy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szbOGkMoWy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szbOGkMoWy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szbOGkMoWy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szbOGkMoWy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szbOGkMoWy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szbOGkMoWy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szbOGkMoWy .navbar {
    height: 70px;
  }
  .cid-szbOGkMoWy .navbar.opened {
    height: auto;
  }
  .cid-szbOGkMoWy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syZAMs3iME {
  display: flex;
  background-image: url("../../../assets/images/top-new-horizons-1900x903.jpg");
}
.cid-syZAMs3iME .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-syZAMs3iME .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-syZAMs3iME {
    align-items: flex-end;
  }
  .cid-syZAMs3iME .row {
    justify-content: flex-start;
  }
  .cid-syZAMs3iME .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-syZAMs3iME .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-syZAMs3iME {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-syZAMs3iME .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-syZAMs3iME .content-wrap {
    width: 100%;
  }
}
.cid-syZAMs3iME .mbr-section-title {
  color: #DABEA6;
}
.cid-syZAMs3iME .mbr-text,
.cid-syZAMs3iME .mbr-section-btn {
  color: #fdf4cd;
}
.cid-syZAlqHvcm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-syZAlqHvcm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-syZAlqHvcm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syZAlqHvcm .text-wrapper {
    padding: 2rem;
  }
}
.cid-syZAlqHvcm .mbr-section-title {
  color: #a07227;
}
.cid-syZAlqHvcm .mbr-text {
  color: #a07227;
}
.cid-syZGsyQEfe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-syZGsyQEfe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-syZGsyQEfe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syZGsyQEfe .text-wrapper {
    padding: 2rem;
  }
}
.cid-syZGsyQEfe .mbr-text {
  color: #e43f3f;
  text-align: left;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: relative !important;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: absolute !important;
}
.cid-szbOGkMoWy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szbOGkMoWy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szbOGkMoWy .dropdown-item:hover,
.cid-szbOGkMoWy .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szbOGkMoWy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szbOGkMoWy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szbOGkMoWy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szbOGkMoWy .nav-link {
  position: relative;
}
.cid-szbOGkMoWy .container {
  display: flex;
  margin: auto;
}
.cid-szbOGkMoWy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown-menu,
.cid-szbOGkMoWy .navbar.opened {
  background: #5F6674 !important;
}
.cid-szbOGkMoWy .nav-item:focus,
.cid-szbOGkMoWy .nav-link:focus {
  outline: none;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szbOGkMoWy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szbOGkMoWy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szbOGkMoWy .navbar.opened {
  transition: all 0.3s;
}
.cid-szbOGkMoWy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szbOGkMoWy .navbar .navbar-logo img {
  width: auto;
}
.cid-szbOGkMoWy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar.collapsed {
  justify-content: center;
}
.cid-szbOGkMoWy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szbOGkMoWy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szbOGkMoWy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szbOGkMoWy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szbOGkMoWy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szbOGkMoWy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szbOGkMoWy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szbOGkMoWy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szbOGkMoWy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szbOGkMoWy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szbOGkMoWy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szbOGkMoWy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szbOGkMoWy .navbar.navbar-short {
  min-height: 60px;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szbOGkMoWy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szbOGkMoWy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szbOGkMoWy .dropdown-item.active,
.cid-szbOGkMoWy .dropdown-item:active {
  background-color: transparent;
}
.cid-szbOGkMoWy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szbOGkMoWy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szbOGkMoWy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szbOGkMoWy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szbOGkMoWy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szbOGkMoWy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szbOGkMoWy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szbOGkMoWy .navbar {
    height: 70px;
  }
  .cid-szbOGkMoWy .navbar.opened {
    height: auto;
  }
  .cid-szbOGkMoWy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szhLlJ0Lqt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/beas-riverxxx-1669x651.jpg");
}
.cid-szhLlJ0Lqt .mbr-section-subtitle {
  color: #b88645;
}
.cid-szhQtmJthP {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szhQtmJthP .mbr-section-subtitle {
  color: #b88645;
}
.cid-sBa80GMZbd {
  background-image: url("../../../assets/images/1jcwishing-platformxxxx-1900x1122.jpg");
}
.cid-sBa80GMZbd .mbr-section-title {
  color: #f7d9a4;
}
.cid-sBa80GMZbd .mbr-text,
.cid-sBa80GMZbd .mbr-section-btn {
  color: #faf3d9;
}
.cid-sBa3ZFUeSV {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sBa3ZFUeSV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBa3ZFUeSV .row {
  flex-direction: row-reverse;
}
.cid-sBa3ZFUeSV img {
  width: 100%;
}
.cid-sBa40W1Xau {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sBa40W1Xau .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBa40W1Xau .row {
  flex-direction: row-reverse;
}
.cid-sBa40W1Xau img {
  width: 100%;
}
.cid-sAZMUoALyF {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sAZMUoALyF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAZMUoALyF .row {
  flex-direction: row-reverse;
}
.cid-sAZMUoALyF img {
  width: 100%;
}
.cid-szn6VTgxWY {
  display: flex;
  background-image: url("../../../assets/images/dsc02285-1280x960.jpg");
}
.cid-szn6VTgxWY .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-szn6VTgxWY .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-szn6VTgxWY {
    align-items: flex-end;
  }
  .cid-szn6VTgxWY .row {
    justify-content: flex-start;
  }
  .cid-szn6VTgxWY .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-szn6VTgxWY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-szn6VTgxWY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-szn6VTgxWY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-szn6VTgxWY .content-wrap {
    width: 100%;
  }
}
.cid-sAYk4nJs84 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sAYk4nJs84 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAYk4nJs84 .row {
  flex-direction: row-reverse;
}
.cid-sAYk4nJs84 img {
  width: 100%;
}
.cid-szsOqSZIMf {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f7d9a4;
}
.cid-szsOqSZIMf .images-container.container-fluid {
  padding: 0;
}
.cid-szsOqSZIMf .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-szsOqSZIMf .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-szsOqSZIMf .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-szsOqSZIMf .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-szsOqSZIMf .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-szsOqSZIMf .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-szsOqSZIMf .img-item {
    width: 100% !important;
  }
  .cid-szsOqSZIMf .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-szsOu8iKeM {
  padding-top: 45px;
  padding-bottom: 30px;
  background: #f7d9a4;
}
.cid-szsOu8iKeM .images-container.container-fluid {
  padding: 0;
}
.cid-szsOu8iKeM .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-szsOu8iKeM .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-szsOu8iKeM .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-szsOu8iKeM .media-container-row .img-item .img-caption {
  background: #f7d9a4;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-szsOu8iKeM .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-szsOu8iKeM .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-szsOu8iKeM .img-item {
    width: 100% !important;
  }
  .cid-szsOu8iKeM .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-szsSiLsv85 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szsSiLsv85 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szsSiLsv85 .row {
  flex-direction: row-reverse;
}
.cid-szsSiLsv85 img {
  width: 100%;
}
.cid-sA91NwoPPH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sA91NwoPPH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA91NwoPPH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA91NwoPPH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sB3NvlgcNK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sB3NvlgcNK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB3NvlgcNK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sB3NvlgcNK .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA90IxwK19 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sA90IxwK19 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA90IxwK19 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA90IxwK19 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sB3Oouw0Rt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sB3Oouw0Rt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB3Oouw0Rt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sB3Oouw0Rt .text-wrapper {
    padding: 2rem;
  }
}
.cid-szn7qCVgly {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szn7qCVgly .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szn7qCVgly .row {
  flex-direction: row-reverse;
}
.cid-szn7qCVgly img {
  width: 100%;
}
.cid-szsVb7Y3q4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szsVb7Y3q4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szsVb7Y3q4 .row {
  flex-direction: row-reverse;
}
.cid-szsVb7Y3q4 img {
  width: 100%;
}
.cid-szt7CgCWXN {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-szt7CgCWXN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szt7CgCWXN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szt7CgCWXN .text-wrapper {
    padding: 2rem;
  }
}
.cid-szsVCHFNqq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-szsVCHFNqq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szsVCHFNqq .row {
  flex-direction: row-reverse;
}
.cid-szsVCHFNqq img {
  width: 100%;
}
.cid-sBEmuzQ8oG {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #fdf4cd;
}
.cid-sBEmuzQ8oG .images-container.container-fluid {
  padding: 0;
}
.cid-sBEmuzQ8oG .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sBEmuzQ8oG .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sBEmuzQ8oG .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sBEmuzQ8oG .media-container-row .img-item .img-caption {
  background: #fdf4cd;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sBEmuzQ8oG .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sBEmuzQ8oG .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sBEmuzQ8oG .img-item {
    width: 100% !important;
  }
  .cid-sBEmuzQ8oG .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sBEnJS6njR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sBEnJS6njR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBEnJS6njR .row {
  flex-direction: row-reverse;
}
.cid-sBEnJS6njR img {
  width: 100%;
}
.cid-sApbYV6x7d {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sApbYV6x7d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sApbYV6x7d .row {
  flex-direction: row-reverse;
}
.cid-sApbYV6x7d img {
  width: 100%;
}
.cid-sApbIGUqoE {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-sApbIGUqoE .mbr-section-subtitle {
  color: #232323;
}
.cid-szzzKt1V2z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-szzzKt1V2z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szzzKt1V2z .row {
  flex-direction: row-reverse;
}
.cid-szzzKt1V2z img {
  width: 100%;
}
.cid-sBEkYJSJC7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szsZywoE4D {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szsZywoE4D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szsZywoE4D .row {
  flex-direction: row-reverse;
}
.cid-szsZywoE4D img {
  width: 100%;
}
.cid-szt2g3Mr9L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-szt2g3Mr9L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szt2g3Mr9L .row {
  flex-direction: row-reverse;
}
.cid-szt2g3Mr9L img {
  width: 100%;
}
.cid-szsOByHwT1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-szsOByHwT1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szsOByHwT1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szsOByHwT1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-szsOByHwT1 .mbr-section-title {
  color: #a07227;
}
.cid-szsOByHwT1 .mbr-text {
  color: #a07227;
}
.cid-szDGat80h0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szDGat80h0 .mbr-section-title {
  color: #e43f3f;
}
.cid-szDGat80h0 .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szDGat80h0 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUWb8XRsG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUWb8XRsG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUWb8XRsG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUWb8XRsG .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUWb8XRsG .mbr-section-title {
  color: #a07227;
}
.cid-sBUWb8XRsG .mbr-text {
  color: #a07227;
}
.cid-sBOQv9s5se {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sBOQv9s5se .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBOQv9s5se img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBOQv9s5se .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBOQv9s5se .mbr-section-title {
  color: #545454;
}
.cid-szrCEGsbU2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szrCEGsbU2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szrCEGsbU2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szrCEGsbU2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szrCEGsbU2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szrCEGsbU2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szrCEGsbU2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szrCEGsbU2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-szrCEGsbU2 foot-menu-item {
  text-align: right;
}
.cid-sz5eWKv3ZR {
  display: flex;
  background-image: url("../../../assets/images/cow-for-prag-top-2000x1085.jpg");
}
.cid-sz5eWKv3ZR .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sz5eWKv3ZR .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sz5eWKv3ZR {
    align-items: flex-end;
  }
  .cid-sz5eWKv3ZR .row {
    justify-content: flex-start;
  }
  .cid-sz5eWKv3ZR .content-wrap {
    width: 93%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sz5eWKv3ZR .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sz5eWKv3ZR {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sz5eWKv3ZR .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sz5eWKv3ZR .content-wrap {
    width: 100%;
  }
}
.cid-sz5eWKv3ZR .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-sz5i1BOX3o {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sz5i1BOX3o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz5i1BOX3o img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz5i1BOX3o .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz5i1BOX3o .mbr-section-title {
  color: #a07227;
}
.cid-sz5i1BOX3o .mbr-text {
  color: #a07227;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: relative !important;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: absolute !important;
}
.cid-szbOGkMoWy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szbOGkMoWy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szbOGkMoWy .dropdown-item:hover,
.cid-szbOGkMoWy .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szbOGkMoWy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szbOGkMoWy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szbOGkMoWy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szbOGkMoWy .nav-link {
  position: relative;
}
.cid-szbOGkMoWy .container {
  display: flex;
  margin: auto;
}
.cid-szbOGkMoWy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown-menu,
.cid-szbOGkMoWy .navbar.opened {
  background: #5F6674 !important;
}
.cid-szbOGkMoWy .nav-item:focus,
.cid-szbOGkMoWy .nav-link:focus {
  outline: none;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szbOGkMoWy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szbOGkMoWy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szbOGkMoWy .navbar.opened {
  transition: all 0.3s;
}
.cid-szbOGkMoWy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szbOGkMoWy .navbar .navbar-logo img {
  width: auto;
}
.cid-szbOGkMoWy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar.collapsed {
  justify-content: center;
}
.cid-szbOGkMoWy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szbOGkMoWy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szbOGkMoWy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szbOGkMoWy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szbOGkMoWy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szbOGkMoWy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szbOGkMoWy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szbOGkMoWy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szbOGkMoWy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szbOGkMoWy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szbOGkMoWy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szbOGkMoWy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szbOGkMoWy .navbar.navbar-short {
  min-height: 60px;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szbOGkMoWy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szbOGkMoWy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szbOGkMoWy .dropdown-item.active,
.cid-szbOGkMoWy .dropdown-item:active {
  background-color: transparent;
}
.cid-szbOGkMoWy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szbOGkMoWy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szbOGkMoWy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szbOGkMoWy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szbOGkMoWy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szbOGkMoWy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szbOGkMoWy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szbOGkMoWy .navbar {
    height: 70px;
  }
  .cid-szbOGkMoWy .navbar.opened {
    height: auto;
  }
  .cid-szbOGkMoWy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szav3BtBs8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szav3BtBs8 .mbr-section-subtitle {
  color: #685c42;
}
.cid-szav3BtBs8 .mbr-text {
  color: #685c42;
}
.cid-sBPaJD6wwV {
  display: flex;
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/wide-angle-prag-1900x516.jpg");
}
.cid-sBPaJD6wwV .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sBPaJD6wwV .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sBPaJD6wwV {
    align-items: flex-end;
  }
  .cid-sBPaJD6wwV .row {
    justify-content: flex-start;
  }
  .cid-sBPaJD6wwV .content-wrap {
    width: 60%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sBPaJD6wwV .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sBPaJD6wwV {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sBPaJD6wwV .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sBPaJD6wwV .content-wrap {
    width: 100%;
  }
}
.cid-sBPaJD6wwV .mbr-section-title {
  text-align: center;
}
.cid-sAZJKQvKck {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f7d9a4;
}
.cid-sAZJKQvKck .images-container.container-fluid {
  padding: 0;
}
.cid-sAZJKQvKck .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-sAZJKQvKck .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sAZJKQvKck .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sAZJKQvKck .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sAZJKQvKck .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sAZJKQvKck .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sAZJKQvKck .img-item {
    width: 100% !important;
  }
  .cid-sAZJKQvKck .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sz5kuY6trH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sz5kuY6trH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz5kuY6trH .row {
  flex-direction: row-reverse;
}
.cid-sz5kuY6trH img {
  width: 100%;
}
.cid-sAjozm7miz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
.cid-sAjozm7miz .mbr-section-title {
  color: #e43f3f;
}
.cid-sAjozm7miz .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-sAjozm7miz .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sApa0aVEr0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sApa0aVEr0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sApa0aVEr0 .row {
  flex-direction: row-reverse;
}
.cid-sApa0aVEr0 img {
  width: 100%;
}
.cid-sAvXh38KHn {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sAvXh38KHn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAvXh38KHn .row {
  flex-direction: row-reverse;
}
.cid-sAvXh38KHn img {
  width: 100%;
}
.cid-sz6F0v1RGI {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sz6F0v1RGI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz6F0v1RGI .row {
  flex-direction: row-reverse;
}
.cid-sz6F0v1RGI img {
  width: 100%;
}
.cid-szawH2BG7A {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szawH2BG7A .mbr-section-subtitle {
  color: #685c42;
}
.cid-szawH2BG7A .mbr-text {
  color: #000000;
}
.cid-sz5rpGR1W6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sz5rpGR1W6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz5rpGR1W6 .row {
  flex-direction: row-reverse;
}
.cid-sz5rpGR1W6 img {
  width: 100%;
}
.cid-szax19ZqyL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
.cid-szax19ZqyL .mbr-section-subtitle {
  color: #685c42;
}
.cid-szax19ZqyL .mbr-text {
  color: #000000;
}
.cid-sAjqW39aH0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sAjqW39aH0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAjqW39aH0 .row {
  flex-direction: row-reverse;
}
.cid-sAjqW39aH0 img {
  width: 100%;
}
.cid-sAjqBXBz8e {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-sAjqBXBz8e .mbr-section-subtitle {
  color: #685c42;
}
.cid-sAjqBXBz8e .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sB9qdPFtvk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sB9qdPFtvk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9qdPFtvk .row {
  flex-direction: row-reverse;
}
.cid-sB9qdPFtvk img {
  width: 100%;
}
.cid-sz62mW6sCi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sz62mW6sCi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz62mW6sCi .row {
  flex-direction: row-reverse;
}
.cid-sz62mW6sCi img {
  width: 100%;
}
.cid-sz5D2uPHNU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sz5D2uPHNU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz5D2uPHNU .row {
  flex-direction: row-reverse;
}
.cid-sz5D2uPHNU img {
  width: 100%;
}
.cid-sznb49X44E {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #edcc90;
}
.cid-sznb49X44E .images-container.container-fluid {
  padding: 0;
}
.cid-sznb49X44E .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sznb49X44E .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sznb49X44E .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sznb49X44E .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sznb49X44E .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sznb49X44E .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sznb49X44E .img-item {
    width: 100% !important;
  }
  .cid-sznb49X44E .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sz5tT6T09m {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sz5tT6T09m .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz5tT6T09m .row {
  flex-direction: row-reverse;
}
.cid-sz5tT6T09m img {
  width: 100%;
}
.cid-szaxjLTASn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szaxjLTASn .mbr-section-subtitle {
  color: #685c42;
}
.cid-szaxjLTASn .mbr-text {
  color: #000000;
}
.cid-sz6j0rPBry {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #edcc90;
}
.cid-sz6j0rPBry .images-container.container-fluid {
  padding: 0;
}
.cid-sz6j0rPBry .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-sz6j0rPBry .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sz6j0rPBry .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sz6j0rPBry .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sz6j0rPBry .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sz6j0rPBry .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sz6j0rPBry .img-item {
    width: 100% !important;
  }
  .cid-sz6j0rPBry .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sz63od3hq1 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sz63od3hq1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz63od3hq1 .row {
  flex-direction: row-reverse;
}
.cid-sz63od3hq1 img {
  width: 100%;
}
.cid-sz6a4IFYeE {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f7d9a4;
}
.cid-sz6a4IFYeE .images-container.container-fluid {
  padding: 0;
}
.cid-sz6a4IFYeE .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sz6a4IFYeE .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sz6a4IFYeE .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sz6a4IFYeE .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sz6a4IFYeE .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sz6a4IFYeE .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sz6a4IFYeE .img-item {
    width: 100% !important;
  }
  .cid-sz6a4IFYeE .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sz6cDgkjmv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sz6cDgkjmv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz6cDgkjmv .row {
  flex-direction: row-reverse;
}
.cid-sz6cDgkjmv img {
  width: 100%;
}
.cid-sz6kQalVyK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sz6kQalVyK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz6kQalVyK .row {
  flex-direction: row-reverse;
}
.cid-sz6kQalVyK img {
  width: 100%;
}
.cid-sASbOTsdZd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sASbOTsdZd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sASbOTsdZd .row {
  flex-direction: row-reverse;
}
.cid-sASbOTsdZd img {
  width: 100%;
}
.cid-szaxQRePGM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szaxQRePGM .mbr-section-subtitle {
  color: #685c42;
}
.cid-szaxQRePGM .mbr-text {
  color: #000000;
}
.cid-sz6e0kj0az {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sz6e0kj0az .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz6e0kj0az .row {
  flex-direction: row-reverse;
}
.cid-sz6e0kj0az img {
  width: 100%;
}
.cid-sz6AU0aKSR {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f7d9a4;
}
.cid-sz6AU0aKSR .images-container.container-fluid {
  padding: 0;
}
.cid-sz6AU0aKSR .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-sz6AU0aKSR .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sz6AU0aKSR .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sz6AU0aKSR .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sz6AU0aKSR .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sz6AU0aKSR .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sz6AU0aKSR .img-item {
    width: 100% !important;
  }
  .cid-sz6AU0aKSR .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-szhdyOZBmw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-szhdyOZBmw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szhdyOZBmw .row {
  flex-direction: row-reverse;
}
.cid-szhdyOZBmw img {
  width: 100%;
}
.cid-szna7ggeLN {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f7d9a4;
}
.cid-szna7ggeLN .images-container.container-fluid {
  padding: 0;
}
.cid-szna7ggeLN .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-szna7ggeLN .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-szna7ggeLN .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-szna7ggeLN .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-szna7ggeLN .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-szna7ggeLN .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-szna7ggeLN .img-item {
    width: 100% !important;
  }
  .cid-szna7ggeLN .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sB9st06IPA {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sB9st06IPA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9st06IPA .row {
  flex-direction: row-reverse;
}
.cid-sB9st06IPA img {
  width: 100%;
}
.cid-sB9p5AlisH {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sB9p5AlisH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9p5AlisH .row {
  flex-direction: row-reverse;
}
.cid-sB9p5AlisH img {
  width: 100%;
}
.cid-sz6ffIGVsL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sz6ffIGVsL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz6ffIGVsL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz6ffIGVsL .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz6ffIGVsL .mbr-section-title {
  color: #a07227;
}
.cid-sz6ffIGVsL .mbr-text {
  color: #a07227;
}
.cid-szDFEPElo7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szDFEPElo7 .mbr-section-title {
  color: #e43f3f;
}
.cid-szDFEPElo7 .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szDFEPElo7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUVKl5XZa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUVKl5XZa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUVKl5XZa img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUVKl5XZa .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUVKl5XZa .mbr-section-title {
  color: #a07227;
}
.cid-sBUVKl5XZa .mbr-text {
  color: #a07227;
}
.cid-szrCEGsbU2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szrCEGsbU2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szrCEGsbU2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szrCEGsbU2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szrCEGsbU2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szrCEGsbU2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szrCEGsbU2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szrCEGsbU2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-szrCEGsbU2 foot-menu-item {
  text-align: right;
}
.cid-szrewQeKm8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-szrewQeKm8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szrewQeKm8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szrewQeKm8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-szrewQeKm8 .mbr-section-title {
  color: #a07227;
}
.cid-szrewQeKm8 .mbr-text {
  color: #a07227;
}
.cid-szrgQJG7OW {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szrgQJG7OW .mbr-section-subtitle {
  color: #685c42;
}
.cid-szrgQJG7OW .mbr-text {
  color: #000000;
}
.cid-szrgQJG7OW P {
  color: #000000;
}
.cid-sBUYppNyH1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUYppNyH1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUYppNyH1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUYppNyH1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUYppNyH1 .mbr-section-title {
  color: #a07227;
}
.cid-sBUYppNyH1 .mbr-text {
  color: #a07227;
}
.cid-szrIdxjpw0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szrIdxjpw0 .mbr-section-title {
  color: #e43f3f;
}
.cid-szrIdxjpw0 .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szrIdxjpw0 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUXhFdQqB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUXhFdQqB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUXhFdQqB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUXhFdQqB .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUXhFdQqB .mbr-section-title {
  color: #a07227;
}
.cid-sBUXhFdQqB .mbr-text {
  color: #a07227;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: relative !important;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: absolute !important;
}
.cid-szbOGkMoWy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szbOGkMoWy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szbOGkMoWy .dropdown-item:hover,
.cid-szbOGkMoWy .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szbOGkMoWy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szbOGkMoWy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szbOGkMoWy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szbOGkMoWy .nav-link {
  position: relative;
}
.cid-szbOGkMoWy .container {
  display: flex;
  margin: auto;
}
.cid-szbOGkMoWy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown-menu,
.cid-szbOGkMoWy .navbar.opened {
  background: #5F6674 !important;
}
.cid-szbOGkMoWy .nav-item:focus,
.cid-szbOGkMoWy .nav-link:focus {
  outline: none;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szbOGkMoWy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szbOGkMoWy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szbOGkMoWy .navbar.opened {
  transition: all 0.3s;
}
.cid-szbOGkMoWy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szbOGkMoWy .navbar .navbar-logo img {
  width: auto;
}
.cid-szbOGkMoWy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar.collapsed {
  justify-content: center;
}
.cid-szbOGkMoWy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szbOGkMoWy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szbOGkMoWy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szbOGkMoWy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szbOGkMoWy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szbOGkMoWy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szbOGkMoWy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szbOGkMoWy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szbOGkMoWy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szbOGkMoWy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szbOGkMoWy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szbOGkMoWy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szbOGkMoWy .navbar.navbar-short {
  min-height: 60px;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szbOGkMoWy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szbOGkMoWy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szbOGkMoWy .dropdown-item.active,
.cid-szbOGkMoWy .dropdown-item:active {
  background-color: transparent;
}
.cid-szbOGkMoWy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szbOGkMoWy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szbOGkMoWy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szbOGkMoWy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szbOGkMoWy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szbOGkMoWy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szbOGkMoWy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szbOGkMoWy .navbar {
    height: 70px;
  }
  .cid-szbOGkMoWy .navbar.opened {
    height: auto;
  }
  .cid-szbOGkMoWy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szcmq1psHt {
  display: flex;
  background-image: url("../../../assets/images/where-xx-1673x750.jpg");
}
.cid-szcmq1psHt .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-szcmq1psHt .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-szcmq1psHt {
    align-items: flex-end;
  }
  .cid-szcmq1psHt .row {
    justify-content: flex-start;
  }
  .cid-szcmq1psHt .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-szcmq1psHt .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-szcmq1psHt {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-szcmq1psHt .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-szcmq1psHt .content-wrap {
    width: 100%;
  }
}
.cid-szcmq1psHt .mbr-section-title {
  color: #f7d9a4;
  text-align: center;
}
.cid-szcmZMrlQx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-szcmZMrlQx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szcmZMrlQx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szcmZMrlQx .text-wrapper {
    padding: 2rem;
  }
}
.cid-szcmZMrlQx .mbr-section-title {
  color: #a07227;
}
.cid-szcmZMrlQx .mbr-text {
  color: #a07227;
}
.cid-szcn9XAWgJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szcn9XAWgJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szcn9XAWgJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szcn9XAWgJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-szcn9XAWgJ .mbr-description {
  color: #f7d9a4;
}
.cid-szcn9XAWgJ .mbr-section-title {
  color: #373030;
}
.cid-szh3ObSuB3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #fdf4cd;
}
.cid-szh3ObSuB3 .google-map {
  height: 30rem;
  position: relative;
}
.cid-szh3ObSuB3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-szh3ObSuB3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-szh3ObSuB3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-szh3ObSuB3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-szh3ObSuB3 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-sAYpulZ15V {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sAYpulZ15V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAYpulZ15V .row {
  flex-direction: row-reverse;
}
.cid-sAYpulZ15V img {
  width: 100%;
}
.cid-szcpPzRBd1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szcpPzRBd1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szcpPzRBd1 .row {
  flex-direction: row-reverse;
}
.cid-szcpPzRBd1 img {
  width: 100%;
}
.cid-szDjAACJy8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f7d9a4;
}
.cid-szDjAACJy8 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-szDjAACJy8 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-szDjAACJy8 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-szDjAACJy8 .media-container-row .img-item .img-caption {
  background: #f7d9a4;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-szDjAACJy8 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-szDjAACJy8 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-szDjAACJy8 .img-item {
    width: 100% !important;
  }
  .cid-szDjAACJy8 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-szcpTUF9Ic {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-szcpTUF9Ic .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szcpTUF9Ic img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szcpTUF9Ic .text-wrapper {
    padding: 2rem;
  }
}
.cid-szcpTUF9Ic .mbr-section-title {
  color: #a07227;
}
.cid-szcpTUF9Ic .mbr-text {
  color: #a07227;
}
.cid-szcpWduxHi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szcpWduxHi .mbr-section-title {
  color: #e43f3f;
}
.cid-szcpWduxHi .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szcpWduxHi .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUVXhSOP1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUVXhSOP1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUVXhSOP1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUVXhSOP1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUVXhSOP1 .mbr-section-title {
  color: #a07227;
}
.cid-sBUVXhSOP1 .mbr-text {
  color: #a07227;
}
.cid-szrCEGsbU2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szrCEGsbU2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szrCEGsbU2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szrCEGsbU2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szrCEGsbU2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szrCEGsbU2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szrCEGsbU2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szrCEGsbU2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-szrCEGsbU2 foot-menu-item {
  text-align: right;
}
.cid-sz6gVd70Eo {
  display: flex;
  background-image: url("../../../assets/images/ejogirl-top-2000x1146.jpg");
}
.cid-sz6gVd70Eo .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sz6gVd70Eo .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sz6gVd70Eo {
    align-items: flex-end;
  }
  .cid-sz6gVd70Eo .row {
    justify-content: flex-start;
  }
  .cid-sz6gVd70Eo .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sz6gVd70Eo .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sz6gVd70Eo {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sz6gVd70Eo .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sz6gVd70Eo .content-wrap {
    width: 100%;
  }
}
.cid-sz6gVd70Eo .mbr-section-title {
  color: #ffb18a;
}
.cid-szyglBa8Le {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
.cid-szyglBa8Le [class^="socicon-"]:before,
.cid-szyglBa8Le [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szyglBa8Le .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e43f3f;
  border-width: 2px;
  transition: all .3s;
  border-color: #e43f3f;
}
.cid-szyglBa8Le .btn-social:hover {
  background: #e43f3f;
}
.cid-szyglBa8Le .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sztWYRigQY {
  display: flex;
  background-image: url("../../../assets/images/dsc01011-straight-1221x871.jpg");
}
.cid-sztWYRigQY .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sztWYRigQY .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sztWYRigQY {
    align-items: flex-end;
  }
  .cid-sztWYRigQY .row {
    justify-content: flex-start;
  }
  .cid-sztWYRigQY .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sztWYRigQY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sztWYRigQY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sztWYRigQY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sztWYRigQY .content-wrap {
    width: 100%;
  }
}
.cid-sztWYRigQY .mbr-section-title {
  color: #edcc90;
}
.cid-sztWYRigQY .mbr-text,
.cid-sztWYRigQY .mbr-section-btn {
  color: #edcc90;
}
.cid-szyfexFKf5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
.cid-szyfexFKf5 [class^="socicon-"]:before,
.cid-szyfexFKf5 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szyfexFKf5 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e43f3f;
  border-width: 2px;
  transition: all .3s;
  border-color: #e43f3f;
}
.cid-szyfexFKf5 .btn-social:hover {
  background: #e43f3f;
}
.cid-szyfexFKf5 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sztRrLRD3J {
  display: flex;
  background-image: url("../../../assets/images/mountainxxx-1276x594.jpg");
}
.cid-sztRrLRD3J .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sztRrLRD3J .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sztRrLRD3J {
    align-items: flex-end;
  }
  .cid-sztRrLRD3J .row {
    justify-content: flex-start;
  }
  .cid-sztRrLRD3J .content-wrap {
    width: 60%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sztRrLRD3J .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sztRrLRD3J {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sztRrLRD3J .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sztRrLRD3J .content-wrap {
    width: 100%;
  }
}
.cid-sztRrLRD3J .mbr-section-title {
  text-align: center;
  color: #f8eeb9;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: relative !important;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: absolute !important;
}
.cid-szbOGkMoWy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szbOGkMoWy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szbOGkMoWy .dropdown-item:hover,
.cid-szbOGkMoWy .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szbOGkMoWy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szbOGkMoWy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szbOGkMoWy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szbOGkMoWy .nav-link {
  position: relative;
}
.cid-szbOGkMoWy .container {
  display: flex;
  margin: auto;
}
.cid-szbOGkMoWy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown-menu,
.cid-szbOGkMoWy .navbar.opened {
  background: #5F6674 !important;
}
.cid-szbOGkMoWy .nav-item:focus,
.cid-szbOGkMoWy .nav-link:focus {
  outline: none;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szbOGkMoWy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szbOGkMoWy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szbOGkMoWy .navbar.opened {
  transition: all 0.3s;
}
.cid-szbOGkMoWy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szbOGkMoWy .navbar .navbar-logo img {
  width: auto;
}
.cid-szbOGkMoWy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar.collapsed {
  justify-content: center;
}
.cid-szbOGkMoWy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szbOGkMoWy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szbOGkMoWy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szbOGkMoWy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szbOGkMoWy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szbOGkMoWy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szbOGkMoWy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szbOGkMoWy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szbOGkMoWy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szbOGkMoWy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szbOGkMoWy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szbOGkMoWy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szbOGkMoWy .navbar.navbar-short {
  min-height: 60px;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szbOGkMoWy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szbOGkMoWy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szbOGkMoWy .dropdown-item.active,
.cid-szbOGkMoWy .dropdown-item:active {
  background-color: transparent;
}
.cid-szbOGkMoWy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szbOGkMoWy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szbOGkMoWy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szbOGkMoWy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szbOGkMoWy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szbOGkMoWy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szbOGkMoWy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szbOGkMoWy .navbar {
    height: 70px;
  }
  .cid-szbOGkMoWy .navbar.opened {
    height: auto;
  }
  .cid-szbOGkMoWy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szn3DtVZ78 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szn3DtVZ78 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szn3DtVZ78 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szn3DtVZ78 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBfpzPQxTy {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sBfpzPQxTy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfpzPQxTy .row {
  flex-direction: row-reverse;
}
.cid-sBfpzPQxTy img {
  width: 100%;
}
.cid-sBfqRi3HzY {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sBfqRi3HzY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfqRi3HzY .row {
  flex-direction: row-reverse;
}
.cid-sBfqRi3HzY img {
  width: 100%;
}
.cid-szxF4VCgM2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szxF4VCgM2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szxF4VCgM2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szxF4VCgM2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sAIcF4jPug {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sAIcF4jPug .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAIcF4jPug img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sAIcF4jPug .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBg6Xf4JBO {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #faf3d9;
}
@media (max-width: 991px) {
  .cid-sBg6Xf4JBO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBg6Xf4JBO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBg6Xf4JBO .text-wrapper {
    padding: 2rem;
  }
}
.cid-szxEfBkgtR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szxEfBkgtR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szxEfBkgtR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szxEfBkgtR .text-wrapper {
    padding: 2rem;
  }
}
.cid-szxEfBkgtR .mbr-section-title {
  color: #6c5e47;
}
.cid-szxMsiFmkq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-1900x1292.jpg");
}
.cid-szxMsiFmkq .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bf7e50;
  margin-left: 1rem;
}
.cid-szxMsiFmkq .panel-group {
  border: none;
}
.cid-szxMsiFmkq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-szxMsiFmkq .panel-body,
.cid-szxMsiFmkq .card-header {
  padding: 1rem 0;
}
.cid-szxMsiFmkq .panel-title-edit {
  color: #000000;
}
.cid-szxMsiFmkq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-szxMsiFmkq H3 {
  color: #584747;
}
.cid-szxMsiFmkq .panel-text {
  color: #DABEA6;
}
.cid-szxNijBcI9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/bg2-1900x1292.jpg");
}
.cid-szxNijBcI9 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bf7e50;
  margin-left: 1rem;
}
.cid-szxNijBcI9 .panel-group {
  border: none;
}
.cid-szxNijBcI9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-szxNijBcI9 .panel-body,
.cid-szxNijBcI9 .card-header {
  padding: 1rem 0;
}
.cid-szxNijBcI9 .panel-title-edit {
  color: #000000;
}
.cid-szxNijBcI9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sAYhoFGPHN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sAYhoFGPHN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAYhoFGPHN .row {
  flex-direction: row-reverse;
}
.cid-sAYhoFGPHN img {
  width: 100%;
}
.cid-sBfnI3ONRr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sBfnI3ONRr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfnI3ONRr .row {
  flex-direction: row-reverse;
}
.cid-sBfnI3ONRr img {
  width: 100%;
}
.cid-sBflXxnoac {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sBflXxnoac .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBflXxnoac .row {
  flex-direction: row-reverse;
}
.cid-sBflXxnoac img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBflXxnoac .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBfw8aOx7I {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sBfw8aOx7I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfw8aOx7I img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBfw8aOx7I .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBfv2JZmmy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sBfv2JZmmy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfv2JZmmy .row {
  flex-direction: row-reverse;
}
.cid-sBfv2JZmmy img {
  width: 100%;
}
.cid-szy5swgA9g {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szy5swgA9g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szy5swgA9g .row {
  flex-direction: row-reverse;
}
.cid-szy5swgA9g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szy5swgA9g .text-wrapper {
    padding: 2rem;
  }
}
.cid-szy7xSBHEv {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szy7xSBHEv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szy7xSBHEv .row {
  flex-direction: row-reverse;
}
.cid-szy7xSBHEv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szy7xSBHEv .text-wrapper {
    padding: 2rem;
  }
}
.cid-szygHr9Cv6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-szygHr9Cv6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szygHr9Cv6 .row {
  flex-direction: row-reverse;
}
.cid-szygHr9Cv6 img {
  width: 100%;
}
.cid-sAO9QP6b8G {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f7d9a4;
}
.cid-sAO9QP6b8G .images-container.container-fluid {
  padding: 0;
}
.cid-sAO9QP6b8G .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sAO9QP6b8G .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sAO9QP6b8G .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sAO9QP6b8G .media-container-row .img-item .img-caption {
  background: #f7d9a4;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sAO9QP6b8G .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sAO9QP6b8G .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sAO9QP6b8G .img-item {
    width: 100% !important;
  }
  .cid-sAO9QP6b8G .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sBgfAZmQ0u {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
.cid-sBgfAZmQ0u .mbr-section-title {
  color: #6c5e47;
}
.cid-szydfYSHHF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-szydfYSHHF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szydfYSHHF .row {
  flex-direction: row-reverse;
}
.cid-szydfYSHHF img {
  width: 100%;
}
.cid-sAObYXD4js {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sAObYXD4js .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAObYXD4js .row {
  flex-direction: row-reverse;
}
.cid-sAObYXD4js img {
  width: 100%;
}
.cid-sAdMMNKrB1 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #e8c88e;
}
@media (max-width: 991px) {
  .cid-sAdMMNKrB1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAdMMNKrB1 .row {
  flex-direction: row-reverse;
}
.cid-sAdMMNKrB1 img {
  width: 100%;
}
.cid-sz6gZuDCtS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sz6gZuDCtS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz6gZuDCtS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz6gZuDCtS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz6gZuDCtS .mbr-section-title {
  color: #a07227;
}
.cid-sz6gZuDCtS .mbr-text {
  color: #a07227;
}
.cid-szDFYr9GH8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szDFYr9GH8 .mbr-section-title {
  color: #e43f3f;
}
.cid-szDFYr9GH8 .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szDFYr9GH8 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUWMz0plj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUWMz0plj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUWMz0plj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUWMz0plj .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUWMz0plj .mbr-section-title {
  color: #a07227;
}
.cid-sBUWMz0plj .mbr-text {
  color: #a07227;
}
.cid-szrCEGsbU2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szrCEGsbU2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szrCEGsbU2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szrCEGsbU2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szrCEGsbU2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szrCEGsbU2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szrCEGsbU2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szrCEGsbU2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-szrCEGsbU2 foot-menu-item {
  text-align: right;
}
.cid-szzkFORZTo {
  display: flex;
  background-image: url("../../../assets/images/towerfrom-all-1422x593.jpg");
}
.cid-szzkFORZTo .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-szzkFORZTo .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-szzkFORZTo {
    align-items: flex-end;
  }
  .cid-szzkFORZTo .row {
    justify-content: flex-start;
  }
  .cid-szzkFORZTo .content-wrap {
    width: 38%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-szzkFORZTo .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-szzkFORZTo {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-szzkFORZTo .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-szzkFORZTo .content-wrap {
    width: 100%;
  }
}
.cid-szzkFORZTo .mbr-section-title {
  color: #f7d9a4;
  text-align: left;
}
.cid-sA9hBUGIF6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA9hBUGIF6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA9hBUGIF6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA9hBUGIF6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA9hBUGIF6 .mbr-section-title {
  color: #a07227;
}
.cid-sA9hBUGIF6 .mbr-text {
  color: #a07227;
}
.cid-sARUUB4ZZJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7e1ba;
}
.cid-sARUUB4ZZJ .mbr-section-subtitle {
  color: #353535;
}
.cid-sARUUB4ZZJ .mbr-text {
  color: #232323;
}
.cid-szDVxyDqRi {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f7e1ba;
}
.cid-szDVxyDqRi .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-szDVxyDqRi .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sA9hDytgPz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA9hDytgPz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA9hDytgPz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA9hDytgPz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA9hDytgPz .mbr-section-title {
  color: #a07227;
}
.cid-sA9hDytgPz .mbr-text {
  color: #a07227;
}
.cid-szDVu3qK3a {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f7e1ba;
}
.cid-szDVu3qK3a .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-szDVu3qK3a .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-szFOIdImqZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f7e1ba;
}
.cid-szFOIdImqZ .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-szFOIdImqZ .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sA9lJ6vVUM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA9lJ6vVUM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA9lJ6vVUM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA9lJ6vVUM .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA9lJ6vVUM .mbr-section-title {
  color: #a07227;
}
.cid-sA9lJ6vVUM .mbr-text {
  color: #a07227;
}
.cid-szFOLdL93q {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f7e1ba;
}
.cid-szFOLdL93q .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-szFOLdL93q .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-szESReYfo0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #edcc90;
}
.cid-szESReYfo0 img,
.cid-szESReYfo0 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-szESReYfo0 .item:focus,
.cid-szESReYfo0 span:focus {
  outline: none;
}
.cid-szESReYfo0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-szESReYfo0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f7e1ba;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-szESReYfo0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-szESReYfo0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-szESReYfo0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-szESReYfo0 .mbr-section-title {
  color: #584747;
}
.cid-szESReYfo0 .mbr-text,
.cid-szESReYfo0 .mbr-section-btn {
  text-align: center;
}
.cid-szESReYfo0 .item-title {
  text-align: center;
}
.cid-szESReYfo0 .item-subtitle {
  text-align: left;
}
.cid-sAoix7YP5g {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #edcc90;
}
.cid-sAoix7YP5g .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sAoix7YP5g .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sAoix7YP5g .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #584747;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sA9lMBpXXx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA9lMBpXXx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA9lMBpXXx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA9lMBpXXx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA9lMBpXXx .mbr-section-title {
  color: #a07227;
}
.cid-sA9lMBpXXx .mbr-text {
  color: #a07227;
}
.cid-szFUceragb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f7d9a4;
}
.cid-szFUceragb .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-szFUceragb .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-szFUceragb .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #584747;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-szJK3ORwyz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7d9a4;
}
.cid-szJK3ORwyz .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-szJK3ORwyz .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-szJK3ORwyz .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #584747;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-szJK2udf08 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szJK2udf08 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-szJK2udf08 .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-szJK2udf08 .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #584747;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-szzkFSROad {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-szzkFSROad .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szzkFSROad .row {
  flex-direction: row-reverse;
}
.cid-szzkFSROad img {
  width: 100%;
}
.cid-szzkFWU6vT .navbar-dropdown {
  position: relative !important;
}
.cid-szzkFWU6vT .navbar-dropdown {
  position: absolute !important;
}
.cid-szzkFWU6vT .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szzkFWU6vT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szzkFWU6vT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szzkFWU6vT .dropdown-item:hover,
.cid-szzkFWU6vT .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szzkFWU6vT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szzkFWU6vT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szzkFWU6vT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szzkFWU6vT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szzkFWU6vT .nav-link {
  position: relative;
}
.cid-szzkFWU6vT .container {
  display: flex;
  margin: auto;
}
.cid-szzkFWU6vT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szzkFWU6vT .dropdown-menu,
.cid-szzkFWU6vT .navbar.opened {
  background: #5F6674 !important;
}
.cid-szzkFWU6vT .nav-item:focus,
.cid-szzkFWU6vT .nav-link:focus {
  outline: none;
}
.cid-szzkFWU6vT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szzkFWU6vT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szzkFWU6vT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szzkFWU6vT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szzkFWU6vT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szzkFWU6vT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szzkFWU6vT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szzkFWU6vT .navbar.opened {
  transition: all 0.3s;
}
.cid-szzkFWU6vT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szzkFWU6vT .navbar .navbar-logo img {
  width: auto;
}
.cid-szzkFWU6vT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szzkFWU6vT .navbar.collapsed {
  justify-content: center;
}
.cid-szzkFWU6vT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szzkFWU6vT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szzkFWU6vT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szzkFWU6vT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szzkFWU6vT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szzkFWU6vT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szzkFWU6vT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szzkFWU6vT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szzkFWU6vT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szzkFWU6vT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szzkFWU6vT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szzkFWU6vT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szzkFWU6vT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szzkFWU6vT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szzkFWU6vT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szzkFWU6vT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szzkFWU6vT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szzkFWU6vT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szzkFWU6vT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szzkFWU6vT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szzkFWU6vT .navbar.navbar-short {
  min-height: 60px;
}
.cid-szzkFWU6vT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szzkFWU6vT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szzkFWU6vT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szzkFWU6vT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szzkFWU6vT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szzkFWU6vT .dropdown-item.active,
.cid-szzkFWU6vT .dropdown-item:active {
  background-color: transparent;
}
.cid-szzkFWU6vT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szzkFWU6vT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szzkFWU6vT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szzkFWU6vT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szzkFWU6vT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szzkFWU6vT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szzkFWU6vT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szzkFWU6vT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szzkFWU6vT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szzkFWU6vT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szzkFWU6vT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szzkFWU6vT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szzkFWU6vT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szzkFWU6vT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szzkFWU6vT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szzkFWU6vT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szzkFWU6vT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szzkFWU6vT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szzkFWU6vT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szzkFWU6vT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szzkFWU6vT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szzkFWU6vT .navbar {
    height: 70px;
  }
  .cid-szzkFWU6vT .navbar.opened {
    height: auto;
  }
  .cid-szzkFWU6vT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAuhGZWxea {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sAuhGZWxea .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAuhGZWxea .row {
  flex-direction: row-reverse;
}
.cid-sAuhGZWxea img {
  width: 100%;
}
.cid-szzkG0216j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-szzkG0216j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szzkG0216j img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szzkG0216j .text-wrapper {
    padding: 2rem;
  }
}
.cid-szzkG0216j .mbr-section-title {
  color: #a07227;
}
.cid-szzkG0216j .mbr-text {
  color: #a07227;
}
.cid-szJNn5YDrC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szJNn5YDrC .mbr-section-title {
  color: #e43f3f;
}
.cid-szJNn5YDrC .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szJNn5YDrC .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUX6bv1bT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUX6bv1bT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUX6bv1bT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUX6bv1bT .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUX6bv1bT .mbr-section-title {
  color: #a07227;
}
.cid-sBUX6bv1bT .mbr-text {
  color: #a07227;
}
.cid-szzkG4VNPt {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szzkG4VNPt .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szzkG4VNPt .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szzkG4VNPt .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szzkG4VNPt .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szzkG4VNPt .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szzkG4VNPt .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szzkG4VNPt .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szzkG4VNPt .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szzkG4VNPt .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szzkG4VNPt .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szzkG4VNPt .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szzkG4VNPt .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szzkG4VNPt .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szzkG4VNPt .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szzkG4VNPt .media-container-row .mbr-text {
  color: #353535;
}
.cid-szzkG4VNPt foot-menu-item {
  text-align: right;
}
.cid-szzkyitQ30 {
  display: flex;
  background-image: url("../../../assets/images/ent-balc-xxx-2000x1103.jpg");
}
.cid-szzkyitQ30 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-szzkyitQ30 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-szzkyitQ30 {
    align-items: flex-start;
  }
  .cid-szzkyitQ30 .row {
    justify-content: flex-start;
  }
  .cid-szzkyitQ30 .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-szzkyitQ30 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-szzkyitQ30 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-szzkyitQ30 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-szzkyitQ30 .content-wrap {
    width: 100%;
  }
}
.cid-szzkyitQ30 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sBIUr7cwQB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBIUr7cwQB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBIUr7cwQB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBIUr7cwQB .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBIUr7cwQB .mbr-section-title {
  color: #a07227;
}
.cid-sBIUr7cwQB .mbr-text {
  color: #a07227;
}
.cid-sBJbd3tXNd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fdf4cd;
}
.cid-sBJbd3tXNd .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sBJbd3tXNd .img-item {
  position: relative;
}
.cid-sBJbd3tXNd .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-sBJbd3tXNd .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-sBJbd3tXNd .img-item .img-description p {
  margin-bottom: 0;
}
.cid-sBPYbkVZ2S {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fdf4cd;
}
.cid-sBPYbkVZ2S .line {
  background-color: #e1d1b2;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sBIWPK0G65 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (min-width: 991px) {
  .cid-sBIWPK0G65 .container-fluid {
    padding-left: 0;
  }
}
.cid-sBIWPK0G65 .mbr-text,
.cid-sBIWPK0G65 .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-sBIWPK0G65 .mbr-text,
  .cid-sBIWPK0G65 .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sBIWPK0G65 .mbr-text,
  .cid-sBIWPK0G65 .mbr-section-title {
    text-align: center;
  }
}
.cid-sBIWPK0G65 a.btn {
  height: 100%;
  margin: 0;
}
.cid-sBIWPK0G65 .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sBIWPK0G65 .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sBIWPK0G65 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sBIWPK0G65 .justify-content-center {
  align-items: center;
}
.cid-sBIWPK0G65 .mbr-section-title {
  color: #6c5e47;
}
.cid-sAHO28VSte {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
.cid-sBJ1j1hBd5 {
  display: flex;
  background-image: url("../../../assets/images/jc-garden-1337x575.jpg");
}
.cid-sBJ1j1hBd5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0;
}
.cid-sBJ1j1hBd5 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sBJ1j1hBd5 {
    align-items: flex-end;
  }
  .cid-sBJ1j1hBd5 .row {
    justify-content: flex-start;
  }
  .cid-sBJ1j1hBd5 .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sBJ1j1hBd5 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sBJ1j1hBd5 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sBJ1j1hBd5 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sBJ1j1hBd5 .content-wrap {
    width: 100%;
  }
}
.cid-szzkyowHiO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-szzkyowHiO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szzkyowHiO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szzkyowHiO .text-wrapper {
    padding: 2rem;
  }
}
.cid-szzkyowHiO .mbr-section-title {
  color: #a07227;
}
.cid-szzkyowHiO .mbr-text {
  color: #a07227;
}
.cid-szzkym6fFm .navbar-dropdown {
  position: relative !important;
}
.cid-szzkym6fFm .navbar-dropdown {
  position: absolute !important;
}
.cid-szzkym6fFm .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szzkym6fFm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szzkym6fFm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szzkym6fFm .dropdown-item:hover,
.cid-szzkym6fFm .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szzkym6fFm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szzkym6fFm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szzkym6fFm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szzkym6fFm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szzkym6fFm .nav-link {
  position: relative;
}
.cid-szzkym6fFm .container {
  display: flex;
  margin: auto;
}
.cid-szzkym6fFm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szzkym6fFm .dropdown-menu,
.cid-szzkym6fFm .navbar.opened {
  background: #5F6674 !important;
}
.cid-szzkym6fFm .nav-item:focus,
.cid-szzkym6fFm .nav-link:focus {
  outline: none;
}
.cid-szzkym6fFm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szzkym6fFm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szzkym6fFm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szzkym6fFm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szzkym6fFm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szzkym6fFm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szzkym6fFm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szzkym6fFm .navbar.opened {
  transition: all 0.3s;
}
.cid-szzkym6fFm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szzkym6fFm .navbar .navbar-logo img {
  width: auto;
}
.cid-szzkym6fFm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szzkym6fFm .navbar.collapsed {
  justify-content: center;
}
.cid-szzkym6fFm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szzkym6fFm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szzkym6fFm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szzkym6fFm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szzkym6fFm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szzkym6fFm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szzkym6fFm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szzkym6fFm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szzkym6fFm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szzkym6fFm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szzkym6fFm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szzkym6fFm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szzkym6fFm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szzkym6fFm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szzkym6fFm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szzkym6fFm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szzkym6fFm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szzkym6fFm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szzkym6fFm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szzkym6fFm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szzkym6fFm .navbar.navbar-short {
  min-height: 60px;
}
.cid-szzkym6fFm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szzkym6fFm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szzkym6fFm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szzkym6fFm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szzkym6fFm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szzkym6fFm .dropdown-item.active,
.cid-szzkym6fFm .dropdown-item:active {
  background-color: transparent;
}
.cid-szzkym6fFm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szzkym6fFm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szzkym6fFm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szzkym6fFm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szzkym6fFm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szzkym6fFm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szzkym6fFm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szzkym6fFm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szzkym6fFm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szzkym6fFm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szzkym6fFm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szzkym6fFm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szzkym6fFm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szzkym6fFm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szzkym6fFm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szzkym6fFm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szzkym6fFm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szzkym6fFm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szzkym6fFm .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szzkym6fFm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szzkym6fFm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szzkym6fFm .navbar {
    height: 70px;
  }
  .cid-szzkym6fFm .navbar.opened {
    height: auto;
  }
  .cid-szzkym6fFm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szJUsmy5de {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-szJUsmy5de .mbr-section-title {
  color: #e43f3f;
}
.cid-szJUsmy5de .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-szJUsmy5de .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUMDWoSi6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUMDWoSi6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUMDWoSi6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUMDWoSi6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUMDWoSi6 .mbr-section-title {
  color: #a07227;
}
.cid-sBUMDWoSi6 .mbr-text {
  color: #a07227;
}
.cid-szzkysqds8 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szzkysqds8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szzkysqds8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szzkysqds8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szzkysqds8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szzkysqds8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szzkysqds8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szzkysqds8 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szzkysqds8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szzkysqds8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szzkysqds8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szzkysqds8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szzkysqds8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szzkysqds8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szzkysqds8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szzkysqds8 .media-container-row .mbr-text {
  color: #353535;
}
.cid-szzkysqds8 foot-menu-item {
  text-align: right;
}
.cid-sA7COWXDwy {
  display: flex;
  background-image: url("../../../assets/images/xxx-bed3chambers-1700x979.jpg");
}
.cid-sA7COWXDwy .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sA7COWXDwy .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sA7COWXDwy {
    align-items: flex-end;
  }
  .cid-sA7COWXDwy .row {
    justify-content: flex-start;
  }
  .cid-sA7COWXDwy .content-wrap {
    width: 38%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sA7COWXDwy .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sA7COWXDwy {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sA7COWXDwy .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sA7COWXDwy .content-wrap {
    width: 100%;
  }
}
.cid-sA7COWXDwy .mbr-section-title {
  color: #fde7cd;
}
.cid-sA7CP0jFu8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA7CP0jFu8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7CP0jFu8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA7CP0jFu8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA7CP0jFu8 .mbr-section-title {
  color: #a07227;
}
.cid-sA7CP0jFu8 .mbr-text {
  color: #a07227;
}
.cid-sA7CP3OVrB .navbar-dropdown {
  position: relative !important;
}
.cid-sA7CP3OVrB .navbar-dropdown {
  position: absolute !important;
}
.cid-sA7CP3OVrB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sA7CP3OVrB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sA7CP3OVrB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sA7CP3OVrB .dropdown-item:hover,
.cid-sA7CP3OVrB .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-sA7CP3OVrB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sA7CP3OVrB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sA7CP3OVrB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sA7CP3OVrB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sA7CP3OVrB .nav-link {
  position: relative;
}
.cid-sA7CP3OVrB .container {
  display: flex;
  margin: auto;
}
.cid-sA7CP3OVrB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sA7CP3OVrB .dropdown-menu,
.cid-sA7CP3OVrB .navbar.opened {
  background: #5F6674 !important;
}
.cid-sA7CP3OVrB .nav-item:focus,
.cid-sA7CP3OVrB .nav-link:focus {
  outline: none;
}
.cid-sA7CP3OVrB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sA7CP3OVrB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sA7CP3OVrB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sA7CP3OVrB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sA7CP3OVrB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sA7CP3OVrB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sA7CP3OVrB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-sA7CP3OVrB .navbar.opened {
  transition: all 0.3s;
}
.cid-sA7CP3OVrB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sA7CP3OVrB .navbar .navbar-logo img {
  width: auto;
}
.cid-sA7CP3OVrB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sA7CP3OVrB .navbar.collapsed {
  justify-content: center;
}
.cid-sA7CP3OVrB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sA7CP3OVrB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sA7CP3OVrB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-sA7CP3OVrB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sA7CP3OVrB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sA7CP3OVrB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sA7CP3OVrB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sA7CP3OVrB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sA7CP3OVrB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sA7CP3OVrB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sA7CP3OVrB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sA7CP3OVrB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sA7CP3OVrB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sA7CP3OVrB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sA7CP3OVrB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sA7CP3OVrB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sA7CP3OVrB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sA7CP3OVrB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sA7CP3OVrB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sA7CP3OVrB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sA7CP3OVrB .navbar.navbar-short {
  min-height: 60px;
}
.cid-sA7CP3OVrB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sA7CP3OVrB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sA7CP3OVrB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sA7CP3OVrB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sA7CP3OVrB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sA7CP3OVrB .dropdown-item.active,
.cid-sA7CP3OVrB .dropdown-item:active {
  background-color: transparent;
}
.cid-sA7CP3OVrB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sA7CP3OVrB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sA7CP3OVrB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sA7CP3OVrB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-sA7CP3OVrB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sA7CP3OVrB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sA7CP3OVrB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sA7CP3OVrB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sA7CP3OVrB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sA7CP3OVrB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-sA7CP3OVrB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sA7CP3OVrB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sA7CP3OVrB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sA7CP3OVrB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sA7CP3OVrB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sA7CP3OVrB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sA7CP3OVrB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sA7CP3OVrB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sA7CP3OVrB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sA7CP3OVrB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sA7CP3OVrB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sA7CP3OVrB .navbar {
    height: 70px;
  }
  .cid-sA7CP3OVrB .navbar.opened {
    height: auto;
  }
  .cid-sA7CP3OVrB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sA7CP6B1DN {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
.cid-sBfWsj6vx8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBfWsj6vx8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfWsj6vx8 .row {
  flex-direction: row-reverse;
}
.cid-sBfWsj6vx8 img {
  width: 100%;
}
.cid-sBfWsj6vx8 .mbr-description {
  color: #6c614f;
}
.cid-sA7CP8lbhH {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA7CP8lbhH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7CP8lbhH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA7CP8lbhH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBfUofq5jL {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBfUofq5jL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfUofq5jL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBfUofq5jL .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA7EdJnVnK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA7EdJnVnK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7EdJnVnK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA7EdJnVnK .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA7CPa6Tjz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA7CPa6Tjz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7CPa6Tjz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA7CPa6Tjz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBKyYBjQq8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBKyYBjQq8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBKyYBjQq8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBKyYBjQq8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBKyYBjQq8 .mbr-text {
  text-align: left;
}
.cid-sAcSIhnrdM {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fdf4cd;
}
.cid-sAcSIhnrdM .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sAcSIhnrdM .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sAcSIhnrdM .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sA7CPbYHmr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA7CPbYHmr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7CPbYHmr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA7CPbYHmr .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA7CPdObSt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA7CPdObSt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7CPdObSt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA7CPdObSt .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA7HyfUogn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sA7HyfUogn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7HyfUogn .row {
  flex-direction: row-reverse;
}
.cid-sA7HyfUogn img {
  width: 100%;
}
.cid-sBPc7rpG9W {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sBPc7rpG9W .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBPc7rpG9W .row {
  flex-direction: row-reverse;
}
.cid-sBPc7rpG9W img {
  width: 100%;
}
.cid-sA7HtSrxDB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f7e1ba;
}
.cid-sA7HtSrxDB .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sA7HtSrxDB .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sA7HtSrxDB .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sBKjiJjDwE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sBKjiJjDwE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBKjiJjDwE .row {
  flex-direction: row-reverse;
}
.cid-sBKjiJjDwE img {
  width: 100%;
}
.cid-sBKaOKUmap {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sBKaOKUmap .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBKaOKUmap .row {
  flex-direction: row-reverse;
}
.cid-sBKaOKUmap img {
  width: 100%;
}
.cid-sBPbqVxD6f {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sBPbqVxD6f .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBPbqVxD6f .row {
  flex-direction: row-reverse;
}
.cid-sBPbqVxD6f img {
  width: 100%;
}
.cid-sA7NUbwfMd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sA7NUbwfMd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA7NUbwfMd .row {
  flex-direction: row-reverse;
}
.cid-sA7NUbwfMd img {
  width: 100%;
}
.cid-sA8uuFvZym {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sA8uuFvZym .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA8uuFvZym .row {
  flex-direction: row-reverse;
}
.cid-sA8uuFvZym img {
  width: 100%;
}
.cid-sBf2hlyPbV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
.cid-sBf2hlyPbV .mbr-section-subtitle {
  color: #706149;
}
.cid-sBeDn3cN92 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/xxxxhot-h.p-pragpur-jc-bedroom-4-1948x1185.jpg");
}
.cid-sBeDn3cN92 .mbr-section-title {
  color: #a08c68;
}
.cid-sBeLM0brXU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
.cid-sBeLM0brXU .item {
  padding-bottom: 2rem;
}
.cid-sBeLM0brXU .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-sBeLM0brXU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sBeLM0brXU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sBeLM0brXU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sBeLM0brXU .carousel-control,
.cid-sBeLM0brXU .close {
  background: #1b1b1b;
}
.cid-sBeLM0brXU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sBeLM0brXU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sBeLM0brXU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sBeLM0brXU .carousel-control-next span {
  margin-left: 5px;
}
.cid-sBeLM0brXU .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sBeLM0brXU .close::before {
  content: '\e91a';
}
.cid-sBeLM0brXU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sBeLM0brXU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sBeLM0brXU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBeLM0brXU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sBeLM0brXU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBeLM0brXU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sBeLM0brXU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sBeLM0brXU .carousel-indicators li.active,
.cid-sBeLM0brXU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sBeLM0brXU .carousel-indicators li::after,
.cid-sBeLM0brXU .carousel-indicators li::before {
  content: none;
}
.cid-sBeLM0brXU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sBeLM0brXU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sBeLM0brXU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBeLM0brXU .carousel-indicators {
    display: none;
  }
}
.cid-sBeLM0brXU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sBeLM0brXU .carousel-inner > .active {
  display: block;
}
.cid-sBeLM0brXU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBeLM0brXU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBeLM0brXU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sBeLM0brXU .carousel-control,
  .cid-sBeLM0brXU .carousel-indicators,
  .cid-sBeLM0brXU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sBeLM0brXU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sBeLM0brXU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBeLM0brXU .carousel-indicators .active,
.cid-sBeLM0brXU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sBeLM0brXU .carousel-indicators .active {
  background: #fff;
}
.cid-sBeLM0brXU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sBeLM0brXU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sBeLM0brXU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sBeLM0brXU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sBeLM0brXU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sBeLM0brXU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sBeLM0brXU .carousel {
  width: 100%;
}
.cid-sBeLM0brXU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sBeLM0brXU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sBeLM0brXU .modal.fade .modal-dialog,
.cid-sBeLM0brXU .modal.in .modal-dialog {
  transform: none;
}
.cid-sBeLM0brXU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sBeLM0brXU H6 {
  text-align: center;
}
.cid-sBeLM0brXU H3 {
  color: #453e33;
}
.cid-sBK8o8cYHX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
.cid-sBK8o8cYHX .item {
  padding-bottom: 2rem;
}
.cid-sBK8o8cYHX .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-sBK8o8cYHX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sBK8o8cYHX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sBK8o8cYHX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sBK8o8cYHX .carousel-control,
.cid-sBK8o8cYHX .close {
  background: #1b1b1b;
}
.cid-sBK8o8cYHX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sBK8o8cYHX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sBK8o8cYHX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sBK8o8cYHX .carousel-control-next span {
  margin-left: 5px;
}
.cid-sBK8o8cYHX .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sBK8o8cYHX .close::before {
  content: '\e91a';
}
.cid-sBK8o8cYHX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sBK8o8cYHX .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sBK8o8cYHX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBK8o8cYHX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sBK8o8cYHX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBK8o8cYHX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sBK8o8cYHX .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sBK8o8cYHX .carousel-indicators li.active,
.cid-sBK8o8cYHX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sBK8o8cYHX .carousel-indicators li::after,
.cid-sBK8o8cYHX .carousel-indicators li::before {
  content: none;
}
.cid-sBK8o8cYHX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sBK8o8cYHX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sBK8o8cYHX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBK8o8cYHX .carousel-indicators {
    display: none;
  }
}
.cid-sBK8o8cYHX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sBK8o8cYHX .carousel-inner > .active {
  display: block;
}
.cid-sBK8o8cYHX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBK8o8cYHX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBK8o8cYHX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sBK8o8cYHX .carousel-control,
  .cid-sBK8o8cYHX .carousel-indicators,
  .cid-sBK8o8cYHX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sBK8o8cYHX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sBK8o8cYHX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBK8o8cYHX .carousel-indicators .active,
.cid-sBK8o8cYHX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sBK8o8cYHX .carousel-indicators .active {
  background: #fff;
}
.cid-sBK8o8cYHX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sBK8o8cYHX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sBK8o8cYHX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sBK8o8cYHX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sBK8o8cYHX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sBK8o8cYHX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sBK8o8cYHX .carousel {
  width: 100%;
}
.cid-sBK8o8cYHX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sBK8o8cYHX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sBK8o8cYHX .modal.fade .modal-dialog,
.cid-sBK8o8cYHX .modal.in .modal-dialog {
  transform: none;
}
.cid-sBK8o8cYHX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sBK8o8cYHX H6 {
  text-align: center;
}
.cid-sBK8o8cYHX H3 {
  color: #453e33;
}
.cid-sBbfCJSHgS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
.cid-sBbfCJSHgS .item {
  padding-bottom: 2rem;
}
.cid-sBbfCJSHgS .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-sBbfCJSHgS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sBbfCJSHgS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sBbfCJSHgS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sBbfCJSHgS .carousel-control,
.cid-sBbfCJSHgS .close {
  background: #1b1b1b;
}
.cid-sBbfCJSHgS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sBbfCJSHgS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sBbfCJSHgS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sBbfCJSHgS .carousel-control-next span {
  margin-left: 5px;
}
.cid-sBbfCJSHgS .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sBbfCJSHgS .close::before {
  content: '\e91a';
}
.cid-sBbfCJSHgS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sBbfCJSHgS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sBbfCJSHgS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBbfCJSHgS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sBbfCJSHgS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBbfCJSHgS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sBbfCJSHgS .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sBbfCJSHgS .carousel-indicators li.active,
.cid-sBbfCJSHgS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sBbfCJSHgS .carousel-indicators li::after,
.cid-sBbfCJSHgS .carousel-indicators li::before {
  content: none;
}
.cid-sBbfCJSHgS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sBbfCJSHgS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sBbfCJSHgS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBbfCJSHgS .carousel-indicators {
    display: none;
  }
}
.cid-sBbfCJSHgS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sBbfCJSHgS .carousel-inner > .active {
  display: block;
}
.cid-sBbfCJSHgS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBbfCJSHgS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBbfCJSHgS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sBbfCJSHgS .carousel-control,
  .cid-sBbfCJSHgS .carousel-indicators,
  .cid-sBbfCJSHgS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sBbfCJSHgS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sBbfCJSHgS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBbfCJSHgS .carousel-indicators .active,
.cid-sBbfCJSHgS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sBbfCJSHgS .carousel-indicators .active {
  background: #fff;
}
.cid-sBbfCJSHgS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sBbfCJSHgS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sBbfCJSHgS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sBbfCJSHgS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sBbfCJSHgS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sBbfCJSHgS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sBbfCJSHgS .carousel {
  width: 100%;
}
.cid-sBbfCJSHgS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sBbfCJSHgS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sBbfCJSHgS .modal.fade .modal-dialog,
.cid-sBbfCJSHgS .modal.in .modal-dialog {
  transform: none;
}
.cid-sBbfCJSHgS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sBbfCJSHgS H6 {
  text-align: center;
}
.cid-sBbfCJSHgS H3 {
  color: #453e33;
}
.cid-sBfKRvA18D {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sBfKRvA18D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfKRvA18D .row {
  flex-direction: row-reverse;
}
.cid-sBfKRvA18D img {
  width: 100%;
}
.cid-sA8vf6FQXH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7d9a4;
}
@media (max-width: 991px) {
  .cid-sA8vf6FQXH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA8vf6FQXH .row {
  flex-direction: row-reverse;
}
.cid-sA8vf6FQXH img {
  width: 100%;
}
.cid-sA8HxF4Ucj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f7d9a4;
}
.cid-sA8HxF4Ucj .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sA8HxF4Ucj .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sA8HxF4Ucj .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sBEjq7ck4K {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7e1ba;
}
.cid-sBEjq7ck4K img,
.cid-sBEjq7ck4K .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sBEjq7ck4K .item:focus,
.cid-sBEjq7ck4K span:focus {
  outline: none;
}
.cid-sBEjq7ck4K .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sBEjq7ck4K .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f7e1ba;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sBEjq7ck4K .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sBEjq7ck4K .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sBEjq7ck4K .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sBEjq7ck4K .mbr-section-title {
  color: #847050;
  text-align: left;
}
.cid-sBEjq7ck4K .mbr-text,
.cid-sBEjq7ck4K .mbr-section-btn {
  text-align: left;
}
.cid-sBEjq7ck4K .item-title {
  text-align: left;
}
.cid-sBEjq7ck4K .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sBEjq7ck4K .mbr-section-subtitle {
  text-align: left;
}
.cid-sBKdU8WRhp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f7e1ba;
}
.cid-sBKdU8WRhp img,
.cid-sBKdU8WRhp .item-img {
  width: 100%;
}
.cid-sBKdU8WRhp .item:focus,
.cid-sBKdU8WRhp span:focus {
  outline: none;
}
.cid-sBKdU8WRhp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sBKdU8WRhp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f7e1ba;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sBKdU8WRhp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sBKdU8WRhp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sBKdU8WRhp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sBKdU8WRhp .mbr-section-title {
  color: #6c5e47;
  text-align: left;
}
.cid-sBKdU8WRhp .mbr-text,
.cid-sBKdU8WRhp .mbr-section-btn {
  text-align: left;
}
.cid-sBKdU8WRhp .item-title {
  text-align: left;
}
.cid-sBKdU8WRhp .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sBKdU8WRhp .mbr-section-subtitle {
  text-align: left;
}
.cid-sBfWwmUiSA {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sBfWwmUiSA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfWwmUiSA .row {
  flex-direction: row-reverse;
}
.cid-sBfWwmUiSA img {
  width: 100%;
}
.cid-sBfWwmUiSA .mbr-description {
  color: #6c614f;
}
.cid-sBK7lQoabb {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sBK7lQoabb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBK7lQoabb .row {
  flex-direction: row-reverse;
}
.cid-sBK7lQoabb img {
  width: 100%;
}
.cid-sAvUchTgzc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sAvUchTgzc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sAvUchTgzc .row {
  flex-direction: row-reverse;
}
.cid-sAvUchTgzc img {
  width: 100%;
}
.cid-sBa0Fj1EX2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sBa0Fj1EX2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBa0Fj1EX2 .row {
  flex-direction: row-reverse;
}
.cid-sBa0Fj1EX2 img {
  width: 100%;
}
.cid-sA8AtAfywe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
.cid-sA8AtAfywe .mbr-section-subtitle {
  color: #6c5e47;
}
.cid-sA8AtAfywe .mbr-text {
  color: #6c5e47;
}
.cid-sA8K60XAfu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA8K60XAfu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA8K60XAfu .row {
  flex-direction: row-reverse;
}
.cid-sA8K60XAfu img {
  width: 100%;
}
.cid-sA8BS3MfIx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA8BS3MfIx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA8BS3MfIx .row {
  flex-direction: row-reverse;
}
.cid-sA8BS3MfIx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA8BS3MfIx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA8BS3MfIx .mbr-section-title {
  color: #6c614f;
}
.cid-sA8BS3MfIx .mbr-text {
  color: #353535;
}
.cid-sB9Z5kp8xY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdf4cd;
}
.cid-sB9Z5kp8xY .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sB9Z5kp8xY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9Z5kp8xY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sB9Z5kp8xY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sB9Z1rvbYJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sB9Z1rvbYJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9Z1rvbYJ .row {
  flex-direction: row-reverse;
}
.cid-sB9Z1rvbYJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sB9Z1rvbYJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA8zUx0mb3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA8zUx0mb3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA8zUx0mb3 .row {
  flex-direction: row-reverse;
}
.cid-sA8zUx0mb3 img {
  width: 100%;
}
.cid-sBfhHp3Uop {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7e1ba;
}
@media (max-width: 991px) {
  .cid-sBfhHp3Uop .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBfhHp3Uop .row {
  flex-direction: row-reverse;
}
.cid-sBfhHp3Uop img {
  width: 100%;
}
.cid-sBfhHp3Uop .mbr-description {
  color: #6c614f;
}
.cid-sA8Dc0zrKt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sA8Dc0zrKt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sA8Dc0zrKt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sA8Dc0zrKt .text-wrapper {
    padding: 2rem;
  }
}
.cid-sA8Dc0zrKt .mbr-section-title {
  color: #a07227;
}
.cid-sA8Dc0zrKt .mbr-text {
  color: #a07227;
}
.cid-sA7CPfABNs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-sA7CPfABNs .mbr-section-title {
  color: #e43f3f;
}
.cid-sA7CPfABNs .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-sA7CPfABNs .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUVw8k9AU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUVw8k9AU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUVw8k9AU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUVw8k9AU .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUVw8k9AU .mbr-section-title {
  color: #a07227;
}
.cid-sBUVw8k9AU .mbr-text {
  color: #a07227;
}
.cid-sA7CPhsxYL {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-sA7CPhsxYL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sA7CPhsxYL .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sA7CPhsxYL .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sA7CPhsxYL .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sA7CPhsxYL .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sA7CPhsxYL .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sA7CPhsxYL .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sA7CPhsxYL .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sA7CPhsxYL .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sA7CPhsxYL .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sA7CPhsxYL .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sA7CPhsxYL .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sA7CPhsxYL .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sA7CPhsxYL .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sA7CPhsxYL .media-container-row .mbr-text {
  color: #353535;
}
.cid-sA7CPhsxYL foot-menu-item {
  text-align: right;
}
.cid-sAYF1kcqmx {
  display: flex;
  background-image: url("../../../assets/images/your-host-vijai-1733x956.jpg");
}
.cid-sAYF1kcqmx .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sAYF1kcqmx .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sAYF1kcqmx {
    align-items: flex-end;
  }
  .cid-sAYF1kcqmx .row {
    justify-content: flex-start;
  }
  .cid-sAYF1kcqmx .content-wrap {
    width: 60%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sAYF1kcqmx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sAYF1kcqmx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sAYF1kcqmx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sAYF1kcqmx .content-wrap {
    width: 100%;
  }
}
.cid-sAYF1kcqmx .mbr-section-title {
  text-align: right;
  color: #fff3ed;
}
.cid-sB3PKFNJAz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sB3PKFNJAz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB3PKFNJAz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sB3PKFNJAz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sB3PKFNJAz .mbr-section-title {
  color: #a07227;
}
.cid-sB3PKFNJAz .mbr-text {
  color: #a07227;
}
.cid-sB3PygQhTp {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fdf4cd;
}
.cid-sB3PFAkTUT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
.cid-sB3PFAkTUT img,
.cid-sB3PFAkTUT .item-img {
  width: 100%;
}
.cid-sB3PFAkTUT .item:focus,
.cid-sB3PFAkTUT span:focus {
  outline: none;
}
.cid-sB3PFAkTUT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sB3PFAkTUT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fdf4cd;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sB3PFAkTUT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sB3PFAkTUT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sB3PFAkTUT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sB3PFAkTUT .mbr-section-title {
  color: #a08c68;
}
.cid-sB3PFAkTUT .mbr-text,
.cid-sB3PFAkTUT .mbr-section-btn {
  text-align: left;
}
.cid-sB3PFAkTUT .item-title {
  text-align: left;
}
.cid-sB3PFAkTUT .item-subtitle {
  text-align: center;
}
.cid-sB3PFAkTUT .mbr-section-subtitle {
  color: #6c5e47;
}
.cid-sB9lrHnaxW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sB9lrHnaxW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9lrHnaxW .row {
  flex-direction: row-reverse;
}
.cid-sB9lrHnaxW img {
  width: 100%;
}
.cid-sB3RegtF4S {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #edcc90;
}
@media (max-width: 991px) {
  .cid-sB3RegtF4S .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB3RegtF4S .row {
  flex-direction: row-reverse;
}
.cid-sB3RegtF4S img {
  width: 100%;
}
.cid-sB9vbZWetr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sB9vbZWetr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sB9vbZWetr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sB9vbZWetr .text-wrapper {
    padding: 2rem;
  }
}
.cid-sB9vbZWetr .mbr-section-title {
  color: #a07227;
}
.cid-sB9vbZWetr .mbr-text {
  color: #a07227;
}
.cid-sB9vU9Gsq0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-sB9vU9Gsq0 .mbr-section-title {
  color: #e43f3f;
}
.cid-sB9vU9Gsq0 .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-sB9vU9Gsq0 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBUWZzJaMj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sBUWZzJaMj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sBUWZzJaMj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBUWZzJaMj .text-wrapper {
    padding: 2rem;
  }
}
.cid-sBUWZzJaMj .mbr-section-title {
  color: #a07227;
}
.cid-sBUWZzJaMj .mbr-text {
  color: #a07227;
}
.cid-sB9z2mmi34 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-sB9z2mmi34 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sB9z2mmi34 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sB9z2mmi34 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sB9z2mmi34 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sB9z2mmi34 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sB9z2mmi34 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sB9z2mmi34 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sB9z2mmi34 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sB9z2mmi34 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sB9z2mmi34 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sB9z2mmi34 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sB9z2mmi34 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sB9z2mmi34 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sB9z2mmi34 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sB9z2mmi34 .media-container-row .mbr-text {
  color: #353535;
}
.cid-sB9z2mmi34 foot-menu-item {
  text-align: right;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: relative !important;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: absolute !important;
}
.cid-szbOGkMoWy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szbOGkMoWy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szbOGkMoWy .dropdown-item:hover,
.cid-szbOGkMoWy .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szbOGkMoWy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szbOGkMoWy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szbOGkMoWy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szbOGkMoWy .nav-link {
  position: relative;
}
.cid-szbOGkMoWy .container {
  display: flex;
  margin: auto;
}
.cid-szbOGkMoWy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown-menu,
.cid-szbOGkMoWy .navbar.opened {
  background: #5F6674 !important;
}
.cid-szbOGkMoWy .nav-item:focus,
.cid-szbOGkMoWy .nav-link:focus {
  outline: none;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szbOGkMoWy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szbOGkMoWy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szbOGkMoWy .navbar.opened {
  transition: all 0.3s;
}
.cid-szbOGkMoWy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szbOGkMoWy .navbar .navbar-logo img {
  width: auto;
}
.cid-szbOGkMoWy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar.collapsed {
  justify-content: center;
}
.cid-szbOGkMoWy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szbOGkMoWy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szbOGkMoWy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szbOGkMoWy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szbOGkMoWy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szbOGkMoWy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szbOGkMoWy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szbOGkMoWy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szbOGkMoWy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szbOGkMoWy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szbOGkMoWy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szbOGkMoWy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szbOGkMoWy .navbar.navbar-short {
  min-height: 60px;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szbOGkMoWy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szbOGkMoWy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szbOGkMoWy .dropdown-item.active,
.cid-szbOGkMoWy .dropdown-item:active {
  background-color: transparent;
}
.cid-szbOGkMoWy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szbOGkMoWy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szbOGkMoWy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szbOGkMoWy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szbOGkMoWy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szbOGkMoWy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szbOGkMoWy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szbOGkMoWy .navbar {
    height: 70px;
  }
  .cid-szbOGkMoWy .navbar.opened {
    height: auto;
  }
  .cid-szbOGkMoWy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sC7qtpwZNg {
  background-image: url("../../../assets/images/gv-airial-for-thank-you-1920x954.jpg");
}
.cid-sC7qtpwZNg .mbr-section-title {
  color: #edcc90;
  text-align: left;
}
.cid-sC7qtpwZNg .mbr-text,
.cid-sC7qtpwZNg .mbr-section-btn {
  color: #edcc90;
}
.cid-sC7p8i5u9D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sC7p8i5u9D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sC7p8i5u9D img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sC7p8i5u9D .text-wrapper {
    padding: 2rem;
  }
}
.cid-sC7p8i5u9D .mbr-section-title {
  color: #a07227;
}
.cid-sC7p8i5u9D .mbr-text {
  color: #a07227;
}
.cid-sC7pbkUCoy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdf4cd;
}
.cid-sC7pbkUCoy .mbr-section-title {
  color: #e43f3f;
}
.cid-sC7pbkUCoy .mbr-section-subtitle {
  color: #4d4637;
  text-align: left;
}
.cid-sC7pbkUCoy .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sC7NeJ8MQu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fdf4cd;
}
@media (max-width: 991px) {
  .cid-sC7NeJ8MQu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sC7NeJ8MQu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sC7NeJ8MQu .text-wrapper {
    padding: 2rem;
  }
}
.cid-sC7NeJ8MQu .mbr-section-title {
  color: #a07227;
}
.cid-sC7NeJ8MQu .mbr-text {
  color: #a07227;
}
.cid-szrCEGsbU2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f7d9a4;
}
.cid-szrCEGsbU2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szrCEGsbU2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szrCEGsbU2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szrCEGsbU2 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szrCEGsbU2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szrCEGsbU2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szrCEGsbU2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szrCEGsbU2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szrCEGsbU2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szrCEGsbU2 .media-container-row .mbr-text {
  color: #353535;
}
.cid-szrCEGsbU2 foot-menu-item {
  text-align: right;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: relative !important;
}
.cid-szbOGkMoWy .navbar-dropdown {
  position: absolute !important;
}
.cid-szbOGkMoWy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szbOGkMoWy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szbOGkMoWy .dropdown-item:hover,
.cid-szbOGkMoWy .dropdown-item:focus {
  background: #bf7e50 !important;
  color: white !important;
}
.cid-szbOGkMoWy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szbOGkMoWy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szbOGkMoWy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szbOGkMoWy .nav-link {
  position: relative;
}
.cid-szbOGkMoWy .container {
  display: flex;
  margin: auto;
}
.cid-szbOGkMoWy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown-menu,
.cid-szbOGkMoWy .navbar.opened {
  background: #5F6674 !important;
}
.cid-szbOGkMoWy .nav-item:focus,
.cid-szbOGkMoWy .nav-link:focus {
  outline: none;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szbOGkMoWy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szbOGkMoWy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szbOGkMoWy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szbOGkMoWy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(73, 73, 73, 0.2);
}
.cid-szbOGkMoWy .navbar.opened {
  transition: all 0.3s;
}
.cid-szbOGkMoWy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szbOGkMoWy .navbar .navbar-logo img {
  width: auto;
}
.cid-szbOGkMoWy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar.collapsed {
  justify-content: center;
}
.cid-szbOGkMoWy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szbOGkMoWy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szbOGkMoWy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szbOGkMoWy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szbOGkMoWy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szbOGkMoWy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szbOGkMoWy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szbOGkMoWy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szbOGkMoWy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szbOGkMoWy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szbOGkMoWy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szbOGkMoWy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szbOGkMoWy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szbOGkMoWy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szbOGkMoWy .navbar.navbar-short {
  min-height: 60px;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szbOGkMoWy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szbOGkMoWy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szbOGkMoWy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szbOGkMoWy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szbOGkMoWy .dropdown-item.active,
.cid-szbOGkMoWy .dropdown-item:active {
  background-color: transparent;
}
.cid-szbOGkMoWy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szbOGkMoWy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #5F6674;
}
.cid-szbOGkMoWy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szbOGkMoWy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szbOGkMoWy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szbOGkMoWy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szbOGkMoWy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szbOGkMoWy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szbOGkMoWy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szbOGkMoWy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-szbOGkMoWy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szbOGkMoWy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szbOGkMoWy .navbar {
    height: 70px;
  }
  .cid-szbOGkMoWy .navbar.opened {
    height: auto;
  }
  .cid-szbOGkMoWy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
