@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:100,200,300,400,500,600,700,800,900&display=swap);





body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto Slab', serif;
  font-size: 3.8rem;
  line-height: 1.2;
}
.display-1 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-2 {
  font-family: 'Roboto Slab', serif;
  font-size: 2.8rem;
  line-height: 1.4;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  line-height: 1.3;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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))));
  }
  .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: 1rem 3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #841811 !important;
}
.bg-success {
  background-color: #191919 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #5b686b !important;
}
.bg-danger {
  background-color: #465052 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #841811 !important;
  border-color: #841811 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #400c08 !important;
  border-color: #400c08 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #400c08 !important;
  border-color: #400c08 !important;
}
.btn-primary:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(to left, #cb9942, #841811);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cb9942 !important;
  border-color: #cb9942 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #976f2a !important;
  border-color: #976f2a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #976f2a !important;
  border-color: #976f2a !important;
}
.btn-secondary:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: linear-gradient(to left, #cb9942, #cb9942);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-info:hover,
.btn-info:focus {
  background: linear-gradient(to left, #cb9942, #82786e);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-success,
.btn-success:active {
  background-color: #191919 !important;
  border-color: #191919 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-success:hover,
.btn-success:focus {
  background: linear-gradient(to left, #cb9942, #191919);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-warning,
.btn-warning:active {
  background-color: #5b686b !important;
  border-color: #5b686b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #384042 !important;
  border-color: #384042 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #384042 !important;
  border-color: #384042 !important;
}
.btn-warning:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  background: linear-gradient(to left, #cb9942, #5b686b);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-danger,
.btn-danger:active {
  background-color: #465052 !important;
  border-color: #465052 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #232829 !important;
  border-color: #232829 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #232829 !important;
  border-color: #232829 !important;
}
.btn-danger:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-danger:hover,
.btn-danger:focus {
  background: linear-gradient(to left, #cb9942, #465052);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-white:hover,
.btn-white:focus {
  background: linear-gradient(to left, #cb9942, #f3f3f3);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-black:hover,
.btn-black:focus {
  background: linear-gradient(to left, #cb9942, #000000);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-primary-outline {
  color: white!important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #841811;
  color: #841811;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #841811;
  border-color: #841811;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #841811 !important;
  border-color: #841811 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: linear-gradient(to left, #cb9942, #841811);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-secondary-outline {
  color: white!important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cb9942;
  color: #cb9942;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #cb9942;
  border-color: #cb9942;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cb9942 !important;
  border-color: #cb9942 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background: linear-gradient(to left, #cb9942, #cb9942);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-info-outline {
  color: white!important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #82786e;
  color: #82786e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  background: linear-gradient(to left, #cb9942, #82786e);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-success-outline {
  color: white!important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #191919;
  color: #191919;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #191919;
  border-color: #191919;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  background: linear-gradient(to left, #cb9942, #191919);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-warning-outline {
  color: white!important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #5b686b;
  color: #5b686b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #5b686b;
  border-color: #5b686b;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b686b !important;
  border-color: #5b686b !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  background: linear-gradient(to left, #cb9942, #5b686b);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-danger-outline {
  color: white!important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #465052;
  color: #465052;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #465052;
  border-color: #465052;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #465052 !important;
  border-color: #465052 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  background: linear-gradient(to left, #cb9942, #465052);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-black-outline {
  color: white!important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  background: linear-gradient(to left, #cb9942, #333333);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.btn-white-outline {
  color: white!important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus {
  background: linear-gradient(to left, #cb9942, #f3f3f3);
  border-color: transparent!important;
  background-size: 110%;
  background-position: center;
}
.text-primary {
  color: #841811 !important;
}
.text-secondary {
  color: #cb9942 !important;
}
.text-success {
  color: #191919 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #5b686b !important;
}
.text-danger {
  color: #465052 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #de281d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e1c492 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #4c4c4c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e9b9e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #758689 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #5b686b;
}
.alert-danger {
  background-color: #465052;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #841811;
  border-color: #841811;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #841811;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e43b30;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cbcbcb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9ba7aa;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bac2c4;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #841811;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #841811;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #841811;
  border-bottom-color: #841811;
}
.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: #841811 !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: #cb9942 !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='%23841811' %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;
}
.btn {
  transition: none;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQ9ZIUclka {
  padding-top: 165px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/17-2000x1125.jpg");
}
.cid-sQ9ZIUclka .row {
  justify-content: flex-end;
}
.cid-sQ9ZIUclka .block {
  background-color: #cb9942;
}
.cid-sQ9ZIUclka img {
  width: 100%;
}
.cid-sQ9ZIUclka .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQ9ZIUclka .content {
  max-width: 600px;
}
.cid-sQ9ZIUclka h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQ9ZIUclka .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQ9ZIUclka h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQ9ZIUclka .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQ9ZIUclka h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQ9ZIUclka H1 {
  text-align: center;
  color: #ffffff;
}
.cid-sQ9ZIUclka H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQ9tt8V5xT {
  padding-top: 225px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/11-1024x680.jpg");
}
.cid-sQ9tt8V5xT .row {
  justify-content: flex-end;
}
.cid-sQ9tt8V5xT .block {
  background-color: #cb9942;
}
.cid-sQ9tt8V5xT img {
  width: 100%;
}
.cid-sQ9tt8V5xT .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQ9tt8V5xT .content {
  max-width: 600px;
}
.cid-sQ9tt8V5xT h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQ9tt8V5xT .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQ9tt8V5xT h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQ9tt8V5xT .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQ9tt8V5xT h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQ9tt8V5xT H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQ9tt8V5xT H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQ9wgNqMri {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #191919;
}
.cid-sQ9wgNqMri .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9wgNqMri .mbr-text,
.cid-sQ9wgNqMri .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQ9wgNqMri img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQ9wgNqMri img {
    width: 96%;
  }
}
.cid-sQ9xeHzseJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #191919;
}
.cid-sQ9xeHzseJ .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9xeHzseJ .mbr-text,
.cid-sQ9xeHzseJ .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQ9A9WpJo7 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #191919;
}
.cid-sQ9A9WpJo7 .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9A9WpJo7 .mbr-text,
.cid-sQ9A9WpJo7 .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQ9A9WpJo7 .mbr-section-title,
.cid-sQ9A9WpJo7 .title-wrapper {
  text-align: left;
}
.cid-sQ9xVAvc8J {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #191919;
}
.cid-sQ9xVAvc8J .row {
  align-items: center;
  justify-content: space-between;
}
.cid-sQ9xVAvc8J .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #ffffff;
}
.cid-sQ9xVAvc8J .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-sQ9xVAvc8J .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-sQ9xVAvc8J ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-sQ9xVAvc8J li::marker {
  color: #cb9942;
  width: 10px;
}
.cid-sQ9xVAvc8J li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-sQ9xVAvc8J img {
  width: 90%;
}
.cid-sQ9xVAvc8J .gray {
  background-color: #841811;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-sQ9xVAvc8J .b {
  max-width: 598px;
}
.cid-sQ9xVAvc8J .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-sQ9xVAvc8J .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-sQ9xVAvc8J .t {
    padding-top: 90px;
  }
  .cid-sQ9xVAvc8J .b {
    max-width: initial;
  }
  .cid-sQ9xVAvc8J .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-sQ9xVAvc8J .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-sQ9xVAvc8J .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-sQ9xVAvc8J .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-sQ9xVAvc8J .btn {
  margin-top: 20px;
}
.cid-sQ9xVAvc8J .t {
  max-width: 542px;
}
.cid-sQ9xVAvc8J .mbr-text,
.cid-sQ9xVAvc8J .button-align,
.cid-sQ9xVAvc8J .list {
  color: #ffffff;
  text-align: justify;
}
.cid-sQ9xVAvc8J .list {
  color: #ffffff;
}
.cid-sQacJHy1jH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQacJHy1jH .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQacJHy1jH .mbr-text,
.cid-sQacJHy1jH .mbr-section-btn {
  color: #ffffff;
}
.cid-sQacJHy1jH .mbr-section-title,
.cid-sQacJHy1jH .title-wrapper {
  text-align: left;
  color: #191919;
}
.cid-sQacKLbCqa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQacKLbCqa .container-fluid {
  padding: 0 3rem;
}
.cid-sQacKLbCqa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #841811, #cb9942);
  display: inline-block;
}
.cid-sQacKLbCqa .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQacKLbCqa .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sQacKLbCqa .card .card-wrapper {
  height: 1%;
}
.cid-sQacKLbCqa .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sQacKLbCqa .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sQacKLbCqa .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff3366;
}
.cid-sQacKLbCqa .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sQacKLbCqa .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sQacKLbCqa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sQacLiyBPu {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQacLiyBPu .container-fluid {
  padding: 0 3rem;
}
.cid-sQacLiyBPu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #841811, #cb9942);
  display: inline-block;
}
.cid-sQacLiyBPu .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQacLiyBPu .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sQacLiyBPu .card .card-wrapper {
  height: 1%;
}
.cid-sQacLiyBPu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sQacLiyBPu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sQacLiyBPu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff3366;
}
.cid-sQacLiyBPu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sQacLiyBPu .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sQacLiyBPu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQ9CR7hmh7 {
  padding-top: 225px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/17-2000x1125.jpg");
}
.cid-sQ9CR7hmh7 .row {
  justify-content: flex-end;
}
.cid-sQ9CR7hmh7 .block {
  background-color: #cb9942;
}
.cid-sQ9CR7hmh7 img {
  width: 100%;
}
.cid-sQ9CR7hmh7 .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQ9CR7hmh7 .content {
  max-width: 600px;
}
.cid-sQ9CR7hmh7 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQ9CR7hmh7 .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQ9CR7hmh7 h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQ9CR7hmh7 .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQ9CR7hmh7 h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQ9CR7hmh7 H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQ9CR7hmh7 H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQ9DzvGSyu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #191919;
}
.cid-sQ9DzvGSyu .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9DzvGSyu .mbr-text,
.cid-sQ9DzvGSyu .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQ9DzvGSyu .mbr-section-title,
.cid-sQ9DzvGSyu .title-wrapper {
  text-align: left;
}
.cid-sQ9Dxcos6a {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #191919;
}
.cid-sQ9Dxcos6a .card {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQ9Dxcos6a .card .card-img {
  width: 20%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sQ9Dxcos6a .card .card-box {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-sQ9Dxcos6a .card .card-img span {
  color: #cb9942;
  font-size: 60px;
}
.cid-sQ9Dxcos6a .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sQ9Dxcos6a .card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sQ9Dxcos6a .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-sQ9Dxcos6a .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-sQ9Dxcos6a .card .card-box .card-title,
  .cid-sQ9Dxcos6a .card .card-box .mbr-text,
  .cid-sQ9Dxcos6a .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-sQ9Dxcos6a .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-sQ9Dxcos6a .card .card-img {
    text-align: right !important;
  }
}
.cid-sQ9Dxcos6a .card-title,
.cid-sQ9Dxcos6a .card-img {
  color: #ffffff;
}
.cid-sQ9Dxcos6a .mbr-text,
.cid-sQ9Dxcos6a .link {
  color: #ffffff;
}
.cid-sQ9F5vUGkr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-sQ9F5vUGkr .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9F5vUGkr .mbr-text,
.cid-sQ9F5vUGkr .mbr-section-btn {
  color: #ffffff;
}
.cid-sQ9FCvSt74 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #191919;
}
.cid-sQ9FCvSt74 .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQ9FCvSt74 .card-box {
  width: 100%;
}
.cid-sQ9FCvSt74 .card-img {
  padding: 1rem;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-sQ9FCvSt74 .card-img span {
  color: #cb9942;
  font-size: 3rem;
}
.cid-sQ9FCvSt74 .mbr-text {
  color: #767676;
}
.cid-sQ9FCvSt74 p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sQ9FCvSt74 .card {
    margin-bottom: 2rem;
  }
}
.cid-sQ9FCvSt74 .card-title,
.cid-sQ9FCvSt74 .card-img {
  color: #cb9942;
  text-align: center;
}
.cid-sQ9FCvSt74 .mbr-section-title {
  text-align: center;
}
.cid-sQ9FCvSt74 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sQ9FCvSt74 .line-wrap2 {
  display: inline-block;
  width: 100%;
}
.cid-sQ9FCvSt74 .line2 {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cid-sQ9FCvSt74 .mbr-section-title,
.cid-sQ9FCvSt74 .line-wrap {
  text-align: center;
}
.cid-sQ9FCvSt74 .mbr-text,
.cid-sQ9FCvSt74 .line-wrap2 {
  text-align: center;
  color: #ffffff;
}
.cid-sQ9GfMXMpV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-sQ9GfMXMpV .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9GfMXMpV .mbr-text,
.cid-sQ9GfMXMpV .mbr-section-btn {
  color: #ffffff;
}
.cid-sQ9GfMXMpV .mbr-section-title,
.cid-sQ9GfMXMpV .title-wrapper {
  text-align: right;
}
.cid-sQ9FAodDfh {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #191919;
}
.cid-sQ9FAodDfh h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ9FAodDfh .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-sQ9FAodDfh .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ9FAodDfh .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-sQ9FAodDfh ellipse {
  stroke: white;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ9FAodDfh .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-sQ9FAodDfh .progress1 path {
  stroke: #841811;
}
.cid-sQ9FAodDfh .progress2 path {
  stroke: #cb9942;
}
.cid-sQ9FAodDfh .progress3 path {
  stroke: #841811;
}
.cid-sQ9FAodDfh .progress4 path {
  stroke: #cb9942;
}
.cid-sQ9FAodDfh .card-text {
  color: #767676;
}
.cid-sQ9FAodDfh .number {
  color: #ffffff;
}
.cid-sQ9FAodDfh H4 {
  color: #ffffff;
}
.cid-sQ9H1XdbG1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-sQ9H1XdbG1 .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9H1XdbG1 .mbr-text,
.cid-sQ9H1XdbG1 .mbr-section-btn {
  color: #ffffff;
}
.cid-sQ9H8h9w8X {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #191919;
}
.cid-sQ9H8h9w8X h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ9H8h9w8X .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-sQ9H8h9w8X .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ9H8h9w8X .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-sQ9H8h9w8X ellipse {
  stroke: white;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ9H8h9w8X .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-sQ9H8h9w8X .progress1 path {
  stroke: #841811;
}
.cid-sQ9H8h9w8X .progress2 path {
  stroke: #cb9942;
}
.cid-sQ9H8h9w8X .progress3 path {
  stroke: #841811;
}
.cid-sQ9H8h9w8X .progress4 path {
  stroke: #cb9942;
}
.cid-sQ9H8h9w8X .card-text {
  color: #767676;
}
.cid-sQ9H8h9w8X .number {
  color: #ffffff;
}
.cid-sQ9H8h9w8X H4 {
  color: #ffffff;
}
.cid-sQ9HC1yx8D {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-sQ9HC1yx8D .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9HC1yx8D .mbr-text,
.cid-sQ9HC1yx8D .mbr-section-btn {
  color: #ffffff;
}
.cid-sQ9HC1yx8D .mbr-section-title,
.cid-sQ9HC1yx8D .title-wrapper {
  text-align: right;
}
.cid-sQ9HH7zO7B {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #191919;
}
.cid-sQ9HH7zO7B h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sQ9HH7zO7B .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-sQ9HH7zO7B .mbr-section-subtitle {
  color: #767676;
}
.cid-sQ9HH7zO7B .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-sQ9HH7zO7B ellipse {
  stroke: white;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sQ9HH7zO7B .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-sQ9HH7zO7B .progress1 path {
  stroke: #841811;
}
.cid-sQ9HH7zO7B .progress2 path {
  stroke: #cb9942;
}
.cid-sQ9HH7zO7B .progress3 path {
  stroke: #841811;
}
.cid-sQ9HH7zO7B .progress4 path {
  stroke: #cb9942;
}
.cid-sQ9HH7zO7B .card-text {
  color: #767676;
}
.cid-sQ9HH7zO7B .number {
  color: #ffffff;
}
.cid-sQ9HH7zO7B H4 {
  color: #ffffff;
}
.cid-sQ9NNxbQzL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-sQ9NNxbQzL .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9NNxbQzL .mbr-text,
.cid-sQ9NNxbQzL .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQ9NNxbQzL .mbr-section-title,
.cid-sQ9NNxbQzL .title-wrapper {
  text-align: left;
}
.cid-sQ9OtAMGh4 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #191919;
}
.cid-sQ9OtAMGh4 p {
  line-height: 1.6;
}
.cid-sQ9OtAMGh4 .card-box {
  width: -webkit-fill-available;
}
.cid-sQ9OtAMGh4 .card-img {
  width: auto;
}
.cid-sQ9OtAMGh4 .card-img span {
  font-size: 96px;
  padding: 0.6rem;
  margin: 0 1rem;
  border-radius: 8px;
}
.cid-sQ9OtAMGh4 .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sQ9OtAMGh4 .card-wrapper {
  display: flex;
  flex-direction: row;
}
.cid-sQ9OtAMGh4 .card {
  height: 100%;
  margin: auto;
}
.cid-sQ9OtAMGh4 img {
  width: 100%;
  heigth: auto;
}
.cid-sQ9OtAMGh4 .card-title1 {
  color: #cb9942;
}
.cid-sQ9OtAMGh4 .mbr-text1 {
  color: #ffffff;
}
.cid-sQ9OtAMGh4 .card-title2 {
  color: #cb9942;
}
.cid-sQ9OtAMGh4 .mbr-text2 {
  color: #f3f3f3;
}
@media (max-width: 576px) {
  .cid-sQ9OtAMGh4 .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0 0!important;
  }
  .cid-sQ9OtAMGh4 .card-img {
    order: 1;
  }
  .cid-sQ9OtAMGh4 .card-box {
    order: 2;
  }
}
.cid-sQ9VhQAAzB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-sQ9VhQAAzB .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9VhQAAzB .mbr-text,
.cid-sQ9VhQAAzB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sQ9VhQAAzB .mbr-section-title,
.cid-sQ9VhQAAzB .title-wrapper {
  text-align: left;
}
.cid-sQ9VusrvQT {
  padding-top: 0px;
  padding-bottom: 30px;
  position: relative;
  background-color: #191919;
}
.cid-sQ9VusrvQT p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-sQ9VusrvQT .panel-title {
  border-bottom: 2px solid #e2090d;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-sQ9VusrvQT .collapsed {
  border: none;
}
.cid-sQ9VusrvQT .collapsed span {
  transform: rotate(0deg);
}
.cid-sQ9VusrvQT span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #cb9942, #841811);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-sQ9VusrvQT .panel-body {
  padding-top: 0.5rem;
}
.cid-sQ9VusrvQT .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sQ9VusrvQT .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #841811;
  padding: 0;
}
.cid-sQ9VusrvQT .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-sQ9VusrvQT .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sQ9VusrvQT .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sQ9VusrvQT .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sQ9VusrvQT .panel-text {
  color: #ffffff;
}
.cid-sQ9VusrvQT H4 {
  color: #ffffff;
}
.cid-sQ9VusrvQT H2 {
  color: #ffffff;
}
.cid-sQ9VusrvQT .mbr-section-text {
  color: #999999;
}
.cid-sQ9YpRsgLD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #191919;
}
.cid-sQ9YpRsgLD .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQ9YpRsgLD .mbr-text,
.cid-sQ9YpRsgLD .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQ9YpRsgLD .mbr-section-title,
.cid-sQ9YpRsgLD .title-wrapper {
  text-align: left;
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQ9ZwhE5Mw {
  padding-top: 225px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/17-2000x1125.jpg");
}
.cid-sQ9ZwhE5Mw .row {
  justify-content: flex-end;
}
.cid-sQ9ZwhE5Mw .block {
  background-color: #cb9942;
}
.cid-sQ9ZwhE5Mw img {
  width: 100%;
}
.cid-sQ9ZwhE5Mw .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQ9ZwhE5Mw .content {
  max-width: 600px;
}
.cid-sQ9ZwhE5Mw h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQ9ZwhE5Mw .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQ9ZwhE5Mw h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQ9ZwhE5Mw .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQ9ZwhE5Mw h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQ9ZwhE5Mw H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQ9ZwhE5Mw H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQaaxgTM0P {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQaaxgTM0P .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQaaxgTM0P .mbr-text,
.cid-sQaaxgTM0P .mbr-section-btn {
  color: #ffffff;
}
.cid-sQaaxgTM0P .mbr-section-title,
.cid-sQaaxgTM0P .title-wrapper {
  text-align: left;
  color: #191919;
}
.cid-sQa9L3QAzu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQa9L3QAzu .container-fluid {
  padding: 0 3rem;
}
.cid-sQa9L3QAzu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #841811, #cb9942);
  display: inline-block;
}
.cid-sQa9L3QAzu .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQa9L3QAzu .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sQa9L3QAzu .card .card-wrapper {
  height: 1%;
}
.cid-sQa9L3QAzu .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sQa9L3QAzu .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sQa9L3QAzu .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff3366;
}
.cid-sQa9L3QAzu .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sQa9L3QAzu .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sQa9L3QAzu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sQaa4TUZ5c {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQaa4TUZ5c .container-fluid {
  padding: 0 3rem;
}
.cid-sQaa4TUZ5c .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #841811, #cb9942);
  display: inline-block;
}
.cid-sQaa4TUZ5c .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQaa4TUZ5c .card:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-sQaa4TUZ5c .card .card-wrapper {
  height: 1%;
}
.cid-sQaa4TUZ5c .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-sQaa4TUZ5c .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-sQaa4TUZ5c .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ff3366;
}
.cid-sQaa4TUZ5c .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-sQaa4TUZ5c .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-sQaa4TUZ5c .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQa1pSNshz {
  padding-top: 225px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/cremant-2-2000x1125.jpg");
}
.cid-sQa1pSNshz .row {
  justify-content: flex-end;
}
.cid-sQa1pSNshz .block {
  background-color: #cb9942;
}
.cid-sQa1pSNshz img {
  width: 100%;
}
.cid-sQa1pSNshz .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQa1pSNshz .content {
  max-width: 600px;
}
.cid-sQa1pSNshz h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQa1pSNshz .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQa1pSNshz h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQa1pSNshz .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQa1pSNshz h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQa1pSNshz H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQa1pSNshz H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQa1Tr433s {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #191919;
}
.cid-sQa1Tr433s .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQa1Tr433s .mbr-text,
.cid-sQa1Tr433s .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQa2xT9YPH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQa2xT9YPH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQa2xT9YPH .row {
  flex-direction: row-reverse;
}
.cid-sQa2xT9YPH img {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sQa2xT9YPH .top {
    padding-top: 20px;
  }
}
.cid-sQa51oAf8L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sQa51oAf8L .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-sQa51oAf8L .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-sQa51oAf8L .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-sQa51oAf8L .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-sQa51oAf8L .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-sQa51oAf8L .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-sQa51oAf8L .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQa5KgUcqH {
  padding-top: 225px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/img-20210823-wa0003-1600x1066.jpg");
}
.cid-sQa5KgUcqH .row {
  justify-content: flex-end;
}
.cid-sQa5KgUcqH .block {
  background-color: #cb9942;
}
.cid-sQa5KgUcqH img {
  width: 100%;
}
.cid-sQa5KgUcqH .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQa5KgUcqH .content {
  max-width: 600px;
}
.cid-sQa5KgUcqH h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQa5KgUcqH .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQa5KgUcqH h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQa5KgUcqH .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQa5KgUcqH h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQa5KgUcqH H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQa5KgUcqH H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQa5Khxzfm {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #191919;
}
.cid-sQa5Khxzfm .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQa5Khxzfm .mbr-text,
.cid-sQa5Khxzfm .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQgpR2yvOO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #191919;
}
.cid-sQgpR2yvOO .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQgpR2yvOO .mbr-text,
.cid-sQgpR2yvOO .mbr-section-btn {
  color: #ffffff;
}
.cid-sQgpR2yvOO .mbr-section-title,
.cid-sQgpR2yvOO .title-wrapper {
  text-align: right;
}
.cid-sQgtqyg64i {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #141414;
}
.cid-sQgtqyg64i .mbr-media {
  position: relative;
}
.cid-sQgtqyg64i .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sQgtqyg64i .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sQgtqyg64i .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-sQgtqyg64i .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sQgtqyg64i .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sQgtqyg64i .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sQgtqyg64i .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sQgtqyg64i .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sQgtqyg64i .mbr-section-title {
  color: #FFFFFF;
}
.cid-sQgtqyg64i .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-sQa5KhXq1D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQa5KhXq1D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQa5KhXq1D .row {
  flex-direction: row-reverse;
}
.cid-sQa5KhXq1D img {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sQa5KhXq1D .top {
    padding-top: 20px;
  }
}
.cid-sQa5Kin2RU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sQa5Kin2RU .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-sQa5Kin2RU .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-sQa5Kin2RU .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-sQa5Kin2RU .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-sQa5Kin2RU .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-sQa5Kin2RU .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-sQa5Kin2RU .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQa6Y3JCiw {
  padding-top: 225px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/propriete-costis-1600x1200.jpg");
}
.cid-sQa6Y3JCiw .row {
  justify-content: flex-end;
}
.cid-sQa6Y3JCiw .block {
  background-color: #cb9942;
}
.cid-sQa6Y3JCiw img {
  width: 100%;
}
.cid-sQa6Y3JCiw .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQa6Y3JCiw .content {
  max-width: 600px;
}
.cid-sQa6Y3JCiw h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQa6Y3JCiw .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQa6Y3JCiw h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQa6Y3JCiw .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQa6Y3JCiw h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQa6Y3JCiw H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQa6Y3JCiw H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQa6Y4lyAw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #191919;
}
.cid-sQa6Y4lyAw .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQa6Y4lyAw .mbr-text,
.cid-sQa6Y4lyAw .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQa8LGGiGB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #191919;
}
.cid-sQa8LGGiGB .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQa8LGGiGB .mbr-text,
.cid-sQa8LGGiGB .mbr-section-btn {
  color: #ffffff;
}
.cid-sQa8LGGiGB .mbr-section-title,
.cid-sQa8LGGiGB .title-wrapper {
  text-align: left;
  color: #191919;
}
.cid-sQa8ugXQlJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-sQa8ugXQlJ .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-sQa8ugXQlJ .title-wrapper {
  padding: 0 12px;
}
.cid-sQa8ugXQlJ .text-block {
  padding: 48px 24px;
}
.cid-sQa8ugXQlJ .video-wrapper iframe {
  width: 100%;
}
.cid-sQa8ugXQlJ .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-sQa8ugXQlJ .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-sQa8ugXQlJ .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-sQa8ugXQlJ .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-sQa8ugXQlJ .mbr-text,
.cid-sQa8ugXQlJ .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-sQa8ugXQlJ .video-block {
    border-left: none;
  }
  .cid-sQa8ugXQlJ .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-sQa8ugXQlJ .title-wrapper {
    padding: 0 48px;
  }
  .cid-sQa8ugXQlJ .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-sQa904Ud7S {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-sQa904Ud7S .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-sQa904Ud7S .title-wrapper {
  padding: 0 12px;
}
.cid-sQa904Ud7S .text-block {
  padding: 48px 24px;
}
.cid-sQa904Ud7S .video-wrapper iframe {
  width: 100%;
}
.cid-sQa904Ud7S .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-sQa904Ud7S .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-sQa904Ud7S .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-sQa904Ud7S .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-sQa904Ud7S .mbr-text,
.cid-sQa904Ud7S .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-sQa904Ud7S .video-block {
    border-left: none;
  }
  .cid-sQa904Ud7S .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-sQa904Ud7S .title-wrapper {
    padding: 0 48px;
  }
  .cid-sQa904Ud7S .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQaaFQjA7T {
  padding-top: 225px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/chateau-petit-freylon-vue-jardin-2000x1500.jpg");
}
.cid-sQaaFQjA7T .row {
  justify-content: flex-end;
}
.cid-sQaaFQjA7T .block {
  background-color: #cb9942;
}
.cid-sQaaFQjA7T img {
  width: 100%;
}
.cid-sQaaFQjA7T .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQaaFQjA7T .content {
  max-width: 600px;
}
.cid-sQaaFQjA7T h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQaaFQjA7T .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQaaFQjA7T h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQaaFQjA7T .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQaaFQjA7T h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQaaFQjA7T H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQaaFQjA7T H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQaaFQNTjs {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #191919;
}
.cid-sQaaFQNTjs .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQaaFQNTjs .mbr-text,
.cid-sQaaFQNTjs .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sQl1Q7Er6t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #191919;
}
.cid-sQl1Q7Er6t .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #cb9942, #841811);
}
.cid-sQl1Q7Er6t .mbr-text,
.cid-sQl1Q7Er6t .mbr-section-btn {
  color: #ffffff;
}
.cid-sQl1Q7Er6t .mbr-section-title,
.cid-sQl1Q7Er6t .title-wrapper {
  text-align: right;
}
.cid-sQl1SlWCLt {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-sQl1SlWCLt .mbr-media {
  position: relative;
}
.cid-sQl1SlWCLt .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sQl1SlWCLt .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sQl1SlWCLt .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-sQl1SlWCLt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sQl1SlWCLt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sQl1SlWCLt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sQl1SlWCLt .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sQl1SlWCLt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sQl1SlWCLt .mbr-section-title {
  color: #FFFFFF;
}
.cid-sQl1SlWCLt .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-sQaaFR8X2A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQaaFR8X2A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQaaFR8X2A .row {
  flex-direction: row-reverse;
}
.cid-sQaaFR8X2A img {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sQaaFR8X2A .top {
    padding-top: 20px;
  }
}
.cid-sQaaFRsVi1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sQaaFRsVi1 .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-sQaaFRsVi1 .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-sQaaFRsVi1 .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-sQaaFRsVi1 .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-sQaaFRsVi1 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-sQaaFRsVi1 .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-sQaaFRsVi1 .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQaeSJI2yh {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/17-2000x1125.jpg");
}
.cid-sQaeSJI2yh .row {
  justify-content: flex-end;
}
.cid-sQaeSJI2yh .block {
  background-color: #cb9942;
}
.cid-sQaeSJI2yh img {
  width: 100%;
}
.cid-sQaeSJI2yh .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
}
.cid-sQaeSJI2yh .content {
  max-width: 600px;
}
.cid-sQaeSJI2yh h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  right: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sQaeSJI2yh .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sQaeSJI2yh h4 {
    right: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQaeSJI2yh .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sQaeSJI2yh h4 {
    right: 2rem;
    bottom: 30%;
  }
}
.cid-sQaeSJI2yh H1 {
  text-align: left;
  color: #ffffff;
}
.cid-sQaeSJI2yh H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sQafd8oexl {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sQafd8oexl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sQafd8oexl .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-sQafd8oexl .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-sQafd8oexl .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #cb9942;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-sQafd8oexl .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-sQafd8oexl .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-sQafd8oexl .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-sQafd8oexl .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-sQafd8oexl .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-sQafd8oexl .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-sQafd8oexl .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #841811;
}
.cid-sQafd8oexl .text-content .social span:hover {
  color: #cb9942;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-sQafd8oexl .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-sQafd8oexl .list-block {
  position: relative;
}
.cid-sQafd8oexl .list-block h4,
.cid-sQafd8oexl .list-block p {
  padding-left: 4.5rem;
}
.cid-sQafd8oexl .card-img {
  display: block;
}
.cid-sQafd8oexl input,
.cid-sQafd8oexl textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-sQafd8oexl input:focus,
.cid-sQafd8oexl textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-sQafd8oexl .form-control,
.cid-sQafd8oexl .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sQafd8oexl .form-control:hover,
.cid-sQafd8oexl .field-input:hover,
.cid-sQafd8oexl .form-control:focus,
.cid-sQafd8oexl .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sQafd8oexl input::-webkit-input-placeholder,
.cid-sQafd8oexl textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-sQafd8oexl input:-moz-placeholder,
.cid-sQafd8oexl textarea:-moz-placeholder {
  color: #28303f;
}
.cid-sQafd8oexl .jq-selectbox li,
.cid-sQafd8oexl .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-sQafd8oexl .jq-selectbox li:hover,
.cid-sQafd8oexl .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-sQafd8oexl .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-sQafd8oexl .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-sQafd8oexl .mbr-form {
  max-width: 550px;
}
.cid-sQafd8oexl .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-sQafd8oexl .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sQafd8oexl .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-sQafd8oexl .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sQafd8oexl .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-sQafd8oexl .mbr-form textarea {
  min-height: 100px;
}
.cid-sQafd8oexl .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #841811;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-sQafd8oexl .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-sQafd8oexl .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sQafd8oexl .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-sQafd8oexl .mbr-section-title,
  .cid-sQafd8oexl .content-title,
  .cid-sQafd8oexl .mbr-section-btn {
    text-align: left;
  }
}
.cid-sQafd8oexl .text-content .list-block .list-item-title {
  color: #cb9942;
}
.cid-sQafd8oexl .text-content .list-block .list-item-text {
  color: #191919;
}
.cid-sQafd8oexl .text-content .content-title,
.cid-sQafd8oexl .social {
  text-align: left;
  color: #cb9942;
}
.cid-sQafd8oexl .mbr-form .mbr-subtitle,
.cid-sQafd8oexl .mbr-section-btn {
  color: #841811;
}
.cid-sQafd8oexl .mbr-form .mbr-section-title,
.cid-sQafd8oexl .mbr-section-btn {
  color: #cb9942;
}
.cid-sQagJX8Rhj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #cb9942;
}
.cid-sQagJX8Rhj .mbr-text1 {
  color: #ffffff;
  text-align: left;
}
.cid-sQagJX8Rhj .mbr-text2 {
  color: #ffffff;
  text-align: right;
}
.cid-sQagJX8Rhj p {
  margin: 0;
}
.cid-sQlMovVpGU .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sQlMovVpGU .collapsed {
  flex-direction: row !important;
}
.cid-sQlMovVpGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQlMovVpGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQlMovVpGU .navbar {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  transition: all 0.3s;
  background: #191919;
}
.cid-sQlMovVpGU .navbar.opened {
  transition: all 0.3s;
  background: #191919 !important;
}
.cid-sQlMovVpGU .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sQlMovVpGU .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQlMovVpGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQlMovVpGU .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-sQlMovVpGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQlMovVpGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQlMovVpGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQlMovVpGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQlMovVpGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQlMovVpGU .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-sQlMovVpGU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sQlMovVpGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQlMovVpGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQlMovVpGU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQlMovVpGU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQlMovVpGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQlMovVpGU .navbar.navbar-short {
  background: #191919 !important;
  min-height: 60px;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sQlMovVpGU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQlMovVpGU .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .dropdown-item:hover:before {
  opacity: 1 !important;
}
.cid-sQlMovVpGU .nav-item:focus,
.cid-sQlMovVpGU .nav-link:focus {
  outline: none;
}
.cid-sQlMovVpGU .text-white:hover,
.cid-sQlMovVpGU .text-white:active,
.cid-sQlMovVpGU .text-white:focus {
  color: white !important;
}
.cid-sQlMovVpGU .dropdown-item {
  font-weight: 400 !important;
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-item:hover {
  color: black !important;
}
.cid-sQlMovVpGU .dropdown-menu {
  background-color: white !important;
}
.cid-sQlMovVpGU .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(214, 175, 106, 0.35);
  display: block;
}
.cid-sQlMovVpGU .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #cb9942;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sQlMovVpGU .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-sQlMovVpGU .navbar {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .cid-sQlMovVpGU .nav-item {
    position: relative;
  }
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQlMovVpGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQlMovVpGU .navbar-caption {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQlMovVpGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQlMovVpGU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sQlMovVpGU .dropdown-item.active,
.cid-sQlMovVpGU .dropdown-item:active {
  background-color: transparent;
}
.cid-sQlMovVpGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQlMovVpGU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #191919;
}
.cid-sQlMovVpGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQlMovVpGU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQlMovVpGU .navbar-buttons {
  text-align: center;
}
.cid-sQlMovVpGU 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-sQlMovVpGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #cb9942;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQlMovVpGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQlMovVpGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQlMovVpGU .nav-link {
  font-weight: 600 !important;
}
.cid-sQlMovVpGU a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQlMovVpGU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQlMovVpGU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sQlMovVpGU .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQlMovVpGU .navbar {
    height: 77px;
  }
  .cid-sQlMovVpGU .navbar.opened {
    height: auto;
  }
  .cid-sQlMovVpGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
