body {
  font-family: 'EB Garamond', 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: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 90rem) / (48 - 25)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #374242 !important;
}
.bg-success {
  background-color: #aa875a !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #374242 !important;
  border-color: #374242 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #101313 !important;
  border-color: #101313 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #101313 !important;
  border-color: #101313 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #374242 !important;
  border-color: #374242 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #101313 !important;
  border-color: #101313 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #101313 !important;
  border-color: #101313 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #aa875a !important;
  border-color: #aa875a !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #725a3b !important;
  border-color: #725a3b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #725a3b !important;
  border-color: #725a3b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #101313;
  color: #374242;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #101313 !important;
  background-color: transparent!important;
  border-color: #101313 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #374242 !important;
  border-color: #374242 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #101313;
  color: #374242;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #101313 !important;
  background-color: transparent!important;
  border-color: #101313 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #374242 !important;
  border-color: #374242 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #d4d4d4;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #725a3b;
  color: #aa875a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #725a3b !important;
  background-color: transparent!important;
  border-color: #725a3b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #aa875a !important;
  border-color: #aa875a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #d4d4d4;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #d4d4d4;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #374242 !important;
}
.text-secondary {
  color: #374242 !important;
}
.text-success {
  color: #aa875a !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #090a0a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #090a0a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #685236 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #374242;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #374242;
  border-color: #374242;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #374242;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a8b7b7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5c4ae;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #374242 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #374242;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #374242;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #374242;
}
.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: #374242;
  border-bottom-color: #374242;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #374242 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #374242 !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='%23374242' %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-twoYR9JX1K .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
@media (max-width: 991px) {
  .cid-twoYR9JX1K .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-twoYR9JX1K .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.cid-twoYR9JX1K .navbar.opened {
  transition: all 0.2s;
  background: #ffffff !important;
}
.cid-twoYR9JX1K .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-twoYR9JX1K .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-twoYR9JX1K .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-twoYR9JX1K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twoYR9JX1K .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-twoYR9JX1K .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #374242;
}
.cid-twoYR9JX1K .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-twoYR9JX1K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twoYR9JX1K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 87.74285714vh;
  }
}
.cid-twoYR9JX1K .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-twoYR9JX1K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twoYR9JX1K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twoYR9JX1K .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-twoYR9JX1K .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-twoYR9JX1K .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-twoYR9JX1K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twoYR9JX1K .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-twoYR9JX1K .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-twoYR9JX1K .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-twoYR9JX1K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twoYR9JX1K .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-twoYR9JX1K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twoYR9JX1K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twoYR9JX1K .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-twoYR9JX1K .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-twoYR9JX1K .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-twoYR9JX1K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-twoYR9JX1K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-twoYR9JX1K .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-twoYR9JX1K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-twoYR9JX1K .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-twoYR9JX1K .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-twoYR9JX1K .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-twoYR9JX1K .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-twoYR9JX1K .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-twoYR9JX1K .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-twoYR9JX1K .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-twoYR9JX1K .navbar-brand {
  height: 6.6rem;
  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-twoYR9JX1K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twoYR9JX1K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twoYR9JX1K .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-twoYR9JX1K .dropdown-item.active,
.cid-twoYR9JX1K .dropdown-item:active {
  background-color: transparent;
}
.cid-twoYR9JX1K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-twoYR9JX1K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twoYR9JX1K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twoYR9JX1K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-twoYR9JX1K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-twoYR9JX1K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twoYR9JX1K ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-twoYR9JX1K .navbar-buttons {
  text-align: center;
}
.cid-twoYR9JX1K 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-twoYR9JX1K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #374242;
}
.cid-twoYR9JX1K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twoYR9JX1K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-twoYR9JX1K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-twoYR9JX1K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twoYR9JX1K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twoYR9JX1K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-twoYR9JX1K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-twoYR9JX1K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twoYR9JX1K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-twoYR9JX1K .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-twoYR9JX1K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-twoYR9JX1K .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-twoYR9JX1K .nav-link:hover,
.cid-twoYR9JX1K .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-twoYR9JX1K .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-twoYR9JX1K .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-twoYR9JX1K .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-urslx5JJmj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1387.webp");
}
.cid-urslx5JJmj .mbr-fallback-image.disabled {
  display: none;
}
.cid-urslx5JJmj .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-urslx5JJmj .container {
    padding: 0 15px;
  }
}
.cid-urslx5JJmj .content-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-urslx5JJmj .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-urslx5JJmj .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-urslx5JJmj .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-urslx5JJmj .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-urslx5JJmj .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-urslx5JJmj .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-urslx5JJmj .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-urslx5JJmj .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #d4ad6a;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-urslx5JJmj .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-urslx5JJmj .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-urslx5JJmj .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-urslx5JJmj .mbr-section-title {
  color: #ffffff;
}
.cid-urslx5JJmj .mbr-section-subtitle {
  color: #ffeed0;
}
.cid-urslx5JJmj .mbr-text {
  color: #ffffff;
}
.cid-ursd5xVKW4 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ursd5xVKW4 .mbr-section-subtitle {
  color: #353535;
  text-align: center;
}
.cid-ursd5xVKW4 .mbr-text {
  color: #353535;
  text-align: center;
}
.cid-urse26ezgt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-urse26ezgt .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-urse26ezgt .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-urse26ezgt .container {
    padding: 0 20px;
  }
}
.cid-urse26ezgt .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 550px;
  max-width: 550px;
}
@media (max-width: 767px) {
  .cid-urse26ezgt .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-urse26ezgt .embla__slide:nth-child(2n) {
  min-width: 440px;
  max-width: 440px;
}
@media (max-width: 767px) {
  .cid-urse26ezgt .embla__slide:nth-child(2n) {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-urse26ezgt .embla__slide:nth-child(2n) .slide-content .item-wrapper .item-img img {
  height: 570px;
}
@media (max-width: 992px) {
  .cid-urse26ezgt .embla__slide:nth-child(2n) .slide-content .item-wrapper .item-img img {
    height: 400px;
  }
}
.cid-urse26ezgt .embla__slide .slide-content {
  width: 100%;
}
.cid-urse26ezgt .embla__slide .slide-content .item-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
}
.cid-urse26ezgt .embla__slide .slide-content .item-wrapper .item-img {
  width: 100%;
}
.cid-urse26ezgt .embla__slide .slide-content .item-wrapper .item-img img {
  height: 380px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-urse26ezgt .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-urse26ezgt .embla__button--next,
.cid-urse26ezgt .embla__button--prev {
  display: flex;
}
.cid-urse26ezgt .embla__button {
  bottom: 0;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #ffffff !important;
  color: #353535 !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-urse26ezgt .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-urse26ezgt .embla__button:hover {
  opacity: .6 !important;
}
.cid-urse26ezgt .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-urse26ezgt .embla__button.embla__button--next {
  right: 0;
}
.cid-urse26ezgt .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-urse26ezgt .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-urse26ezgt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-urse26ezgt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-urse26ezgt .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-urgWuj01hM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f6f4;
}
.cid-urgWuj01hM .mbr-fallback-image.disabled {
  display: none;
}
.cid-urgWuj01hM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urgWuj01hM .nav-tabs .nav-item.open .nav-link:focus,
.cid-urgWuj01hM .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-urgWuj01hM .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #d4ad6a;
}
@media (max-width: 767px) {
  .cid-urgWuj01hM .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-urgWuj01hM .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-urgWuj01hM .nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.cid-urgWuj01hM .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-urgWuj01hM .nav-link,
.cid-urgWuj01hM .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-urgWuj01hM .nav-tabs .nav-link.active {
  color: #d4ad6a;
  border-bottom: 3px solid #d4ad6a;
}
.cid-urgWuj01hM H4 {
  text-align: center;
  color: #353535;
}
.cid-urgWuj01hM H3 {
  text-align: center;
  color: #353535;
}
.cid-urgWuj01hM P {
  color: #353535;
}
.cid-urh5Ug7Baf {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1440.webp");
}
.cid-urh5Ug7Baf .mbr-overlay {
  background-color: #353535;
  opacity: 0.7;
}
.cid-urh5Ug7Baf .btn {
  box-shadow: none;
  border: none;
}
.cid-urh5Ug7Baf .btn:hover,
.cid-urh5Ug7Baf .btn:focus {
  box-shadow: none;
  border: none;
}
@media (max-width: 767px) {
  .cid-urh5Ug7Baf .row {
    text-align: center;
  }
}
.cid-urh5Ug7Baf p {
  line-height: 1.6;
}
@media (max-width: 767px) {
  .cid-urh5Ug7Baf .col-auto {
    margin: auto;
  }
}
.cid-urh5Ug7Baf .btn-white {
  background: white !important;
  color: black !important;
  padding: 0;
  margin: 0;
}
.cid-urh5Ug7Baf .btn-white:hover,
.cid-urh5Ug7Baf .btn-white:focus {
  background: white !important;
}
.cid-urh5Ug7Baf input:hover,
.cid-urh5Ug7Baf input:focus {
  border-color: transparent !important;
}
.cid-urh5Ug7Baf textarea {
  border: 1px solid #232323 !important;
  min-height: 200px;
}
.cid-urh5Ug7Baf textarea:hover {
  border-color: #232323 !important;
}
.cid-urh5Ug7Baf .form-control,
.cid-urh5Ug7Baf .field-input {
  padding: 0rem;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #232323 !important;
  color: #232323;
  border-radius: 0;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-urh5Ug7Baf .form-control::-webkit-input-placeholder,
.cid-urh5Ug7Baf .field-input::-webkit-input-placeholder,
.cid-urh5Ug7Baf .form-control::-webkit-input-placeholder,
.cid-urh5Ug7Baf .field-input::-webkit-input-placeholder {
  color: #aaaaaa;
}
.cid-urh5Ug7Baf .form-control:-moz-placeholder,
.cid-urh5Ug7Baf .field-input:-moz-placeholder,
.cid-urh5Ug7Baf .form-control:-moz-placeholder,
.cid-urh5Ug7Baf .field-input:-moz-placeholder {
  color: #aaaaaa;
}
.cid-urh5Ug7Baf .form-control:hover,
.cid-urh5Ug7Baf .field-input:hover,
.cid-urh5Ug7Baf .form-control:focus,
.cid-urh5Ug7Baf .field-input:focus {
  background-color: #ffffff;
  border-bottom: 1px solid #d4ad6a !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-urh5Ug7Baf .form-control:hover::-webkit-input-placeholder,
.cid-urh5Ug7Baf .field-input:hover::-webkit-input-placeholder,
.cid-urh5Ug7Baf .form-control:focus::-webkit-input-placeholder,
.cid-urh5Ug7Baf .field-input:focus::-webkit-input-placeholder,
.cid-urh5Ug7Baf .form-control:hover::-webkit-input-placeholder,
.cid-urh5Ug7Baf .field-input:hover::-webkit-input-placeholder,
.cid-urh5Ug7Baf .form-control:focus::-webkit-input-placeholder,
.cid-urh5Ug7Baf .field-input:focus::-webkit-input-placeholder {
  color: #aaaaaa;
}
.cid-urh5Ug7Baf .form-control:hover:-moz-placeholder,
.cid-urh5Ug7Baf .field-input:hover:-moz-placeholder,
.cid-urh5Ug7Baf .form-control:focus:-moz-placeholder,
.cid-urh5Ug7Baf .field-input:focus:-moz-placeholder,
.cid-urh5Ug7Baf .form-control:hover:-moz-placeholder,
.cid-urh5Ug7Baf .field-input:hover:-moz-placeholder,
.cid-urh5Ug7Baf .form-control:focus:-moz-placeholder,
.cid-urh5Ug7Baf .field-input:focus:-moz-placeholder {
  color: #aaaaaa;
}
.cid-urh5Ug7Baf .jq-number__spin:hover,
.cid-urh5Ug7Baf .jq-number__spin:focus {
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #d4ad6a !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-urh5Ug7Baf .jq-number__spin {
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #d4ad6a !important;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-urh5Ug7Baf .jq-selectbox li,
.cid-urh5Ug7Baf .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-urh5Ug7Baf .jq-selectbox li:hover,
.cid-urh5Ug7Baf .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-urh5Ug7Baf .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-urh5Ug7Baf .jq-number__spin.minus:hover:after,
.cid-urh5Ug7Baf .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-urh5Ug7Baf .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-urh5Ug7Baf .jq-number__spin.minus:after,
.cid-urh5Ug7Baf .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-urh5Ug7Baf input::-webkit-clear-button {
  display: none;
}
.cid-urh5Ug7Baf input::-webkit-inner-spin-button {
  display: none;
}
.cid-urh5Ug7Baf input::-webkit-outer-spin-button {
  display: none;
}
.cid-urh5Ug7Baf input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-urh5Ug7Baf LABEL {
  color: #aaaaaa;
}
.cid-urh5Ug7Baf .mbr-text {
  color: #ffffff;
}
.cid-urh5Ug7Baf .mbr-section-title {
  color: #ffffff;
}
.cid-tb1IYiyHPJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tb1IYiyHPJ .media-container-row .mbr-text {
  color: #000000;
}
