body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (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: #bc7f50 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #011eff !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #bc7f50 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bc7f50 !important;
  border-color: #bc7f50 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #835532 !important;
  border-color: #835532 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #835532 !important;
  border-color: #835532 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #011eff !important;
  border-color: #011eff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0013a9 !important;
  border-color: #0013a9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0013a9 !important;
  border-color: #0013a9 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bc7f50 !important;
  border-color: #bc7f50 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #835532 !important;
  border-color: #835532 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #835532 !important;
  border-color: #835532 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bc7f50;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #835532 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bc7f50 !important;
  border-color: #bc7f50 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #011eff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0013a9 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #011eff !important;
  border-color: #011eff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bc7f50;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #835532 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bc7f50 !important;
  border-color: #bc7f50 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #bc7f50 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #011eff !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #bc7f50 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #784e2e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00129a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #784e2e !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bc7f50;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #011eff;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #bc7f50;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bc7f50;
  border-color: #bc7f50;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bc7f50;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dfc2ac;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cdd3ff;
}
.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: #dfc2ac;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bc7f50 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #bc7f50;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bc7f50;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bc7f50;
}
.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: #bc7f50;
  border-bottom-color: #bc7f50;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #bc7f50 !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: #ff6666 !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='%23bc7f50' %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-t6hTe7VPHd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6hTe7VPHd nav.navbar {
  position: fixed;
}
.cid-t6hTe7VPHd .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6hTe7VPHd .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-t6hTe7VPHd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6hTe7VPHd .nav-link:hover,
.cid-t6hTe7VPHd .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6hTe7VPHd .nav-item {
    position: relative;
  }
}
.cid-t6hTe7VPHd .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6hTe7VPHd .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6hTe7VPHd .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6hTe7VPHd .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6hTe7VPHd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6hTe7VPHd .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.show,
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6hTe7VPHd .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar .navbar-collapse.show,
  .cid-t6hTe7VPHd .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6hTe7VPHd .navbar .navbar-collapse.show .brand-container,
  .cid-t6hTe7VPHd .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6hTe7VPHd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6hTe7VPHd .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-t6hTe7VPHd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6hTe7VPHd .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6hTe7VPHd .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6hTe7VPHd .navbar .right-menu,
  .cid-t6hTe7VPHd .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6hTe7VPHd .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6hTe7VPHd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6hTe7VPHd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6hTe7VPHd .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6hTe7VPHd .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6hTe7VPHd .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6hTe7VPHd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6hTe7VPHd .dropdown-item.active,
.cid-t6hTe7VPHd .dropdown-item:active {
  background-color: transparent;
}
.cid-t6hTe7VPHd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6hTe7VPHd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6hTe7VPHd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6hTe7VPHd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6hTe7VPHd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6hTe7VPHd ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6hTe7VPHd .navbar-buttons {
  margin-left: auto;
}
.cid-t6hTe7VPHd button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler:hover {
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler:active {
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6hTe7VPHd .navbar-dropdown {
  position: fixed;
}
.cid-t6hTe7VPHd a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6hTe7VPHd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6hTe7VPHd .right-menu,
.cid-t6hTe7VPHd .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6hTe7VPHd .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6hTe7VPHd .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6hTe7VPHd .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .brand-container {
    padding: 0;
  }
}
.cid-t6hTe7VPHd .card-wrapper {
  z-index: 3;
}
.cid-t6hTe7VPHd .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6hTe7VPHd .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6hTe7VPHd .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6hTe7VPHd .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6hTe7VPHd .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6hTe7VPHd .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6hTe7VPHd .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6hTe7VPHd .navbar-caption {
  color: #ffffff;
}
.cid-t6hTe7VPHd .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6hTe7VPHd .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6hTe7VPHd a:hover .line-animation,
.cid-t6hTe7VPHd a:focus .line-animation {
  opacity: 1;
}
.cid-t6hTe7VPHd .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6hTe7VPHd .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6hTe7VPHd .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6i0uhqomu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t6i0uhqomu .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-t6i0uhqomu .modal-body .close {
  background: #1b1b1b;
}
.cid-t6i0uhqomu .modal-body .close span {
  font-style: normal;
}
.cid-t6i0uhqomu .carousel-inner > .active,
.cid-t6i0uhqomu .carousel-inner > .next,
.cid-t6i0uhqomu .carousel-inner > .prev {
  display: flex;
}
.cid-t6i0uhqomu .carousel-control .icon-next,
.cid-t6i0uhqomu .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t6i0uhqomu .carousel-control:hover {
  background: #bc7f50;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t6i0uhqomu .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t6i0uhqomu .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t6i0uhqomu .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t6i0uhqomu .boxed-slider > div {
  position: relative;
}
.cid-t6i0uhqomu .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-t6i0uhqomu .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t6i0uhqomu .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6i0uhqomu .mbr-table-cell {
  padding: 0;
}
.cid-t6i0uhqomu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t6i0uhqomu .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6i0uhqomu .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-t6i0uhqomu .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t6i0uhqomu .carousel-item.active.right,
.cid-t6i0uhqomu .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6i0uhqomu .carousel-item.active.left,
.cid-t6i0uhqomu .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6i0uhqomu .carousel-item.active,
.cid-t6i0uhqomu .carousel-item.next.left,
.cid-t6i0uhqomu .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t6i0uhqomu .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-t6i0uhqomu .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-t6i0uhqomu .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-t6i0uhqomu .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6i0uhqomu .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t6i0uhqomu .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #bc7f50;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6i0uhqomu .mbr-slider .carousel-indicators li.active,
.cid-t6i0uhqomu .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6i0uhqomu .mbr-slider .carousel-indicators li::after,
.cid-t6i0uhqomu .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t6i0uhqomu .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t6i0uhqomu .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t6i0uhqomu .mbr-slider > .container img {
  width: 100%;
}
.cid-t6i0uhqomu .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6i0uhqomu .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t6i0uhqomu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6i0uhqomu .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6i0uhqomu .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t6i0uhqomu .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t6i0uhqomu .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t6i0uhqomu .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-t6i0uhqomu .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t6i0uhqomu .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t6i0uhqomu .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t6i0uhqomu .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t6i0uhqomu .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t6i0uhqomu .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-t6i0uhqomu .carousel-inner {
  height: 100%;
}
.cid-t6i0uhqomu .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-t6i0uhqomu .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-t6i0uhqomu .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-t6i0uhqomu .content-slider-wrap {
  width: 100%;
}
.cid-t6i0uhqomu H2 {
  color: #ffffff;
}
.cid-ta9okJ4HhV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t6czdfxkBk {
  background-image: url("../../../assets/images/359a7907.jpeg");
}
.cid-t6czdfxkBk .column-content {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-t6czdfxkBk .text-content .btn-bgr {
  z-index: 0;
}
.cid-t6czdfxkBk .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-t6czdfxkBk .container-full-width {
  position: relative;
}
.cid-t6czdfxkBk .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-t6czdfxkBk .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-t6czdfxkBk .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-t6czdfxkBk .text-content {
    width: 540px;
  }
  .cid-t6czdfxkBk .column-content {
    width: 100%;
  }
  .cid-t6czdfxkBk .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-t6czdfxkBk .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-t6czdfxkBk .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-t6czdfxkBk .column-content {
    width: 50%;
  }
  .cid-t6czdfxkBk .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-t6czdfxkBk .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t6czdfxkBk .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-t6czdfxkBk .column-content {
    height: 33rem;
  }
}
.cid-t6czdfxkBk H1 {
  color: #bc7f50;
}
.cid-ta9oNTvdFh {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6huLppV4H {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
  background: linear-gradient(180deg, #000000, #bc7f50);
  background: linear-gradient(90deg, #000000, #bc7f50) !important;
}
.cid-t6huLppV4H .row {
  flex-direction: row-reverse;
}
.cid-t6huLppV4H .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-t6huLppV4H .row {
    padding-bottom: 40px;
  }
}
.cid-t6huLppV4H .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-t6huLppV4H .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-t6huLppV4H .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-t6huLppV4H .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-t6huLppV4H .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-t6huLppV4H .text-container {
    text-align: center!important;
  }
}
.cid-t6huLppV4H .mbr-section-title {
  color: #ffffff;
}
.cid-t6huLppV4H .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-t6huLppV4H .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-t6huLppV4H .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6huLppV4H .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6huLppV4H .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-t6huLppV4H .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-t6huLppV4H .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-t6huLppV4H .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-t6huLppV4H .col-video .mbr-media img {
  height: 480px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-t6huLppV4H .col-video .mbr-media img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6huLppV4H .col-video .mbr-media img {
    height: auto;
  }
}
.cid-t6huLppV4H .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-t6huLppV4H .mbr-media {
  position: relative;
}
.cid-t6huLppV4H .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t6huLppV4H .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-t6huLppV4H .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-t6huLppV4H .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6huLppV4H .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6huLppV4H .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6huLppV4H .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6huLppV4H .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6huLppV4H .mbr-section-subtitle,
.cid-t6huLppV4H .mbr-section-btn {
  color: #ffffff;
}
.cid-t6ihFNqm4t {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-t6ihFNqm4t .wrapper {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t6ihFNqm4t .item {
    margin-bottom: 3rem;
  }
}
.cid-t6ihFNqm4t .item-wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-t6ihFNqm4t .item-wrapper {
  height: 100%;
}
.cid-t6ihFNqm4t .item-img {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.cid-t6ihFNqm4t .item-img img {
  transition: all 1.5s;
  height: 100%;
  object-fit: cover;
}
.cid-t6ihFNqm4t .btn {
  font-family: 'Cormorant Garamond';
  min-width: 215px;
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-t6ihFNqm4t .effectHover {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #9A948D;
}
.cid-t6ihFNqm4t .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-t6ihFNqm4t .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-t6ihFNqm4t .btn:hover .effectHover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-t6ihFNqm4t .btn:hover .effectHover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-t6ihFNqm4t .text-wrapper {
  width: 85%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-t6ihFNqm4t .mbr-title,
.cid-t6ihFNqm4t .mbr-section-btn {
  color: #ffffff;
}
.cid-t6ihz2it3Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6ihz2it3Z .item-wrapper {
  position: relative;
}
.cid-t6ihz2it3Z .features-image {
  padding-top: 40px;
}
.cid-t6ihz2it3Z .features-image:first-child {
  padding-top: 0px;
}
.cid-t6ihz2it3Z .features-image:nth-child(2) {
  padding-top: 0px;
}
.cid-t6ihz2it3Z .features-image:nth-child(3) {
  padding-top: 0px;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-t6ihz2it3Z .features-image {
    padding-top: 40px;
  }
  .cid-t6ihz2it3Z .features-image:first-child {
    padding-top: 0px;
  }
  .cid-t6ihz2it3Z .features-image:nth-child(2) {
    padding-top: 0px;
  }
  .cid-t6ihz2it3Z .features-image:nth-child(3) {
    padding-top: 40px;
  }
}
@media (max-width: 574px) {
  .cid-t6ihz2it3Z .features-image {
    padding-top: 40px;
  }
  .cid-t6ihz2it3Z .features-image:first-child {
    padding-top: 0px;
  }
  .cid-t6ihz2it3Z .features-image:nth-child(2) {
    padding-top: 40px;
  }
  .cid-t6ihz2it3Z .features-image:nth-child(3) {
    padding-top: 40px;
  }
}
.cid-t6ihz2it3Z .name {
  color: #bc7f50;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-t6ihz2it3Z .price {
  color: #111213;
  margin-top: 10px;
  font-size: 28px;
}
.cid-t6ihz2it3Z .mbr-section-subtitle {
  color: #111213;
  text-align: center;
  margin-bottom: 60px;
}
.cid-t6ihz2it3Z .mbr-section-title {
  text-align: center;
  color: #b18161;
  padding-bottom: 20px;
  margin: auto;
  text-transform: uppercase;
}
.cid-t6ihz2it3Z .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.cid-t6ihz2it3Z .item:hover .inner {
  transform: scale(1.1, 1.1);
}
.cid-t6ihz2it3Z .mbr-iconfont::before {
  font-size: 14px;
}
.cid-t6ihz2it3Z .text {
  margin-top: 27px;
  padding-left: 50px;
  position: relative;
}
.cid-t6ihz2it3Z .name:before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 35px;
  height: 2px;
  content: "";
  display: block;
  background-color: #000000;
}
.cid-t6ihz2it3Z .name:after {
  content: '•';
  font-family: fontello;
  display: inline-block;
  vertical-align: baseline;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  margin: 0 0.75em;
  color: #909190;
}
.cid-t6ihz2it3Z .name,
.cid-t6ihz2it3Z .name2 {
  width: auto;
  display: inline;
}
.cid-t6ihz2it3Z .name > a:hover {
  color: #ff6666 !important;
}
.cid-t6ihz2it3Z .name2 > a:hover {
  color: #ff6666 !important;
}
.cid-t6ihz2it3Z a {
  font-weight: 400 !important;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6hTe7VPHd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6hTe7VPHd nav.navbar {
  position: fixed;
}
.cid-t6hTe7VPHd .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6hTe7VPHd .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-t6hTe7VPHd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6hTe7VPHd .nav-link:hover,
.cid-t6hTe7VPHd .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6hTe7VPHd .nav-item {
    position: relative;
  }
}
.cid-t6hTe7VPHd .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6hTe7VPHd .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6hTe7VPHd .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6hTe7VPHd .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6hTe7VPHd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6hTe7VPHd .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.show,
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6hTe7VPHd .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar .navbar-collapse.show,
  .cid-t6hTe7VPHd .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6hTe7VPHd .navbar .navbar-collapse.show .brand-container,
  .cid-t6hTe7VPHd .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6hTe7VPHd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6hTe7VPHd .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-t6hTe7VPHd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6hTe7VPHd .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6hTe7VPHd .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6hTe7VPHd .navbar .right-menu,
  .cid-t6hTe7VPHd .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6hTe7VPHd .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6hTe7VPHd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6hTe7VPHd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6hTe7VPHd .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6hTe7VPHd .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6hTe7VPHd .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6hTe7VPHd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6hTe7VPHd .dropdown-item.active,
.cid-t6hTe7VPHd .dropdown-item:active {
  background-color: transparent;
}
.cid-t6hTe7VPHd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6hTe7VPHd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6hTe7VPHd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6hTe7VPHd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6hTe7VPHd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6hTe7VPHd ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6hTe7VPHd .navbar-buttons {
  margin-left: auto;
}
.cid-t6hTe7VPHd button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler:hover {
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler:active {
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6hTe7VPHd .navbar-dropdown {
  position: fixed;
}
.cid-t6hTe7VPHd a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6hTe7VPHd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6hTe7VPHd .right-menu,
.cid-t6hTe7VPHd .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6hTe7VPHd .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6hTe7VPHd .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6hTe7VPHd .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .brand-container {
    padding: 0;
  }
}
.cid-t6hTe7VPHd .card-wrapper {
  z-index: 3;
}
.cid-t6hTe7VPHd .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6hTe7VPHd .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6hTe7VPHd .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6hTe7VPHd .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6hTe7VPHd .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6hTe7VPHd .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6hTe7VPHd .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6hTe7VPHd .navbar-caption {
  color: #ffffff;
}
.cid-t6hTe7VPHd .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6hTe7VPHd .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6hTe7VPHd a:hover .line-animation,
.cid-t6hTe7VPHd a:focus .line-animation {
  opacity: 1;
}
.cid-t6hTe7VPHd .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6hTe7VPHd .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6hTe7VPHd .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6KtV0h6qm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t6KtV0h6qm img,
.cid-t6KtV0h6qm .item-img {
  width: 100%;
}
.cid-t6KtV0h6qm .item:focus,
.cid-t6KtV0h6qm span:focus {
  outline: none;
}
.cid-t6KtV0h6qm .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-t6KtV0h6qm .item-wrapper {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t6KtV0h6qm .item-wrapper .item-content {
    padding: 2rem 4rem 0;
  }
  .cid-t6KtV0h6qm .item-wrapper .mbr-text {
    margin-bottom: 3rem;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-footer {
    padding: 0 4rem 2rem;
    position: absolute;
    right: -2rem;
    top: 8rem;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-btn {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin: 0;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-btn span {
    transform: rotate(45deg);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
    transition: all 0.8s;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-btn:hover > span {
    transform: rotate(90deg);
  }
}
@media (min-width: 992px) and (min-width: 1200px) and (max-width: 1399px) {
  .cid-t6KtV0h6qm .item-wrapper .item-footer {
    top: 11.6rem;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .cid-t6KtV0h6qm .item-wrapper .item-footer {
    top: 15.2rem;
  }
}
@media (max-width: 991px) {
  .cid-t6KtV0h6qm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t6KtV0h6qm .item-wrapper .mbr-text {
    margin-bottom: 2rem;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
    position: absolute;
    right: -0.4rem;
    top: 7.9rem;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-btn span {
    transform: rotate(45deg) scale(0.6);
    margin-top: 0.2rem;
    margin-left: 0.2rem;
    transition: all 0.8s;
  }
  .cid-t6KtV0h6qm .item-wrapper .item-btn:hover > span {
    transform: scale(0.6) rotate(90deg);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-t6KtV0h6qm .item-wrapper .item-footer {
    position: static;
    margin-top: -2rem;
  }
}
@media (max-width: 600px) {
  .cid-t6KtV0h6qm .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-t6KtV0h6qm .mbr-text,
.cid-t6KtV0h6qm .mbr-section-btn {
  color: #ffffff;
}
.cid-t6KtV0h6qm .mbr-section-title {
  color: #bc7f50;
}
.cid-t6KtV0h6qm .item-title {
  color: #ffffff;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6hTe7VPHd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6hTe7VPHd nav.navbar {
  position: fixed;
}
.cid-t6hTe7VPHd .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6hTe7VPHd .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-t6hTe7VPHd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6hTe7VPHd .nav-link:hover,
.cid-t6hTe7VPHd .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6hTe7VPHd .nav-item {
    position: relative;
  }
}
.cid-t6hTe7VPHd .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6hTe7VPHd .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6hTe7VPHd .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6hTe7VPHd .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6hTe7VPHd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6hTe7VPHd .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.show,
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6hTe7VPHd .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6hTe7VPHd .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6hTe7VPHd .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6hTe7VPHd .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar .navbar-collapse.show,
  .cid-t6hTe7VPHd .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6hTe7VPHd .navbar .navbar-collapse.show .brand-container,
  .cid-t6hTe7VPHd .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6hTe7VPHd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6hTe7VPHd .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-t6hTe7VPHd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6hTe7VPHd .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6hTe7VPHd .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6hTe7VPHd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6hTe7VPHd .navbar .right-menu,
  .cid-t6hTe7VPHd .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6hTe7VPHd .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6hTe7VPHd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6hTe7VPHd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6hTe7VPHd .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6hTe7VPHd .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6hTe7VPHd .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6hTe7VPHd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6hTe7VPHd .dropdown-item.active,
.cid-t6hTe7VPHd .dropdown-item:active {
  background-color: transparent;
}
.cid-t6hTe7VPHd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6hTe7VPHd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6hTe7VPHd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6hTe7VPHd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6hTe7VPHd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6hTe7VPHd ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6hTe7VPHd .navbar-buttons {
  margin-left: auto;
}
.cid-t6hTe7VPHd button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler:hover {
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler:active {
  outline: none;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6hTe7VPHd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6hTe7VPHd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6hTe7VPHd .navbar-dropdown {
  position: fixed;
}
.cid-t6hTe7VPHd a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6hTe7VPHd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6hTe7VPHd .right-menu,
.cid-t6hTe7VPHd .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6hTe7VPHd .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6hTe7VPHd .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6hTe7VPHd .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6hTe7VPHd .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6hTe7VPHd .brand-container {
    padding: 0;
  }
}
.cid-t6hTe7VPHd .card-wrapper {
  z-index: 3;
}
.cid-t6hTe7VPHd .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6hTe7VPHd .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6hTe7VPHd .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6hTe7VPHd .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6hTe7VPHd .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6hTe7VPHd .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6hTe7VPHd .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6hTe7VPHd .navbar-caption {
  color: #ffffff;
}
.cid-t6hTe7VPHd .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6hTe7VPHd .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6hTe7VPHd a:hover .line-animation,
.cid-t6hTe7VPHd a:focus .line-animation {
  opacity: 1;
}
.cid-t6hTe7VPHd .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6hTe7VPHd .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6hTe7VPHd .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6KSHTehJD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t6KSHTehJD .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-t6KSHTehJD .modal-body .close {
  background: #1b1b1b;
}
.cid-t6KSHTehJD .modal-body .close span {
  font-style: normal;
}
.cid-t6KSHTehJD .carousel-inner > .active,
.cid-t6KSHTehJD .carousel-inner > .next,
.cid-t6KSHTehJD .carousel-inner > .prev {
  display: flex;
}
.cid-t6KSHTehJD .carousel-control .icon-next,
.cid-t6KSHTehJD .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t6KSHTehJD .carousel-control:hover {
  background: #bc7f50;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t6KSHTehJD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t6KSHTehJD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t6KSHTehJD .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t6KSHTehJD .boxed-slider > div {
  position: relative;
}
.cid-t6KSHTehJD .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-t6KSHTehJD .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t6KSHTehJD .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6KSHTehJD .mbr-table-cell {
  padding: 0;
}
.cid-t6KSHTehJD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t6KSHTehJD .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6KSHTehJD .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-t6KSHTehJD .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t6KSHTehJD .carousel-item.active.right,
.cid-t6KSHTehJD .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6KSHTehJD .carousel-item.active.left,
.cid-t6KSHTehJD .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6KSHTehJD .carousel-item.active,
.cid-t6KSHTehJD .carousel-item.next.left,
.cid-t6KSHTehJD .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t6KSHTehJD .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-t6KSHTehJD .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-t6KSHTehJD .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-t6KSHTehJD .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6KSHTehJD .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t6KSHTehJD .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #bc7f50;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6KSHTehJD .mbr-slider .carousel-indicators li.active,
.cid-t6KSHTehJD .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6KSHTehJD .mbr-slider .carousel-indicators li::after,
.cid-t6KSHTehJD .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t6KSHTehJD .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t6KSHTehJD .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t6KSHTehJD .mbr-slider > .container img {
  width: 100%;
}
.cid-t6KSHTehJD .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6KSHTehJD .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t6KSHTehJD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6KSHTehJD .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6KSHTehJD .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t6KSHTehJD .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t6KSHTehJD .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t6KSHTehJD .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-t6KSHTehJD .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t6KSHTehJD .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t6KSHTehJD .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t6KSHTehJD .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t6KSHTehJD .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t6KSHTehJD .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-t6KSHTehJD .carousel-inner {
  height: 100%;
}
.cid-t6KSHTehJD .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-t6KSHTehJD .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 470px;
  overflow: hidden;
}
.cid-t6KSHTehJD .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-t6KSHTehJD .content-slider-wrap {
  width: 100%;
}
.cid-t6KTtU9Tfo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t6KTtU9Tfo .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t6KTtU9Tfo .form-control,
.cid-t6KTtU9Tfo .field-input,
.cid-t6KTtU9Tfo textarea {
  background-color: #ebf2e9;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 0 !important;
  outline: none;
  border: none !important;
  border-bottom: 1px solid #bbbbbb !important;
}
.cid-t6KTtU9Tfo .form-control::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .field-input::-webkit-input-placeholder,
.cid-t6KTtU9Tfo textarea::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .form-control::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .field-input::-webkit-input-placeholder,
.cid-t6KTtU9Tfo textarea::-webkit-input-placeholder {
  color: #555555;
}
.cid-t6KTtU9Tfo .form-control:-moz-placeholder,
.cid-t6KTtU9Tfo .field-input:-moz-placeholder,
.cid-t6KTtU9Tfo textarea:-moz-placeholder,
.cid-t6KTtU9Tfo .form-control:-moz-placeholder,
.cid-t6KTtU9Tfo .field-input:-moz-placeholder,
.cid-t6KTtU9Tfo textarea:-moz-placeholder {
  color: #555555;
}
.cid-t6KTtU9Tfo .form-control:hover,
.cid-t6KTtU9Tfo .field-input:hover,
.cid-t6KTtU9Tfo textarea:hover,
.cid-t6KTtU9Tfo .form-control:focus,
.cid-t6KTtU9Tfo .field-input:focus,
.cid-t6KTtU9Tfo textarea:focus {
  background-color: #ebf2e9;
  border-color: #555555;
  color: #202020;
  box-shadow: none;
  outline: none;
}
.cid-t6KTtU9Tfo .form-control:hover::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .field-input:hover::-webkit-input-placeholder,
.cid-t6KTtU9Tfo textarea:hover::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .form-control:focus::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .field-input:focus::-webkit-input-placeholder,
.cid-t6KTtU9Tfo textarea:focus::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .form-control:hover::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .field-input:hover::-webkit-input-placeholder,
.cid-t6KTtU9Tfo textarea:hover::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .form-control:focus::-webkit-input-placeholder,
.cid-t6KTtU9Tfo .field-input:focus::-webkit-input-placeholder,
.cid-t6KTtU9Tfo textarea:focus::-webkit-input-placeholder {
  color: #202020;
}
.cid-t6KTtU9Tfo .form-control:hover:-moz-placeholder,
.cid-t6KTtU9Tfo .field-input:hover:-moz-placeholder,
.cid-t6KTtU9Tfo textarea:hover:-moz-placeholder,
.cid-t6KTtU9Tfo .form-control:focus:-moz-placeholder,
.cid-t6KTtU9Tfo .field-input:focus:-moz-placeholder,
.cid-t6KTtU9Tfo textarea:focus:-moz-placeholder,
.cid-t6KTtU9Tfo .form-control:hover:-moz-placeholder,
.cid-t6KTtU9Tfo .field-input:hover:-moz-placeholder,
.cid-t6KTtU9Tfo textarea:hover:-moz-placeholder,
.cid-t6KTtU9Tfo .form-control:focus:-moz-placeholder,
.cid-t6KTtU9Tfo .field-input:focus:-moz-placeholder,
.cid-t6KTtU9Tfo textarea:focus:-moz-placeholder {
  color: #202020;
}
.cid-t6KTtU9Tfo .jq-number__spin:hover,
.cid-t6KTtU9Tfo .jq-number__spin:focus {
  background-color: #ebf2e9;
  border-color: #555555;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-t6KTtU9Tfo .jq-number__spin {
  background-color: #ebf2e9;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t6KTtU9Tfo .jq-selectbox li,
.cid-t6KTtU9Tfo .jq-selectbox li {
  background-color: #ebf2e9;
  color: #000000;
}
.cid-t6KTtU9Tfo .jq-selectbox li:hover,
.cid-t6KTtU9Tfo .jq-selectbox li.selected {
  background-color: #ebf2e9;
  color: #000000;
}
.cid-t6KTtU9Tfo .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t6KTtU9Tfo .jq-number__spin.minus:hover:after,
.cid-t6KTtU9Tfo .jq-number__spin.plus:hover:after {
  border-top-color: #ebf2e9;
  border-bottom-color: #ebf2e9;
}
.cid-t6KTtU9Tfo .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t6KTtU9Tfo .jq-number__spin.minus:after,
.cid-t6KTtU9Tfo .jq-number__spin.plus:after {
  border-top-color: #ebf2e9;
  border-bottom-color: #ebf2e9;
}
.cid-t6KTtU9Tfo input::-webkit-clear-button {
  display: none;
}
.cid-t6KTtU9Tfo input::-webkit-inner-spin-button {
  display: none;
}
.cid-t6KTtU9Tfo input::-webkit-outer-spin-button {
  display: none;
}
.cid-t6KTtU9Tfo input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t6KTtU9Tfo .container {
  background-color: #bc7f50;
  padding: 8rem 2.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .cid-t6KTtU9Tfo .container {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t6KTtU9Tfo .container {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-t6KTtU9Tfo .btn-lg {
  border-radius: 0 !important;
  padding: 1.1875rem 3.25rem !important;
  margin-top: 17px;
  font-weight: 600;
  width: 100%;
}
.cid-t6KTtU9Tfo .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-t6KTtU9Tfo .form_title {
  margin: 25px 0;
  text-align: center;
}
.cid-t6KTtU9Tfo .mbr-text {
  margin-bottom: 37px;
}
.cid-t6KTtU9Tfo .shape {
  width: 135px;
  height: auto;
  position: absolute;
  left: 70px;
  bottom: -40px;
}
.cid-t6KTtU9Tfo .shape img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
.cid-t6KTtU9Tfo .dragArea {
  justify-content: center;
}
.cid-t6KTtU9Tfo .textGDPR.display-7 {
  font-size: 16px;
}
.cid-t6KTtU9Tfo .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 0;
}
.cid-t6KTtU9Tfo .form-control,
.cid-t6KTtU9Tfo .field-input,
.cid-t6KTtU9Tfo textarea {
  padding: 9px 10px;
  line-height: 25px;
  height: 48px;
}
.cid-t6KTtU9Tfo .form-check {
  padding-left: 2.5em !important;
}
.cid-t6KTtU9Tfo .form-check .display-7 {
  font-size: 16px !important;
}
.cid-t6KTtU9Tfo LABEL {
  color: #ffffff;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6LaVvEUd9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6LaVvEUd9 nav.navbar {
  position: fixed;
}
.cid-t6LaVvEUd9 .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6LaVvEUd9 .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-t6LaVvEUd9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6LaVvEUd9 .nav-link:hover,
.cid-t6LaVvEUd9 .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6LaVvEUd9 .nav-item {
    position: relative;
  }
}
.cid-t6LaVvEUd9 .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6LaVvEUd9 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6LaVvEUd9 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6LaVvEUd9 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6LaVvEUd9 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6LaVvEUd9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6LaVvEUd9 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6LaVvEUd9 .navbar.collapsed .navbar-collapse.show,
.cid-t6LaVvEUd9 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6LaVvEUd9 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6LaVvEUd9 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6LaVvEUd9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6LaVvEUd9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6LaVvEUd9 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6LaVvEUd9 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6LaVvEUd9 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6LaVvEUd9 .navbar .navbar-collapse.show,
  .cid-t6LaVvEUd9 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6LaVvEUd9 .navbar .navbar-collapse.show .brand-container,
  .cid-t6LaVvEUd9 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6LaVvEUd9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6LaVvEUd9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6LaVvEUd9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6LaVvEUd9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6LaVvEUd9 .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-t6LaVvEUd9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6LaVvEUd9 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6LaVvEUd9 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6LaVvEUd9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6LaVvEUd9 .navbar .right-menu,
  .cid-t6LaVvEUd9 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6LaVvEUd9 .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6LaVvEUd9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6LaVvEUd9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6LaVvEUd9 .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6LaVvEUd9 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6LaVvEUd9 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6LaVvEUd9 .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6LaVvEUd9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6LaVvEUd9 .dropdown-item.active,
.cid-t6LaVvEUd9 .dropdown-item:active {
  background-color: transparent;
}
.cid-t6LaVvEUd9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6LaVvEUd9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6LaVvEUd9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6LaVvEUd9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6LaVvEUd9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6LaVvEUd9 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6LaVvEUd9 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6LaVvEUd9 .navbar-buttons {
  margin-left: auto;
}
.cid-t6LaVvEUd9 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6LaVvEUd9 button.navbar-toggler:hover {
  outline: none;
}
.cid-t6LaVvEUd9 button.navbar-toggler:active {
  outline: none;
}
.cid-t6LaVvEUd9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6LaVvEUd9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6LaVvEUd9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6LaVvEUd9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6LaVvEUd9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6LaVvEUd9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6LaVvEUd9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6LaVvEUd9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6LaVvEUd9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6LaVvEUd9 .navbar-dropdown {
  position: fixed;
}
.cid-t6LaVvEUd9 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6LaVvEUd9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6LaVvEUd9 .right-menu,
.cid-t6LaVvEUd9 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6LaVvEUd9 .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6LaVvEUd9 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6LaVvEUd9 .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6LaVvEUd9 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6LaVvEUd9 .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6LaVvEUd9 .brand-container {
    padding: 0;
  }
}
.cid-t6LaVvEUd9 .card-wrapper {
  z-index: 3;
}
.cid-t6LaVvEUd9 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6LaVvEUd9 .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6LaVvEUd9 .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6LaVvEUd9 .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6LaVvEUd9 .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6LaVvEUd9 .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6LaVvEUd9 .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6LaVvEUd9 .navbar-caption {
  color: #ffffff;
}
.cid-t6LaVvEUd9 .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6LaVvEUd9 .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6LaVvEUd9 a:hover .line-animation,
.cid-t6LaVvEUd9 a:focus .line-animation {
  opacity: 1;
}
.cid-t6LaVvEUd9 .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6LaVvEUd9 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6LaVvEUd9 .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6LaVBV8Py {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t6LaVBV8Py .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-t6LaVBV8Py .modal-body .close {
  background: #1b1b1b;
}
.cid-t6LaVBV8Py .modal-body .close span {
  font-style: normal;
}
.cid-t6LaVBV8Py .carousel-inner > .active,
.cid-t6LaVBV8Py .carousel-inner > .next,
.cid-t6LaVBV8Py .carousel-inner > .prev {
  display: flex;
}
.cid-t6LaVBV8Py .carousel-control .icon-next,
.cid-t6LaVBV8Py .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t6LaVBV8Py .carousel-control:hover {
  background: #bc7f50;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t6LaVBV8Py .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t6LaVBV8Py .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t6LaVBV8Py .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t6LaVBV8Py .boxed-slider > div {
  position: relative;
}
.cid-t6LaVBV8Py .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-t6LaVBV8Py .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t6LaVBV8Py .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6LaVBV8Py .mbr-table-cell {
  padding: 0;
}
.cid-t6LaVBV8Py .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t6LaVBV8Py .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6LaVBV8Py .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-t6LaVBV8Py .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t6LaVBV8Py .carousel-item.active.right,
.cid-t6LaVBV8Py .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6LaVBV8Py .carousel-item.active.left,
.cid-t6LaVBV8Py .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6LaVBV8Py .carousel-item.active,
.cid-t6LaVBV8Py .carousel-item.next.left,
.cid-t6LaVBV8Py .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t6LaVBV8Py .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-t6LaVBV8Py .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-t6LaVBV8Py .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-t6LaVBV8Py .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6LaVBV8Py .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t6LaVBV8Py .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #bc7f50;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6LaVBV8Py .mbr-slider .carousel-indicators li.active,
.cid-t6LaVBV8Py .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6LaVBV8Py .mbr-slider .carousel-indicators li::after,
.cid-t6LaVBV8Py .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t6LaVBV8Py .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t6LaVBV8Py .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t6LaVBV8Py .mbr-slider > .container img {
  width: 100%;
}
.cid-t6LaVBV8Py .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6LaVBV8Py .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t6LaVBV8Py .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6LaVBV8Py .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6LaVBV8Py .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t6LaVBV8Py .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t6LaVBV8Py .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t6LaVBV8Py .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-t6LaVBV8Py .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t6LaVBV8Py .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t6LaVBV8Py .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t6LaVBV8Py .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t6LaVBV8Py .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t6LaVBV8Py .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-t6LaVBV8Py .carousel-inner {
  height: 100%;
}
.cid-t6LaVBV8Py .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-t6LaVBV8Py .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 470px;
  overflow: hidden;
}
.cid-t6LaVBV8Py .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-t6LaVBV8Py .content-slider-wrap {
  width: 100%;
}
.cid-t6LaVEQcaU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t6LaVEQcaU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t6LaVEQcaU .form-control,
.cid-t6LaVEQcaU .field-input,
.cid-t6LaVEQcaU textarea {
  background-color: #ebf2e9;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 0 !important;
  outline: none;
  border: none !important;
  border-bottom: 1px solid #bbbbbb !important;
}
.cid-t6LaVEQcaU .form-control::-webkit-input-placeholder,
.cid-t6LaVEQcaU .field-input::-webkit-input-placeholder,
.cid-t6LaVEQcaU textarea::-webkit-input-placeholder,
.cid-t6LaVEQcaU .form-control::-webkit-input-placeholder,
.cid-t6LaVEQcaU .field-input::-webkit-input-placeholder,
.cid-t6LaVEQcaU textarea::-webkit-input-placeholder {
  color: #555555;
}
.cid-t6LaVEQcaU .form-control:-moz-placeholder,
.cid-t6LaVEQcaU .field-input:-moz-placeholder,
.cid-t6LaVEQcaU textarea:-moz-placeholder,
.cid-t6LaVEQcaU .form-control:-moz-placeholder,
.cid-t6LaVEQcaU .field-input:-moz-placeholder,
.cid-t6LaVEQcaU textarea:-moz-placeholder {
  color: #555555;
}
.cid-t6LaVEQcaU .form-control:hover,
.cid-t6LaVEQcaU .field-input:hover,
.cid-t6LaVEQcaU textarea:hover,
.cid-t6LaVEQcaU .form-control:focus,
.cid-t6LaVEQcaU .field-input:focus,
.cid-t6LaVEQcaU textarea:focus {
  background-color: #ebf2e9;
  border-color: #555555;
  color: #202020;
  box-shadow: none;
  outline: none;
}
.cid-t6LaVEQcaU .form-control:hover::-webkit-input-placeholder,
.cid-t6LaVEQcaU .field-input:hover::-webkit-input-placeholder,
.cid-t6LaVEQcaU textarea:hover::-webkit-input-placeholder,
.cid-t6LaVEQcaU .form-control:focus::-webkit-input-placeholder,
.cid-t6LaVEQcaU .field-input:focus::-webkit-input-placeholder,
.cid-t6LaVEQcaU textarea:focus::-webkit-input-placeholder,
.cid-t6LaVEQcaU .form-control:hover::-webkit-input-placeholder,
.cid-t6LaVEQcaU .field-input:hover::-webkit-input-placeholder,
.cid-t6LaVEQcaU textarea:hover::-webkit-input-placeholder,
.cid-t6LaVEQcaU .form-control:focus::-webkit-input-placeholder,
.cid-t6LaVEQcaU .field-input:focus::-webkit-input-placeholder,
.cid-t6LaVEQcaU textarea:focus::-webkit-input-placeholder {
  color: #202020;
}
.cid-t6LaVEQcaU .form-control:hover:-moz-placeholder,
.cid-t6LaVEQcaU .field-input:hover:-moz-placeholder,
.cid-t6LaVEQcaU textarea:hover:-moz-placeholder,
.cid-t6LaVEQcaU .form-control:focus:-moz-placeholder,
.cid-t6LaVEQcaU .field-input:focus:-moz-placeholder,
.cid-t6LaVEQcaU textarea:focus:-moz-placeholder,
.cid-t6LaVEQcaU .form-control:hover:-moz-placeholder,
.cid-t6LaVEQcaU .field-input:hover:-moz-placeholder,
.cid-t6LaVEQcaU textarea:hover:-moz-placeholder,
.cid-t6LaVEQcaU .form-control:focus:-moz-placeholder,
.cid-t6LaVEQcaU .field-input:focus:-moz-placeholder,
.cid-t6LaVEQcaU textarea:focus:-moz-placeholder {
  color: #202020;
}
.cid-t6LaVEQcaU .jq-number__spin:hover,
.cid-t6LaVEQcaU .jq-number__spin:focus {
  background-color: #ebf2e9;
  border-color: #555555;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-t6LaVEQcaU .jq-number__spin {
  background-color: #ebf2e9;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t6LaVEQcaU .jq-selectbox li,
.cid-t6LaVEQcaU .jq-selectbox li {
  background-color: #ebf2e9;
  color: #000000;
}
.cid-t6LaVEQcaU .jq-selectbox li:hover,
.cid-t6LaVEQcaU .jq-selectbox li.selected {
  background-color: #ebf2e9;
  color: #000000;
}
.cid-t6LaVEQcaU .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t6LaVEQcaU .jq-number__spin.minus:hover:after,
.cid-t6LaVEQcaU .jq-number__spin.plus:hover:after {
  border-top-color: #ebf2e9;
  border-bottom-color: #ebf2e9;
}
.cid-t6LaVEQcaU .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t6LaVEQcaU .jq-number__spin.minus:after,
.cid-t6LaVEQcaU .jq-number__spin.plus:after {
  border-top-color: #ebf2e9;
  border-bottom-color: #ebf2e9;
}
.cid-t6LaVEQcaU input::-webkit-clear-button {
  display: none;
}
.cid-t6LaVEQcaU input::-webkit-inner-spin-button {
  display: none;
}
.cid-t6LaVEQcaU input::-webkit-outer-spin-button {
  display: none;
}
.cid-t6LaVEQcaU input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t6LaVEQcaU .container {
  background-color: #bc7f50;
  padding: 8rem 2.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .cid-t6LaVEQcaU .container {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t6LaVEQcaU .container {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-t6LaVEQcaU .btn-lg {
  border-radius: 0 !important;
  padding: 1.1875rem 3.25rem !important;
  margin-top: 17px;
  font-weight: 600;
  width: 100%;
}
.cid-t6LaVEQcaU .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-t6LaVEQcaU .form_title {
  margin: 25px 0;
  text-align: center;
}
.cid-t6LaVEQcaU .mbr-text {
  margin-bottom: 37px;
}
.cid-t6LaVEQcaU .shape {
  width: 135px;
  height: auto;
  position: absolute;
  left: 70px;
  bottom: -40px;
}
.cid-t6LaVEQcaU .shape img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
.cid-t6LaVEQcaU .dragArea {
  justify-content: center;
}
.cid-t6LaVEQcaU .textGDPR.display-7 {
  font-size: 16px;
}
.cid-t6LaVEQcaU .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 0;
}
.cid-t6LaVEQcaU .form-control,
.cid-t6LaVEQcaU .field-input,
.cid-t6LaVEQcaU textarea {
  padding: 9px 10px;
  line-height: 25px;
  height: 48px;
}
.cid-t6LaVEQcaU .form-check {
  padding-left: 2.5em !important;
}
.cid-t6LaVEQcaU .form-check .display-7 {
  font-size: 16px !important;
}
.cid-t6LaVEQcaU LABEL {
  color: #ffffff;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6Lf8OWWFn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6Lf8OWWFn nav.navbar {
  position: fixed;
}
.cid-t6Lf8OWWFn .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6Lf8OWWFn .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-t6Lf8OWWFn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6Lf8OWWFn .nav-link:hover,
.cid-t6Lf8OWWFn .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6Lf8OWWFn .nav-item {
    position: relative;
  }
}
.cid-t6Lf8OWWFn .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6Lf8OWWFn .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6Lf8OWWFn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6Lf8OWWFn .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6Lf8OWWFn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6Lf8OWWFn .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.show,
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6Lf8OWWFn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6Lf8OWWFn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6Lf8OWWFn .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Lf8OWWFn .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.show,
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.show .brand-container,
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6Lf8OWWFn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6Lf8OWWFn .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-t6Lf8OWWFn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6Lf8OWWFn .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6Lf8OWWFn .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6Lf8OWWFn .navbar .right-menu,
  .cid-t6Lf8OWWFn .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6Lf8OWWFn .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6Lf8OWWFn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6Lf8OWWFn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6Lf8OWWFn .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6Lf8OWWFn .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6Lf8OWWFn .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6Lf8OWWFn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6Lf8OWWFn .dropdown-item.active,
.cid-t6Lf8OWWFn .dropdown-item:active {
  background-color: transparent;
}
.cid-t6Lf8OWWFn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6Lf8OWWFn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6Lf8OWWFn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6Lf8OWWFn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6Lf8OWWFn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6Lf8OWWFn ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6Lf8OWWFn .navbar-buttons {
  margin-left: auto;
}
.cid-t6Lf8OWWFn button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6Lf8OWWFn button.navbar-toggler:hover {
  outline: none;
}
.cid-t6Lf8OWWFn button.navbar-toggler:active {
  outline: none;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Lf8OWWFn .navbar-dropdown {
  position: fixed;
}
.cid-t6Lf8OWWFn a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6Lf8OWWFn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6Lf8OWWFn .right-menu,
.cid-t6Lf8OWWFn .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6Lf8OWWFn .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Lf8OWWFn .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Lf8OWWFn .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Lf8OWWFn .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Lf8OWWFn .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .brand-container {
    padding: 0;
  }
}
.cid-t6Lf8OWWFn .card-wrapper {
  z-index: 3;
}
.cid-t6Lf8OWWFn .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6Lf8OWWFn .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6Lf8OWWFn .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6Lf8OWWFn .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6Lf8OWWFn .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6Lf8OWWFn .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6Lf8OWWFn .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6Lf8OWWFn .navbar-caption {
  color: #ffffff;
}
.cid-t6Lf8OWWFn .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6Lf8OWWFn .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6Lf8OWWFn a:hover .line-animation,
.cid-t6Lf8OWWFn a:focus .line-animation {
  opacity: 1;
}
.cid-t6Lf8OWWFn .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6Lf8OWWFn .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6Lf8OWWFn .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6Lf8SiCFP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t6Lf8SiCFP .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-t6Lf8SiCFP .modal-body .close {
  background: #1b1b1b;
}
.cid-t6Lf8SiCFP .modal-body .close span {
  font-style: normal;
}
.cid-t6Lf8SiCFP .carousel-inner > .active,
.cid-t6Lf8SiCFP .carousel-inner > .next,
.cid-t6Lf8SiCFP .carousel-inner > .prev {
  display: flex;
}
.cid-t6Lf8SiCFP .carousel-control .icon-next,
.cid-t6Lf8SiCFP .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t6Lf8SiCFP .carousel-control:hover {
  background: #bc7f50;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t6Lf8SiCFP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t6Lf8SiCFP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t6Lf8SiCFP .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t6Lf8SiCFP .boxed-slider > div {
  position: relative;
}
.cid-t6Lf8SiCFP .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-t6Lf8SiCFP .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t6Lf8SiCFP .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6Lf8SiCFP .mbr-table-cell {
  padding: 0;
}
.cid-t6Lf8SiCFP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t6Lf8SiCFP .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6Lf8SiCFP .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-t6Lf8SiCFP .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t6Lf8SiCFP .carousel-item.active.right,
.cid-t6Lf8SiCFP .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6Lf8SiCFP .carousel-item.active.left,
.cid-t6Lf8SiCFP .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t6Lf8SiCFP .carousel-item.active,
.cid-t6Lf8SiCFP .carousel-item.next.left,
.cid-t6Lf8SiCFP .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-t6Lf8SiCFP .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #bc7f50;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-indicators li.active,
.cid-t6Lf8SiCFP .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-indicators li::after,
.cid-t6Lf8SiCFP .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t6Lf8SiCFP .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t6Lf8SiCFP .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t6Lf8SiCFP .mbr-slider > .container img {
  width: 100%;
}
.cid-t6Lf8SiCFP .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t6Lf8SiCFP .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t6Lf8SiCFP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6Lf8SiCFP .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t6Lf8SiCFP .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t6Lf8SiCFP .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t6Lf8SiCFP .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t6Lf8SiCFP .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-t6Lf8SiCFP .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t6Lf8SiCFP .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t6Lf8SiCFP .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t6Lf8SiCFP .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t6Lf8SiCFP .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t6Lf8SiCFP .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-t6Lf8SiCFP .carousel-inner {
  height: 100%;
}
.cid-t6Lf8SiCFP .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-t6Lf8SiCFP .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 470px;
  overflow: hidden;
}
.cid-t6Lf8SiCFP .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-t6Lf8SiCFP .content-slider-wrap {
  width: 100%;
}
.cid-t6Lf8UYEpr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t6Lf8UYEpr .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t6Lf8UYEpr .form-control,
.cid-t6Lf8UYEpr .field-input,
.cid-t6Lf8UYEpr textarea {
  background-color: #ebf2e9;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 0 !important;
  outline: none;
  border: none !important;
  border-bottom: 1px solid #bbbbbb !important;
}
.cid-t6Lf8UYEpr .form-control::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .field-input::-webkit-input-placeholder,
.cid-t6Lf8UYEpr textarea::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .form-control::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .field-input::-webkit-input-placeholder,
.cid-t6Lf8UYEpr textarea::-webkit-input-placeholder {
  color: #555555;
}
.cid-t6Lf8UYEpr .form-control:-moz-placeholder,
.cid-t6Lf8UYEpr .field-input:-moz-placeholder,
.cid-t6Lf8UYEpr textarea:-moz-placeholder,
.cid-t6Lf8UYEpr .form-control:-moz-placeholder,
.cid-t6Lf8UYEpr .field-input:-moz-placeholder,
.cid-t6Lf8UYEpr textarea:-moz-placeholder {
  color: #555555;
}
.cid-t6Lf8UYEpr .form-control:hover,
.cid-t6Lf8UYEpr .field-input:hover,
.cid-t6Lf8UYEpr textarea:hover,
.cid-t6Lf8UYEpr .form-control:focus,
.cid-t6Lf8UYEpr .field-input:focus,
.cid-t6Lf8UYEpr textarea:focus {
  background-color: #ebf2e9;
  border-color: #555555;
  color: #202020;
  box-shadow: none;
  outline: none;
}
.cid-t6Lf8UYEpr .form-control:hover::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .field-input:hover::-webkit-input-placeholder,
.cid-t6Lf8UYEpr textarea:hover::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .form-control:focus::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .field-input:focus::-webkit-input-placeholder,
.cid-t6Lf8UYEpr textarea:focus::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .form-control:hover::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .field-input:hover::-webkit-input-placeholder,
.cid-t6Lf8UYEpr textarea:hover::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .form-control:focus::-webkit-input-placeholder,
.cid-t6Lf8UYEpr .field-input:focus::-webkit-input-placeholder,
.cid-t6Lf8UYEpr textarea:focus::-webkit-input-placeholder {
  color: #202020;
}
.cid-t6Lf8UYEpr .form-control:hover:-moz-placeholder,
.cid-t6Lf8UYEpr .field-input:hover:-moz-placeholder,
.cid-t6Lf8UYEpr textarea:hover:-moz-placeholder,
.cid-t6Lf8UYEpr .form-control:focus:-moz-placeholder,
.cid-t6Lf8UYEpr .field-input:focus:-moz-placeholder,
.cid-t6Lf8UYEpr textarea:focus:-moz-placeholder,
.cid-t6Lf8UYEpr .form-control:hover:-moz-placeholder,
.cid-t6Lf8UYEpr .field-input:hover:-moz-placeholder,
.cid-t6Lf8UYEpr textarea:hover:-moz-placeholder,
.cid-t6Lf8UYEpr .form-control:focus:-moz-placeholder,
.cid-t6Lf8UYEpr .field-input:focus:-moz-placeholder,
.cid-t6Lf8UYEpr textarea:focus:-moz-placeholder {
  color: #202020;
}
.cid-t6Lf8UYEpr .jq-number__spin:hover,
.cid-t6Lf8UYEpr .jq-number__spin:focus {
  background-color: #ebf2e9;
  border-color: #555555;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-t6Lf8UYEpr .jq-number__spin {
  background-color: #ebf2e9;
  border-color: #bbbbbb;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t6Lf8UYEpr .jq-selectbox li,
.cid-t6Lf8UYEpr .jq-selectbox li {
  background-color: #ebf2e9;
  color: #000000;
}
.cid-t6Lf8UYEpr .jq-selectbox li:hover,
.cid-t6Lf8UYEpr .jq-selectbox li.selected {
  background-color: #ebf2e9;
  color: #000000;
}
.cid-t6Lf8UYEpr .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t6Lf8UYEpr .jq-number__spin.minus:hover:after,
.cid-t6Lf8UYEpr .jq-number__spin.plus:hover:after {
  border-top-color: #ebf2e9;
  border-bottom-color: #ebf2e9;
}
.cid-t6Lf8UYEpr .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t6Lf8UYEpr .jq-number__spin.minus:after,
.cid-t6Lf8UYEpr .jq-number__spin.plus:after {
  border-top-color: #ebf2e9;
  border-bottom-color: #ebf2e9;
}
.cid-t6Lf8UYEpr input::-webkit-clear-button {
  display: none;
}
.cid-t6Lf8UYEpr input::-webkit-inner-spin-button {
  display: none;
}
.cid-t6Lf8UYEpr input::-webkit-outer-spin-button {
  display: none;
}
.cid-t6Lf8UYEpr input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t6Lf8UYEpr .container {
  background-color: #bc7f50;
  padding: 8rem 2.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .cid-t6Lf8UYEpr .container {
    padding: 3.5rem 2.75rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t6Lf8UYEpr .container {
    padding: 3.5rem .75rem 4rem;
  }
}
.cid-t6Lf8UYEpr .btn-lg {
  border-radius: 0 !important;
  padding: 1.1875rem 3.25rem !important;
  margin-top: 17px;
  font-weight: 600;
  width: 100%;
}
.cid-t6Lf8UYEpr .mbr-section-title {
  margin-bottom: 18px;
  color: #ffffff;
}
.cid-t6Lf8UYEpr .form_title {
  margin: 25px 0;
  text-align: center;
}
.cid-t6Lf8UYEpr .mbr-text {
  margin-bottom: 37px;
}
.cid-t6Lf8UYEpr .shape {
  width: 135px;
  height: auto;
  position: absolute;
  left: 70px;
  bottom: -40px;
}
.cid-t6Lf8UYEpr .shape img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
.cid-t6Lf8UYEpr .dragArea {
  justify-content: center;
}
.cid-t6Lf8UYEpr .textGDPR.display-7 {
  font-size: 16px;
}
.cid-t6Lf8UYEpr .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 0;
}
.cid-t6Lf8UYEpr .form-control,
.cid-t6Lf8UYEpr .field-input,
.cid-t6Lf8UYEpr textarea {
  padding: 9px 10px;
  line-height: 25px;
  height: 48px;
}
.cid-t6Lf8UYEpr .form-check {
  padding-left: 2.5em !important;
}
.cid-t6Lf8UYEpr .form-check .display-7 {
  font-size: 16px !important;
}
.cid-t6Lf8UYEpr LABEL {
  color: #ffffff;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6Lf8OWWFn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6Lf8OWWFn nav.navbar {
  position: fixed;
}
.cid-t6Lf8OWWFn .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6Lf8OWWFn .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-t6Lf8OWWFn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6Lf8OWWFn .nav-link:hover,
.cid-t6Lf8OWWFn .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6Lf8OWWFn .nav-item {
    position: relative;
  }
}
.cid-t6Lf8OWWFn .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6Lf8OWWFn .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6Lf8OWWFn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6Lf8OWWFn .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6Lf8OWWFn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6Lf8OWWFn .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.show,
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6Lf8OWWFn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6Lf8OWWFn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6Lf8OWWFn .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6Lf8OWWFn .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Lf8OWWFn .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.show,
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.show .brand-container,
  .cid-t6Lf8OWWFn .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6Lf8OWWFn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6Lf8OWWFn .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-t6Lf8OWWFn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6Lf8OWWFn .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6Lf8OWWFn .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6Lf8OWWFn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6Lf8OWWFn .navbar .right-menu,
  .cid-t6Lf8OWWFn .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6Lf8OWWFn .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6Lf8OWWFn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6Lf8OWWFn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6Lf8OWWFn .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6Lf8OWWFn .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6Lf8OWWFn .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6Lf8OWWFn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6Lf8OWWFn .dropdown-item.active,
.cid-t6Lf8OWWFn .dropdown-item:active {
  background-color: transparent;
}
.cid-t6Lf8OWWFn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6Lf8OWWFn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6Lf8OWWFn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6Lf8OWWFn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6Lf8OWWFn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6Lf8OWWFn ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6Lf8OWWFn .navbar-buttons {
  margin-left: auto;
}
.cid-t6Lf8OWWFn button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6Lf8OWWFn button.navbar-toggler:hover {
  outline: none;
}
.cid-t6Lf8OWWFn button.navbar-toggler:active {
  outline: none;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Lf8OWWFn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6Lf8OWWFn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Lf8OWWFn .navbar-dropdown {
  position: fixed;
}
.cid-t6Lf8OWWFn a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6Lf8OWWFn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6Lf8OWWFn .right-menu,
.cid-t6Lf8OWWFn .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6Lf8OWWFn .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Lf8OWWFn .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Lf8OWWFn .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Lf8OWWFn .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Lf8OWWFn .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6Lf8OWWFn .brand-container {
    padding: 0;
  }
}
.cid-t6Lf8OWWFn .card-wrapper {
  z-index: 3;
}
.cid-t6Lf8OWWFn .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6Lf8OWWFn .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6Lf8OWWFn .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6Lf8OWWFn .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6Lf8OWWFn .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6Lf8OWWFn .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6Lf8OWWFn .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6Lf8OWWFn .navbar-caption {
  color: #ffffff;
}
.cid-t6Lf8OWWFn .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6Lf8OWWFn .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6Lf8OWWFn a:hover .line-animation,
.cid-t6Lf8OWWFn a:focus .line-animation {
  opacity: 1;
}
.cid-t6Lf8OWWFn .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6Lf8OWWFn .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6Lf8OWWFn .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-ta5vL8qmYt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ta5vL8qmYt .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-ta5vL8qmYt .modal-body .close {
  background: #1b1b1b;
}
.cid-ta5vL8qmYt .modal-body .close span {
  font-style: normal;
}
.cid-ta5vL8qmYt .carousel-inner > .active,
.cid-ta5vL8qmYt .carousel-inner > .next,
.cid-ta5vL8qmYt .carousel-inner > .prev {
  display: flex;
}
.cid-ta5vL8qmYt .carousel-control .icon-next,
.cid-ta5vL8qmYt .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-ta5vL8qmYt .carousel-control:hover {
  background: #bc7f50;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ta5vL8qmYt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ta5vL8qmYt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ta5vL8qmYt .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-ta5vL8qmYt .boxed-slider > div {
  position: relative;
}
.cid-ta5vL8qmYt .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-ta5vL8qmYt .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-ta5vL8qmYt .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-ta5vL8qmYt .mbr-table-cell {
  padding: 0;
}
.cid-ta5vL8qmYt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ta5vL8qmYt .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ta5vL8qmYt .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-ta5vL8qmYt .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-ta5vL8qmYt .carousel-item.active.right,
.cid-ta5vL8qmYt .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-ta5vL8qmYt .carousel-item.active.left,
.cid-ta5vL8qmYt .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-ta5vL8qmYt .carousel-item.active,
.cid-ta5vL8qmYt .carousel-item.next.left,
.cid-ta5vL8qmYt .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-ta5vL8qmYt .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-ta5vL8qmYt .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-ta5vL8qmYt .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-ta5vL8qmYt .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ta5vL8qmYt .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ta5vL8qmYt .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #bc7f50;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ta5vL8qmYt .mbr-slider .carousel-indicators li.active,
.cid-ta5vL8qmYt .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ta5vL8qmYt .mbr-slider .carousel-indicators li::after,
.cid-ta5vL8qmYt .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-ta5vL8qmYt .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-ta5vL8qmYt .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-ta5vL8qmYt .mbr-slider > .container img {
  width: 100%;
}
.cid-ta5vL8qmYt .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ta5vL8qmYt .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-ta5vL8qmYt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ta5vL8qmYt .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-ta5vL8qmYt .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-ta5vL8qmYt .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-ta5vL8qmYt .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-ta5vL8qmYt .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-ta5vL8qmYt .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-ta5vL8qmYt .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-ta5vL8qmYt .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-ta5vL8qmYt .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-ta5vL8qmYt .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-ta5vL8qmYt .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-ta5vL8qmYt .carousel-inner {
  height: 100%;
}
.cid-ta5vL8qmYt .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-ta5vL8qmYt .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 470px;
  overflow: hidden;
}
.cid-ta5vL8qmYt .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-ta5vL8qmYt .content-slider-wrap {
  width: 100%;
}
.cid-t6PPEGyP9F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t6PPEGyP9F .mbr-overlay {
  z-index: 1;
}
.cid-t6PPEGyP9F .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-t6PPEGyP9F .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-t6PPEGyP9F .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-t6PPEGyP9F .item-title {
  width: 100%;
  color: #bc7f50;
}
.cid-t6PPEGyP9F .mbr-text {
  color: #000000;
}
.cid-t6PPEGyP9F .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-t6PPEGyP9F .card-container {
  display: flex;
}
.cid-t6PPEGyP9F .card-container .card {
  border-radius: 0;
}
.cid-t6PPEGyP9F .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-t6PPEGyP9F .card-container .card .item-img {
    height: 400px;
  }
}
.cid-t6PPEGyP9F .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-t6PPEGyP9F .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6PQrnn3VF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6PQrnn3VF nav.navbar {
  position: fixed;
}
.cid-t6PQrnn3VF .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6PQrnn3VF .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-t6PQrnn3VF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6PQrnn3VF .nav-link:hover,
.cid-t6PQrnn3VF .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6PQrnn3VF .nav-item {
    position: relative;
  }
}
.cid-t6PQrnn3VF .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6PQrnn3VF .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6PQrnn3VF .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6PQrnn3VF .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6PQrnn3VF .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6PQrnn3VF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6PQrnn3VF .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6PQrnn3VF .navbar.collapsed .navbar-collapse.show,
.cid-t6PQrnn3VF .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6PQrnn3VF .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6PQrnn3VF .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6PQrnn3VF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6PQrnn3VF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6PQrnn3VF .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6PQrnn3VF .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6PQrnn3VF .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6PQrnn3VF .navbar .navbar-collapse.show,
  .cid-t6PQrnn3VF .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6PQrnn3VF .navbar .navbar-collapse.show .brand-container,
  .cid-t6PQrnn3VF .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6PQrnn3VF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6PQrnn3VF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6PQrnn3VF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6PQrnn3VF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6PQrnn3VF .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-t6PQrnn3VF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6PQrnn3VF .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6PQrnn3VF .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6PQrnn3VF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6PQrnn3VF .navbar .right-menu,
  .cid-t6PQrnn3VF .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6PQrnn3VF .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6PQrnn3VF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6PQrnn3VF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6PQrnn3VF .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6PQrnn3VF .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6PQrnn3VF .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6PQrnn3VF .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6PQrnn3VF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6PQrnn3VF .dropdown-item.active,
.cid-t6PQrnn3VF .dropdown-item:active {
  background-color: transparent;
}
.cid-t6PQrnn3VF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6PQrnn3VF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6PQrnn3VF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6PQrnn3VF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6PQrnn3VF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6PQrnn3VF ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6PQrnn3VF ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6PQrnn3VF .navbar-buttons {
  margin-left: auto;
}
.cid-t6PQrnn3VF button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6PQrnn3VF button.navbar-toggler:hover {
  outline: none;
}
.cid-t6PQrnn3VF button.navbar-toggler:active {
  outline: none;
}
.cid-t6PQrnn3VF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6PQrnn3VF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6PQrnn3VF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6PQrnn3VF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6PQrnn3VF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6PQrnn3VF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6PQrnn3VF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6PQrnn3VF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6PQrnn3VF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6PQrnn3VF .navbar-dropdown {
  position: fixed;
}
.cid-t6PQrnn3VF a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6PQrnn3VF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6PQrnn3VF .right-menu,
.cid-t6PQrnn3VF .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6PQrnn3VF .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6PQrnn3VF .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6PQrnn3VF .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6PQrnn3VF .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6PQrnn3VF .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6PQrnn3VF .brand-container {
    padding: 0;
  }
}
.cid-t6PQrnn3VF .card-wrapper {
  z-index: 3;
}
.cid-t6PQrnn3VF .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6PQrnn3VF .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6PQrnn3VF .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6PQrnn3VF .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6PQrnn3VF .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6PQrnn3VF .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6PQrnn3VF .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6PQrnn3VF .navbar-caption {
  color: #ffffff;
}
.cid-t6PQrnn3VF .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6PQrnn3VF .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6PQrnn3VF a:hover .line-animation,
.cid-t6PQrnn3VF a:focus .line-animation {
  opacity: 1;
}
.cid-t6PQrnn3VF .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6PQrnn3VF .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6PQrnn3VF .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6PQrtD1zg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t6PQrtD1zg .mbr-overlay {
  z-index: 1;
}
.cid-t6PQrtD1zg .main-container-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 65px;
  flex-shrink: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-t6PQrtD1zg .main-container-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .cid-t6PQrtD1zg .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-t6PQrtD1zg .item-title {
  width: 100%;
  color: #bc7f50;
}
.cid-t6PQrtD1zg .mbr-text {
  color: #000000;
}
.cid-t6PQrtD1zg .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-t6PQrtD1zg .card-container {
  display: flex;
}
.cid-t6PQrtD1zg .card-container .card {
  border-radius: 0;
}
.cid-t6PQrtD1zg .card-container .card .item-img {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-t6PQrtD1zg .card-container .card .item-img {
    height: 400px;
  }
}
.cid-t6PQrtD1zg .card-container .card .item-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
}
@media (max-width: 767px) {
  .cid-t6PQrtD1zg .card-container .card .item-img img {
    height: 400px;
  }
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6PRVgmR7v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6PRVgmR7v nav.navbar {
  position: fixed;
}
.cid-t6PRVgmR7v .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6PRVgmR7v .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-t6PRVgmR7v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6PRVgmR7v .nav-link:hover,
.cid-t6PRVgmR7v .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6PRVgmR7v .nav-item {
    position: relative;
  }
}
.cid-t6PRVgmR7v .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6PRVgmR7v .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6PRVgmR7v .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6PRVgmR7v .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6PRVgmR7v .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6PRVgmR7v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6PRVgmR7v .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6PRVgmR7v .navbar.collapsed .navbar-collapse.show,
.cid-t6PRVgmR7v .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6PRVgmR7v .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6PRVgmR7v .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6PRVgmR7v .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6PRVgmR7v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6PRVgmR7v .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6PRVgmR7v .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6PRVgmR7v .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6PRVgmR7v .navbar .navbar-collapse.show,
  .cid-t6PRVgmR7v .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6PRVgmR7v .navbar .navbar-collapse.show .brand-container,
  .cid-t6PRVgmR7v .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6PRVgmR7v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6PRVgmR7v .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6PRVgmR7v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6PRVgmR7v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6PRVgmR7v .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-t6PRVgmR7v .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6PRVgmR7v .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6PRVgmR7v .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6PRVgmR7v .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6PRVgmR7v .navbar .right-menu,
  .cid-t6PRVgmR7v .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6PRVgmR7v .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6PRVgmR7v .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6PRVgmR7v .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6PRVgmR7v .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6PRVgmR7v .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6PRVgmR7v .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6PRVgmR7v .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6PRVgmR7v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6PRVgmR7v .dropdown-item.active,
.cid-t6PRVgmR7v .dropdown-item:active {
  background-color: transparent;
}
.cid-t6PRVgmR7v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6PRVgmR7v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6PRVgmR7v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6PRVgmR7v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6PRVgmR7v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6PRVgmR7v ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6PRVgmR7v ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6PRVgmR7v .navbar-buttons {
  margin-left: auto;
}
.cid-t6PRVgmR7v button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6PRVgmR7v button.navbar-toggler:hover {
  outline: none;
}
.cid-t6PRVgmR7v button.navbar-toggler:active {
  outline: none;
}
.cid-t6PRVgmR7v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6PRVgmR7v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6PRVgmR7v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6PRVgmR7v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6PRVgmR7v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6PRVgmR7v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6PRVgmR7v nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6PRVgmR7v nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6PRVgmR7v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6PRVgmR7v .navbar-dropdown {
  position: fixed;
}
.cid-t6PRVgmR7v a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6PRVgmR7v .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6PRVgmR7v .right-menu,
.cid-t6PRVgmR7v .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6PRVgmR7v .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6PRVgmR7v .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6PRVgmR7v .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6PRVgmR7v .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6PRVgmR7v .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6PRVgmR7v .brand-container {
    padding: 0;
  }
}
.cid-t6PRVgmR7v .card-wrapper {
  z-index: 3;
}
.cid-t6PRVgmR7v .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6PRVgmR7v .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6PRVgmR7v .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6PRVgmR7v .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6PRVgmR7v .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6PRVgmR7v .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6PRVgmR7v .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6PRVgmR7v .navbar-caption {
  color: #ffffff;
}
.cid-t6PRVgmR7v .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6PRVgmR7v .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6PRVgmR7v a:hover .line-animation,
.cid-t6PRVgmR7v a:focus .line-animation {
  opacity: 1;
}
.cid-t6PRVgmR7v .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6PRVgmR7v .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6PRVgmR7v .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6PW6XrVZs {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6PW6XrVZs .mbr-media {
  position: relative;
  width: 100%;
  display: flex;
}
.cid-t6PW6XrVZs .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.cid-t6PW6XrVZs .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-t6PW6XrVZs .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  min-width: 65px;
  min-height: 65px;
  border-radius: 50%;
  align-items: center;
}
.cid-t6PW6XrVZs .icon-wrap a:hover {
  background-image: none !important;
}
.cid-t6PW6XrVZs .icon-wrap span {
  margin-left: 5px;
}
.cid-t6PW6XrVZs .box {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-t6PW6XrVZs .box {
    height: 200px;
  }
}
.cid-t6PW6XrVZs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6PW6XrVZs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6PW6XrVZs .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6PW6XrVZs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  border: 2px solid #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6PW6XrVZs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6PW6XrVZs .col-text {
  display: flex;
  align-items: center;
  padding: 0 90px;
}
@media (max-width: 991px) {
  .cid-t6PW6XrVZs .col-text {
    padding: 50px 0.75rem 0;
  }
}
.cid-t6PW6XrVZs .mbr-section-subtitle {
  color: #555555;
  padding-top: 12px;
}
.cid-t6PW6XrVZs .item-container {
  width: 100%;
}
.cid-t6PW6XrVZs .item {
  display: flex;
  margin-top: 32px;
  text-align: left;
}
.cid-t6PW6XrVZs .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-t6PW6XrVZs .item {
    flex-direction: column;
    text-align: center;
  }
}
.cid-t6PW6XrVZs .icon-box {
  background: #0057fc;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-t6PW6XrVZs .icon-box {
    margin: 0 auto 24px;
  }
}
.cid-t6PW6XrVZs .text-box {
  flex-grow: 1;
}
.cid-t6PW6XrVZs .number-text {
  color: #ffffff;
}
.cid-t6PW6XrVZs .icon-text {
  color: #000000;
}
.cid-t6PW6XrVZs .icon-title {
  color: #bc7f50;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6Q1HtWFiW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6Q1HtWFiW nav.navbar {
  position: fixed;
}
.cid-t6Q1HtWFiW .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6Q1HtWFiW .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-t6Q1HtWFiW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6Q1HtWFiW .nav-link:hover,
.cid-t6Q1HtWFiW .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6Q1HtWFiW .nav-item {
    position: relative;
  }
}
.cid-t6Q1HtWFiW .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6Q1HtWFiW .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6Q1HtWFiW .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6Q1HtWFiW .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6Q1HtWFiW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6Q1HtWFiW .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.show,
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6Q1HtWFiW .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.show,
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.show .brand-container,
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6Q1HtWFiW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6Q1HtWFiW .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-t6Q1HtWFiW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6Q1HtWFiW .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6Q1HtWFiW .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6Q1HtWFiW .navbar .right-menu,
  .cid-t6Q1HtWFiW .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6Q1HtWFiW .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6Q1HtWFiW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6Q1HtWFiW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6Q1HtWFiW .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6Q1HtWFiW .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6Q1HtWFiW .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6Q1HtWFiW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6Q1HtWFiW .dropdown-item.active,
.cid-t6Q1HtWFiW .dropdown-item:active {
  background-color: transparent;
}
.cid-t6Q1HtWFiW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6Q1HtWFiW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6Q1HtWFiW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6Q1HtWFiW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6Q1HtWFiW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6Q1HtWFiW ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6Q1HtWFiW .navbar-buttons {
  margin-left: auto;
}
.cid-t6Q1HtWFiW button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler:hover {
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler:active {
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Q1HtWFiW .navbar-dropdown {
  position: fixed;
}
.cid-t6Q1HtWFiW a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6Q1HtWFiW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6Q1HtWFiW .right-menu,
.cid-t6Q1HtWFiW .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6Q1HtWFiW .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Q1HtWFiW .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Q1HtWFiW .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .brand-container {
    padding: 0;
  }
}
.cid-t6Q1HtWFiW .card-wrapper {
  z-index: 3;
}
.cid-t6Q1HtWFiW .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6Q1HtWFiW .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6Q1HtWFiW .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6Q1HtWFiW .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6Q1HtWFiW .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6Q1HtWFiW .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6Q1HtWFiW .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6Q1HtWFiW .navbar-caption {
  color: #ffffff;
}
.cid-t6Q1HtWFiW .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6Q1HtWFiW .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6Q1HtWFiW a:hover .line-animation,
.cid-t6Q1HtWFiW a:focus .line-animation {
  opacity: 1;
}
.cid-t6Q1HtWFiW .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6Q1HtWFiW .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6Q1HtWFiW .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6Q1HzUEN0 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t6Q1HzUEN0 .mbr-media {
  position: relative;
  width: 100%;
  display: flex;
}
.cid-t6Q1HzUEN0 .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.cid-t6Q1HzUEN0 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-t6Q1HzUEN0 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  min-width: 65px;
  min-height: 65px;
  border-radius: 50%;
  align-items: center;
}
.cid-t6Q1HzUEN0 .icon-wrap a:hover {
  background-image: none !important;
}
.cid-t6Q1HzUEN0 .icon-wrap span {
  margin-left: 5px;
}
.cid-t6Q1HzUEN0 .box {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-t6Q1HzUEN0 .box {
    height: 200px;
  }
}
.cid-t6Q1HzUEN0 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6Q1HzUEN0 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6Q1HzUEN0 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6Q1HzUEN0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  border: 2px solid #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6Q1HzUEN0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6Q1HzUEN0 .col-text {
  display: flex;
  align-items: center;
  padding: 0 90px;
}
@media (max-width: 991px) {
  .cid-t6Q1HzUEN0 .col-text {
    padding: 50px 0.75rem 0;
  }
}
.cid-t6Q1HzUEN0 .mbr-section-subtitle {
  color: #555555;
  padding-top: 12px;
}
.cid-t6Q1HzUEN0 .item-container {
  width: 100%;
}
.cid-t6Q1HzUEN0 .item {
  display: flex;
  margin-top: 32px;
  text-align: left;
}
.cid-t6Q1HzUEN0 .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-t6Q1HzUEN0 .item {
    flex-direction: column;
    text-align: center;
  }
}
.cid-t6Q1HzUEN0 .icon-box {
  background: #0057fc;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-t6Q1HzUEN0 .icon-box {
    margin: 0 auto 24px;
  }
}
.cid-t6Q1HzUEN0 .text-box {
  flex-grow: 1;
}
.cid-t6Q1HzUEN0 .number-text {
  color: #ffffff;
}
.cid-t6Q1HzUEN0 .icon-text {
  color: #000000;
}
.cid-t6Q1HzUEN0 .icon-title {
  color: #bc7f50;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6Q1HtWFiW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6Q1HtWFiW nav.navbar {
  position: fixed;
}
.cid-t6Q1HtWFiW .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6Q1HtWFiW .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-t6Q1HtWFiW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6Q1HtWFiW .nav-link:hover,
.cid-t6Q1HtWFiW .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6Q1HtWFiW .nav-item {
    position: relative;
  }
}
.cid-t6Q1HtWFiW .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6Q1HtWFiW .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6Q1HtWFiW .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6Q1HtWFiW .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6Q1HtWFiW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6Q1HtWFiW .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.show,
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6Q1HtWFiW .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.show,
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.show .brand-container,
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6Q1HtWFiW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6Q1HtWFiW .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-t6Q1HtWFiW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6Q1HtWFiW .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6Q1HtWFiW .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6Q1HtWFiW .navbar .right-menu,
  .cid-t6Q1HtWFiW .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6Q1HtWFiW .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6Q1HtWFiW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6Q1HtWFiW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6Q1HtWFiW .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6Q1HtWFiW .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6Q1HtWFiW .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6Q1HtWFiW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6Q1HtWFiW .dropdown-item.active,
.cid-t6Q1HtWFiW .dropdown-item:active {
  background-color: transparent;
}
.cid-t6Q1HtWFiW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6Q1HtWFiW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6Q1HtWFiW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6Q1HtWFiW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6Q1HtWFiW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6Q1HtWFiW ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6Q1HtWFiW .navbar-buttons {
  margin-left: auto;
}
.cid-t6Q1HtWFiW button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler:hover {
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler:active {
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Q1HtWFiW .navbar-dropdown {
  position: fixed;
}
.cid-t6Q1HtWFiW a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6Q1HtWFiW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6Q1HtWFiW .right-menu,
.cid-t6Q1HtWFiW .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6Q1HtWFiW .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Q1HtWFiW .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Q1HtWFiW .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .brand-container {
    padding: 0;
  }
}
.cid-t6Q1HtWFiW .card-wrapper {
  z-index: 3;
}
.cid-t6Q1HtWFiW .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6Q1HtWFiW .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6Q1HtWFiW .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6Q1HtWFiW .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6Q1HtWFiW .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6Q1HtWFiW .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6Q1HtWFiW .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6Q1HtWFiW .navbar-caption {
  color: #ffffff;
}
.cid-t6Q1HtWFiW .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6Q1HtWFiW .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6Q1HtWFiW a:hover .line-animation,
.cid-t6Q1HtWFiW a:focus .line-animation {
  opacity: 1;
}
.cid-t6Q1HtWFiW .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6Q1HtWFiW .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6Q1HtWFiW .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6Q4D0nPtD {
  background-image: url("../../../assets/images/img-2020.jpg");
}
.cid-t6Q4D0nPtD .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.9;
}
.cid-t6Q4D0nPtD .container-fluid {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}
.cid-t6Q4D0nPtD form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t6Q4D0nPtD form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t6Q4D0nPtD form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6Q4D0nPtD .form {
  background-color: #ffffff;
  padding-top: 9rem;
  padding-bottom: 7rem;
}
@media (min-width: 768px) {
  .cid-t6Q4D0nPtD .form {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-t6Q4D0nPtD .form {
    padding-left: 290px;
    padding-right: 290px;
  }
}
.cid-t6Q4D0nPtD .text {
  padding-top: 9rem;
  padding-bottom: 7rem;
}
@media (min-width: 768px) {
  .cid-t6Q4D0nPtD .text {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1400px) {
  .cid-t6Q4D0nPtD .text {
    padding-left: 193px;
    padding-right: 193px;
  }
}
.cid-t6Q4D0nPtD .mbr-section-title {
  text-align: left;
  color: #bc7f50;
}
.cid-t6Q4D0nPtD .mbr-section-subtitle {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-t6Q4D0nPtD .display-1 {
    font-size: 65px;
  }
  .cid-t6Q4D0nPtD .display-5 {
    font-size: 29px;
  }
  .cid-t6Q4D0nPtD .display-7 {
    font-size: 24px;
  }
  .cid-t6Q4D0nPtD .display-4 {
    font-weight: 300;
  }
}
.cid-t6Q4D0nPtD .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
}
.cid-t6Q4D0nPtD .btn:hover {
  background: #EeFF42 !important;
  border-color: #EeFF42 !important;
  color: #18293D !important;
}
.cid-t6Q4D0nPtD .btn-primary-outline {
  color: #18293D !important;
}
.cid-t6Q4D0nPtD .form-control,
.cid-t6Q4D0nPtD .field-input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 2px solid #253C57 !important;
  padding: 0;
  color: #18293D;
  margin: 0;
  font-weight: 300;
}
.cid-t6Q4D0nPtD .form-control:hover {
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid #253C57 !important;
}
.cid-t6Q4D0nPtD .form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: inherit;
}
.cid-t6Q4D0nPtD .form-check-input:checked {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-t6Q4D0nPtD .form-control::placeholder {
  color: #18293D;
  margin: 0;
  font-weight: 300;
}
.cid-t6Q4D0nPtD .form-group {
  margin-bottom: 41px;
}
.cid-t6Q4D0nPtD .mbr-text,
.cid-t6Q4D0nPtD .mbr-section-btn {
  color: #000000;
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
.cid-t6Q1HtWFiW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t6Q1HtWFiW nav.navbar {
  position: fixed;
}
.cid-t6Q1HtWFiW .nav-link {
  transition: all .5s;
  border-bottom: 1px solid transparent;
  font-family: "Josefin Sans";
  position: relative;
  padding: 0;
  display: inline-block;
  font-weight: 400;
}
.cid-t6Q1HtWFiW .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-t6Q1HtWFiW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.cid-t6Q1HtWFiW .nav-link:hover,
.cid-t6Q1HtWFiW .nav-link:focus {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .cid-t6Q1HtWFiW .nav-item {
    position: relative;
  }
}
.cid-t6Q1HtWFiW .navbar {
  min-height: 107px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t6Q1HtWFiW .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t6Q1HtWFiW .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t6Q1HtWFiW .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-t6Q1HtWFiW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t6Q1HtWFiW .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.show,
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6Q1HtWFiW .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-t6Q1HtWFiW .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6Q1HtWFiW .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.show,
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.show .brand-container,
  .cid-t6Q1HtWFiW .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-t6Q1HtWFiW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6Q1HtWFiW .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-t6Q1HtWFiW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t6Q1HtWFiW .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-t6Q1HtWFiW .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6Q1HtWFiW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t6Q1HtWFiW .navbar .right-menu,
  .cid-t6Q1HtWFiW .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-t6Q1HtWFiW .navbar.navbar-short {
  min-height: 60px;
  background: #ffffff !important;
}
.cid-t6Q1HtWFiW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t6Q1HtWFiW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .navbar {
    padding: 2rem 1rem;
  }
  .cid-t6Q1HtWFiW .navbar-collapse {
    padding-top: 0;
  }
}
.cid-t6Q1HtWFiW .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-t6Q1HtWFiW .navbar-brand .navbar-caption {
  font-family: "EB Garamond";
  line-height: inherit !important;
  font-weight: 400;
}
.cid-t6Q1HtWFiW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6Q1HtWFiW .dropdown-item.active,
.cid-t6Q1HtWFiW .dropdown-item:active {
  background-color: transparent;
}
.cid-t6Q1HtWFiW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6Q1HtWFiW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-t6Q1HtWFiW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t6Q1HtWFiW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6Q1HtWFiW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6Q1HtWFiW ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-t6Q1HtWFiW .navbar-buttons {
  margin-left: auto;
}
.cid-t6Q1HtWFiW button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler:hover {
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler:active {
  outline: none;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bc7f50;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6Q1HtWFiW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-t6Q1HtWFiW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6Q1HtWFiW .navbar-dropdown {
  position: fixed;
}
.cid-t6Q1HtWFiW a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-t6Q1HtWFiW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t6Q1HtWFiW .right-menu,
.cid-t6Q1HtWFiW .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-t6Q1HtWFiW .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Q1HtWFiW .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6Q1HtWFiW .right-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-t6Q1HtWFiW .brand-container {
  padding: 0 4rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .cid-t6Q1HtWFiW .brand-container {
    padding: 0;
  }
}
.cid-t6Q1HtWFiW .card-wrapper {
  z-index: 3;
}
.cid-t6Q1HtWFiW .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-t6Q1HtWFiW .nav-item:not(:last-child) {
  margin-right: 22px !important;
}
@media (min-width: 1400px) {
  .cid-t6Q1HtWFiW .nav-item:not(:last-child) {
    margin-right: 4rem !important;
  }
}
.cid-t6Q1HtWFiW .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-t6Q1HtWFiW .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-t6Q1HtWFiW .link {
  padding: 0;
  margin: 0;
}
@media (min-width: 991px) {
  .cid-t6Q1HtWFiW .dropdown-menu {
    z-index: 9999;
    margin-top: 40px;
    border: 1px solid #41392e;
    width: 250px;
  }
}
.cid-t6Q1HtWFiW .navbar-caption {
  color: #ffffff;
}
.cid-t6Q1HtWFiW .navbar-caption:hover {
  color: #ffffff;
}
.cid-t6Q1HtWFiW .dropdown-item:hover {
  color: #bc7f50 !important;
}
.cid-t6Q1HtWFiW a:hover .line-animation,
.cid-t6Q1HtWFiW a:focus .line-animation {
  opacity: 1;
}
.cid-t6Q1HtWFiW .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-t6Q1HtWFiW .dropdown-menu {
    margin-top: 0px;
  }
  .cid-t6Q1HtWFiW .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-t6Qq5FopUu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6Qq5FopUu .mbr-overlay {
  z-index: 1;
}
.cid-t6Qq5FopUu .main-container-text {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 5rem;
  flex-shrink: 1;
}
@media (max-width: 767px) {
  .cid-t6Qq5FopUu .main-container-text {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 991px) {
  .cid-t6Qq5FopUu .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-t6Qq5FopUu .label-text {
  color: #bc7f50;
  width: 100%;
}
.cid-t6Qq5FopUu .item-title {
  width: 100%;
  color: #111111;
  z-index: 2;
}
.cid-t6Qq5FopUu .item-title span {
  position: relative;
  z-index: 2;
}
.cid-t6Qq5FopUu .item-title span:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #bc7f50;
  z-index: 1;
}
.cid-t6Qq5FopUu .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-t6Qq5FopUu .row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.cid-t6Qq5FopUu .card {
  padding: 3px;
}
.cid-t6Qq5FopUu .card-container {
  display: flex;
}
.cid-t6Qq5FopUu .card-container .card {
  border-radius: 0;
}
.cid-t6Qq5FopUu .card-container .card .item-img {
  height: 100%;
}
.cid-t6Qq5FopUu .card-container .card .item-img img {
  height: 100%;
}
.cid-t6Qq5FopUu .cards-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-t6Qq5FopUu .cards-container .card {
  border-radius: 0;
}
.cid-t6Qq5FopUu .cards-container .card .item-img {
  display: flex;
}
.cid-t6QBB9o5gK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t6QBB9o5gK .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-t6QBB9o5gK .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-t6QBB9o5gK .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-t6QBB9o5gK .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-t6QBB9o5gK .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-t6QBB9o5gK .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-t6QBB9o5gK .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ta5ugAOfLh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ta5ugAOfLh .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ta5ugAOfLh .logo__image {
  width: 60px;
  object-fit: cover;
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__text {
  padding: 12px 0 25px;
}
.cid-ta5ugAOfLh .brand__email {
  margin-bottom: 15px;
  color: #ffffff;
}
.cid-ta5ugAOfLh .wrap {
  margin-bottom: 40px;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__title {
  padding: 12px 0 25px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__items {
  line-height: 38px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .social {
  margin-top: 30px;
}
.cid-ta5ugAOfLh .social .social__items {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.cid-ta5ugAOfLh .social .social__items:hover {
  background-color: #bc7f50;
  border-color: #bc7f50;
}
.cid-ta5ugAOfLh .social .social__items:hover span {
  color: #ffffff !important;
}
.cid-ta5ugAOfLh .social .social__items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .social .social__items .mbr-iconfont {
  font-size: 17px;
  transition-duration: 0s;
}
.cid-ta5ugAOfLh .divider {
  background-color: #000000;
  opacity: 0.1;
  margin-top: 90px;
  height: 1px;
}
.cid-ta5ugAOfLh .footer__bottom {
  padding: 35px 0;
  pointer-events: all;
}
.cid-ta5ugAOfLh .footer__bot_items {
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  line-height: 28px;
  color: #bc7f50;
}
.cid-ta5ugAOfLh .footer__bot_items a:hover {
  color: #bc7f50 !important;
}
.cid-ta5ugAOfLh .footer__bot_items:last-child {
  margin-right: 0;
}
.cid-ta5ugAOfLh .animation__background .triangle {
  position: absolute;
  right: 10%;
  top: 50%;
  animation: rotated 30s infinite linear;
  width: 50px;
  height: 50px;
}
.cid-ta5ugAOfLh .animation__background .circle {
  width: 54px;
  height: 54px;
  border: 10px solid #bc7f50;
  border-radius: 50%;
  position: absolute;
  left: -22px;
  top: 48%;
}
.cid-ta5ugAOfLh .animation__background .circle:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  right: -55px;
  bottom: -55px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ta5ugAOfLh .divider {
    margin-top: 30px;
  }
  .cid-ta5ugAOfLh .footer__bottom {
    padding: 30px 0;
  }
  .cid-ta5ugAOfLh .align-right,
  .cid-ta5ugAOfLh .privacy {
    text-align: center;
  }
  .cid-ta5ugAOfLh .footer__bot_items {
    margin: 10px 7px 0;
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-ta5ugAOfLh .brand__phone {
  color: #ffffff;
}
.cid-ta5ugAOfLh .footer__adress {
  color: #ffffff;
}
.cid-ta5ugAOfLh .privacy {
  color: #ffffff;
}
