body {
  font-family: EB Garamond;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 90rem) / (48 - 25)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 25))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 40rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #ba9b67 !important;
}
.bg-success {
  background-color: #ddc499 !important;
}
.bg-info {
  background-color: #383838 !important;
}
.bg-warning {
  background-color: #ffa6a6 !important;
}
.bg-danger {
  background-color: #b10e0e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ba9b67 !important;
  border-color: #ba9b67 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8b6f3f !important;
  border-color: #8b6f3f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8b6f3f !important;
  border-color: #8b6f3f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ece9e6 !important;
  border-color: #ece9e6 !important;
  color: #78695b !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c7beb5 !important;
  border-color: #c7beb5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #78695b !important;
  background-color: #c7beb5 !important;
  border-color: #c7beb5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #383838 !important;
  border-color: #383838 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-success,
.btn-success:active {
  background-color: #ddc499 !important;
  border-color: #ddc499 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c79e58 !important;
  border-color: #c79e58 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c79e58 !important;
  border-color: #c79e58 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff4f4f !important;
  border-color: #ff4f4f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff4f4f !important;
  border-color: #ff4f4f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b10e0e !important;
  border-color: #b10e0e !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #610808 !important;
  border-color: #610808 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #610808 !important;
  border-color: #610808 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.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: none;
}
.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: #8b6f3f;
  color: #ba9b67;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #8b6f3f !important;
  background-color: transparent!important;
  border-color: #8b6f3f !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ba9b67 !important;
  border-color: #ba9b67 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #c7beb5;
  color: #ece9e6;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c7beb5 !important;
  background-color: transparent!important;
  border-color: #c7beb5 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #78695b !important;
  background-color: #ece9e6 !important;
  border-color: #ece9e6 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0d0d0d;
  color: #383838;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0d0d0d !important;
  background-color: transparent!important;
  border-color: #0d0d0d !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #383838 !important;
  border-color: #383838 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #c79e58;
  color: #ddc499;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c79e58 !important;
  background-color: transparent!important;
  border-color: #c79e58 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ddc499 !important;
  border-color: #ddc499 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff4f4f;
  color: #ffa6a6;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff4f4f !important;
  background-color: transparent!important;
  border-color: #ff4f4f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #610808;
  color: #b10e0e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #610808 !important;
  background-color: transparent!important;
  border-color: #610808 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b10e0e !important;
  border-color: #b10e0e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  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: #000000 !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: #cfcfcf;
  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: #cfcfcf !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: #ba9b67 !important;
}
.text-secondary {
  color: #ece9e6 !important;
}
.text-success {
  color: #ddc499 !important;
}
.text-info {
  color: #383838 !important;
}
.text-warning {
  color: #ffa6a6 !important;
}
.text-danger {
  color: #b10e0e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #81663a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c0b6ac !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c4984d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #050505 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff4040 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #520707 !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;
  font-style: italic;
  border-bottom: 1px solid transparent;
}
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: #ba9b67;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #383838;
}
.alert-warning {
  background-color: #ffa6a6;
}
.alert-danger {
  background-color: #b10e0e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ba9b67;
  border-color: #ba9b67;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ba9b67;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e2d5bf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ababab;
}
.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: #f14e4e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #ba9b67 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ba9b67;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ba9b67;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ba9b67;
}
.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: #ba9b67;
  border-bottom-color: #ba9b67;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ba9b67 !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: #ece9e6 !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='%23ba9b67' %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-sOfMM7uz6R {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (min-width: 1400px) {
  .cid-sOfMM7uz6R .navbar-brand {
    margin-left: 6rem;
  }
}
.cid-sOfMM7uz6R nav.navbar {
  position: fixed;
}
@media (min-width: 992px) {
  .cid-sOfMM7uz6R .container,
  .cid-sOfMM7uz6R .container-fluid {
    flex-wrap: initial;
  }
  .cid-sOfMM7uz6R .nav-link:hover,
  .cid-sOfMM7uz6R .nav-link:focus {
    border-bottom: 1px solid #ffffff;
  }
}
.cid-sOfMM7uz6R .navbar-nav {
  margin: auto;
}
.cid-sOfMM7uz6R .dropdown-item {
  color: #ffffff !important;
}
.cid-sOfMM7uz6R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOfMM7uz6R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOfMM7uz6R .navbar-short,
.cid-sOfMM7uz6R .opened {
  background: #000000 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sOfMM7uz6R .navbar-short .nav-link,
.cid-sOfMM7uz6R .opened .nav-link,
.cid-sOfMM7uz6R .navbar-short .navbar-caption,
.cid-sOfMM7uz6R .opened .navbar-caption,
.cid-sOfMM7uz6R .navbar-short .mbr-iconfont,
.cid-sOfMM7uz6R .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sOfMM7uz6R .navbar-short .hamburger span,
.cid-sOfMM7uz6R .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sOfMM7uz6R .nav-link {
  font-family: "Josefin Sans";
  transition: all 0.3s;
  position: relative;
  border-bottom: 1px solid transparent;
}
.cid-sOfMM7uz6R .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-sOfMM7uz6R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-sOfMM7uz6R .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 991px) {
  .cid-sOfMM7uz6R .dropdown-menu {
    z-index: 9999;
    margin-top: 28px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-sOfMM7uz6R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOfMM7uz6R .container {
  display: flex;
  margin: auto;
}
.cid-sOfMM7uz6R .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOfMM7uz6R .dropdown-menu,
.cid-sOfMM7uz6R .navbar.opened {
  background: #000000 !important;
}
.cid-sOfMM7uz6R .nav-item:focus,
.cid-sOfMM7uz6R .nav-link:focus {
  outline: none;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOfMM7uz6R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOfMM7uz6R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOfMM7uz6R .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sOfMM7uz6R .navbar.opened {
  transition: all 0.3s;
}
.cid-sOfMM7uz6R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOfMM7uz6R .navbar .navbar-logo img {
  width: auto;
}
.cid-sOfMM7uz6R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOfMM7uz6R .navbar.collapsed {
  justify-content: center;
}
.cid-sOfMM7uz6R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOfMM7uz6R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sOfMM7uz6R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOfMM7uz6R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOfMM7uz6R .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-sOfMM7uz6R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOfMM7uz6R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOfMM7uz6R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOfMM7uz6R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOfMM7uz6R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOfMM7uz6R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOfMM7uz6R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOfMM7uz6R .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-sOfMM7uz6R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOfMM7uz6R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
  }
  .cid-sOfMM7uz6R .navbar .navbar-brand {
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOfMM7uz6R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOfMM7uz6R .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
}
.cid-sOfMM7uz6R .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOfMM7uz6R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOfMM7uz6R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOfMM7uz6R .navbar-brand {
  min-height: 110px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sOfMM7uz6R .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-family: "EB Garamond";
  font-weight: 400;
}
.cid-sOfMM7uz6R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOfMM7uz6R .dropdown-item.active,
.cid-sOfMM7uz6R .dropdown-item:active {
  background-color: transparent;
}
.cid-sOfMM7uz6R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOfMM7uz6R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOfMM7uz6R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOfMM7uz6R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sOfMM7uz6R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOfMM7uz6R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOfMM7uz6R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOfMM7uz6R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOfMM7uz6R button.navbar-toggler {
  order: 0;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOfMM7uz6R a.nav-link {
  display: flex;
  align-items: center;
}
.cid-sOfMM7uz6R .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-sOfMM7uz6R .navbar {
    height: 70px;
  }
  .cid-sOfMM7uz6R .navbar.opened {
    height: auto;
  }
  .cid-sOfMM7uz6R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNBNLCDcCk {
  padding-top: 0;
  padding-bottom: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sNBNLCDcCk .image-wrapper {
  position: relative;
  height: 100%;
}
.cid-sNBNLCDcCk .mbr-section-title {
  color: #ffffff;
  text-align: right;
  width: 90%;
}
.cid-sNBNLCDcCk .mbr-section-subtitle {
  margin: 0;
  color: #c0bcb7;
  text-align: left;
  width: 90%;
}
.cid-sNBNLCDcCk .mbr-section-btn {
  width: 90%;
}
.cid-sNBNLCDcCk img {
  object-fit: cover;
  height: 100%;
}
.cid-sNBNLCDcCk section {
  position: relative;
}
.cid-sNBNLCDcCk .wrap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 60px;
}
.cid-sNBNLCDcCk .row {
  flex-direction: row-reverse;
}
.cid-sNBNLCDcCk .mbr-section-title {
  width: 100%;
}
.cid-sNBNLCDcCk .mbr-section-subtitle,
.cid-sNBNLCDcCk .mbr-section-btn {
  text-align: right;
  width: 100%;
  padding-left: 180px;
}
.cid-sNBNLCDcCk .wrap {
  padding-left: 0;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .cid-sNBNLCDcCk .wrap {
    justify-content: center;
    padding: 1rem;
  }
  .cid-sNBNLCDcCk .mbr-section-subtitle,
  .cid-sNBNLCDcCk .mbr-section-btn,
  .cid-sNBNLCDcCk .mbr-section-title {
    width: 100%;
    padding: 0;
  }
}
.cid-sNBNLCDcCk .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.cid-sNBNLCDcCk .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  color: #c0bcb7;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBNLCDcCk .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sNBNLCDcCk .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBNLCDcCk .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBNLCDcCk .btn:hover .effectHover::before {
  border-top: 1px solid #ba9b67;
  border-left: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBNLCDcCk .btn:hover .effectHover::after {
  border-bottom: 1px solid #ba9b67;
  border-right: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBNLCDcCk .mbr-section-subtitle,
.cid-sNBNLCDcCk .mbr-section-btn {
  text-align: right;
}
.cid-sNBOvEq7sx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sNBOvEq7sx .carousel {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-sNBOvEq7sx .carousel {
    height: 940px;
  }
}
@media (max-width: 768px) {
  .cid-sNBOvEq7sx .carousel {
    height: 400px;
  }
}
.cid-sNBOvEq7sx .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sNBOvEq7sx .carousel .carousel-item,
.cid-sNBOvEq7sx .carousel .carousel-inner {
  height: 100%;
}
.cid-sNBOvEq7sx .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sNBOvEq7sx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sNBOvEq7sx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sNBOvEq7sx .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-sNBOvEq7sx .item-wrapper {
  position: relative;
  text-align: start;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sNBOvEq7sx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sNBOvEq7sx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sNBOvEq7sx .row {
  position: relative;
}
.cid-sNBOvEq7sx .container {
  margin-bottom: 3px;
}
.cid-sNBOvEq7sx .carousel-control {
  color: #ffffff;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-sNBOvEq7sx .carousel-control .mbri-left,
.cid-sNBOvEq7sx .carousel-control .mbri-right {
  display: none;
}
.cid-sNBOvEq7sx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNBOvEq7sx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sNBOvEq7sx .carousel-control {
    top: 70%;
  }
  .cid-sNBOvEq7sx .carousel-control.carousel-control-prev {
    margin-left: .5rem;
  }
  .cid-sNBOvEq7sx .carousel-control.carousel-control-next {
    margin-right: .5rem;
  }
}
.cid-sNBOvEq7sx .buttons-wrap {
  justify-content: start;
}
.cid-sNBOvEq7sx .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-sNBOvEq7sx .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-sNBOvEq7sx .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-sNBOvEq7sx .buttons-wrap .mbr-section-btn {
    margin-bottom: 10px;
  }
}
.cid-sNBOvEq7sx .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sNBOvEq7sx .wrap {
  z-index: 9999;
}
.cid-sNBOvEq7sx .btnHeader {
  font-family: 'Cormorant Garamond';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  cursor: pointer;
  left: 50%;
  top: 70%;
  border: 1px solid #9a948d;
  justify-content: center;
  transition: border 0.5s ease;
  transform: translateX(-50%);
}
.cid-sNBOvEq7sx .btnHeader::before,
.cid-sNBOvEq7sx .btnHeader::after {
  content: '';
  width: 102%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: -1%;
}
.cid-sNBOvEq7sx .btnHeader::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sNBOvEq7sx .btnHeader:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sNBOvEq7sx .btnHeader::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sNBOvEq7sx .btnHeader:hover::after {
  border-top: 1px solid #ffffff;
  border-left-color: #ffffff;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sNBOvEq7sx .img {
  position: relative;
}
.cid-sOfNgzG4VR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sOfNgzG4VR .wrapper {
    padding: 0 6rem;
  }
}
.cid-sOfNgzG4VR .item-img {
  height: 600px;
  position: relative;
}
.cid-sOfNgzG4VR .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sOfNgzG4VR .title-block {
  top: 50%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sOfNgzG4VR .item-img:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-sOfNgzG4VR .item-img:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.2;
}
.cid-sOfNgzG4VR .new {
  transform: rotate(-90deg);
  position: absolute;
  padding: 0.5rem 2rem;
  top: 27px;
  right: -10px;
  background-color: #000000;
  color: #ba9b67;
}
.cid-sOfNgzG4VR img,
.cid-sOfNgzG4VR .item-img {
  transition: all 0.7s;
  width: 100%;
}
.cid-sOfNgzG4VR .item:focus,
.cid-sOfNgzG4VR span:focus {
  outline: none;
}
.cid-sOfNgzG4VR .item {
  cursor: pointer;
  padding-bottom: 32px;
}
.cid-sOfNgzG4VR .item-wrapper {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sOfNgzG4VR .item-title {
  font-family: "Cormorant Garamond";
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}
.cid-sOfNgzG4VR .mbr-text {
  font-family: "Cormorant Garamond";
}
.cid-sOfNgzG4VR .item-content {
  text-align: center;
}
.cid-sOfNgzG4VR .item-title {
  margin-bottom: 10px;
}
@media (max-width: 690px) {
  .cid-sOfNgzG4VR .item {
    padding-bottom: 20px;
  }
}
.cid-sOfNgzG4VR .mbr-section-subtitle {
  color: #9a948d;
  font-family: "EB Garamond";
}
.cid-sOfNgzG4VR .price,
.cid-sOfNgzG4VR .text {
  font-family: "Josefin Sans";
}
.cid-sOfNgzG4VR .text,
.cid-sOfNgzG4VR .link {
  color: #ba9b67;
}
.cid-sOfNgzG4VR .price {
  color: #9a948d;
}
.cid-sNBQvmPAYp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sNBQvmPAYp .wrapper {
    padding: 0 6rem;
  }
}
.cid-sNBQvmPAYp .mbr-media {
  position: relative;
  max-height: 625px;
  overflow: hidden;
}
.cid-sNBQvmPAYp .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sNBQvmPAYp .icon-wrap {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  cursor: pointer;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border: 1px solid #c0bcb7;
  justify-content: center;
}
@media (max-width: 758px) {
  .cid-sNBQvmPAYp .icon-wrap {
    width: 150px;
    height: 150px;
  }
}
.cid-sNBQvmPAYp .icon-wrap::before,
.cid-sNBQvmPAYp .icon-wrap::after {
  content: '';
  width: 101%;
  height: 101%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: -1px;
}
.cid-sNBQvmPAYp .icon-wrap::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sNBQvmPAYp .icon-wrap:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sNBQvmPAYp .icon-wrap::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sNBQvmPAYp .icon-wrap:hover::after {
  border-top: 1px solid #ffffff;
  border-left-color: #ffffff;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sNBQvmPAYp .mbr-iconfont {
  font-size: 1rem;
  color: #fff;
  padding: 2rem;
  transition: all 0.3s;
}
.cid-sNBQvmPAYp .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sNBQvmPAYp .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sNBQvmPAYp .modalWindow .modalWindow-video {
  position: relative;
  height: calc(28.12148481vw);
  width: 50vw;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-sNBQvmPAYp .modalWindow .modalWindow-video {
    width: 100%;
    height: auto;
  }
}
.cid-sNBQvmPAYp a {
  text-decoration: none !important;
}
.cid-sNBQvmPAYp .close {
  position: fixed;
  opacity: 1;
  font-weight: 300;
  color: #fff;
  top: 15%;
  right: 23%;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sNBQvmPAYp .close:hover {
  opacity: 1;
  color: #fff;
}
@media (max-width: 1050px) {
  .cid-sNBQvmPAYp .close {
    top: 0;
    right: 0;
  }
}
.cid-sNBQvmPAYp .mbr-section-subtitle {
  color: #C0BCB7;
}
.cid-sNBQGKn0WX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-sNBQGKn0WX .text-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 1400px) {
  .cid-sNBQGKn0WX .wrapper {
    padding: 0 6rem;
  }
}
.cid-sNBQGKn0WX .mbr-text {
  color: #9a948d;
  font-family: "EB Garamond";
}
.cid-sNBQGKn0WX .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  color: #c0bcb7;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBQGKn0WX .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sNBQGKn0WX .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBQGKn0WX .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBQGKn0WX .btn:hover .effectHover::before {
  border-top: 1px solid #ba9b67;
  border-left: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBQGKn0WX .btn:hover .effectHover::after {
  border-bottom: 1px solid #ba9b67;
  border-right: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
@media (min-width: 992px) {
  .cid-sNBQGKn0WX .right {
    padding-right: 60px;
  }
}
.cid-sMzDgKPR0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sMzDgKPR0q .media-container-row .mbr-text {
  color: #9a948d;
}
.cid-sNBYxq9u3H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("https://mobirise.com/extensions/wellnessm5/assets/images/background13.jpeg");
}
.cid-sNBYxq9u3H .wrapper {
  height: 550px;
}
.cid-sOfOBmUibb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sOfOBmUibb .wrap {
  position: relative;
  background-color: #121212;
  padding: 85px 60px 85px 120px;
}
@media (max-width: 768px) {
  .cid-sOfOBmUibb .wrap {
    padding: 3rem 1rem;
  }
  .cid-sOfOBmUibb .wrap .mbr-iconfont {
    top: -5%;
  }
}
.cid-sOfOBmUibb .wrap p {
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  font-style: italic;
}
.cid-sOfOBmUibb .author {
  font-style: italic;
  color: #9A948D;
}
.cid-sOfOBmUibb .author h3 {
  font-family: 'Cormorant Garamond';
}
.cid-sOfOBmUibb .mbr-iconfont {
  left: 3%;
  top: 13%;
  position: absolute;
  font-size: 25px;
  border-radius: 50%;
  border: 1px solid #4c4c4c;
  padding: 2.5rem;
  color: #ffffff;
}
.cid-sNBTo4QunA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTo4QunA .mbr-section-title {
  font-family: 'Josefin Sans';
  color: #ba9b67;
}
.cid-sNBTo4QunA .mbr-text {
  font-family: 'EB Garamond';
  color: #c0bcb7;
}
.cid-sNBTp57me1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTp57me1 .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #C0BCB7;
  font-family: 'EB Garamond';
}
.cid-sNBTp57me1 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-sNBTp57me1 .title {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-sNBTp57me1 .title {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .cid-sNBTp57me1 .col-12 {
    flex-direction: row-reverse;
  }
  .cid-sNBTp57me1 .col-12,
  .cid-sNBTp57me1 .col-md-12 {
    padding: 0;
  }
}
.cid-sNBTp57me1 .si img {
  width: auto;
}
.cid-sNBTyOxgkD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTyOxgkD .row {
  align-items: stretch;
}
.cid-sNBTyOxgkD .row .img-item {
  cursor: pointer;
  position: relative;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBTyOxgkD .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sNBTyOxgkD .mbr-fonts-style {
  font-family: 'Cormorant Garamond';
}
@media (min-width: 992px) {
  .cid-sNBTyOxgkD .justify-content-end {
    padding-right: 97px;
  }
  .cid-sNBTyOxgkD .left {
    padding-left: 97px;
  }
  .cid-sNBTyOxgkD .width {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .cid-sNBTyOxgkD .width {
    width: 100%;
  }
}
.cid-sNBTyOxgkD .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 100%;
  height: 100%;
  top: -2%;
  left: 2%;
  border: 1px solid #41392e;
}
.cid-sNBTyOxgkD .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top right;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTyOxgkD .effectHover::after {
  content: "";
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom left;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTyOxgkD .img-item:hover .effectHover::before {
  border-top: 1px solid #ba9b67;
  border-right: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTyOxgkD .img-item:hover .effectHover::after {
  border-bottom: 1px solid #ba9b67;
  border-left: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTyOxgkD .descr {
  font-size: 22px;
}
.cid-sNBTA1dFug {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sNBTA1dFug .wrapper {
    padding: 0 6rem;
  }
}
.cid-sNBTA1dFug .mbr-media {
  position: relative;
  max-height: 625px;
  overflow: hidden;
}
.cid-sNBTA1dFug .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sNBTA1dFug .icon-wrap {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  cursor: pointer;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border: 1px solid #c0bcb7;
  justify-content: center;
}
@media (max-width: 758px) {
  .cid-sNBTA1dFug .icon-wrap {
    width: 150px;
    height: 150px;
  }
}
.cid-sNBTA1dFug .icon-wrap::before,
.cid-sNBTA1dFug .icon-wrap::after {
  content: '';
  width: 101%;
  height: 101%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: -1px;
}
.cid-sNBTA1dFug .icon-wrap::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sNBTA1dFug .icon-wrap:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sNBTA1dFug .icon-wrap::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sNBTA1dFug .icon-wrap:hover::after {
  border-top: 1px solid #ffffff;
  border-left-color: #ffffff;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sNBTA1dFug .mbr-iconfont {
  font-size: 1rem;
  color: #fff;
  padding: 2rem;
  transition: all 0.3s;
}
.cid-sNBTA1dFug .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sNBTA1dFug .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sNBTA1dFug .modalWindow .modalWindow-video {
  position: relative;
  height: calc(28.12148481vw);
  width: 50vw;
  margin: 0 auto;
}
.cid-sNBTA1dFug a {
  text-decoration: none !important;
}
.cid-sNBTA1dFug .close {
  position: fixed;
  opacity: 1;
  font-weight: 300;
  color: #fff;
  top: 15%;
  right: 23%;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sNBTA1dFug .close:hover {
  opacity: 1;
  color: #fff;
}
@media (max-width: 1050px) {
  .cid-sNBTA1dFug .close {
    top: 0;
    right: 0;
  }
}
.cid-sNBTA1dFug .mbr-section-subtitle {
  color: #C0BCB7;
}
.cid-sNBTBormQg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTBormQg .item-wrapper {
  min-height: 100%;
  cursor: pointer;
  width: 20%;
}
@media (max-width: 992px) {
  .cid-sNBTBormQg .item-wrapper {
    width: 50%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sNBTBormQg .item-wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-sNBTBormQg .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sNBTBormQg .mbr-section-title {
  font-family: 'Cormorant Garamond';
  text-align: left;
}
.cid-sNBTBormQg .average {
  width: 20%;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sNBTBormQg .average {
    width: 100%;
  }
}
.cid-sNBTBormQg .wrap {
  position: relative;
  background-color: #121212;
  width: 80%;
  height: 80%;
  justify-content: center;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
@media (max-width: 992px) {
  .cid-sNBTBormQg .wrap {
    width: 90%;
    height: 200px;
    margin-bottom: 2rem;
  }
}
.cid-sNBTBormQg .wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.5px solid #41392e;
  left: 5%;
  bottom: 5%;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
@media (max-width: 992px) {
  .cid-sNBTBormQg .wrap:before {
    left: 2%;
  }
}
.cid-sNBTBormQg .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: .7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sNBTBormQg .close::before {
  content: '\e91a';
}
.cid-sNBTBormQg .close:hover {
  color: #fff;
}
.cid-sNBTBormQg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sNBTBormQg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sNBTBormQg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sNBTBormQg .carousel-control-next span {
  margin-left: 5px;
}
.cid-sNBTBormQg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-sNBTBormQg .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-sNBTBormQg .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-sNBTBormQg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-sNBTBormQg .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-sNBTBormQg .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-sNBTBormQg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sNBTBormQg .carousel-inner > .active {
  display: block;
}
.cid-sNBTBormQg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNBTBormQg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sNBTBormQg .carousel-control-prev:hover {
  margin-left: 2rem;
}
.cid-sNBTBormQg .carousel-control-next:hover {
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .cid-sNBTBormQg .carousel-control,
  .cid-sNBTBormQg .carousel-indicators {
    position: fixed;
  }
}
.cid-sNBTBormQg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sNBTBormQg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sNBTBormQg .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-sNBTBormQg .modal-content {
    width: 70%;
  }
}
.cid-sNBTBormQg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sNBTBormQg .modal-body img {
  width: 100%;
  object-fit: contain;
}
.cid-sNBTBormQg .carousel {
  width: 100%;
}
.cid-sNBTBormQg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sNBTBormQg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sNBTBormQg .modal.fade .modal-dialog,
.cid-sNBTBormQg .modal.in .modal-dialog {
  transform: none;
}
.cid-sNBTBormQg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sOfOPXXI0M {
  background-color: #000000;
}
.cid-sOfOPXXI0M .item {
  padding-bottom: 2rem;
}
.cid-sOfOPXXI0M img,
.cid-sOfOPXXI0M .item-wrapper {
  transition: all .7s;
}
.cid-sOfOPXXI0M .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sOfOPXXI0M .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sOfOPXXI0M .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-sOfOPXXI0M .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sOfOPXXI0M .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-sOfOPXXI0M .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: .7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sOfOPXXI0M .close::before {
  content: '\e91a';
}
.cid-sOfOPXXI0M .close:hover {
  color: #fff;
}
.cid-sOfOPXXI0M .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sOfOPXXI0M .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sOfOPXXI0M .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sOfOPXXI0M .carousel-control-next span {
  margin-left: 5px;
}
.cid-sOfOPXXI0M .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-sOfOPXXI0M .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-sOfOPXXI0M .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-sOfOPXXI0M .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-sOfOPXXI0M .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-sOfOPXXI0M .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-sOfOPXXI0M .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-sOfOPXXI0M .carousel-item img {
    width: 70%;
  }
}
.cid-sOfOPXXI0M .carousel-inner > .active {
  display: block;
}
.cid-sOfOPXXI0M .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sOfOPXXI0M .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sOfOPXXI0M .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-sOfOPXXI0M .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-sOfOPXXI0M .carousel-control,
  .cid-sOfOPXXI0M .carousel-indicators {
    position: fixed;
  }
}
.cid-sOfOPXXI0M .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sOfOPXXI0M .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sOfOPXXI0M .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-sOfOPXXI0M .modal-content {
    width: 70%;
  }
}
.cid-sOfOPXXI0M .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sOfOPXXI0M .carousel {
  width: 100%;
}
.cid-sOfOPXXI0M .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sOfOPXXI0M .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sOfOPXXI0M .modal.fade .modal-dialog,
.cid-sOfOPXXI0M .modal.in .modal-dialog {
  transform: none;
}
.cid-sOfOPXXI0M .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sOfOPXXI0M .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfOPXXI0M .soc-item {
  font-family: 'Cormorant Garamond';
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfOPXXI0M .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sOfOPXXI0M .soc-item::before,
.cid-sOfOPXXI0M .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sOfOPXXI0M .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfOPXXI0M .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sOfOPXXI0M .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfOPXXI0M .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfOPXXI0M .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sOfOPXXI0M .mbr-text {
  font-family: 'Josefin Sans';
}
.cid-sOfOPXXI0M .text {
  color: #ddc499;
}
.cid-sOfOPXXI0M .one {
  color: #C0BCB7;
  font-family: 'EB Garamond';
  font-style: italic;
}
.cid-sOfORsEgXE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sOfORsEgXE .item {
  padding-bottom: 2rem;
}
.cid-sOfORsEgXE img,
.cid-sOfORsEgXE .item-wrapper {
  transition: all 0.7s;
}
.cid-sOfORsEgXE .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sOfORsEgXE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sOfORsEgXE .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-sOfORsEgXE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sOfORsEgXE .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-sOfORsEgXE .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sOfORsEgXE .close::before {
  content: "\e91a";
}
.cid-sOfORsEgXE .close:hover {
  color: #fff;
}
.cid-sOfORsEgXE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sOfORsEgXE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sOfORsEgXE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sOfORsEgXE .carousel-control-next span {
  margin-left: 5px;
}
.cid-sOfORsEgXE .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-sOfORsEgXE .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-sOfORsEgXE .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-sOfORsEgXE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-sOfORsEgXE .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-sOfORsEgXE .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-sOfORsEgXE .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-sOfORsEgXE .carousel-item img {
    width: 70%;
  }
}
.cid-sOfORsEgXE .carousel-inner > .active {
  display: block;
}
.cid-sOfORsEgXE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sOfORsEgXE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sOfORsEgXE .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-sOfORsEgXE .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-sOfORsEgXE .carousel-control,
  .cid-sOfORsEgXE .carousel-indicators {
    position: fixed;
  }
}
.cid-sOfORsEgXE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sOfORsEgXE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sOfORsEgXE .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-sOfORsEgXE .modal-content {
    width: 70%;
  }
}
.cid-sOfORsEgXE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sOfORsEgXE .carousel {
  width: 100%;
}
.cid-sOfORsEgXE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sOfORsEgXE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sOfORsEgXE .modal.fade .modal-dialog,
.cid-sOfORsEgXE .modal.in .modal-dialog {
  transform: none;
}
.cid-sOfORsEgXE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sOfORsEgXE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfORsEgXE .soc-item {
  font-family: "Cormorant Garamond";
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfORsEgXE .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sOfORsEgXE .soc-item::before,
.cid-sOfORsEgXE .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sOfORsEgXE .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfORsEgXE .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sOfORsEgXE .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfORsEgXE .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfORsEgXE .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-sOfORsEgXE .mbr-text {
  font-family: "Josefin Sans";
}
.cid-sOfORsEgXE .text {
  color: #ddc499;
}
.cid-sOfORsEgXE .one {
  color: #c0bcb7;
  font-family: "EB Garamond";
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-sOfORsEgXE .right {
    padding-right: 32px;
  }
  .cid-sOfORsEgXE .left {
    padding-left: 32px;
  }
}
.cid-sNBTEQBzzI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-sNBTEQBzzI .wrapper {
    position: relative;
    overflow: hidden;
    padding-left: 30px;
    padding-right: 25px;
  }
}
@media (min-width: 769px) {
  .cid-sNBTEQBzzI .row .col-12 {
    padding-left: 11px;
    padding-right: 11px;
  }
}
.cid-sNBTEQBzzI .item-img {
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.cid-sNBTEQBzzI .item-img img {
  object-fit: cover;
  height: 100%;
  transition: transform 1.5s;
}
.cid-sNBTEQBzzI .item-img:hover img {
  width: 100%;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cid-sNBTEQBzzI img {
  object-fit: cover;
}
@media (max-width: 575px) {
  .cid-sNBTEQBzzI .top {
    padding-top: 20px;
  }
}
.cid-sNBTEQBzzI .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: .7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sNBTEQBzzI .close::before {
  content: '\e91a';
}
.cid-sNBTEQBzzI .close:hover {
  color: #fff;
}
.cid-sNBTEQBzzI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sNBTEQBzzI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sNBTEQBzzI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sNBTEQBzzI .carousel-control-next span {
  margin-left: 5px;
}
.cid-sNBTEQBzzI .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-sNBTEQBzzI .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-sNBTEQBzzI .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-sNBTEQBzzI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-sNBTEQBzzI .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-sNBTEQBzzI .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-sNBTEQBzzI .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-sNBTEQBzzI .carousel-item img {
    width: 70%;
  }
}
.cid-sNBTEQBzzI .carousel-inner > .active {
  display: block;
}
.cid-sNBTEQBzzI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNBTEQBzzI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sNBTEQBzzI .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-sNBTEQBzzI .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-sNBTEQBzzI .carousel-control,
  .cid-sNBTEQBzzI .carousel-indicators {
    position: fixed;
  }
}
.cid-sNBTEQBzzI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sNBTEQBzzI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sNBTEQBzzI .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-sNBTEQBzzI .modal-content {
    width: 70%;
  }
}
.cid-sNBTEQBzzI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sNBTEQBzzI .carousel {
  width: 100%;
}
.cid-sNBTEQBzzI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sNBTEQBzzI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sNBTEQBzzI .modal.fade .modal-dialog,
.cid-sNBTEQBzzI .modal.in .modal-dialog {
  transform: none;
}
.cid-sNBTEQBzzI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sNBTFEZB9H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTFEZB9H .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-sNBTFEZB9H img,
.cid-sNBTFEZB9H .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-sNBTFEZB9H .item-img {
  height: 100%;
}
.cid-sNBTFEZB9H .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sNBTFEZB9H .item:focus,
.cid-sNBTFEZB9H span:focus {
  outline: none;
}
.cid-sNBTFEZB9H .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sNBTFEZB9H .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sNBTFEZB9H .mbr-text {
  font-family: "Josefin Sans";
  color: #977741;
}
.cid-sNBTFEZB9H .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #9a948d;
}
.cid-sNBTFEZB9H .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-sNBTFEZB9H .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-sNBTFEZB9H .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-sNBTFEZB9H .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-sNBTFEZB9H .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-sNBTFEZB9H .embla__button--next,
.cid-sNBTFEZB9H .embla__button--prev {
  display: flex;
}
.cid-sNBTFEZB9H .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-sNBTFEZB9H .embla__button .mobi-mbri {
  display: none;
}
.cid-sNBTFEZB9H .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-sNBTFEZB9H .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sNBTFEZB9H .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-sNBTFEZB9H .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-sNBTFEZB9H .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-sNBTFEZB9H .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-sNBTFEZB9H .embla {
  position: relative;
  width: 100%;
}
.cid-sNBTFEZB9H .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-sNBTFEZB9H .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sNBTFEZB9H .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sNBTFEZB9H .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sOfP3VcsQi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1300px) {
  .cid-sOfP3VcsQi .carousel img {
    object-fit: cover;
  }
  .cid-sOfP3VcsQi .right {
    padding-right: 32px;
  }
  .cid-sOfP3VcsQi .left {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .cid-sOfP3VcsQi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sOfP3VcsQi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sOfP3VcsQi .carousel,
.cid-sOfP3VcsQi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sOfP3VcsQi .item-wrapper {
  width: 100%;
  height: 1000px;
}
@media (max-width: 768px) {
  .cid-sOfP3VcsQi .item-wrapper {
    height: 500px;
  }
}
.cid-sOfP3VcsQi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sOfP3VcsQi .carousel-caption {
  bottom: 40px;
}
.cid-sOfP3VcsQi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sOfP3VcsQi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sOfP3VcsQi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sOfP3VcsQi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sOfP3VcsQi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-sOfP3VcsQi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sOfP3VcsQi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sOfP3VcsQi .carousel-control.carousel-control-prev {
    margin-left: .5rem;
    font-size: 16px;
    opacity: .7;
  }
  .cid-sOfP3VcsQi .carousel-control.carousel-control-prev:hover {
    margin-left: .3rem;
  }
  .cid-sOfP3VcsQi .carousel-control.carousel-control-next {
    margin-right: .5rem;
    font-size: 16px;
    opacity: .7;
  }
  .cid-sOfP3VcsQi .carousel-control.carousel-control-next:hover {
    margin-right: .3rem;
  }
}
.cid-sOfP3VcsQi .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-sOfP3VcsQi .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-sOfP3VcsQi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfP3VcsQi .soc-item {
  font-family: 'Cormorant Garamond';
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfP3VcsQi .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sOfP3VcsQi .soc-item::before,
.cid-sOfP3VcsQi .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sOfP3VcsQi .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfP3VcsQi .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sOfP3VcsQi .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfP3VcsQi .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfP3VcsQi .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-sOfP3VcsQi .mbr-text {
  font-family: 'Josefin Sans';
}
.cid-sOfP3VcsQi .text {
  color: #ddc499;
}
.cid-sOfP3VcsQi .one {
  color: #C0BCB7;
  font-family: 'EB Garamond';
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-sOfP3VcsQi .left {
    margin-top: 2rem;
  }
}
.cid-sOfP52vE0I {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-sOfP52vE0I .carousel {
    overflow: hidden;
  }
  .cid-sOfP52vE0I .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-sOfP52vE0I .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sOfP52vE0I .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sOfP52vE0I .carousel,
.cid-sOfP52vE0I .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sOfP52vE0I .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sOfP52vE0I .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-sOfP52vE0I .item-wrapper {
    height: 215px;
  }
}
.cid-sOfP52vE0I .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sOfP52vE0I .carousel-caption {
  bottom: 40px;
}
.cid-sOfP52vE0I .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sOfP52vE0I .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sOfP52vE0I .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sOfP52vE0I .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sOfP52vE0I .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-sOfP52vE0I .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sOfP52vE0I .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sOfP52vE0I .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-sOfP52vE0I .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-sOfP52vE0I .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-sOfP52vE0I .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-sOfP52vE0I .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-sOfP52vE0I .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-sOfP52vE0I .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfP52vE0I .soc-item {
  font-family: "Cormorant Garamond";
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfP52vE0I .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sOfP52vE0I .soc-item::before,
.cid-sOfP52vE0I .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sOfP52vE0I .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfP52vE0I .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sOfP52vE0I .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfP52vE0I .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfP52vE0I .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sOfP52vE0I .mbr-text {
  font-family: "Josefin Sans";
}
.cid-sOfP52vE0I .text {
  color: #ddc499;
}
.cid-sOfP52vE0I .one {
  color: #c0bcb7;
  font-family: "EB Garamond";
  font-style: italic;
}
.cid-sOfP6jNiNE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sOfP6jNiNE .carousel {
  height: 800px;
  max-height: 780px;
  overflow: hidden;
}
.cid-sOfP6jNiNE .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sOfP6jNiNE .carousel-item,
.cid-sOfP6jNiNE .carousel-inner {
  height: 100%;
}
.cid-sOfP6jNiNE .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
}
.cid-sOfP6jNiNE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sOfP6jNiNE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sOfP6jNiNE .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-sOfP6jNiNE .item-wrapper {
  position: relative;
  text-align: start;
  width: 100%;
}
@media (min-width: 991px) {
  .cid-sOfP6jNiNE .item-wrapper {
    padding: 0 6rem;
  }
}
@media (min-width: 991px) {
  .cid-sOfP6jNiNE .mbr-overlay {
    margin: 0 6rem;
  }
}
@media (max-width: 767px) {
  .cid-sOfP6jNiNE .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sOfP6jNiNE .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sOfP6jNiNE .row {
  position: relative;
}
@media (min-width: 991px) {
  .cid-sOfP6jNiNE .row {
    padding-left: 14rem;
  }
}
.cid-sOfP6jNiNE .container {
  margin-bottom: 3px;
}
.cid-sOfP6jNiNE .carousel-control {
  color: #ffffff;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.8;
}
.cid-sOfP6jNiNE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sOfP6jNiNE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sOfP6jNiNE .carousel-control {
    top: 40%;
  }
  .cid-sOfP6jNiNE .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
  .cid-sOfP6jNiNE .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
.cid-sOfP6jNiNE .buttons-wrap {
  justify-content: start;
}
.cid-sOfP6jNiNE .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-sOfP6jNiNE .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-sOfP6jNiNE .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-sOfP6jNiNE .buttons-wrap .mbr-section-btn {
    margin-bottom: 10px;
  }
}
.cid-sOfP6jNiNE .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sOfP6jNiNE .wrap {
  z-index: 9999;
}
.cid-sOfP6jNiNE .btnHeader {
  cursor: pointer;
  font-family: "Cormorant Garamond";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  left: 25%;
  top: 70%;
  border: 1px solid #9a948d;
  justify-content: center;
  transition: border 0.5s ease;
}
@media (max-width: 991px) {
  .cid-sOfP6jNiNE .btnHeader {
    left: 5%;
    top: 60%;
  }
}
.cid-sOfP6jNiNE .btnHeader::before,
.cid-sOfP6jNiNE .btnHeader::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
}
.cid-sOfP6jNiNE .btnHeader::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfP6jNiNE .btnHeader:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.cid-sOfP6jNiNE .btnHeader::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfP6jNiNE .btnHeader:hover::after {
  border-top: 1px solid #fff;
  border-left-color: #fff;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfP6jNiNE .img {
  position: relative;
}
.cid-sOfP6jNiNE .social-row {
  flex-direction: row-reverse;
  position: absolute;
  bottom: 10%;
  right: 1%;
}
.cid-sOfP6jNiNE .soc-item {
  transform: rotate(-90deg);
  font-family: "Cormorant Garamond";
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfP6jNiNE .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sOfP6jNiNE .soc-item::before,
.cid-sOfP6jNiNE .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sOfP6jNiNE .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfP6jNiNE .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sOfP6jNiNE .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfP6jNiNE .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfP7xZ7XB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sOfP7xZ7XB .carousel {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-sOfP7xZ7XB .carousel {
    height: 940px;
  }
}
@media (max-width: 768px) {
  .cid-sOfP7xZ7XB .carousel {
    height: 400px;
  }
}
.cid-sOfP7xZ7XB .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sOfP7xZ7XB .carousel .carousel-item,
.cid-sOfP7xZ7XB .carousel .carousel-inner {
  height: 100%;
}
.cid-sOfP7xZ7XB .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sOfP7xZ7XB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sOfP7xZ7XB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sOfP7xZ7XB .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-sOfP7xZ7XB .item-wrapper {
  position: relative;
  text-align: start;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sOfP7xZ7XB .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sOfP7xZ7XB .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sOfP7xZ7XB .row {
  position: relative;
}
.cid-sOfP7xZ7XB .container {
  margin-bottom: 3px;
}
.cid-sOfP7xZ7XB .carousel-control {
  color: #ffffff;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-sOfP7xZ7XB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sOfP7xZ7XB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sOfP7xZ7XB .carousel-control {
    top: 70%;
  }
  .cid-sOfP7xZ7XB .carousel-control.carousel-control-prev {
    margin-left: .5rem;
  }
  .cid-sOfP7xZ7XB .carousel-control.carousel-control-next {
    margin-right: .5rem;
  }
}
.cid-sOfP7xZ7XB .buttons-wrap {
  justify-content: start;
}
.cid-sOfP7xZ7XB .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-sOfP7xZ7XB .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-sOfP7xZ7XB .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-sOfP7xZ7XB .buttons-wrap .mbr-section-btn {
    margin-bottom: 10px;
  }
}
.cid-sOfP7xZ7XB .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sOfP7xZ7XB .wrap {
  z-index: 9999;
}
.cid-sOfP7xZ7XB .btnHeader {
  font-family: 'Cormorant Garamond';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  cursor: pointer;
  left: 50%;
  top: 70%;
  border: 1px solid #9a948d;
  justify-content: center;
  transition: border 0.5s ease;
  transform: translateX(-50%);
}
.cid-sOfP7xZ7XB .btnHeader::before,
.cid-sOfP7xZ7XB .btnHeader::after {
  content: '';
  width: 102%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: -1%;
}
.cid-sOfP7xZ7XB .btnHeader::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfP7xZ7XB .btnHeader:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sOfP7xZ7XB .btnHeader::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfP7xZ7XB .btnHeader:hover::after {
  border-top: 1px solid #ffffff;
  border-left-color: #ffffff;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfP7xZ7XB .img {
  position: relative;
}
.cid-sOfP8zZoj7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sOfP8zZoj7 .carousel {
  height: 780px;
  max-height: 780px;
  overflow: hidden;
}
.cid-sOfP8zZoj7 .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sOfP8zZoj7 .carousel .carousel-item,
.cid-sOfP8zZoj7 .carousel .carousel-inner {
  height: 100%;
}
.cid-sOfP8zZoj7 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
}
.cid-sOfP8zZoj7 .item-wrapper {
  position: relative;
  text-align: start;
  width: 100%;
}
@media (min-width: 991px) {
  .cid-sOfP8zZoj7 .item-wrapper {
    padding: 0 60px;
  }
}
@media (min-width: 991px) {
  .cid-sOfP8zZoj7 .mbr-overlay {
    margin: 0 60px;
  }
}
@media (max-width: 767px) {
  .cid-sOfP8zZoj7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sOfP8zZoj7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sOfP8zZoj7 .row {
  position: relative;
}
.cid-sOfP8zZoj7 .container {
  margin-bottom: 3px;
}
.cid-sOfP8zZoj7 .carousel-control {
  color: #ffffff;
  top: 50%;
  width: 120px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-sOfP8zZoj7 .carousel-control.carousel-control-prev {
  left: -1%;
}
.cid-sOfP8zZoj7 .carousel-control.carousel-control-next {
  right: -1%;
}
@media (max-width: 767px) {
  .cid-sOfP8zZoj7 .carousel-control {
    top: 55%;
  }
  .cid-sOfP8zZoj7 .carousel-control.carousel-control-prev {
    margin-left: .5rem;
  }
  .cid-sOfP8zZoj7 .carousel-control.carousel-control-next {
    margin-right: .5rem;
  }
}
.cid-sOfP8zZoj7 .carousel-control:hover.carousel-control-prev {
  left: -1.2%;
}
.cid-sOfP8zZoj7 .carousel-control:hover.carousel-control-next {
  right: -1.2%;
}
.cid-sOfP8zZoj7 .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-sOfP8zZoj7 .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-sOfP8zZoj7 .mbr-section-title {
  text-align: center;
  color: #ffffff;
  font-size: 45px;
  font-style: italic;
  line-height: 49px;
}
.cid-sOfPdsFvxy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-sOfPdsFvxy .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-sOfPdsFvxy .wrap {
    width: 100%;
  }
}
.cid-sOfPdsFvxy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sOfPdsFvxy .wrap {
  height: 375px;
  width: 97%;
  position: relative;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfPdsFvxy .wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #41392e;
  left: 3%;
  bottom: 2%;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
@media (max-width: 575px) {
  .cid-sOfPdsFvxy .top {
    padding-top: 20px;
  }
}
.cid-sOfPdsFvxy .font {
  font-family: "Cormorant Garamond";
}
.cid-sOfPdsFvxy .mbr-text {
  font-family: "Cormorant Garamond";
  font-style: italic;
  color: #9a948d;
}
@media (min-width: 769px) {
  .cid-sOfPdsFvxy .right {
    padding-right: 25px;
    padding-left: 25px;
  }
}
.cid-sNBTNtEBnZ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTNtEBnZ .row {
  flex-direction: row-reverse;
  position: relative;
}
.cid-sNBTNtEBnZ .carousel-indicators {
  left: 75%;
  bottom: 0;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-sNBTNtEBnZ .carousel-indicators {
    position: relative;
    left: 0;
    flex-direction: row;
    bottom: -10%;
  }
}
.cid-sNBTNtEBnZ .carousel-indicators li {
  margin-bottom: 2rem;
  margin-right: 31px;
  margin-left: 31px;
  opacity: 1;
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  min-width: 6px;
  min-height: 6px;
  background: #ffffff;
  border: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cid-sNBTNtEBnZ .carousel-indicators li:hover {
  opacity: 1 !important;
}
.cid-sNBTNtEBnZ .carousel-indicators li svg {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  z-index: 1;
  fill: none;
  color: #ddc499;
  stroke: none;
  overflow: visible;
}
.cid-sNBTNtEBnZ .carousel-indicators li svg circle {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  stroke: #ddc499;
  stroke-width: 1;
  transition: all 0.6s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  transform: rotate(-145deg);
  transform-origin: center;
}
.cid-sNBTNtEBnZ .carousel-indicators li.active {
  background: #ddc499;
}
.cid-sNBTNtEBnZ .carousel-indicators li.active circle {
  stroke-dashoffset: 0;
  transform: rotate(55deg);
}
.cid-sNBTNtEBnZ .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sNBTNtEBnZ .mbr-text,
.cid-sNBTNtEBnZ .mbr-section-btn {
  text-align: left;
}
.cid-sNBTNtEBnZ H3 {
  text-align: left;
}
.cid-sNBTNtEBnZ .author,
.cid-sNBTNtEBnZ .box {
  font-style: italic;
}
.cid-sNBTNtEBnZ .author {
  color: #9A948D;
}
.cid-sNBTNtEBnZ .author h3 {
  font-family: 'Cormorant Garamond';
}
.cid-sNBTNtEBnZ .mbr-iconfont {
  left: 10%;
  top: -45%;
  position: absolute;
  font-size: 35px;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #41392e;
  padding: 4rem;
}
@media (max-width: 991px) {
  .cid-sNBTNtEBnZ .mbr-iconfont {
    display: none;
  }
}
.cid-sNBTOvLaTJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sNBTOvLaTJ .wrapper {
    padding: 0 8rem;
  }
}
.cid-sNBTOvLaTJ img {
  width: 125px;
  margin: auto;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.cid-sNBTOvLaTJ img:hover {
  opacity: 1;
}
.cid-sNBTOvLaTJ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sNBTOvLaTJ .card {
    width: 20%;
  }
}
.cid-sNBTOvLaTJ .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #9a948d;
}
.cid-sOfPidlv2i {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sOfPidlv2i .row {
  justify-content: center;
}
.cid-sOfPidlv2i .row .img-item {
  height: 354px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.7s;
  display: -webkit-flex;
  width: 100%;
}
.cid-sOfPidlv2i .row .img-item img {
  transition: all 0.7s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 1px;
}
@media (max-width: 768px) {
  .cid-sOfPidlv2i .top {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOfPidlv2i .title {
    padding-left: 60px;
  }
}
@media (min-width: 1400px) {
  .cid-sOfPidlv2i .title {
    padding-left: 120px;
  }
}
.cid-sOfPidlv2i .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  color: #c0bcb7;
}
.cid-sOfPidlv2i span {
  position: absolute;
  width: 105%;
  height: 80%;
  border: 1px solid #41392e;
}
.cid-sOfPidlv2i span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform-origin: top left;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sOfPidlv2i span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform-origin: bottom right;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sOfPidlv2i .btn:hover span::before {
  border-top: 1px solid #ba9b67;
  border-left: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sOfPidlv2i .btn:hover span::after {
  border-bottom: 1px solid #ba9b67;
  border-right: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sOfPidlv2i .item-title {
  top: 50%;
  left: 50%;
  min-width: 200px;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sOfPidlv2i .img-item:hover .item-title {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-sOfPidlv2i .img-item:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.2;
}
.cid-sOfPidlv2i .mbr-text {
  font-style: italic;
  color: #9a948d;
  font-family: "Cormorant Garamond";
}
.cid-sOfPidlv2i h3 {
  font-family: "Cormorant Garamond";
}
.cid-sNBTR9uV0O {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTR9uV0O .wrap {
  background-color: #121212;
}
@media (max-width: 768px) {
  .cid-sNBTR9uV0O .wrap {
    margin-top: 2rem;
    padding: 1rem;
  }
}
.cid-sNBTR9uV0O .item-img {
  height: auto;
  position: relative;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
@media (max-width: 768px) {
  .cid-sNBTR9uV0O .item-img {
    width: 50%;
  }
}
.cid-sNBTR9uV0O .item-img img {
  object-fit: cover;
}
.cid-sNBTR9uV0O .item-img:before {
  content: "";
  position: absolute;
  border: 1px solid #41392e;
  width: 100%;
  height: 100%;
  left: 7%;
  bottom: 7%;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
@media (min-width: 769px) {
  .cid-sNBTR9uV0O .wrap {
    padding: 40px 30px 50px;
  }
  .cid-sNBTR9uV0O .right {
    padding-right: 24px;
  }
}
@media (min-width: 1200px) {
  .cid-sNBTR9uV0O .wrap {
    padding: 20px 80px 30px 30px;
  }
}
@media (min-width: 1300px) {
  .cid-sNBTR9uV0O .wrap {
    padding: 40px 90px 40px 40px;
  }
}
.cid-sNBTR9uV0O .mbr-text {
  font-family: 'Cormorant Garamond';
  color: #C0BCB7;
  font-style: italic;
}
.cid-sNBTR9uV0O .mbr-section-subtitle {
  color: #C0BCB7;
}
.cid-sNBTZ5QDta {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sNBTZ5QDta .md-pb {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sNBTZ5QDta .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sNBTZ5QDta .wrapper {
    padding: 0 0 0 62px;
  }
}
@media (min-width: 767px) {
  .cid-sNBTZ5QDta .row {
    margin: 0;
  }
}
.cid-sNBTZ5QDta .mbr-text {
  font-family: 'Josefin Sans';
  color: #C0BCB7;
  transition: all .5s;
}
.cid-sNBU5yYltn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
@media (min-width: 992px) {
  .cid-sNBU5yYltn .wrapper {
    padding: 0 114px;
  }
}
.cid-sNBU5yYltn .google-map {
  height: 555px;
  position: relative;
  filter: sepia(0.3) brightness(0.8) contrast(1) saturate(0.4);
}
.cid-sNBU5yYltn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sNBU5yYltn .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-sNBU5yYltn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sNBU5yYltn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sNBU6IENDr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBU6IENDr .mbr-text {
  font-family: 'EB Garamond';
  font-style: italic;
  color: #C0BCB7;
}
.cid-sNBU6IENDr img,
.cid-sNBU6IENDr .item-img {
  transition: transform 1.5s;
}
.cid-sNBU6IENDr .item-img {
  height: 350px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .cid-sNBU6IENDr .item-img {
    height: 217px;
  }
}
@media (max-width: 768px) {
  .cid-sNBU6IENDr .item-img {
    height: 140px;
  }
}
.cid-sNBU6IENDr .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sNBU6IENDr .item-img .icon-wrapper {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #000000;
  font-size: 22px;
  right: 10%;
  top: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s;
}
.cid-sNBU6IENDr .item-img .icon-wrapper a {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sNBU6IENDr .item-img .icon-wrapper {
    right: 2%;
  }
}
@media (max-width: 768px) {
  .cid-sNBU6IENDr .item-img .icon-wrapper {
    right: -2%;
    width: 45px;
    height: 45px;
  }
}
.cid-sNBU6IENDr .item-img:hover .icon-wrapper {
  opacity: 1;
  top: 20%;
}
.cid-sNBU6IENDr .item-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sNBU6IENDr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sNBU6IENDr .soc-item {
  font-family: 'Cormorant Garamond';
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBU6IENDr .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sNBU6IENDr .soc-item::before,
.cid-sNBU6IENDr .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sNBU6IENDr .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sNBU6IENDr .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sNBU6IENDr .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sNBU6IENDr .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sNBU6IENDr .mbr-section-title {
  color: #ffffff;
}
.cid-sNBU8t7nEt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBU8t7nEt .form-row > .col,
.cid-sNBU8t7nEt .form-row > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.cid-sNBU8t7nEt .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-sNBU8t7nEt .wrap {
  background-color: #121212;
  padding: 8rem 1rem 6rem;
}
@media (min-width: 992px) {
  .cid-sNBU8t7nEt .wrap {
    padding: 8rem 20rem 7rem;
  }
}
.cid-sNBU8t7nEt .mbr-iconfont {
  position: absolute;
  right: 2%;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}
.cid-sNBU8t7nEt .form-control,
.cid-sNBU8t7nEt .field-input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #9a948d !important;
  padding: 0;
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
}
.cid-sNBU8t7nEt .jq-selectbox__select {
  padding: 0;
}
.cid-sNBU8t7nEt .jq-selectbox__trigger-arrow {
  right: 0;
}
.cid-sNBU8t7nEt .jq-number__spin {
  background-color: #ba9b67;
  border-color: #ba9b67;
}
.cid-sNBU8t7nEt .jq-number__spin:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}
.cid-sNBU8t7nEt .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sNBU8t7nEt .jq-number__spin.minus:after,
.cid-sNBU8t7nEt .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sNBU8t7nEt .jq-selectbox__dropdown {
  border-radius: 0;
  background: #000000;
}
.cid-sNBU8t7nEt .jq-selectbox__dropdown li {
  font-family: "Cormorant Garamond";
}
.cid-sNBU8t7nEt .form-control:hover {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #ffffff !important;
}
.cid-sNBU8t7nEt .form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: inherit;
  color: #fff;
}
.cid-sNBU8t7nEt .form-check-input:checked {
  background-color: #ba9b67;
  border-color: #ba9b67;
}
.cid-sNBU8t7nEt p {
  font-style: italic;
  color: #9a948d;
  font-family: "EB Garamond";
}
.cid-sNBU8t7nEt .form-control::placeholder {
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
  margin: 0;
}
.cid-sNBU8t7nEt input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-sNBU8t7nEt input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-sNBU8t7nEt input[type="range"]::-webkit-slider-thumb {
  background: #ddc499;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #ba9b67;
}
.cid-sNBU8t7nEt input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-sNBU8t7nEt input[type="range"]::-moz-range-thumb {
  background: #ba9b67;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #43e5f7;
  padding: 0px;
  margin: 0px;
}
.cid-sNBU8t7nEt .form-control-label,
.cid-sNBU8t7nEt .form-check-label {
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
}
.cid-sNBU8t7nEt input::-webkit-clear-button {
  display: none;
}
.cid-sNBU8t7nEt input::-webkit-inner-spin-button {
  display: none;
}
.cid-sNBU8t7nEt input::-webkit-outer-spin-button {
  display: none;
}
.cid-sNBU8t7nEt input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sOfPo9vw2t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sOfPo9vw2t .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-sOfPo9vw2t .wrap {
  background-color: #121212;
  padding: 9rem 1rem;
}
.cid-sOfPo9vw2t img {
  object-fit: cover;
  position: absolute;
  width: 50%;
  top: 15%;
  left: 4%;
  max-height: 600px;
}
@media (max-width: 991px) {
  .cid-sOfPo9vw2t .wrap {
    margin-top: 20rem;
  }
  .cid-sOfPo9vw2t img {
    width: 60%;
    left: 20%;
    top: 0;
    max-height: 400px;
  }
}
@media (max-width: 758px) {
  .cid-sOfPo9vw2t .wrap {
    margin-top: 5rem;
  }
  .cid-sOfPo9vw2t img {
    max-height: 200px;
  }
}
@media (min-width: 992px) {
  .cid-sOfPo9vw2t .container-fluid {
    padding-right: 16px;
  }
  .cid-sOfPo9vw2t .wrap {
    padding: 9rem 6rem 8rem;
  }
  .cid-sOfPo9vw2t img {
    width: 40%;
    left: 0;
    top: 13%;
  }
}
@media (min-width: 1400px) {
  .cid-sOfPo9vw2t img {
    width: 50%;
    left: 5%;
  }
}
.cid-sOfPo9vw2t .wrap {
  padding: 8rem 1rem;
}
@media (max-width: 991px) {
  .cid-sOfPo9vw2t .wrap {
    margin-top: 20rem;
  }
  .cid-sOfPo9vw2t img {
    width: 60%;
    left: 20%;
    max-height: 400px;
  }
}
@media (max-width: 758px) {
  .cid-sOfPo9vw2t .wrap {
    margin-top: 5rem;
  }
  .cid-sOfPo9vw2t img {
    max-height: 200px;
  }
}
@media (min-width: 992px) {
  .cid-sOfPo9vw2t .container-fluid {
    padding-right: 16px;
  }
  .cid-sOfPo9vw2t .wrap {
    padding: 8% 12% 7% 14%;
  }
  .cid-sOfPo9vw2t img {
    width: 40%;
    top: 10%;
    left: 5%;
    max-height: 500px;
  }
}
@media (min-width: 1400px) {
  .cid-sOfPo9vw2t img {
    left: 16%;
    top: 10%;
    max-height: 600px;
  }
}
.cid-sOfPo9vw2t .form-row > .col,
.cid-sOfPo9vw2t .form-row > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.cid-sOfPo9vw2t .form-control,
.cid-sOfPo9vw2t .field-input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #9a948d !important;
  padding: 0;
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
}
.cid-sOfPo9vw2t .jq-selectbox__select {
  padding: 0;
}
.cid-sOfPo9vw2t .jq-selectbox__trigger-arrow {
  right: 0;
}
.cid-sOfPo9vw2t .jq-number__spin {
  background-color: #ba9b67;
  border-color: #ba9b67;
}
.cid-sOfPo9vw2t .jq-number__spin:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}
.cid-sOfPo9vw2t .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sOfPo9vw2t .jq-number__spin.minus:after,
.cid-sOfPo9vw2t .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sOfPo9vw2t .jq-selectbox__dropdown {
  border-radius: 0;
  background: #000000;
}
.cid-sOfPo9vw2t .jq-selectbox__dropdown li {
  font-family: "Cormorant Garamond";
}
.cid-sOfPo9vw2t .form-control:hover {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #ffffff !important;
}
.cid-sOfPo9vw2t .form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: inherit;
  color: #fff;
}
.cid-sOfPo9vw2t .form-check-input:checked {
  background-color: #ba9b67;
  border-color: #ba9b67;
}
.cid-sOfPo9vw2t p {
  font-style: italic;
  color: #9a948d;
  font-family: "EB Garamond";
}
.cid-sOfPo9vw2t .form-control::placeholder {
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
  margin: 0;
}
.cid-sOfPo9vw2t input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-sOfPo9vw2t input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-sOfPo9vw2t input[type="range"]::-webkit-slider-thumb {
  background: #ddc499;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #ba9b67;
}
.cid-sOfPo9vw2t input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-sOfPo9vw2t input[type="range"]::-moz-range-thumb {
  background: #ba9b67;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #43e5f7;
  padding: 0px;
  margin: 0px;
}
.cid-sOfPo9vw2t .form-control-label,
.cid-sOfPo9vw2t .form-check-label {
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
}
.cid-sOfPo9vw2t input::-webkit-clear-button {
  display: none;
}
.cid-sOfPo9vw2t input::-webkit-inner-spin-button {
  display: none;
}
.cid-sOfPo9vw2t input::-webkit-outer-spin-button {
  display: none;
}
.cid-sOfPo9vw2t input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sOfPo9vw2t a {
  transition: color 0.5s;
  color: #9a948d;
}
.cid-sOfPo9vw2t a:hover {
  color: #ffffff;
}
.cid-sOfPo9vw2t .mbr-section-btn {
  z-index: 99999;
}
.cid-sOfPo9vw2t .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  color: #c0bcb7;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfPo9vw2t .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sOfPo9vw2t .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sOfPo9vw2t .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sOfPo9vw2t .btn:hover .effectHover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sOfPo9vw2t .btn:hover .effectHover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBUaLbe58 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBUaLbe58 .mbr-overlay {
  background-color: #171410;
  opacity: 0.4;
}
.cid-sNBUaLbe58 .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 80px;
}
.cid-sNBUaLbe58 .form-row > .col,
.cid-sNBUaLbe58 .form-row > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 769px) {
  .cid-sNBUaLbe58 form .row .right {
    padding-right: 30px;
  }
  .cid-sNBUaLbe58 form .row .left {
    padding-left: 30px;
  }
}
.cid-sNBUaLbe58 .form-control,
.cid-sNBUaLbe58 .field-input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #9a948d !important;
  padding: 0;
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
}
.cid-sNBUaLbe58 .jq-selectbox__select {
  padding: 0;
}
.cid-sNBUaLbe58 .jq-selectbox__trigger-arrow {
  right: 0;
}
.cid-sNBUaLbe58 .jq-number__spin {
  background-color: #ba9b67;
  border-color: #ba9b67;
}
.cid-sNBUaLbe58 .jq-number__spin:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}
.cid-sNBUaLbe58 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sNBUaLbe58 .jq-number__spin.minus:after,
.cid-sNBUaLbe58 .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sNBUaLbe58 .jq-selectbox__dropdown {
  border-radius: 0;
  background: #000000;
}
.cid-sNBUaLbe58 .jq-selectbox__dropdown li {
  font-family: "Cormorant Garamond";
}
.cid-sNBUaLbe58 .form-control:hover {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #ffffff !important;
}
.cid-sNBUaLbe58 .form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: inherit;
  color: #fff;
}
.cid-sNBUaLbe58 .form-check-input:checked {
  background-color: #ba9b67;
  border-color: #ba9b67;
}
.cid-sNBUaLbe58 p {
  font-style: italic;
  color: #9a948d;
  font-family: "EB Garamond";
}
.cid-sNBUaLbe58 .form-control::placeholder {
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
  margin: 0;
}
.cid-sNBUaLbe58 input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  overflow: hidden;
  height: 7px;
}
.cid-sNBUaLbe58 input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-sNBUaLbe58 input[type="range"]::-webkit-slider-thumb {
  background: #ddc499;
  cursor: pointer;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  margin-top: -4px;
  box-shadow: -500px 0 0 500px #ba9b67;
}
.cid-sNBUaLbe58 input[type="range"]::-moz-range-track {
  height: 7px;
  background-color: #ffffff;
}
.cid-sNBUaLbe58 input[type="range"]::-moz-range-thumb {
  background: #ba9b67;
  cursor: pointer;
  height: 7px;
  border-radius: 0px;
  box-shadow: -200px 0px 0px 200px #43e5f7;
  padding: 0px;
  margin: 0px;
}
.cid-sNBUaLbe58 .form-control-label,
.cid-sNBUaLbe58 .form-check-label {
  font-family: "Cormorant Garamond";
  color: #ffffff;
  font-style: italic;
}
.cid-sNBUaLbe58 input::-webkit-clear-button {
  display: none;
}
.cid-sNBUaLbe58 input::-webkit-inner-spin-button {
  display: none;
}
.cid-sNBUaLbe58 input::-webkit-outer-spin-button {
  display: none;
}
.cid-sNBUaLbe58 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sNBUaLbe58 .mbr-section-btn {
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  cursor: pointer;
}
.cid-sNBUaLbe58 .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  color: #fff;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBUaLbe58 .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 108%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sNBUaLbe58 .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 101%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBUaLbe58 .effectHover::after {
  content: "";
  right: -1%;
  position: absolute;
  width: 101%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBUaLbe58 .btn:hover .effectHover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBUaLbe58 .btn:hover .effectHover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBUcb6oFJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sNBUcb6oFJ .wrapper {
    padding: 0 4rem 0 8rem;
  }
}
.cid-sNBUcb6oFJ .left-side {
  text-align: left;
  padding-right: 5rem;
}
.cid-sNBUcb6oFJ .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-sNBUcb6oFJ .mbr-section-btn {
    margin-bottom: 25px;
  }
}
.cid-sNBUcb6oFJ .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sNBUcb6oFJ .mbr-section-subtitle {
  color: #626262;
  margin: 0;
  text-align: left;
}
.cid-sNBUcb6oFJ .panel-text {
  margin: 0;
  border: 0px;
  color: #9A948D;
  font-family: "EB Garamond";
}
.cid-sNBUcb6oFJ span {
  color: #ffffff;
  float: right;
  margin-top: 2px;
}
.cid-sNBUcb6oFJ .panel-title-edit {
  font-family: 'Cormorant Garamond';
  color: #ffffff;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #41392e;
}
.cid-sNBUcb6oFJ .card-header {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0;
}
.cid-sNBUcb6oFJ .card {
  border-radius: 0;
  margin-bottom: 22px;
}
@media (max-width: 990px) {
  .cid-sNBUcb6oFJ .left-side {
    padding: 15px;
  }
}
.cid-sNBUcb6oFJ img {
  width: 100%;
  transition: all 2s;
}
.cid-sNBUcb6oFJ img:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sNBUdthMYM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBUdthMYM .font {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sNBUdthMYM .wrap {
  position: relative;
}
.cid-sNBUdthMYM .image-wrapper {
  height: 100%;
  position: relative;
}
.cid-sNBUdthMYM .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sNBUdthMYM .wrapper-title {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.cid-sNBUdthMYM a {
  font-family: "Cormorant Garamond";
}
.cid-sNBUdthMYM .mbr-text {
  text-align: center;
}
.cid-sNBUdthMYM .mbr-section-title {
  text-align: center;
}
.cid-sOfPufoQ5M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sOfPufoQ5M .item-img {
  height: 300px;
}
.cid-sOfPufoQ5M .item-img img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-sOfPufoQ5M .item-img {
    height: 140px;
  }
}
.cid-sOfPufoQ5M .nav-tabs .nav-item.open .nav-link:focus,
.cid-sOfPufoQ5M .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sOfPufoQ5M .mbr-text,
.cid-sOfPufoQ5M .mbr-section-title {
  color: #C0BCB7;
}
.cid-sOfPufoQ5M .mbr-title {
  font-family: 'Josefin Sans';
  color: #ba9b67;
}
.cid-sOfPufoQ5M .tab-pane {
  padding-top: 1.5rem;
}
.cid-sOfPufoQ5M .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-sOfPufoQ5M .nav-item {
  margin-bottom: -1px;
  width: fit-content;
}
.cid-sOfPufoQ5M .nav-tabs {
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-flex-wrap: wrap;
  text-align: center;
  flex-wrap: wrap;
  border-radius: 0;
  border-bottom: 1px solid #41392e;
  color: #495057;
  background-color: transparent;
}
.cid-sOfPufoQ5M .nav-tabs .nav-item {
  padding-right: 3.3rem;
}
.cid-sOfPufoQ5M .nav-link {
  font-family: 'Josefin Sans';
  border-bottom: 1px solid transparent;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1.5rem;
  opasity: 1;
  font-size: 1rem;
}
.cid-sOfPufoQ5M .nav-link.active {
  border-color: transparent;
}
.cid-sOfPufoQ5M .nav-tabs .nav-link {
  border-radius: 0px !important;
  font-style: normal;
  transition: all 0.3s;
}
.cid-sOfPufoQ5M .nav-tabs .nav-link:hover {
  cursor: pointer;
  border-color: transparent;
  border-bottom: 1px solid #d4ad6a;
  color: #ffffff;
}
.cid-sOfPufoQ5M .nav-tabs .nav-link.active {
  color: #ffffff;
  border-bottom: 1px solid #d4ad6a;
  font-style: normal;
  background-color: transparent;
}
@media (max-width: 767px) {
  .cid-sOfPufoQ5M .nav-tabs {
    flex-direction: column;
    border-color: transparent;
  }
  .cid-sOfPufoQ5M .nav-item {
    margin-bottom: 1rem;
  }
}
.cid-sOfPufoQ5M .oldcost {
  text-decoration: line-through;
  color: #9a948d;
  font-size: 19.2px;
}
.cid-sOfPufoQ5M a {
  font-family: 'Cormorant Garamond';
}
.cid-sOfPufoQ5M .item-title {
  color: #ddc499;
}
.cid-sOfPufoQ5M .mbr-text {
  color: #c0bcb7;
}
.cid-sOfPufoQ5M .wrap {
  background-color: #121212;
  padding: 2rem 1rem;
}
.cid-sOfPufoQ5M .mbr-tab-subtitle {
  font-family: 'Cormorant Garamond';
  color: #C0BCB7;
  font-style: italic;
}
.cid-sOfPufoQ5M .mbr-tab-text {
  color: #C0BCB7;
  font-family: 'EB Garamond';
}
.cid-sNBUgtACAg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBUgtACAg .mbr-iconfont {
  font-size: 4rem;
  color: #ba9b67;
}
.cid-sNBUgtACAg .mbr-section-title {
  color: #ffffff;
}
.cid-sNBUgtACAg .mbr-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sNBUgtACAg .card-text {
  position: relative;
}
.cid-sNBUgtACAg .mbr-content-title {
  min-width: 140px;
  color: #c0bcb7;
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  font-family: 'Josefin Sans';
}
.cid-sNBUgtACAg .count {
  color: #262221;
  font-size: 110px;
}
.cid-sOfPz2xo3J {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sOfPz2xo3J .wrapper {
    padding: 0 6rem;
  }
}
.cid-sOfPz2xo3J .item-img {
  height: 500px;
  position: relative;
}
.cid-sOfPz2xo3J .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sOfPz2xo3J .title-block {
  top: 50%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sOfPz2xo3J .item-img:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-sOfPz2xo3J .item-img:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.2;
}
.cid-sOfPz2xo3J .new {
  transform: rotate(-90deg);
  position: absolute;
  padding: 0.5rem 2rem;
  top: 27px;
  right: -10px;
  background-color: #000000;
  color: #ba9b67;
}
.cid-sOfPz2xo3J img,
.cid-sOfPz2xo3J .item-img {
  transition: all 0.7s;
  width: 100%;
}
.cid-sOfPz2xo3J .item:focus,
.cid-sOfPz2xo3J span:focus {
  outline: none;
}
.cid-sOfPz2xo3J .item {
  cursor: pointer;
  padding-bottom: 32px;
}
.cid-sOfPz2xo3J .item-wrapper {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sOfPz2xo3J .item-title {
  font-family: "Cormorant Garamond";
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}
.cid-sOfPz2xo3J .mbr-text {
  font-family: "Cormorant Garamond";
}
.cid-sOfPz2xo3J .item-content {
  text-align: center;
}
@media (max-width: 690px) {
  .cid-sOfPz2xo3J .item {
    padding-bottom: 20px;
  }
}
.cid-sOfPz2xo3J .mbr-section-subtitle {
  color: #9a948d;
  font-family: "EB Garamond";
}
.cid-sOfPz2xo3J .price,
.cid-sOfPz2xo3J .text {
  font-family: "Josefin Sans";
}
.cid-sOfPz2xo3J .text,
.cid-sOfPz2xo3J .link {
  color: #ba9b67;
}
.cid-sOfPz2xo3J .price {
  color: #9a948d;
}
.cid-sNBUiV3Wi7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBUiV3Wi7 .mbr-section-title,
.cid-sNBUiV3Wi7 .mbr-section-subtitle {
  text-align: center;
}
.cid-sNBUiV3Wi7 .card {
  border-radius: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #41392e;
}
@media (min-width: 992px) {
  .cid-sNBUiV3Wi7 .right {
    padding-right: 71px;
  }
  .cid-sNBUiV3Wi7 .left {
    padding-left: 71px;
  }
}
.cid-sNBUiV3Wi7 .card-title {
  font-family: 'Cormorant Garamond';
  letter-spacing: .035em;
}
.cid-sNBUiV3Wi7 .mbr-section-subtitle,
.cid-sNBUiV3Wi7 .mbr-text {
  font-family: "EB Garamond";
  color: #9A948D;
}
.cid-sNBUiV3Wi7 .cost {
  font-family: "Josefin Sans";
  text-align: right;
}
.cid-sNBUkcxCl9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #000000;
}
.cid-sNBUkcxCl9 .plan {
  position: relative;
  word-break: break-word;
  border: 1px solid #41392e;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  padding: 80px 90px;
}
.cid-sNBUkcxCl9 .plan1 {
  position: relative;
  word-break: break-word;
  border: 1px solid #41392e;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  padding: 101px 100px;
}
.cid-sNBUkcxCl9 .plan::after {
  content: "";
  left: 2%;
  position: absolute;
  width: 96%;
  height: 104%;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  background: #0b0a08;
}
.cid-sNBUkcxCl9 .plan1::after {
  content: "";
  left: 2%;
  position: absolute;
  width: 96%;
  height: 104%;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  background: #171410;
}
@media (max-width: 1400px) {
  .cid-sNBUkcxCl9 .plan {
    padding: 4rem;
  }
  .cid-sNBUkcxCl9 .plan1 {
    padding: 5rem 4rem;
  }
}
@media (max-width: 768px) {
  .cid-sNBUkcxCl9 .plan,
  .cid-sNBUkcxCl9 .plan1 {
    padding: 1rem 4.5rem;
  }
}
@media (max-width: 991px) {
  .cid-sNBUkcxCl9 .plan,
  .cid-sNBUkcxCl9 .plan1 {
    margin-bottom: 2rem;
  }
}
.cid-sNBUkcxCl9 .mbr-section-title {
  font-size: 61px;
  color: #ffffff;
  line-height: 1.1;
}
.cid-sNBUkcxCl9 .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sNBUkcxCl9 .first-title {
  font-style: italic;
  color: #9a948d;
  font-family: 'Cormorant Garamond';
}
.cid-sNBUkcxCl9 .two-title {
  font-style: italic;
  color: #ddc499;
  font-family: 'Cormorant Garamond';
}
.cid-sNBUkcxCl9 .first-subtitle {
  color: #c0bcb7;
  font-family: "EB Garamond";
}
.cid-sNBUkcxCl9 .big {
  font-size: 70px;
}
.cid-sNBUkcxCl9 .plan-title {
  color: #ffffff;
}
.cid-sNBUkcxCl9 .mbr-text {
  font-family: 'Cormorant Garamond';
}
.cid-sNBUlzzYkF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBUlzzYkF .mbr-section-title,
.cid-sNBUlzzYkF .mbr-section-subtitle {
  text-align: center;
}
.cid-sNBUlzzYkF .mbr-section-subtitle {
  margin-bottom: 60px;
}
.cid-sNBUlzzYkF .card {
  border-radius: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #41392e;
}
.cid-sNBUlzzYkF .reverse {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sNBUlzzYkF .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sNBUlzzYkF .reverse {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-sNBUlzzYkF .right {
    padding-right: 91px;
  }
  .cid-sNBUlzzYkF .left {
    padding-left: 91px;
  }
  .cid-sNBUlzzYkF .wrapper {
    padding: 0 98px;
  }
  .cid-sNBUlzzYkF .reverse {
    margin-top: 80px;
  }
}
@media (min-width: 1400px) {
  .cid-sNBUlzzYkF .right {
    padding-left: 145px;
  }
  .cid-sNBUlzzYkF .left {
    padding-right: 145px;
  }
}
.cid-sNBUlzzYkF .card-title {
  font-family: 'Cormorant Garamond';
  letter-spacing: .035em;
}
.cid-sNBUlzzYkF .mbr-section-subtitle,
.cid-sNBUlzzYkF .mbr-text {
  font-family: "EB Garamond";
  color: #9A948D;
}
.cid-sNBUlzzYkF .cost {
  font-family: "Josefin Sans";
  text-align: right;
}
.cid-sNBTa6IPtN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-sNBTa6IPtN .text-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 1400px) {
  .cid-sNBTa6IPtN .wrapper {
    padding: 0 6rem;
  }
}
.cid-sNBTa6IPtN .mbr-text {
  color: #9a948d;
  font-family: "EB Garamond";
}
.cid-sNBTa6IPtN .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  color: #c0bcb7;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBTa6IPtN .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sNBTa6IPtN .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTa6IPtN .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTa6IPtN .btn:hover .effectHover::before {
  border-top: 1px solid #ba9b67;
  border-left: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTa6IPtN .btn:hover .effectHover::after {
  border-bottom: 1px solid #ba9b67;
  border-right: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
@media (min-width: 992px) {
  .cid-sNBTa6IPtN .right {
    padding-right: 60px;
  }
}
.cid-sNBTbDD5OB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTbDD5OB .mbr-section-title {
  font-family: 'EB Garamond';
  color: #ba9b67;
  font-style: italic;
  font-size: 22px;
}
.cid-sNBTbDD5OB .mbr-text {
  font-family: 'EB Garamond';
  color: #c0bcb7;
}
.cid-sNBTbDD5OB .mbr-iconfont {
  margin: 0 .5rem;
}
.cid-sNBTbDD5OB .item-img {
  height: 420px;
}
.cid-sNBTbDD5OB .item-img img {
  object-fit: cover;
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sNBTbDD5OB .item {
    margin-bottom: 3rem;
  }
}
@media (min-width: 769px) {
  .cid-sNBTbDD5OB .wrap-content {
    display: flex;
    justify-content: flex-end;
  }
  .cid-sNBTbDD5OB .wrap-content {
    justify-content: space-between;
  }
}
.cid-sNBTbDD5OB .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-sNBTbDD5OB .soc-item {
  font-family: 'Cormorant Garamond';
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0;
}
.cid-sNBTbDD5OB .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sNBTbDD5OB .soc-item::before,
.cid-sNBTbDD5OB .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sNBTbDD5OB .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sNBTbDD5OB .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sNBTbDD5OB .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sNBTbDD5OB .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sNBTbDD5OB .wrap-soc {
  cursor: pointer;
}
.cid-sNBTbDD5OB .wrap-soc span {
  color: #ffffff;
}
.cid-sNBTbDD5OB .wrap-soc:hover .text {
  opacity: 0;
}
.cid-sNBTbDD5OB .wrap-soc:hover .soc-item {
  opacity: 1;
}
.cid-sNBTbDD5OB .wrap-soc:hover .one {
  transition: opacity .4s;
}
.cid-sNBTbDD5OB .wrap-soc:hover .two {
  transition: opacity .8s;
}
.cid-sNBTbDD5OB .wrap-soc:hover .three {
  transition: opacity 1s;
}
.cid-sNBTbDD5OB .wrap-soc:hover .four {
  transition: opacity 1.4s;
}
.cid-sNBTbDD5OB .wrap-soc:hover .five {
  transition: opacity 1.8s;
}
.cid-sNBTcjtMCe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sNBTcjtMCe .wrapper {
    padding: 0 6rem;
  }
}
.cid-sNBTcjtMCe .card {
  background-image: url("https://mobirise.com/extensions/wellnessm5/assets/images/background2.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-sNBTcjtMCe .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-sNBTcjtMCe .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-sNBTcjtMCe .text-primary {
  color: #626262 !important;
}
.cid-sNBTcjtMCe .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
  font-family: 'Cormorant Garamond';
}
.cid-sNBTcjtMCe span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-sNBTcjtMCe span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTcjtMCe span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTcjtMCe .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTcjtMCe .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTdxTvfA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-sNBTdxTvfA .wrapper {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNBTdxTvfA .item {
    margin-bottom: 3rem;
  }
}
.cid-sNBTdxTvfA .item-wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sNBTdxTvfA .item-wrapper {
  height: 100%;
}
.cid-sNBTdxTvfA .item-img {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.cid-sNBTdxTvfA .item-img img {
  transition: all 1.5s;
  height: 100%;
  object-fit: cover;
}
.cid-sNBTdxTvfA .btn {
  font-family: 'Cormorant Garamond';
  min-width: 215px;
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-sNBTdxTvfA .effectHover {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #9A948D;
}
.cid-sNBTdxTvfA .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-left: 1px solid #9A948D;
  border-top: 1px solid #9A948D;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTdxTvfA .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #9A948D;
  border-right: 1px solid #9A948D;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTdxTvfA .btn:hover .effectHover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTdxTvfA .btn:hover .effectHover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTdxTvfA .text-wrapper {
  width: 85%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sOfPIx7Wcb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sOfPIx7Wcb .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sOfPIx7Wcb .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-sOfPIx7Wcb .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-sOfPIx7Wcb .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sOfPIx7Wcb .text {
  font-family: 'Josefin Sans';
  color: #BA9B67;
}
.cid-sOfPIx7Wcb .author {
  font-family: 'Cormorant Garamond';
  color: #9A948D;
  font-style: italic;
}
.cid-sOfPIx7Wcb .item-title {
  line-height: 1.161em;
}
@media (min-width: 992px) {
  .cid-sOfPIx7Wcb .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-sOfPM76wDI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-sOfPM76wDI .wrapper {
    position: relative;
    overflow: hidden;
    max-height: 585px;
    padding-left: 30px;
    padding-right: 20px;
  }
}
.cid-sOfPM76wDI img {
  object-fit: cover;
  max-height: 585px;
}
.cid-sOfPM76wDI .wrap {
  border: 1px solid #41392e;
}
@media (min-width: 992px) {
  .cid-sOfPM76wDI .wrap {
    height: 100%;
    padding: 65px 2rem 0px;
  }
}
@media (min-width: 1400px) {
  .cid-sOfPM76wDI .wrap {
    max-height: 100%;
    padding-top: 8rem;
  }
}
@media (min-width: 1800px) {
  .cid-sOfPM76wDI .wrap {
    max-height: 585px;
    padding: 160px 225px 0 130px;
  }
}
@media (max-width: 991px) {
  .cid-sOfPM76wDI .wrap {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
}
.cid-sOfPM76wDI .card-text {
  color: #767676;
}
.cid-sOfPM76wDI .main-sub-title {
  color: #ffffff;
}
.cid-sOfPM76wDI .main-text {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sOfPM76wDI .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfPM76wDI span {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sOfPM76wDI span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform-origin: top left;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sOfPM76wDI span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sOfPM76wDI .btn:hover span::before {
  border-top: 1px solid #ba9b67;
  border-left: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sOfPM76wDI .btn:hover span::after {
  border-bottom: 1px solid #ba9b67;
  border-right: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTaXeyN8 {
  padding-top: 0;
  padding-bottom: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #171410;
}
.cid-sNBTaXeyN8 .image-wrapper {
  position: relative;
  height: 100%;
}
.cid-sNBTaXeyN8 .mbr-section-title {
  color: #ffffff;
  text-align: left;
  width: 90%;
}
.cid-sNBTaXeyN8 .mbr-section-subtitle {
  margin: 0;
  color: #c0bcb7;
  text-align: left;
  width: 90%;
}
.cid-sNBTaXeyN8 .mbr-section-btn {
  width: 90%;
}
.cid-sNBTaXeyN8 img {
  object-fit: cover;
  height: 100%;
}
.cid-sNBTaXeyN8 section {
  position: relative;
}
.cid-sNBTaXeyN8 .wrap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 60px;
}
@media (max-width: 991px) {
  .cid-sNBTaXeyN8 .wrap {
    justify-content: center;
    padding: 1rem;
  }
  .cid-sNBTaXeyN8 .mbr-section-subtitle,
  .cid-sNBTaXeyN8 .mbr-section-btn,
  .cid-sNBTaXeyN8 .mbr-section-title {
    width: 100%;
    padding: 0;
  }
}
.cid-sNBTaXeyN8 .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.cid-sNBTaXeyN8 .btn {
  font-family: "Cormorant Garamond";
  padding: 0.8rem 4rem;
  position: relative;
  color: #c0bcb7;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBTaXeyN8 .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sNBTaXeyN8 .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTaXeyN8 .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTaXeyN8 .btn:hover .effectHover::before {
  border-top: 1px solid #ba9b67;
  border-left: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTaXeyN8 .btn:hover .effectHover::after {
  border-bottom: 1px solid #ba9b67;
  border-right: 1px solid #ba9b67;
  transform: scale3d(1, 1, 1);
}
.cid-sOfPWV7p1i {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sOfPWV7p1i img {
  width: 100%;
  object-fit: cover;
  max-height: 800px;
}
.cid-sOfPWV7p1i .image-wrapper {
  max-height: 800px;
  overflow: hidden;
}
.cid-sOfPWV7p1i .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfPWV7p1i .soc-item {
  font-family: 'Cormorant Garamond';
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfPWV7p1i .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sOfPWV7p1i .soc-item::before,
.cid-sOfPWV7p1i .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sOfPWV7p1i .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfPWV7p1i .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sOfPWV7p1i .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfPWV7p1i .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfPWV7p1i .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-sOfPWV7p1i .mbr-text {
  font-family: 'Josefin Sans';
  color: #ffffff;
}
.cid-sOfPWV7p1i .text {
  color: #ddc499;
}
.cid-sOfPWV7p1i .one {
  color: #c0bcb7;
  font-family: 'EB Garamond';
  font-style: italic;
}
@media (max-width: 768px) {
  .cid-sOfPWV7p1i .info {
    margin-top: 2rem;
  }
}
.cid-sOfPYK68eb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sOfPYK68eb img {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
}
.cid-sOfPYK68eb .image-wrapper {
  max-height: 800px;
  overflow: hidden;
}
.cid-sOfPYK68eb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfPYK68eb .soc-item {
  font-family: "Cormorant Garamond";
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sOfPYK68eb .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-sOfPYK68eb .soc-item::before,
.cid-sOfPYK68eb .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-sOfPYK68eb .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sOfPYK68eb .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-sOfPYK68eb .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sOfPYK68eb .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sOfPYK68eb .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-sOfPYK68eb .mbr-text {
  font-family: "Josefin Sans";
}
.cid-sOfPYK68eb .text {
  color: #ddc499;
}
.cid-sOfPYK68eb .one {
  color: #c0bcb7;
  font-family: "EB Garamond";
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-sOfPYK68eb .info {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOfPYK68eb .right {
    padding-right: 32px;
  }
  .cid-sOfPYK68eb .left {
    padding-left: 32px;
  }
}
.cid-sNBTkNSTC7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTkNSTC7 .lin {
  font-style: italic;
}
.cid-sNBTkNSTC7 .mbr-iconfont {
  font-size: 40px;
  color: #ffffff;
}
.cid-sNBTlKFu5z {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sNBTlKFu5z .wrapper {
  text-align: end;
}
.cid-sNBTlKFu5z .mbr-section-title {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sNBTlKFu5z .row {
    text-align: center;
  }
  .cid-sNBTlKFu5z .wrapper {
    text-align: center;
    margin-top: 2rem;
  }
  .cid-sNBTlKFu5z .mbr-section-title {
    text-align: center;
  }
}
.cid-sNBTlKFu5z .btn {
  font-family: 'Cormorant Garamond';
  padding: .8rem 4rem;
  position: relative;
  color: #C0BCB7;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-sNBTlKFu5z .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-sNBTlKFu5z .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTlKFu5z .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-sNBTlKFu5z .btn:hover .effectHover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBTlKFu5z .btn:hover .effectHover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sMzDgKPR0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-sMzDgKPR0q .media-container-row .mbr-text {
  color: #9a948d;
}
.cid-sOfMM7uz6R {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
@media (min-width: 1400px) {
  .cid-sOfMM7uz6R .navbar-brand {
    margin-left: 6rem;
  }
}
.cid-sOfMM7uz6R nav.navbar {
  position: fixed;
}
@media (min-width: 992px) {
  .cid-sOfMM7uz6R .container,
  .cid-sOfMM7uz6R .container-fluid {
    flex-wrap: initial;
  }
  .cid-sOfMM7uz6R .nav-link:hover,
  .cid-sOfMM7uz6R .nav-link:focus {
    border-bottom: 1px solid #ffffff;
  }
}
.cid-sOfMM7uz6R .navbar-nav {
  margin: auto;
}
.cid-sOfMM7uz6R .dropdown-item {
  color: #ffffff !important;
}
.cid-sOfMM7uz6R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOfMM7uz6R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOfMM7uz6R .navbar-short,
.cid-sOfMM7uz6R .opened {
  background: #000000 !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sOfMM7uz6R .navbar-short .nav-link,
.cid-sOfMM7uz6R .opened .nav-link,
.cid-sOfMM7uz6R .navbar-short .navbar-caption,
.cid-sOfMM7uz6R .opened .navbar-caption,
.cid-sOfMM7uz6R .navbar-short .mbr-iconfont,
.cid-sOfMM7uz6R .opened .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sOfMM7uz6R .navbar-short .hamburger span,
.cid-sOfMM7uz6R .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-sOfMM7uz6R .nav-link {
  font-family: "Josefin Sans";
  transition: all 0.3s;
  position: relative;
  border-bottom: 1px solid transparent;
}
.cid-sOfMM7uz6R .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-sOfMM7uz6R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-sOfMM7uz6R .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 991px) {
  .cid-sOfMM7uz6R .dropdown-menu {
    z-index: 9999;
    margin-top: 28px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-sOfMM7uz6R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOfMM7uz6R .container {
  display: flex;
  margin: auto;
}
.cid-sOfMM7uz6R .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOfMM7uz6R .dropdown-menu,
.cid-sOfMM7uz6R .navbar.opened {
  background: #000000 !important;
}
.cid-sOfMM7uz6R .nav-item:focus,
.cid-sOfMM7uz6R .nav-link:focus {
  outline: none;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOfMM7uz6R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOfMM7uz6R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOfMM7uz6R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOfMM7uz6R .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sOfMM7uz6R .navbar.opened {
  transition: all 0.3s;
}
.cid-sOfMM7uz6R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOfMM7uz6R .navbar .navbar-logo img {
  width: auto;
}
.cid-sOfMM7uz6R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOfMM7uz6R .navbar.collapsed {
  justify-content: center;
}
.cid-sOfMM7uz6R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOfMM7uz6R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sOfMM7uz6R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOfMM7uz6R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOfMM7uz6R .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-sOfMM7uz6R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOfMM7uz6R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOfMM7uz6R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOfMM7uz6R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOfMM7uz6R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOfMM7uz6R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOfMM7uz6R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOfMM7uz6R .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-sOfMM7uz6R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOfMM7uz6R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
  }
  .cid-sOfMM7uz6R .navbar .navbar-brand {
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOfMM7uz6R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOfMM7uz6R .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
}
.cid-sOfMM7uz6R .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOfMM7uz6R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOfMM7uz6R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOfMM7uz6R .navbar-brand {
  min-height: 110px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sOfMM7uz6R .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-family: "EB Garamond";
  font-weight: 400;
}
.cid-sOfMM7uz6R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOfMM7uz6R .dropdown-item.active,
.cid-sOfMM7uz6R .dropdown-item:active {
  background-color: transparent;
}
.cid-sOfMM7uz6R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOfMM7uz6R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOfMM7uz6R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOfMM7uz6R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sOfMM7uz6R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOfMM7uz6R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOfMM7uz6R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOfMM7uz6R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOfMM7uz6R button.navbar-toggler {
  order: 0;
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfMM7uz6R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOfMM7uz6R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfMM7uz6R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOfMM7uz6R a.nav-link {
  display: flex;
  align-items: center;
}
.cid-sOfMM7uz6R .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-sOfMM7uz6R .navbar {
    height: 70px;
  }
  .cid-sOfMM7uz6R .navbar.opened {
    height: auto;
  }
  .cid-sOfMM7uz6R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
