body {
  font-family: 'Josefin Sans', sans-serif;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Josefin Sans', 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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 90rem) / (48 - 25)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 25))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 40rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #829d85 !important;
}
.bg-success {
  background-color: #ddc499 !important;
}
.bg-info {
  background-color: #829d85 !important;
}
.bg-warning {
  background-color: #ffa6a6 !important;
}
.bg-danger {
  background-color: #b10e0e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #829d85 !important;
  border-color: #829d85 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ece9e6 !important;
  border-color: #ece9e6 !important;
  color: #78695b !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c7beb5 !important;
  border-color: #c7beb5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #78695b !important;
  background-color: #c7beb5 !important;
  border-color: #c7beb5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #829d85 !important;
  border-color: #829d85 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #58705b !important;
  border-color: #58705b !important;
}
.btn-success,
.btn-success:active {
  background-color: #ddc499 !important;
  border-color: #ddc499 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c79e58 !important;
  border-color: #c79e58 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c79e58 !important;
  border-color: #c79e58 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff4f4f !important;
  border-color: #ff4f4f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff4f4f !important;
  border-color: #ff4f4f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b10e0e !important;
  border-color: #b10e0e !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #610808 !important;
  border-color: #610808 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #610808 !important;
  border-color: #610808 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #58705b;
  color: #829d85;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #58705b !important;
  background-color: transparent!important;
  border-color: #58705b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #829d85 !important;
  border-color: #829d85 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #c7beb5;
  color: #ece9e6;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c7beb5 !important;
  background-color: transparent!important;
  border-color: #c7beb5 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #78695b !important;
  background-color: #ece9e6 !important;
  border-color: #ece9e6 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #58705b;
  color: #829d85;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #58705b !important;
  background-color: transparent!important;
  border-color: #58705b !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #829d85 !important;
  border-color: #829d85 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #c79e58;
  color: #ddc499;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c79e58 !important;
  background-color: transparent!important;
  border-color: #c79e58 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ddc499 !important;
  border-color: #ddc499 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff4f4f;
  color: #ffa6a6;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff4f4f !important;
  background-color: transparent!important;
  border-color: #ff4f4f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa6a6 !important;
  border-color: #ffa6a6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #610808;
  color: #b10e0e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #610808 !important;
  background-color: transparent!important;
  border-color: #610808 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b10e0e !important;
  border-color: #b10e0e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #cfcfcf;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #829d85 !important;
}
.text-secondary {
  color: #ece9e6 !important;
}
.text-success {
  color: #ddc499 !important;
}
.text-info {
  color: #829d85 !important;
}
.text-warning {
  color: #ffa6a6 !important;
}
.text-danger {
  color: #b10e0e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #516854 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c0b6ac !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c4984d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #516854 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff4040 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #520707 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
  font-style: italic;
  border-bottom: 1px solid transparent;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #829d85;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #829d85;
}
.alert-warning {
  background-color: #ffa6a6;
}
.alert-danger {
  background-color: #b10e0e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #829d85;
  border-color: #829d85;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #829d85;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c9d5cb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c9d5cb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f14e4e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #829d85 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #829d85;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #829d85;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #829d85;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #829d85;
  border-bottom-color: #829d85;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #829d85 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ece9e6 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23829d85' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sNBLwKVrvT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sNBLwKVrvT .carousel {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-sNBLwKVrvT .carousel {
    height: 940px;
  }
}
@media (max-width: 768px) {
  .cid-sNBLwKVrvT .carousel {
    height: 400px;
  }
}
.cid-sNBLwKVrvT .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sNBLwKVrvT .carousel .carousel-item,
.cid-sNBLwKVrvT .carousel .carousel-inner {
  height: 100%;
}
.cid-sNBLwKVrvT .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sNBLwKVrvT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sNBLwKVrvT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sNBLwKVrvT .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-sNBLwKVrvT .item-wrapper {
  position: relative;
  text-align: start;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sNBLwKVrvT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sNBLwKVrvT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sNBLwKVrvT .row {
  position: relative;
}
.cid-sNBLwKVrvT .container {
  margin-bottom: 3px;
}
.cid-sNBLwKVrvT .carousel-control {
  color: #ffffff;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-sNBLwKVrvT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNBLwKVrvT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sNBLwKVrvT .carousel-control {
    top: 70%;
  }
  .cid-sNBLwKVrvT .carousel-control.carousel-control-prev {
    margin-left: .5rem;
  }
  .cid-sNBLwKVrvT .carousel-control.carousel-control-next {
    margin-right: .5rem;
  }
}
.cid-sNBLwKVrvT .buttons-wrap {
  justify-content: start;
}
.cid-sNBLwKVrvT .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-sNBLwKVrvT .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-sNBLwKVrvT .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-sNBLwKVrvT .buttons-wrap .mbr-section-btn {
    margin-bottom: 10px;
  }
}
.cid-sNBLwKVrvT .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sNBLwKVrvT .wrap {
  z-index: 9999;
}
.cid-sNBLwKVrvT .btnHeader {
  font-family: 'Cormorant Garamond';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  cursor: pointer;
  left: 50%;
  top: 70%;
  border: 1px solid #9a948d;
  justify-content: center;
  transition: border 0.5s ease;
  transform: translateX(-50%);
}
.cid-sNBLwKVrvT .btnHeader::before,
.cid-sNBLwKVrvT .btnHeader::after {
  content: '';
  width: 102%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: -1%;
}
.cid-sNBLwKVrvT .btnHeader::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-sNBLwKVrvT .btnHeader:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sNBLwKVrvT .btnHeader::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-sNBLwKVrvT .btnHeader:hover::after {
  border-top: 1px solid #ffffff;
  border-left-color: #ffffff;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-sNBLwKVrvT .img {
  position: relative;
}
.cid-u1XuiOEOsX {
  background: #fffcf5;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u1XuiOEOsX .image-block {
  margin: auto;
}
.cid-u1XuiOEOsX .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u1XuiOEOsX .image-block {
    width: 100% !important;
  }
}
.cid-u1XuiOEOsX .container-fluid {
  padding: 0;
}
.cid-sNBLMZ8bqj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (max-width: 991px) {
  .cid-sNBLMZ8bqj .item {
    margin-bottom: 3rem;
  }
}
.cid-sNBLMZ8bqj .item-wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sNBLMZ8bqj .item-wrapper {
  height: 100%;
}
.cid-sNBLMZ8bqj .item-img {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.cid-sNBLMZ8bqj .item-img img {
  transition: all 1.5s;
  height: 100%;
  object-fit: cover;
}
.cid-sNBLMZ8bqj .btn {
  font-family: 'Cormorant Garamond';
  min-width: 215px;
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-sNBLMZ8bqj .effectHover {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #9A948D;
}
.cid-sNBLMZ8bqj .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-sNBLMZ8bqj .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-sNBLMZ8bqj .btn:hover .effectHover::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBLMZ8bqj .btn:hover .effectHover::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-sNBLMZ8bqj .text-wrapper {
  width: 85%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.cid-sNBLMZ8bqj .mbr-title,
.cid-sNBLMZ8bqj .mbr-section-btn {
  color: #ffffff;
}
.cid-sNBLPXZFYx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-sNBLPXZFYx .lin {
  font-style: italic;
}
.cid-sNBLPXZFYx .mbr-iconfont {
  font-size: 40px;
  color: #ffffff;
}
.cid-sNBLPXZFYx .lin,
.cid-sNBLPXZFYx .iconfont-wrapper {
  color: #000000;
}
.cid-sNBLSFIWuo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 992px) {
  .cid-sNBLSFIWuo .wrapper {
    position: relative;
    overflow: hidden;
    padding-left: 30px;
    padding-right: 25px;
  }
}
@media (min-width: 769px) {
  .cid-sNBLSFIWuo .row .col-12 {
    padding-left: 11px;
    padding-right: 11px;
  }
}
.cid-sNBLSFIWuo .item-img {
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.cid-sNBLSFIWuo .item-img img {
  object-fit: cover;
  height: 100%;
  transition: transform 1.5s;
}
.cid-sNBLSFIWuo .item-img:hover img {
  width: 100%;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cid-sNBLSFIWuo img {
  object-fit: cover;
}
@media (max-width: 575px) {
  .cid-sNBLSFIWuo .top {
    padding-top: 20px;
  }
}
.cid-sNBLSFIWuo .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: .7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sNBLSFIWuo .close::before {
  content: '\e91a';
}
.cid-sNBLSFIWuo .close:hover {
  color: #fff;
}
.cid-sNBLSFIWuo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sNBLSFIWuo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sNBLSFIWuo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sNBLSFIWuo .carousel-control-next span {
  margin-left: 5px;
}
.cid-sNBLSFIWuo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-sNBLSFIWuo .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-sNBLSFIWuo .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-sNBLSFIWuo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-sNBLSFIWuo .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-sNBLSFIWuo .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-sNBLSFIWuo .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-sNBLSFIWuo .carousel-item img {
    width: 70%;
  }
}
.cid-sNBLSFIWuo .carousel-inner > .active {
  display: block;
}
.cid-sNBLSFIWuo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNBLSFIWuo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sNBLSFIWuo .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-sNBLSFIWuo .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-sNBLSFIWuo .carousel-control,
  .cid-sNBLSFIWuo .carousel-indicators {
    position: fixed;
  }
}
.cid-sNBLSFIWuo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sNBLSFIWuo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sNBLSFIWuo .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-sNBLSFIWuo .modal-content {
    width: 70%;
  }
}
.cid-sNBLSFIWuo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sNBLSFIWuo .carousel {
  width: 100%;
}
.cid-sNBLSFIWuo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sNBLSFIWuo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sNBLSFIWuo .modal.fade .modal-dialog,
.cid-sNBLSFIWuo .modal.in .modal-dialog {
  transform: none;
}
.cid-sNBLSFIWuo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2ozZte5xH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-u2ozZte5xH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2ozZte5xH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ozZte5xH .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u2ozZte5xH .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u2ozZte5xH .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u2ozZte5xH .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u2ozZte5xH .container {
    padding: 0 16px;
  }
}
.cid-u2ozZte5xH .row {
  justify-content: center;
}
.cid-u2ozZte5xH .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u2ozZte5xH .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u2ozZte5xH .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u2ozZte5xH .mbr-section-title {
  color: #829d85;
  text-align: center;
}
.cid-u2ozZte5xH .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u2ozZte5xH .mbr-text {
  color: #4c4c4c;
  text-align: center;
}
.cid-u3Tmsk0yu6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fffcf5;
}
.cid-u3Tmsk0yu6 H4 {
  color: #ffffff;
}
.cid-u3Tmsk0yu6 H3 {
  color: #000000;
}
.cid-u2ozPpurbl {
  display: flex;
  padding-top: 120px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  align-items: flex-end;
}
.cid-u2ozPpurbl .mbr-overlay {
  background-color: #45494e;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .cid-u2ozPpurbl .row {
    justify-content: flex-start;
  }
  .cid-u2ozPpurbl .content-wrap {
    width: 38%;
  }
}
@media (max-width: 991px) {
  .cid-u2ozPpurbl .content-wrap {
    width: 100%;
  }
}
.cid-u2ozPpurbl .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-u2ozPpurbl .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-u2ozPpurbl .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u2ozPpurbl .mbr-section-btn {
    text-align: center;
  }
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u2oIcpdZNu {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u2oIcpdZNu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2oIcpdZNu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2oIcpdZNu .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u3gJPvEga1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-u3gJPvEga1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3gJPvEga1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u3gJPvEga1 .text-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-u3gJPvEga1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u3gJPvEga1 p {
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-u3gJPvEga1 .image-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-u3gJPvEga1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3gJPvEga1 .mbr-text,
.cid-u3gJPvEga1 .mbr-section-btn {
  color: #4c4c4c;
}
.cid-u3gJPvEga1 .mbr-section-title {
  color: #829d85;
}
.cid-u3QUSe3Bb9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-u3QUSe3Bb9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-u3QUSe3Bb9 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u3QUSe3Bb9 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-u3QUSe3Bb9 input {
  padding: .6rem 1.2rem;
  border-radius: 10px;
}
.cid-u3QUSe3Bb9 .btn {
  display: inline-block;
  border-radius: 30px;
}
.cid-u3QUSe3Bb9 img {
  width: 65%;
  margin: 0 auto;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-u3QUSe3Bb9 img {
    margin-top: 3rem;
  }
}
.cid-u3QUSe3Bb9 .mbr-section-title {
  color: #81a181;
}
.cid-u3QUSe3Bb9 .mbr-section-subtitle {
  color: #4c4c4c;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3gERXbAXy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3gERXbAXy .wrapper {
  height: 550px;
}
.cid-u3gEv3epPD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 1400px) {
  .cid-u3gEv3epPD .wrapper {
    padding: 0 6rem;
  }
}
.cid-u3gEv3epPD .card {
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-u3gEv3epPD .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-u3gEv3epPD .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-u3gEv3epPD .text-primary {
  color: #626262 !important;
}
.cid-u3gEv3epPD .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-u3gEv3epPD span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-u3gEv3epPD span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3gEv3epPD span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3gEv3epPD .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3gEv3epPD .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3gGtyc1uz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3gGtyc1uz .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3gGtyc1uz .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3gGtyc1uz .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3gGtyc1uz .mbr-section-subtitle {
  color: #000000;
}
.cid-u3gGtyc1uz .text {
  color: #BA9B67;
}
.cid-u3gGtyc1uz .author {
  color: #000000;
  font-style: italic;
}
.cid-u3gGtyc1uz .item-title {
  line-height: 1.161em;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-u3gGtyc1uz .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3gGtyc1uz .mbr-section-title {
  color: #829d85;
}
.cid-u3gGtyc1uz .mbr-text {
  color: #000000;
}
.cid-u3hx8nJnDm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3hx8nJnDm .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hx8nJnDm .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hx8nJnDm .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hx8nJnDm .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hx8nJnDm .text {
  color: #BA9B67;
}
.cid-u3hx8nJnDm .author {
  color: #000000;
  font-style: italic;
  text-align: left;
}
.cid-u3hx8nJnDm .item-title {
  line-height: 1.161em;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-u3hx8nJnDm .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hx8nJnDm .mbr-section-title {
  color: #000000;
}
.cid-u3hx8nJnDm .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3gFGpnFN6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5352-1181x687.png");
}
.cid-u3gFGpnFN6 .wrapper {
  height: 550px;
}
.cid-u3gZ6Te3fd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3gZ6Te3fd .mbr-text {
  color: #9a948d;
}
.cid-u3gZ6Te3fd .btn {
  padding: 0.8rem 4rem;
  position: relative;
  color: #c0bcb7;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u3gZ6Te3fd .effectHover {
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
  position: absolute;
  width: 105%;
  height: 85%;
  border: 1px solid #41392e;
}
.cid-u3gZ6Te3fd .effectHover::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-top: 1px solid #41392e;
  border-left: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3gZ6Te3fd .effectHover::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  border-bottom: 1px solid #41392e;
  border-right: 1px solid #41392e;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3gZ6Te3fd .btn:hover .effectHover::before {
  border-top: 1px solid #829d85;
  border-left: 1px solid #829d85;
  transform: scale3d(1, 1, 1);
}
.cid-u3gZ6Te3fd .btn:hover .effectHover::after {
  border-bottom: 1px solid #829d85;
  border-right: 1px solid #829d85;
  transform: scale3d(1, 1, 1);
}
@media (min-width: 992px) {
  .cid-u3gZ6Te3fd .right {
    padding-right: 60px;
  }
}
.cid-u3gZ6Te3fd .mbr-section-title {
  color: #4c4c4c;
}
.cid-u3h06Sl1uJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3h06Sl1uJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3h06Sl1uJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3h06Sl1uJ .container {
    padding: 0 16px;
  }
}
.cid-u3h06Sl1uJ .row {
  justify-content: space-between;
}
.cid-u3h06Sl1uJ .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u3h06Sl1uJ .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u3h06Sl1uJ .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u3h06Sl1uJ .content-wrapper {
  position: relative;
}
.cid-u3h06Sl1uJ .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u3h06Sl1uJ .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u3h06Sl1uJ .mbr-text {
  color: #333333;
}
.cid-u3h06Sl1uJ .mbr-section-title,
.cid-u3h06Sl1uJ .mbr-section-btn {
  color: #262221;
}
.cid-u3h06Sl1uJ .mbr-text,
.cid-u3h06Sl1uJ .icon-wrapper {
  color: #4c4c4c;
}
.cid-u3h0repAEd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3h0repAEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3h0repAEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3h0repAEd .container {
    padding: 0 16px;
  }
}
.cid-u3h0repAEd .row {
  justify-content: space-between;
}
.cid-u3h0repAEd .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u3h0repAEd .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u3h0repAEd .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u3h0repAEd .content-wrapper {
  position: relative;
}
.cid-u3h0repAEd .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u3h0repAEd .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u3h0repAEd .mbr-text {
  color: #333333;
}
.cid-u3h0repAEd .mbr-section-title,
.cid-u3h0repAEd .mbr-section-btn {
  color: #000000;
}
.cid-u3h0BT1USP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3h0BT1USP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3h0BT1USP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3h0BT1USP .container {
    padding: 0 16px;
  }
}
.cid-u3h0BT1USP .row {
  justify-content: space-between;
}
.cid-u3h0BT1USP .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u3h0BT1USP .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u3h0BT1USP .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u3h0BT1USP .content-wrapper {
  position: relative;
}
.cid-u3h0BT1USP .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u3h0BT1USP .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u3h0BT1USP .mbr-text {
  color: #333333;
}
.cid-u3h0BT1USP .mbr-section-title,
.cid-u3h0BT1USP .mbr-section-btn {
  color: #000000;
}
.cid-u3h0VOqKmX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3h0VOqKmX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3h0VOqKmX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3h0VOqKmX .container {
    padding: 0 16px;
  }
}
.cid-u3h0VOqKmX .row {
  justify-content: space-between;
}
.cid-u3h0VOqKmX .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u3h0VOqKmX .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u3h0VOqKmX .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u3h0VOqKmX .content-wrapper {
  position: relative;
}
.cid-u3h0VOqKmX .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u3h0VOqKmX .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u3h0VOqKmX .mbr-text {
  color: #333333;
}
.cid-u3h0VOqKmX .mbr-section-title,
.cid-u3h0VOqKmX .mbr-section-btn {
  color: #000000;
}
.cid-u3h12yx0JS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3h12yx0JS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3h12yx0JS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3h12yx0JS .container {
    padding: 0 16px;
  }
}
.cid-u3h12yx0JS .row {
  justify-content: space-between;
}
.cid-u3h12yx0JS .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u3h12yx0JS .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u3h12yx0JS .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u3h12yx0JS .content-wrapper {
  position: relative;
}
.cid-u3h12yx0JS .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u3h12yx0JS .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u3h12yx0JS .mbr-text {
  color: #333333;
}
.cid-u3h12yx0JS .mbr-section-title,
.cid-u3h12yx0JS .mbr-section-btn {
  color: #000000;
}
.cid-u3h1fdaswl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3h1fdaswl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3h1fdaswl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3h1fdaswl .container {
    padding: 0 16px;
  }
}
.cid-u3h1fdaswl .row {
  justify-content: space-between;
}
.cid-u3h1fdaswl .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u3h1fdaswl .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-u3h1fdaswl .image-wrapper img {
  height: 520px;
  object-fit: cover;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em !important;
}
.cid-u3h1fdaswl .content-wrapper {
  position: relative;
}
.cid-u3h1fdaswl .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u3h1fdaswl .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u3h1fdaswl .mbr-text {
  color: #333333;
}
.cid-u3h1fdaswl .mbr-section-title,
.cid-u3h1fdaswl .mbr-section-btn {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3gHKoVbjX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3gHKoVbjX .wrapper {
  height: 550px;
}
.cid-u3gJlkY43X {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-u3gJlkY43X .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3gJlkY43X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3gJlkY43X .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u3gJlkY43X .row {
    flex-wrap: wrap;
  }
}
.cid-u3gJlkY43X .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u3gJlkY43X .text-wrap {
    margin-bottom: 50px;
  }
}
.cid-u3gJlkY43X .mbr-section-title {
  color: #829D85;
  margin-bottom: 30px;
  text-align: left;
}
.cid-u3gJlkY43X .img-wrap {
  position: relative;
  width: 100%;
}
.cid-u3gJlkY43X .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-u3gJlkY43X .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-u3gJlkY43X .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-u3gJlkY43X .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-u3gJlkY43X .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-u3gJlkY43X .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-u3gJlkY43X .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-u3gJlkY43X form {
  width: 100%;
}
.cid-u3gJlkY43X form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-u3gJlkY43X form p {
  color: #353535;
}
.cid-u3gJlkY43X form .mbr-section-btn .btn {
  width: 100%;
}
.cid-u3gJlkY43X form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-u3gJlkY43X form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-u3gJlkY43X form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-u3gJlkY43X form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #829d85 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 0;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  transition: .3s;
}
.cid-u3gJlkY43X form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-u3gJlkY43X form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-u3gJlkY43X form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-u3gJlkY43X form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-u3gJlkY43X form select {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-u3gJlkY43X form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form input,
.cid-u3gJlkY43X form textarea {
  transition: .4s all;
}
.cid-u3gJlkY43X form input:active,
.cid-u3gJlkY43X form textarea:active,
.cid-u3gJlkY43X form input:focus,
.cid-u3gJlkY43X form textarea:focus {
  background-color: transparent !important;
  border-color: #829d85 !important;
  outline: none !important;
}
.cid-u3gJlkY43X form input:active::-webkit-input-placeholder,
.cid-u3gJlkY43X form textarea:active::-webkit-input-placeholder,
.cid-u3gJlkY43X form input:focus::-webkit-input-placeholder,
.cid-u3gJlkY43X form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form input:active::-moz-placeholder,
.cid-u3gJlkY43X form textarea:active::-moz-placeholder,
.cid-u3gJlkY43X form input:focus::-moz-placeholder,
.cid-u3gJlkY43X form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form input:active:-moz-placeholder,
.cid-u3gJlkY43X form textarea:active:-moz-placeholder,
.cid-u3gJlkY43X form input:focus:-moz-placeholder,
.cid-u3gJlkY43X form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form input:active:-ms-input-placeholder,
.cid-u3gJlkY43X form textarea:active:-ms-input-placeholder,
.cid-u3gJlkY43X form input:focus:-ms-input-placeholder,
.cid-u3gJlkY43X form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-u3gJlkY43X form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-u3gJlkY43X form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-u3gJlkY43X form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-u3gJlkY43X form .form-check label {
  color: #353535;
}
.cid-u3gJlkY43X form .form-check-input {
  border-color: #829d85 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-u3gJlkY43X form .form-check-input:focus,
.cid-u3gJlkY43X form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #829d85 !important;
}
.cid-u3gJlkY43X form .form-check-input:checked {
  border-color: #829d85 !important;
  background-color: #FFFCF5 !important;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3gI4d9Erw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3gI4d9Erw .wrapper {
  height: 550px;
}
.cid-u3Tqj21tpo {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-u3Tqj21tpo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3Tqj21tpo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3Tqj21tpo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u3Tqj21tpo .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u3Tqj21tpo .container {
    padding: 0 20px;
  }
}
.cid-u3Tqj21tpo .row {
  justify-content: center;
}
.cid-u3Tqj21tpo .title-wrapper {
  margin-bottom: 50px;
}
.cid-u3Tqj21tpo .title-wrapper .mbr-date {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3Tqj21tpo .title-wrapper .mbr-date {
    margin-bottom: 24px;
  }
}
.cid-u3Tqj21tpo .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-u3Tqj21tpo .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3Tqj21tpo .item .item-wrapper {
  background-color: #fffcf5;
  display: flex;
  padding: 24px 50px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u3Tqj21tpo .item .item-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-u3Tqj21tpo .item .item-wrapper .item-img {
  width: 330px;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3Tqj21tpo .item .item-wrapper .item-img {
    margin-right: 0;
    margin-bottom: 16px;
    width: 100%;
  }
}
.cid-u3Tqj21tpo .item .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u3Tqj21tpo .item .item-wrapper .item-img img {
    width: 200px;
    height: 180px;
    margin: 0 auto;
  }
}
.cid-u3Tqj21tpo .item .item-wrapper .item-content {
  width: 60%;
}
.cid-u3Tqj21tpo .item .item-wrapper .item-content .title-wrap {
  margin-bottom: 16px;
}
.cid-u3Tqj21tpo .item .item-wrapper .item-content .title-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3Tqj21tpo .item .item-wrapper .item-content .title-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-u3Tqj21tpo .item .item-wrapper .item-content .price-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cid-u3Tqj21tpo .item .item-wrapper .item-content .price-wrapper .price-wrap .mbr-price-desc {
  margin-bottom: 10px;
}
.cid-u3Tqj21tpo .item .item-wrapper .item-content .price-wrapper .price-wrap .mbr-price {
  margin-bottom: 10px;
}
.cid-u3Tqj21tpo .mbr-date {
  color: #1b1b1b;
  text-align: center;
}
.cid-u3Tqj21tpo .mbr-section-title {
  color: #829d85;
  text-align: center;
}
.cid-u3Tqj21tpo .mbr-text {
  color: #1b1b1b;
  text-align: center;
}
.cid-u3Tqj21tpo .item-title {
  color: #829d85;
}
.cid-u3Tqj21tpo .mbr-desc {
  color: #4c4c4c;
  text-align: left;
}
.cid-u3Tqj21tpo .mbr-price-desc {
  color: #1b1b1b;
}
.cid-u3Tqj21tpo .mbr-price {
  color: #1b1b1b;
}
.cid-u3Tt09qiuy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3Tt09qiuy .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3Tt09qiuy .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3Tt09qiuy .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3Tt09qiuy .mbr-section-subtitle {
  color: #000000;
}
.cid-u3Tt09qiuy .text {
  color: #BA9B67;
}
.cid-u3Tt09qiuy .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3Tt09qiuy .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3Tt09qiuy .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3Tt09qiuy .mbr-section-title {
  color: #829d85;
}
.cid-u3Tt09qiuy .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u333MCU3b7 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u333MCU3b7 img {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
}
.cid-u333MCU3b7 .image-wrapper {
  max-height: 800px;
  overflow: hidden;
}
.cid-u333MCU3b7 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u333MCU3b7 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u333MCU3b7 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u333MCU3b7 .soc-item::before,
.cid-u333MCU3b7 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u333MCU3b7 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u333MCU3b7 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u333MCU3b7 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u333MCU3b7 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u333MCU3b7 .mbr-section-subtitle {
  color: #4c4c4c;
  margin-bottom: 77px;
}
.cid-u333MCU3b7 .text {
  color: #ddc499;
}
.cid-u333MCU3b7 .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-u333MCU3b7 .info {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u333MCU3b7 .right {
    padding-right: 32px;
  }
  .cid-u333MCU3b7 .left {
    padding-left: 32px;
  }
}
.cid-u333MCU3b7 .mbr-section-title {
  color: #829d85;
}
.cid-u3gVuGbvvC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-u3gVuGbvvC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3gVuGbvvC .container {
  max-width: 1300px;
}
.cid-u3gVuGbvvC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3gVuGbvvC .text-wrapper {
  max-width: 700px;
  margin: auto;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-u3gVuGbvvC .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-u3gVuGbvvC .row {
  background: #1f6463;
}
@media (max-width: 991px) {
  .cid-u3gVuGbvvC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3gVuGbvvC .image-wrapper {
  padding: 0;
}
.cid-u3gVuGbvvC .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u3gVuGbvvC .mbr-section-title {
  color: #ffffff;
}
.cid-u3gVuGbvvC .mbr-text,
.cid-u3gVuGbvvC .mbr-section-btn {
  color: #ffffff;
}
.cid-u3gVuGbvvC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3RbJPiTHU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5359-1500x795.jpg");
}
.cid-u3RbJPiTHU .wrapper {
  height: 550px;
}
.cid-u3337dA6yn {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-u3337dA6yn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3337dA6yn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3337dA6yn .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3337dA6yn .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3337dA6yn .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3337dA6yn .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3337dA6yn .container {
    padding: 0 16px;
  }
}
.cid-u3337dA6yn .row {
  justify-content: center;
}
.cid-u3337dA6yn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3337dA6yn .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u3337dA6yn .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-u3337dA6yn .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-u3337dA6yn .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-u3337dA6yn .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u3337dA6yn .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-u3337dA6yn .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u3337dA6yn .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-u3337dA6yn .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-u3337dA6yn .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-u3337dA6yn .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u3337dA6yn .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-u3337dA6yn .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-u3337dA6yn .mbr-section-title {
  color: #829d85;
  text-align: center;
}
.cid-u3337dA6yn .panel-title {
  color: #000000;
}
.cid-u3337dA6yn .panel-text {
  color: #4c4c4c;
}
.cid-u3337dA6yn .panel-title-edit {
  color: #829d85;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3hhg64wwu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5222-1632x2448.png");
}
.cid-u3hhg64wwu .wrapper {
  height: 550px;
}
.cid-u3hihiQez5 {
  display: flex;
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fffcf5;
}
@media (min-width: 768px) {
  .cid-u3hihiQez5 {
    align-items: center;
  }
  .cid-u3hihiQez5 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u3hihiQez5 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u3hihiQez5 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u3hihiQez5 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u3hihiQez5 .content-wrap {
    width: 100%;
  }
}
.cid-u3hihiQez5 .mbr-section-title {
  text-align: center;
  color: #829d85;
}
.cid-u3hihiQez5 .mbr-text,
.cid-u3hihiQez5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u3QYtJDoDv {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  position: relative;
  overflow: hidden;
}
.cid-u3QYtJDoDv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3QYtJDoDv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3QYtJDoDv .row {
  justify-content: center;
}
.cid-u3QYtJDoDv .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-u3QYtJDoDv .title-container {
    margin-bottom: 64px;
  }
}
.cid-u3QYtJDoDv .mbr-section-title {
  color: #161616;
  margin-bottom: 24px !important;
}
.cid-u3QYtJDoDv .mbr-section-subtitle {
  color: #161616;
}
.cid-u3QYtJDoDv .toggle-panel {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cid-u3QYtJDoDv .card {
  border-bottom: 2px solid #161616;
  border-top: 2px solid #161616;
  margin-bottom: -2px;
  border-radius: 0 !important;
}
.cid-u3QYtJDoDv .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u3QYtJDoDv .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-u3QYtJDoDv .panel-title {
    align-items: flex-start;
  }
}
.cid-u3QYtJDoDv .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 1.3rem !important;
  color: #161616;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .cid-u3QYtJDoDv .mbr-iconfont {
    margin-top: 14px;
  }
}
@media (max-width: 565px) {
  .cid-u3QYtJDoDv .mbr-iconfont {
    margin-top: 10px;
    font-size: 1rem !important;
  }
}
.cid-u3QYtJDoDv .collapsed .mbr-iconfont {
  transform: rotate(0);
}
.cid-u3QYtJDoDv .card-header {
  border-bottom: none;
  padding: 24px 0;
}
.cid-u3QYtJDoDv .panel-body {
  margin-bottom: 24px;
}
.cid-u3QYtJDoDv .panel-title-edit {
  color: #829d85;
}
.cid-u3QYtJDoDv .panel-text {
  color: #4c4c4c;
  margin-bottom: 0;
}
.cid-u3QYtJDoDv .circle-blur {
  position: absolute;
  bottom: -15%;
  right: 0;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u334VUpgBC {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u334VUpgBC .item {
  padding-bottom: 2rem;
}
.cid-u334VUpgBC img,
.cid-u334VUpgBC .item-wrapper {
  transition: all 0.7s;
}
.cid-u334VUpgBC .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u334VUpgBC .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u334VUpgBC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-u334VUpgBC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u334VUpgBC .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-u334VUpgBC .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u334VUpgBC .close::before {
  content: "\e91a";
}
.cid-u334VUpgBC .close:hover {
  color: #fff;
}
.cid-u334VUpgBC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u334VUpgBC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u334VUpgBC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u334VUpgBC .carousel-control-next span {
  margin-left: 5px;
}
.cid-u334VUpgBC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-u334VUpgBC .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-u334VUpgBC .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-u334VUpgBC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-u334VUpgBC .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-u334VUpgBC .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-u334VUpgBC .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-u334VUpgBC .carousel-item img {
    width: 70%;
  }
}
.cid-u334VUpgBC .carousel-inner > .active {
  display: block;
}
.cid-u334VUpgBC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u334VUpgBC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u334VUpgBC .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u334VUpgBC .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-u334VUpgBC .carousel-control,
  .cid-u334VUpgBC .carousel-indicators {
    position: fixed;
  }
}
.cid-u334VUpgBC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u334VUpgBC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u334VUpgBC .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-u334VUpgBC .modal-content {
    width: 70%;
  }
}
.cid-u334VUpgBC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u334VUpgBC .carousel {
  width: 100%;
}
.cid-u334VUpgBC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u334VUpgBC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u334VUpgBC .modal.fade .modal-dialog,
.cid-u334VUpgBC .modal.in .modal-dialog {
  transform: none;
}
.cid-u334VUpgBC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u334VUpgBC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u334VUpgBC .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u334VUpgBC .soc-item span {
  color: #000000;
  z-index: 99999;
}
.cid-u334VUpgBC .soc-item::before,
.cid-u334VUpgBC .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u334VUpgBC .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u334VUpgBC .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u334VUpgBC .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u334VUpgBC .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u334VUpgBC .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-u334VUpgBC .text {
  color: #ddc499;
}
.cid-u334VUpgBC .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-u334VUpgBC .right {
    padding-right: 32px;
  }
  .cid-u334VUpgBC .left {
    padding-left: 32px;
  }
}
.cid-u334VUpgBC .mbr-section-title {
  color: #829d85;
}
.cid-u334VUpgBC .mbr-text {
  color: #000000;
}
.cid-u335lJomw1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-u335lJomw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u335lJomw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u335lJomw1 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u335lJomw1 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u335lJomw1 .container {
    padding: 0 25px;
  }
}
.cid-u335lJomw1 .row {
  justify-content: center;
}
.cid-u335lJomw1 .item .item-wrapper {
  margin-bottom: 32px;
}
.cid-u335lJomw1 .item .item-wrapper a {
  display: block;
}
.cid-u335lJomw1 .item .item-wrapper a:hover .item-img img {
  transform: scale(1.06) translateX(6px);
}
.cid-u335lJomw1 .item .item-wrapper a .item-img {
  overflow: hidden;
}
.cid-u335lJomw1 .item .item-wrapper a .item-img img {
  height: 345px;
  object-fit: cover;
  margin-bottom: 15px;
  transform: scale(1.06) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u33afcVSNU {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-u33afcVSNU img {
  transition: all 0.3s;
  object-fit: cover;
}
.cid-u33afcVSNU .row {
  justify-content: space-between;
}
.cid-u33afcVSNU .image-wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.cid-u33afcVSNU .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-u33afcVSNU .image-wrapper {
    padding: 1rem;
  }
}
.cid-u33afcVSNU .image-wrapper:hover .img-link,
.cid-u33afcVSNU .image-wrapper:focus-within .img-link {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .cid-u33afcVSNU .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-u33afcVSNU .image-wrapper .img-link {
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .cid-u33afcVSNU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u33afcVSNU .img-link {
  background: #fffcf5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  padding: 2rem;
  position: absolute;
  bottom: -1rem;
  left: 0;
  color: #000000;
  width: 100%;
  transform: translateY(100%);
}
.cid-u33afcVSNU .img-link span {
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  color: #000000;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-u33afcVSNU .img-link {
    flex-direction: column;
  }
  .cid-u33afcVSNU .img-link .status,
  .cid-u33afcVSNU .img-link .icons {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u33afcVSNU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u33afcVSNU .mbr-section-title {
  color: #829d85;
}
.cid-u33afcVSNU .mbr-section-text {
  color: #4c4c4c;
}
.cid-u33afcVSNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u33afcVSNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3Uait9LaG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-u3Uait9LaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3Uait9LaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-u3Uait9LaG .text-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-u3Uait9LaG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u3Uait9LaG p {
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-u3Uait9LaG .image-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-u3Uait9LaG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3Uait9LaG .mbr-text,
.cid-u3Uait9LaG .mbr-section-btn {
  color: #4c4c4c;
}
.cid-u3Uait9LaG .mbr-section-title {
  color: #829d85;
}
.cid-u3Uait9LaG .card-title {
  color: #829d85;
}
.cid-u3Uait9LaG .card-subtitle {
  color: #4c4c4c;
}
.cid-u33adllx2d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fffcf5;
}
.cid-u33adllx2d .item:focus,
.cid-u33adllx2d span:focus {
  outline: none;
}
.cid-u33adllx2d .item-wrapper {
  position: relative;
}
.cid-u33adllx2d .mbr-section-title {
  margin-bottom: 24px;
  color: #829d85;
  text-align: center;
}
.cid-u33adllx2d .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-u33adllx2d .mbr-text,
.cid-u33adllx2d .mbr-section-btn {
  text-align: left;
}
.cid-u33adllx2d .item-title {
  text-align: left;
}
.cid-u33adllx2d .item-subtitle {
  text-align: left;
}
.cid-u33adllx2d .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 23%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-u33adllx2d .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-u33adllx2d .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-u33adllx2d .embla__slide {
    min-width: 375px;
  }
}
.cid-u33adllx2d .embla__button--next,
.cid-u33adllx2d .embla__button--prev {
  display: flex;
}
.cid-u33adllx2d .embla__button {
  background-color: rgba(17, 17, 17, 0.5);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px 0px;
  transition: all .3s;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u33adllx2d .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u33adllx2d .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u33adllx2d .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u33adllx2d .embla__button:hover {
  background-color: #14142b;
}
.cid-u33adllx2d .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u33adllx2d .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u33adllx2d .embla {
  position: relative;
  width: 100%;
}
.cid-u33adllx2d .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-u33adllx2d .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u33adllx2d .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u33adllx2d .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u33adllx2d .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-u33adllx2d .shadow {
  border-radius: 8px;
  box-shadow: none !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 24px;
  background-color: #ffffff;
}
.cid-u33adllx2d .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: inline;
  padding-right: 10px;
  padding-bottom: 15px;
}
.cid-u33adllx2d .card-title {
  color: #000000;
  transition: 0.35s;
  text-align: left;
  font-size: 14px;
}
.cid-u33adllx2d .card-text {
  color: #000000;
  text-align: left;
  font-size: 18px;
  margin-bottom: 15px;
}
.cid-u33adllx2d .margin {
  margin-right: 14px;
}
.cid-u33adllx2d .article {
  display: contents;
}
.cid-u33adllx2d .link-row {
  align-items: center;
}
.cid-u33adllx2d .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
  display: inline;
}
.cid-u33adllx2d .iconfont-wrapper .mbr-iconfont:before {
  font-size: 16px;
}
.cid-u33adllx2d .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-u33adllx2d .btn {
  margin-top: 20px;
}
.cid-u33adllx2d a.btn > span {
  margin-left: 0.5rem;
}
.cid-u33adllx2d img {
  border-radius: 50%;
  width: 44px;
  height: auto;
}
.cid-u33adllx2d .card-title1 {
  display: inline;
  font-size: 12px;
  color: #8b8d8d;
}
.cid-u33adllx2d .top {
  display: flex;
  align-items: center;
}
.cid-u33adllx2d .mbr-iconfont:before {
  font-size: 34px;
}
.cid-u33adllx2d .mbr-iconfont {
  width: auto;
  display: inline-flex;
  padding: 0;
  padding-right: 10px;
}
.cid-u33adllx2d .small-header {
  font-size: 12px;
  color: #8b8d8d;
}
.cid-u33adllx2d .mbr-text {
  font-size: 14px;
}
.cid-u33adllx2d .fl {
  display: flex;
  align-items: flex-start;
}
.cid-u33adllx2d .iconfont-wrapper .mbr-iconfont {
  padding-right: 0px;
}
.cid-u33adllx2d button .mbr-iconfont:before {
  font-size: 16px;
}
.cid-u33adllx2d button .mbr-iconfont {
  padding-right: 2px;
}
.cid-u33adllx2d a:hover {
  text-decoration: underline;
}
.cid-u33adllx2d .mbr-text a {
  color: #1c91ff !important;
}
.cid-u33adllx2d a {
  transition: all .3s;
}
.cid-u33adllx2d .mbr-text a:hover {
  color: #1c91ff !important;
}
@media (max-width: 576px) {
  .cid-u33adllx2d .embla__slide {
    min-width: 100%;
  }
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3hndRqeeU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3hndRqeeU .wrapper {
  height: 550px;
}
.cid-u3hndRQ9P0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 1400px) {
  .cid-u3hndRQ9P0 .wrapper {
    padding: 0 6rem;
  }
}
.cid-u3hndRQ9P0 .card {
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-u3hndRQ9P0 .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-u3hndRQ9P0 .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-u3hndRQ9P0 .text-primary {
  color: #626262 !important;
}
.cid-u3hndRQ9P0 .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-u3hndRQ9P0 span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-u3hndRQ9P0 span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hndRQ9P0 span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hndRQ9P0 .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hndRQ9P0 .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hndSeeOh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3hndSeeOh .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hndSeeOh .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hndSeeOh .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hndSeeOh .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hndSeeOh .text {
  color: #BA9B67;
}
.cid-u3hndSeeOh .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hndSeeOh .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hndSeeOh .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hndSeeOh .mbr-section-title {
  color: #829d85;
}
.cid-u3hndSeeOh .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3hnlVmW1Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3hnlVmW1Z .wrapper {
  height: 550px;
}
.cid-u3hnlVLIWY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 1400px) {
  .cid-u3hnlVLIWY .wrapper {
    padding: 0 6rem;
  }
}
.cid-u3hnlVLIWY .card {
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-u3hnlVLIWY .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-u3hnlVLIWY .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-u3hnlVLIWY .text-primary {
  color: #626262 !important;
}
.cid-u3hnlVLIWY .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-u3hnlVLIWY span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-u3hnlVLIWY span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hnlVLIWY span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hnlVLIWY .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hnlVLIWY .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hnlWc4AZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3hnlWc4AZ .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hnlWc4AZ .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hnlWc4AZ .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hnlWc4AZ .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hnlWc4AZ .text {
  color: #BA9B67;
}
.cid-u3hnlWc4AZ .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hnlWc4AZ .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hnlWc4AZ .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hnlWc4AZ .mbr-section-title {
  color: #829d85;
}
.cid-u3hnlWc4AZ .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3hnqcVGm6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3hnqcVGm6 .wrapper {
  height: 550px;
}
.cid-u3hnqdxodK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 1400px) {
  .cid-u3hnqdxodK .wrapper {
    padding: 0 6rem;
  }
}
.cid-u3hnqdxodK .card {
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-u3hnqdxodK .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-u3hnqdxodK .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-u3hnqdxodK .text-primary {
  color: #626262 !important;
}
.cid-u3hnqdxodK .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-u3hnqdxodK span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-u3hnqdxodK span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hnqdxodK span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hnqdxodK .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hnqdxodK .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hnqe8utO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-u3hnqe8utO .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hnqe8utO .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hnqe8utO .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hnqe8utO .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hnqe8utO .text {
  color: #BA9B67;
}
.cid-u3hnqe8utO .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hnqe8utO .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hnqe8utO .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hnqe8utO .mbr-section-title {
  color: #829d85;
}
.cid-u3hnqe8utO .mbr-text {
  color: #000000;
}
.cid-u3hqxk3RGT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-u3hqxk3RGT .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hqxk3RGT .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hqxk3RGT .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hqxk3RGT .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hqxk3RGT .text {
  color: #BA9B67;
}
.cid-u3hqxk3RGT .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hqxk3RGT .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hqxk3RGT .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hqxk3RGT .mbr-section-title {
  color: #000000;
}
.cid-u3hqxk3RGT .mbr-text {
  color: #000000;
}
.cid-u3hriRlNIf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3hriRlNIf .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hriRlNIf .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hriRlNIf .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hriRlNIf .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hriRlNIf .text {
  color: #BA9B67;
}
.cid-u3hriRlNIf .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hriRlNIf .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hriRlNIf .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hriRlNIf .mbr-section-title {
  color: #000000;
}
.cid-u3hriRlNIf .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3hntMdG4a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3hntMdG4a .wrapper {
  height: 550px;
}
.cid-u3hntMN6XL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 1400px) {
  .cid-u3hntMN6XL .wrapper {
    padding: 0 6rem;
  }
}
.cid-u3hntMN6XL .card {
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-u3hntMN6XL .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-u3hntMN6XL .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-u3hntMN6XL .text-primary {
  color: #626262 !important;
}
.cid-u3hntMN6XL .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-u3hntMN6XL span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-u3hntMN6XL span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hntMN6XL span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hntMN6XL .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hntMN6XL .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hntNrKtF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3hntNrKtF .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hntNrKtF .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hntNrKtF .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hntNrKtF .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hntNrKtF .text {
  color: #BA9B67;
}
.cid-u3hntNrKtF .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hntNrKtF .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hntNrKtF .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hntNrKtF .mbr-section-title {
  color: #829d85;
}
.cid-u3hntNrKtF .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3hnyH1BJV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3hnyH1BJV .wrapper {
  height: 550px;
}
.cid-u3hnyHstJz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 1400px) {
  .cid-u3hnyHstJz .wrapper {
    padding: 0 6rem;
  }
}
.cid-u3hnyHstJz .card {
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-u3hnyHstJz .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-u3hnyHstJz .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-u3hnyHstJz .text-primary {
  color: #626262 !important;
}
.cid-u3hnyHstJz .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-u3hnyHstJz span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-u3hnyHstJz span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hnyHstJz span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3hnyHstJz .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hnyHstJz .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3hnyHW1QW {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3hnyHW1QW .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hnyHW1QW .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hnyHW1QW .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hnyHW1QW .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hnyHW1QW .text {
  color: #BA9B67;
}
.cid-u3hnyHW1QW .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hnyHW1QW .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hnyHW1QW .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hnyHW1QW .mbr-section-title {
  color: #829d85;
}
.cid-u3hnyHW1QW .mbr-text {
  color: #000000;
}
.cid-u3hsv3mtbF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3hsv3mtbF .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hsv3mtbF .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hsv3mtbF .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hsv3mtbF .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hsv3mtbF .text {
  color: #BA9B67;
}
.cid-u3hsv3mtbF .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hsv3mtbF .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hsv3mtbF .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hsv3mtbF .mbr-section-title {
  color: #000000;
}
.cid-u3hsv3mtbF .mbr-text {
  color: #000000;
}
.cid-u3hsFnBr8u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3hsFnBr8u .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hsFnBr8u .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hsFnBr8u .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hsFnBr8u .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hsFnBr8u .text {
  color: #BA9B67;
}
.cid-u3hsFnBr8u .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hsFnBr8u .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hsFnBr8u .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hsFnBr8u .mbr-section-title {
  color: #000000;
}
.cid-u3hsFnBr8u .mbr-text {
  color: #000000;
}
.cid-u3hsHBOsA3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3hsHBOsA3 .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hsHBOsA3 .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hsHBOsA3 .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hsHBOsA3 .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hsHBOsA3 .text {
  color: #BA9B67;
}
.cid-u3hsHBOsA3 .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hsHBOsA3 .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hsHBOsA3 .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hsHBOsA3 .mbr-section-title {
  color: #000000;
}
.cid-u3hsHBOsA3 .mbr-text {
  color: #000000;
}
.cid-u3hsH4Y7r6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3hsH4Y7r6 .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3hsH4Y7r6 .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3hsH4Y7r6 .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3hsH4Y7r6 .mbr-section-subtitle {
  color: #000000;
}
.cid-u3hsH4Y7r6 .text {
  color: #BA9B67;
}
.cid-u3hsH4Y7r6 .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3hsH4Y7r6 .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3hsH4Y7r6 .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3hsH4Y7r6 .mbr-section-title {
  color: #000000;
}
.cid-u3hsH4Y7r6 .mbr-text {
  color: #000000;
}
.cid-u3huDMMSxN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3huDMMSxN .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3huDMMSxN .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3huDMMSxN .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3huDMMSxN .mbr-section-subtitle {
  color: #000000;
}
.cid-u3huDMMSxN .text {
  color: #BA9B67;
}
.cid-u3huDMMSxN .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3huDMMSxN .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3huDMMSxN .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3huDMMSxN .mbr-section-title {
  color: #000000;
}
.cid-u3huDMMSxN .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-u3R20SLmLX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-5358-1500x795.jpg");
}
.cid-u3R20SLmLX .wrapper {
  height: 550px;
}
.cid-u3R20T3JKb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
@media (min-width: 1400px) {
  .cid-u3R20T3JKb .wrapper {
    padding: 0 6rem;
  }
}
.cid-u3R20T3JKb .card {
  background-image: url("../../../assets/images/img-5331-1600x1066.jpg");
  background-size: cover;
  padding: 12.5rem 1rem;
  border-radius: 0;
}
.cid-u3R20T3JKb .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-u3R20T3JKb .mbr-link {
  text-align: center;
  margin-top: 1rem;
}
.cid-u3R20T3JKb .text-primary {
  color: #626262 !important;
}
.cid-u3R20T3JKb .btn {
  padding: .8rem 4rem;
  position: relative;
  color: #ffffff;
}
.cid-u3R20T3JKb span {
  position: absolute;
  width: 105%;
  height: 90%;
  border: 1px solid #C0BCB7;
}
.cid-u3R20T3JKb span::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: top left;
  border-top: 1px solid #C0BCB7;
  border-left: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3R20T3JKb span::after {
  content: "";
  right: -1px;
  position: absolute;
  width: 100%;
  height: 101%;
  transform-origin: bottom right;
  border-bottom: 1px solid #C0BCB7;
  border-right: 1px solid #C0BCB7;
  transform: scale3d(0, 0, 1);
  transition: all 0.7s;
}
.cid-u3R20T3JKb .btn:hover span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3R20T3JKb .btn:hover span::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale3d(1, 1, 1);
}
.cid-u3R20TlPgw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-u3R20TlPgw .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u3R20TlPgw .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-u3R20TlPgw .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-u3R20TlPgw .mbr-section-subtitle {
  color: #000000;
}
.cid-u3R20TlPgw .text {
  color: #BA9B67;
}
.cid-u3R20TlPgw .author {
  color: #4c4c4c;
  font-style: italic;
  text-align: left;
}
.cid-u3R20TlPgw .item-title {
  line-height: 1.161em;
  color: #829d85;
}
@media (min-width: 992px) {
  .cid-u3R20TlPgw .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-u3R20TlPgw .mbr-section-title {
  color: #829d85;
}
.cid-u3R20TlPgw .mbr-text {
  color: #000000;
}
.cid-u3R4vOX3y1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-u3R4vOX3y1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3R4vOX3y1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3R4vOX3y1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u3R4vOX3y1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u3R4vOX3y1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u3R4vOX3y1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #829d85;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list li:hover {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u3R4vOX3y1 .list a:hover {
  color: #829d85 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u3R4vOX3y1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u3R4vOX3y1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u3R4vOX3y1 .soc-item {
    padding: 10px;
  }
}
.cid-u3R4vOX3y1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 30px;
  color: #829d85;
}
.cid-u3R4vOX3y1 .soc-item:hover .mbr-iconfont {
  color: #829d85 !important;
}
.cid-u3R4vOX3y1 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u3R4vOX3y1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #829d85;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .border-item {
    margin-top: 1.5rem;
  }
}
.cid-u3R4vOX3y1 .copyright {
  color: #829d85;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u3R4vOX3y1 .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u3R4vOX3y1 .copyright {
    margin-top: 1.5rem;
  }
}
.cid-u3R7Q0V9sA {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-u3R7Q0V9sA .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u3R7Q0V9sA .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #fffcf5;
  display: flex;
  flex-direction: column;
}
.cid-u3R7Q0V9sA .navbar.opened {
  transition: all 0.2s;
  background: #fffcf5 !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u3R7Q0V9sA .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #829d85;
}
.cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-u3R7Q0V9sA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-u3R7Q0V9sA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-u3R7Q0V9sA .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-u3R7Q0V9sA .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-u3R7Q0V9sA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-u3R7Q0V9sA .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-u3R7Q0V9sA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-u3R7Q0V9sA .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-u3R7Q0V9sA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3R7Q0V9sA .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-u3R7Q0V9sA .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-u3R7Q0V9sA .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u3R7Q0V9sA .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-u3R7Q0V9sA .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3R7Q0V9sA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u3R7Q0V9sA .dropdown-item.active,
.cid-u3R7Q0V9sA .dropdown-item:active {
  background-color: transparent;
}
.cid-u3R7Q0V9sA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fffcf5;
}
.cid-u3R7Q0V9sA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-u3R7Q0V9sA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3R7Q0V9sA ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-u3R7Q0V9sA .navbar-buttons {
  text-align: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829d85;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3R7Q0V9sA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-u3R7Q0V9sA .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-u3R7Q0V9sA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-u3R7Q0V9sA .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-u3R7Q0V9sA .nav-link:hover,
.cid-u3R7Q0V9sA .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-u3R7Q0V9sA .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-u3R7Q0V9sA .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-u3R7Q0V9sA .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
