.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f5951b !important;
}
.bg-success {
  background-color: #a40e4c !important;
}
.bg-info {
  background-color: #cc444b !important;
}
.bg-warning {
  background-color: #ffc101 !important;
}
.bg-danger {
  background-color: #7b9e87 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f5951b !important;
  border-color: #f5951b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b26708 !important;
  border-color: #b26708 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b26708 !important;
  border-color: #b26708 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #83643c !important;
  border-color: #83643c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #483721 !important;
  border-color: #483721 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #483721 !important;
  border-color: #483721 !important;
}
.btn-info,
.btn-info:active {
  background-color: #cc444b !important;
  border-color: #cc444b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #92282d !important;
  border-color: #92282d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #92282d !important;
  border-color: #92282d !important;
}
.btn-success,
.btn-success:active {
  background-color: #a40e4c !important;
  border-color: #a40e4c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #540727 !important;
  border-color: #540727 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #540727 !important;
  border-color: #540727 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffc101 !important;
  border-color: #ffc101 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a98000 !important;
  border-color: #a98000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a98000 !important;
  border-color: #a98000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #7b9e87 !important;
  border-color: #7b9e87 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #52705c !important;
  border-color: #52705c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #52705c !important;
  border-color: #52705c !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #f5951b;
  color: #f5951b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b26708 !important;
  background-color: transparent!important;
  border-color: #b26708 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f5951b !important;
  border-color: #f5951b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #83643c;
  color: #83643c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #483721 !important;
  background-color: transparent!important;
  border-color: #483721 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #83643c !important;
  border-color: #83643c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #cc444b;
  color: #cc444b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #92282d !important;
  background-color: transparent!important;
  border-color: #92282d !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cc444b !important;
  border-color: #cc444b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #a40e4c;
  color: #a40e4c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #540727 !important;
  background-color: transparent!important;
  border-color: #540727 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a40e4c !important;
  border-color: #a40e4c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffc101;
  color: #ffc101;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a98000 !important;
  background-color: transparent!important;
  border-color: #a98000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffc101 !important;
  border-color: #ffc101 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #7b9e87;
  color: #7b9e87;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #52705c !important;
  background-color: transparent!important;
  border-color: #52705c !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #7b9e87 !important;
  border-color: #7b9e87 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f5951b !important;
}
.text-secondary {
  color: #83643c !important;
}
.text-success {
  color: #a40e4c !important;
}
.text-info {
  color: #cc444b !important;
}
.text-warning {
  color: #ffc101 !important;
}
.text-danger {
  color: #7b9e87 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a35e07 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3d2f1c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #460620 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #862429 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #9a7400 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4c6755 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f5951b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #cc444b;
}
.alert-warning {
  background-color: #ffc101;
}
.alert-danger {
  background-color: #7b9e87;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f5951b;
  border-color: #f5951b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f5951b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef0de;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ef438a;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f8e4e5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff3cd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c4d4ca;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f5951b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #f5951b;
}
/* Forms */
.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: #f5951b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f5951b;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f5951b;
  border-bottom-color: #f5951b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f5951b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #83643c !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='%23f5951b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sx1toRPES1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sx1toRPES1 nav.navbar {
  position: fixed;
}
.cid-sx1toRPES1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx1toRPES1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sx1toRPES1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sx1toRPES1 .dropdown-item:hover,
.cid-sx1toRPES1 .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sx1toRPES1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sx1toRPES1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sx1toRPES1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sx1toRPES1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sx1toRPES1 .nav-link {
  position: relative;
}
.cid-sx1toRPES1 .container {
  display: flex;
  margin: auto;
}
.cid-sx1toRPES1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sx1toRPES1 .dropdown-menu,
.cid-sx1toRPES1 .navbar.opened {
  background: #353535 !important;
}
.cid-sx1toRPES1 .nav-item:focus,
.cid-sx1toRPES1 .nav-link:focus {
  outline: none;
}
.cid-sx1toRPES1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sx1toRPES1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx1toRPES1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sx1toRPES1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx1toRPES1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx1toRPES1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx1toRPES1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sx1toRPES1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sx1toRPES1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sx1toRPES1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sx1toRPES1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx1toRPES1 .navbar.collapsed {
  justify-content: center;
}
.cid-sx1toRPES1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx1toRPES1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx1toRPES1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sx1toRPES1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx1toRPES1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sx1toRPES1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sx1toRPES1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx1toRPES1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sx1toRPES1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sx1toRPES1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx1toRPES1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx1toRPES1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx1toRPES1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sx1toRPES1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sx1toRPES1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sx1toRPES1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx1toRPES1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sx1toRPES1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sx1toRPES1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sx1toRPES1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sx1toRPES1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sx1toRPES1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sx1toRPES1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sx1toRPES1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sx1toRPES1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx1toRPES1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx1toRPES1 .dropdown-item.active,
.cid-sx1toRPES1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sx1toRPES1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sx1toRPES1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx1toRPES1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx1toRPES1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sx1toRPES1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx1toRPES1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx1toRPES1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sx1toRPES1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sx1toRPES1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sx1toRPES1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sx1toRPES1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sx1toRPES1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx1toRPES1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx1toRPES1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sx1toRPES1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx1toRPES1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sx1toRPES1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sx1toRPES1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx1toRPES1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sx1toRPES1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sx1toRPES1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx1toRPES1 .navbar {
    height: 70px;
  }
  .cid-sx1toRPES1 .navbar.opened {
    height: auto;
  }
  .cid-sx1toRPES1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx1sVhCg3o {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/corrugated-board-2577479-1920-1080x1920.jpg");
}
.cid-sx1sVhCg3o .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sx1sVhCg3o .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sx1sVhCg3o .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sx1sVhCg3o .mbr-section-title {
  color: #000000;
}
.cid-sx1t1B504y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sx1t1B504y .row {
    flex-direction: column-reverse;
  }
  .cid-sx1t1B504y .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sx1t1B504y .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sx1t1B504y .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sx1t1B504y .media-content,
.cid-sx1t1B504y .mbr-figure {
  align-self: center;
}
.cid-sx1t1B504y .mbr-figure iframe {
  width: 100%;
}
.cid-sx2uFYfSOe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/corrugated-board-1388555-1920-1920x1280.jpg");
}
.cid-sx2uFYfSOe .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sx2uFYfSOe .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sx2uFYfSOe .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sx2uFYfSOe .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sx2uFYfSOe .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sx2uFYfSOe .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sx2uFYfSOe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sx35E3d1Ke {
  background-image: url("../../../assets/images/carton-1920x1080.jpg");
}
.cid-sxH6HOzJWM {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-sxH6HOzJWM .mbr-section-title {
  color: #cda97a;
}
.cid-sx2BWqTTyf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sx2BWqTTyf .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sx2BWqTTyf .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sx2BWqTTyf .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sx2BWqTTyf .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sx2BWqTTyf .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sx2BWqTTyf .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sx2BWqTTyf .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sx2BWqTTyf .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sx2BWqTTyf .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sx2BWqTTyf .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sx2BWqTTyf .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sx2BWqTTyf .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sx2BWqTTyf .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sx2BWqTTyf .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sx2BWqTTyf [class^="socicon-"]:before,
.cid-sx2BWqTTyf [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sx2MOZthBT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx2MOZthBT .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sx2MOZthBT .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sx2GS5qM2t {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sx2GS5qM2t .mbr-section-title {
  color: #000000;
}
.cid-sx2GS5qM2t .mbr-text,
.cid-sx2GS5qM2t .mbr-section-btn {
  color: #f5951b;
}
.cid-sx2GS5qM2t .mbr-section-subtitle {
  color: #232323;
}
.cid-sx2BRnYoFK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sx2BRnYoFK .google-map {
  height: 30rem;
  position: relative;
}
.cid-sx2BRnYoFK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sx2BRnYoFK .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sx2BRnYoFK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sx2BRnYoFK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sx2JCtSWoN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sx2JCtSWoN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sx2JCtSWoN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sx2JCtSWoN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sx2JCtSWoN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx2JCtSWoN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sx2JCtSWoN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx2JCtSWoN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sx27eD4fVh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sx27eD4fVh nav.navbar {
  position: fixed;
}
.cid-sx27eD4fVh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx27eD4fVh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sx27eD4fVh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sx27eD4fVh .dropdown-item:hover,
.cid-sx27eD4fVh .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sx27eD4fVh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sx27eD4fVh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sx27eD4fVh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sx27eD4fVh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sx27eD4fVh .nav-link {
  position: relative;
}
.cid-sx27eD4fVh .container {
  display: flex;
  margin: auto;
}
.cid-sx27eD4fVh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sx27eD4fVh .dropdown-menu,
.cid-sx27eD4fVh .navbar.opened {
  background: #353535 !important;
}
.cid-sx27eD4fVh .nav-item:focus,
.cid-sx27eD4fVh .nav-link:focus {
  outline: none;
}
.cid-sx27eD4fVh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sx27eD4fVh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx27eD4fVh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sx27eD4fVh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx27eD4fVh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx27eD4fVh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx27eD4fVh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sx27eD4fVh .navbar.opened {
  transition: all 0.3s;
}
.cid-sx27eD4fVh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sx27eD4fVh .navbar .navbar-logo img {
  width: auto;
}
.cid-sx27eD4fVh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx27eD4fVh .navbar.collapsed {
  justify-content: center;
}
.cid-sx27eD4fVh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx27eD4fVh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx27eD4fVh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sx27eD4fVh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx27eD4fVh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sx27eD4fVh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sx27eD4fVh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx27eD4fVh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sx27eD4fVh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sx27eD4fVh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx27eD4fVh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx27eD4fVh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx27eD4fVh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sx27eD4fVh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sx27eD4fVh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sx27eD4fVh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx27eD4fVh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sx27eD4fVh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sx27eD4fVh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sx27eD4fVh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sx27eD4fVh .navbar.navbar-short {
  min-height: 60px;
}
.cid-sx27eD4fVh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sx27eD4fVh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sx27eD4fVh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sx27eD4fVh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx27eD4fVh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx27eD4fVh .dropdown-item.active,
.cid-sx27eD4fVh .dropdown-item:active {
  background-color: transparent;
}
.cid-sx27eD4fVh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sx27eD4fVh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx27eD4fVh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx27eD4fVh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sx27eD4fVh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx27eD4fVh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx27eD4fVh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sx27eD4fVh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sx27eD4fVh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sx27eD4fVh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sx27eD4fVh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sx27eD4fVh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx27eD4fVh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx27eD4fVh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sx27eD4fVh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx27eD4fVh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sx27eD4fVh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sx27eD4fVh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx27eD4fVh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sx27eD4fVh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sx27eD4fVh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx27eD4fVh .navbar {
    height: 70px;
  }
  .cid-sx27eD4fVh .navbar.opened {
    height: auto;
  }
  .cid-sx27eD4fVh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx37u7YRTF {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cardboard-467817-1920-1920x1116.jpg");
}
.cid-syE6DOijlA {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fafafa;
}
.cid-syE6DOijlA .mbr-text,
.cid-syE6DOijlA .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-syE6DOijlA .mbr-text,
  .cid-syE6DOijlA .mbr-section-title {
    text-align: center;
  }
}
.cid-syE6DOijlA a.btn {
  height: 100%;
  margin: 0;
}
.cid-syE6DOijlA .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-syE6DOijlA .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-syE6DOijlA .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-syE6DOijlA .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-syE6DOijlA .justify-content-center {
  align-items: center;
}
.cid-syE6DOijlA .mbr-text {
  color: #f5951b;
}
.cid-sz225OgXxS {
  background-image: url("../../../assets/images/meuble-carton-chat2-1-1920x1280.jpg");
}
.cid-sx3ho0JA7r {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sx3ho0JA7r .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sx3ho0JA7r .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sx3ho0JA7r .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sx3ho0JA7r .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sx3ho0JA7r .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sx3ho0JA7r .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sx3ho0JA7r .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sx3ho0JA7r .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sx3ho0JA7r .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sx3ho0JA7r .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sx3ho0JA7r .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sx3ho0JA7r .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sx3ho0JA7r .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sx3ho0JA7r .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sx3ho0JA7r [class^="socicon-"]:before,
.cid-sx3ho0JA7r [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sx3hn8bmnn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx3hn8bmnn .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sx3hn8bmnn .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syE9s8cjZK {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syE9s8cjZK .mbr-section-title {
  color: #000000;
}
.cid-syE9s8cjZK .mbr-text,
.cid-syE9s8cjZK .mbr-section-btn {
  color: #f5951b;
}
.cid-syE9s8cjZK .mbr-section-subtitle {
  color: #232323;
}
.cid-sx3hovIW4t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sx3hovIW4t .google-map {
  height: 30rem;
  position: relative;
}
.cid-sx3hovIW4t .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sx3hovIW4t .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sx3hovIW4t .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sx3hovIW4t .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sx2JCtSWoN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sx2JCtSWoN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sx2JCtSWoN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sx2JCtSWoN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sx2JCtSWoN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx2JCtSWoN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sx2JCtSWoN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx2JCtSWoN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szKGpHhNlH {
  background-image: url("../../../assets/images/abstract-3759259-1920-1920x1280.jpg");
}
.cid-szKGpHhNlH .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-szKGpHhNlH .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-szKGpHhNlH .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-szKGpHhNlH .mbr-text,
.cid-szKGpHhNlH .mbr-section-btn {
  color: #000000;
}
.cid-sx2BgYRlIp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sx2BgYRlIp nav.navbar {
  position: fixed;
}
.cid-sx2BgYRlIp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx2BgYRlIp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sx2BgYRlIp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sx2BgYRlIp .dropdown-item:hover,
.cid-sx2BgYRlIp .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sx2BgYRlIp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sx2BgYRlIp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sx2BgYRlIp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sx2BgYRlIp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sx2BgYRlIp .nav-link {
  position: relative;
}
.cid-sx2BgYRlIp .container {
  display: flex;
  margin: auto;
}
.cid-sx2BgYRlIp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sx2BgYRlIp .dropdown-menu,
.cid-sx2BgYRlIp .navbar.opened {
  background: #353535 !important;
}
.cid-sx2BgYRlIp .nav-item:focus,
.cid-sx2BgYRlIp .nav-link:focus {
  outline: none;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx2BgYRlIp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx2BgYRlIp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx2BgYRlIp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sx2BgYRlIp .navbar.opened {
  transition: all 0.3s;
}
.cid-sx2BgYRlIp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sx2BgYRlIp .navbar .navbar-logo img {
  width: auto;
}
.cid-sx2BgYRlIp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx2BgYRlIp .navbar.collapsed {
  justify-content: center;
}
.cid-sx2BgYRlIp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx2BgYRlIp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx2BgYRlIp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sx2BgYRlIp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sx2BgYRlIp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sx2BgYRlIp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx2BgYRlIp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sx2BgYRlIp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sx2BgYRlIp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sx2BgYRlIp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sx2BgYRlIp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sx2BgYRlIp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sx2BgYRlIp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sx2BgYRlIp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sx2BgYRlIp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sx2BgYRlIp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sx2BgYRlIp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx2BgYRlIp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx2BgYRlIp .dropdown-item.active,
.cid-sx2BgYRlIp .dropdown-item:active {
  background-color: transparent;
}
.cid-sx2BgYRlIp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sx2BgYRlIp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx2BgYRlIp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx2BgYRlIp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sx2BgYRlIp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx2BgYRlIp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx2BgYRlIp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sx2BgYRlIp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sx2BgYRlIp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sx2BgYRlIp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sx2BgYRlIp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx2BgYRlIp .navbar {
    height: 70px;
  }
  .cid-sx2BgYRlIp .navbar.opened {
    height: auto;
  }
  .cid-sx2BgYRlIp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szKJvSKOKL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-szKJvSKOKL .item {
  padding-bottom: 2rem;
}
.cid-szKJvSKOKL .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-szKJvSKOKL .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-szKJvSKOKL .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-szKJvSKOKL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-szKJvSKOKL .carousel-control,
.cid-szKJvSKOKL .close {
  background: #1b1b1b;
}
.cid-szKJvSKOKL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-szKJvSKOKL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-szKJvSKOKL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-szKJvSKOKL .carousel-control-next span {
  margin-left: 5px;
}
.cid-szKJvSKOKL .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-szKJvSKOKL .close::before {
  content: '\e91a';
}
.cid-szKJvSKOKL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-szKJvSKOKL .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-szKJvSKOKL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKJvSKOKL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-szKJvSKOKL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-szKJvSKOKL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-szKJvSKOKL .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-szKJvSKOKL .carousel-indicators li.active,
.cid-szKJvSKOKL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-szKJvSKOKL .carousel-indicators li::after,
.cid-szKJvSKOKL .carousel-indicators li::before {
  content: none;
}
.cid-szKJvSKOKL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-szKJvSKOKL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-szKJvSKOKL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-szKJvSKOKL .carousel-indicators {
    display: none;
  }
}
.cid-szKJvSKOKL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-szKJvSKOKL .carousel-inner > .active {
  display: block;
}
.cid-szKJvSKOKL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKJvSKOKL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szKJvSKOKL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-szKJvSKOKL .carousel-control,
  .cid-szKJvSKOKL .carousel-indicators,
  .cid-szKJvSKOKL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-szKJvSKOKL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-szKJvSKOKL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-szKJvSKOKL .carousel-indicators .active,
.cid-szKJvSKOKL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-szKJvSKOKL .carousel-indicators .active {
  background: #fff;
}
.cid-szKJvSKOKL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-szKJvSKOKL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-szKJvSKOKL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-szKJvSKOKL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-szKJvSKOKL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-szKJvSKOKL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-szKJvSKOKL .carousel {
  width: 100%;
}
.cid-szKJvSKOKL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-szKJvSKOKL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-szKJvSKOKL .modal.fade .modal-dialog,
.cid-szKJvSKOKL .modal.in .modal-dialog {
  transform: none;
}
.cid-szKJvSKOKL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-szKJvSKOKL H6 {
  text-align: center;
  color: #f5951b;
}
.cid-szKPKD4n8v {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-szKPKD4n8v .item {
  padding-bottom: 2rem;
}
.cid-szKPKD4n8v .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-szKPKD4n8v .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-szKPKD4n8v .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-szKPKD4n8v .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-szKPKD4n8v .carousel-control,
.cid-szKPKD4n8v .close {
  background: #1b1b1b;
}
.cid-szKPKD4n8v .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-szKPKD4n8v .carousel-control-prev span {
  margin-right: 5px;
}
.cid-szKPKD4n8v .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-szKPKD4n8v .carousel-control-next span {
  margin-left: 5px;
}
.cid-szKPKD4n8v .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-szKPKD4n8v .close::before {
  content: '\e91a';
}
.cid-szKPKD4n8v .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-szKPKD4n8v .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-szKPKD4n8v .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKPKD4n8v .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-szKPKD4n8v .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-szKPKD4n8v .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-szKPKD4n8v .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-szKPKD4n8v .carousel-indicators li.active,
.cid-szKPKD4n8v .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-szKPKD4n8v .carousel-indicators li::after,
.cid-szKPKD4n8v .carousel-indicators li::before {
  content: none;
}
.cid-szKPKD4n8v .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-szKPKD4n8v .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-szKPKD4n8v .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-szKPKD4n8v .carousel-indicators {
    display: none;
  }
}
.cid-szKPKD4n8v .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-szKPKD4n8v .carousel-inner > .active {
  display: block;
}
.cid-szKPKD4n8v .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szKPKD4n8v .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szKPKD4n8v .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-szKPKD4n8v .carousel-control,
  .cid-szKPKD4n8v .carousel-indicators,
  .cid-szKPKD4n8v .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-szKPKD4n8v .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-szKPKD4n8v .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-szKPKD4n8v .carousel-indicators .active,
.cid-szKPKD4n8v .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-szKPKD4n8v .carousel-indicators .active {
  background: #fff;
}
.cid-szKPKD4n8v .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-szKPKD4n8v .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-szKPKD4n8v .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-szKPKD4n8v .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-szKPKD4n8v .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-szKPKD4n8v .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-szKPKD4n8v .carousel {
  width: 100%;
}
.cid-szKPKD4n8v .modal-backdrop.in {
  opacity: 0.8;
}
.cid-szKPKD4n8v .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-szKPKD4n8v .modal.fade .modal-dialog,
.cid-szKPKD4n8v .modal.in .modal-dialog {
  transform: none;
}
.cid-szKPKD4n8v .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-szKPKD4n8v H6 {
  text-align: center;
}
.cid-sBb2i1mJo1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sBb2i1mJo1 .item {
  padding-bottom: 2rem;
}
.cid-sBb2i1mJo1 .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sBb2i1mJo1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sBb2i1mJo1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sBb2i1mJo1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sBb2i1mJo1 .carousel-control,
.cid-sBb2i1mJo1 .close {
  background: #1b1b1b;
}
.cid-sBb2i1mJo1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sBb2i1mJo1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sBb2i1mJo1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sBb2i1mJo1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sBb2i1mJo1 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sBb2i1mJo1 .close::before {
  content: '\e91a';
}
.cid-sBb2i1mJo1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sBb2i1mJo1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sBb2i1mJo1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBb2i1mJo1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sBb2i1mJo1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBb2i1mJo1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sBb2i1mJo1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sBb2i1mJo1 .carousel-indicators li.active,
.cid-sBb2i1mJo1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sBb2i1mJo1 .carousel-indicators li::after,
.cid-sBb2i1mJo1 .carousel-indicators li::before {
  content: none;
}
.cid-sBb2i1mJo1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sBb2i1mJo1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sBb2i1mJo1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBb2i1mJo1 .carousel-indicators {
    display: none;
  }
}
.cid-sBb2i1mJo1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sBb2i1mJo1 .carousel-inner > .active {
  display: block;
}
.cid-sBb2i1mJo1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBb2i1mJo1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBb2i1mJo1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sBb2i1mJo1 .carousel-control,
  .cid-sBb2i1mJo1 .carousel-indicators,
  .cid-sBb2i1mJo1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sBb2i1mJo1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sBb2i1mJo1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBb2i1mJo1 .carousel-indicators .active,
.cid-sBb2i1mJo1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sBb2i1mJo1 .carousel-indicators .active {
  background: #fff;
}
.cid-sBb2i1mJo1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sBb2i1mJo1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sBb2i1mJo1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sBb2i1mJo1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sBb2i1mJo1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sBb2i1mJo1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sBb2i1mJo1 .carousel {
  width: 100%;
}
.cid-sBb2i1mJo1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sBb2i1mJo1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sBb2i1mJo1 .modal.fade .modal-dialog,
.cid-sBb2i1mJo1 .modal.in .modal-dialog {
  transform: none;
}
.cid-sBb2i1mJo1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sBb2i1mJo1 H6 {
  text-align: center;
  color: #f5951b;
}
.cid-sBbRNmp34O {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sBbRNmp34O .item {
  padding-bottom: 2rem;
}
.cid-sBbRNmp34O .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sBbRNmp34O .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sBbRNmp34O .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sBbRNmp34O .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sBbRNmp34O .carousel-control,
.cid-sBbRNmp34O .close {
  background: #1b1b1b;
}
.cid-sBbRNmp34O .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sBbRNmp34O .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sBbRNmp34O .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sBbRNmp34O .carousel-control-next span {
  margin-left: 5px;
}
.cid-sBbRNmp34O .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sBbRNmp34O .close::before {
  content: '\e91a';
}
.cid-sBbRNmp34O .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sBbRNmp34O .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sBbRNmp34O .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBbRNmp34O .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sBbRNmp34O .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBbRNmp34O .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sBbRNmp34O .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sBbRNmp34O .carousel-indicators li.active,
.cid-sBbRNmp34O .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sBbRNmp34O .carousel-indicators li::after,
.cid-sBbRNmp34O .carousel-indicators li::before {
  content: none;
}
.cid-sBbRNmp34O .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sBbRNmp34O .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sBbRNmp34O .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBbRNmp34O .carousel-indicators {
    display: none;
  }
}
.cid-sBbRNmp34O .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sBbRNmp34O .carousel-inner > .active {
  display: block;
}
.cid-sBbRNmp34O .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBbRNmp34O .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBbRNmp34O .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sBbRNmp34O .carousel-control,
  .cid-sBbRNmp34O .carousel-indicators,
  .cid-sBbRNmp34O .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sBbRNmp34O .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sBbRNmp34O .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBbRNmp34O .carousel-indicators .active,
.cid-sBbRNmp34O .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sBbRNmp34O .carousel-indicators .active {
  background: #fff;
}
.cid-sBbRNmp34O .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sBbRNmp34O .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sBbRNmp34O .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sBbRNmp34O .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sBbRNmp34O .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sBbRNmp34O .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sBbRNmp34O .carousel {
  width: 100%;
}
.cid-sBbRNmp34O .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sBbRNmp34O .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sBbRNmp34O .modal.fade .modal-dialog,
.cid-sBbRNmp34O .modal.in .modal-dialog {
  transform: none;
}
.cid-sBbRNmp34O .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sBbRNmp34O H6 {
  text-align: center;
}
.cid-sBspaLO0qs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sBspaLO0qs .item {
  padding-bottom: 2rem;
}
.cid-sBspaLO0qs .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sBspaLO0qs .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sBspaLO0qs .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sBspaLO0qs .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sBspaLO0qs .carousel-control,
.cid-sBspaLO0qs .close {
  background: #1b1b1b;
}
.cid-sBspaLO0qs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sBspaLO0qs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sBspaLO0qs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sBspaLO0qs .carousel-control-next span {
  margin-left: 5px;
}
.cid-sBspaLO0qs .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sBspaLO0qs .close::before {
  content: '\e91a';
}
.cid-sBspaLO0qs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sBspaLO0qs .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sBspaLO0qs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBspaLO0qs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sBspaLO0qs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBspaLO0qs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sBspaLO0qs .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sBspaLO0qs .carousel-indicators li.active,
.cid-sBspaLO0qs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sBspaLO0qs .carousel-indicators li::after,
.cid-sBspaLO0qs .carousel-indicators li::before {
  content: none;
}
.cid-sBspaLO0qs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sBspaLO0qs .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sBspaLO0qs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBspaLO0qs .carousel-indicators {
    display: none;
  }
}
.cid-sBspaLO0qs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sBspaLO0qs .carousel-inner > .active {
  display: block;
}
.cid-sBspaLO0qs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBspaLO0qs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBspaLO0qs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sBspaLO0qs .carousel-control,
  .cid-sBspaLO0qs .carousel-indicators,
  .cid-sBspaLO0qs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sBspaLO0qs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sBspaLO0qs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBspaLO0qs .carousel-indicators .active,
.cid-sBspaLO0qs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sBspaLO0qs .carousel-indicators .active {
  background: #fff;
}
.cid-sBspaLO0qs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sBspaLO0qs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sBspaLO0qs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sBspaLO0qs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sBspaLO0qs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sBspaLO0qs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sBspaLO0qs .carousel {
  width: 100%;
}
.cid-sBspaLO0qs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sBspaLO0qs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sBspaLO0qs .modal.fade .modal-dialog,
.cid-sBspaLO0qs .modal.in .modal-dialog {
  transform: none;
}
.cid-sBspaLO0qs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sBspaLO0qs H6 {
  text-align: center;
  color: #f5951b;
}
.cid-sCFUtz3hox {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCFUtz3hox .item {
  padding-bottom: 2rem;
}
.cid-sCFUtz3hox .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCFUtz3hox .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCFUtz3hox .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCFUtz3hox .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCFUtz3hox .carousel-control,
.cid-sCFUtz3hox .close {
  background: #1b1b1b;
}
.cid-sCFUtz3hox .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCFUtz3hox .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCFUtz3hox .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCFUtz3hox .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCFUtz3hox .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCFUtz3hox .close::before {
  content: '\e91a';
}
.cid-sCFUtz3hox .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCFUtz3hox .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCFUtz3hox .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFUtz3hox .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCFUtz3hox .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCFUtz3hox .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCFUtz3hox .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCFUtz3hox .carousel-indicators li.active,
.cid-sCFUtz3hox .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCFUtz3hox .carousel-indicators li::after,
.cid-sCFUtz3hox .carousel-indicators li::before {
  content: none;
}
.cid-sCFUtz3hox .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCFUtz3hox .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCFUtz3hox .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCFUtz3hox .carousel-indicators {
    display: none;
  }
}
.cid-sCFUtz3hox .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCFUtz3hox .carousel-inner > .active {
  display: block;
}
.cid-sCFUtz3hox .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFUtz3hox .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCFUtz3hox .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCFUtz3hox .carousel-control,
  .cid-sCFUtz3hox .carousel-indicators,
  .cid-sCFUtz3hox .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCFUtz3hox .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCFUtz3hox .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCFUtz3hox .carousel-indicators .active,
.cid-sCFUtz3hox .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCFUtz3hox .carousel-indicators .active {
  background: #fff;
}
.cid-sCFUtz3hox .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCFUtz3hox .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCFUtz3hox .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCFUtz3hox .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCFUtz3hox .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCFUtz3hox .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCFUtz3hox .carousel {
  width: 100%;
}
.cid-sCFUtz3hox .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCFUtz3hox .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCFUtz3hox .modal.fade .modal-dialog,
.cid-sCFUtz3hox .modal.in .modal-dialog {
  transform: none;
}
.cid-sCFUtz3hox .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCFUtz3hox H6 {
  text-align: center;
}
.cid-sCFUuyfIT4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCFUuyfIT4 .item {
  padding-bottom: 2rem;
}
.cid-sCFUuyfIT4 .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCFUuyfIT4 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCFUuyfIT4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCFUuyfIT4 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCFUuyfIT4 .carousel-control,
.cid-sCFUuyfIT4 .close {
  background: #1b1b1b;
}
.cid-sCFUuyfIT4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCFUuyfIT4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCFUuyfIT4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCFUuyfIT4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCFUuyfIT4 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCFUuyfIT4 .close::before {
  content: '\e91a';
}
.cid-sCFUuyfIT4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCFUuyfIT4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCFUuyfIT4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFUuyfIT4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCFUuyfIT4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCFUuyfIT4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCFUuyfIT4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCFUuyfIT4 .carousel-indicators li.active,
.cid-sCFUuyfIT4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCFUuyfIT4 .carousel-indicators li::after,
.cid-sCFUuyfIT4 .carousel-indicators li::before {
  content: none;
}
.cid-sCFUuyfIT4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCFUuyfIT4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCFUuyfIT4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCFUuyfIT4 .carousel-indicators {
    display: none;
  }
}
.cid-sCFUuyfIT4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCFUuyfIT4 .carousel-inner > .active {
  display: block;
}
.cid-sCFUuyfIT4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFUuyfIT4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCFUuyfIT4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCFUuyfIT4 .carousel-control,
  .cid-sCFUuyfIT4 .carousel-indicators,
  .cid-sCFUuyfIT4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCFUuyfIT4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCFUuyfIT4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCFUuyfIT4 .carousel-indicators .active,
.cid-sCFUuyfIT4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCFUuyfIT4 .carousel-indicators .active {
  background: #fff;
}
.cid-sCFUuyfIT4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCFUuyfIT4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCFUuyfIT4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCFUuyfIT4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCFUuyfIT4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCFUuyfIT4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCFUuyfIT4 .carousel {
  width: 100%;
}
.cid-sCFUuyfIT4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCFUuyfIT4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCFUuyfIT4 .modal.fade .modal-dialog,
.cid-sCFUuyfIT4 .modal.in .modal-dialog {
  transform: none;
}
.cid-sCFUuyfIT4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCFUuyfIT4 H6 {
  text-align: center;
  color: #f5951b;
}
.cid-sCFXhmHPT2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCFXhmHPT2 .item {
  padding-bottom: 2rem;
}
.cid-sCFXhmHPT2 .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCFXhmHPT2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCFXhmHPT2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCFXhmHPT2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCFXhmHPT2 .carousel-control,
.cid-sCFXhmHPT2 .close {
  background: #1b1b1b;
}
.cid-sCFXhmHPT2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCFXhmHPT2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCFXhmHPT2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCFXhmHPT2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCFXhmHPT2 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCFXhmHPT2 .close::before {
  content: '\e91a';
}
.cid-sCFXhmHPT2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCFXhmHPT2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCFXhmHPT2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFXhmHPT2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCFXhmHPT2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCFXhmHPT2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCFXhmHPT2 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCFXhmHPT2 .carousel-indicators li.active,
.cid-sCFXhmHPT2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCFXhmHPT2 .carousel-indicators li::after,
.cid-sCFXhmHPT2 .carousel-indicators li::before {
  content: none;
}
.cid-sCFXhmHPT2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCFXhmHPT2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCFXhmHPT2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCFXhmHPT2 .carousel-indicators {
    display: none;
  }
}
.cid-sCFXhmHPT2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCFXhmHPT2 .carousel-inner > .active {
  display: block;
}
.cid-sCFXhmHPT2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFXhmHPT2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCFXhmHPT2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCFXhmHPT2 .carousel-control,
  .cid-sCFXhmHPT2 .carousel-indicators,
  .cid-sCFXhmHPT2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCFXhmHPT2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCFXhmHPT2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCFXhmHPT2 .carousel-indicators .active,
.cid-sCFXhmHPT2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCFXhmHPT2 .carousel-indicators .active {
  background: #fff;
}
.cid-sCFXhmHPT2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCFXhmHPT2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCFXhmHPT2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCFXhmHPT2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCFXhmHPT2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCFXhmHPT2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCFXhmHPT2 .carousel {
  width: 100%;
}
.cid-sCFXhmHPT2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCFXhmHPT2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCFXhmHPT2 .modal.fade .modal-dialog,
.cid-sCFXhmHPT2 .modal.in .modal-dialog {
  transform: none;
}
.cid-sCFXhmHPT2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCFXhmHPT2 H6 {
  text-align: center;
}
.cid-sCFXX0GHsk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCFXX0GHsk .item {
  padding-bottom: 2rem;
}
.cid-sCFXX0GHsk .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCFXX0GHsk .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCFXX0GHsk .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCFXX0GHsk .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCFXX0GHsk .carousel-control,
.cid-sCFXX0GHsk .close {
  background: #1b1b1b;
}
.cid-sCFXX0GHsk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCFXX0GHsk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCFXX0GHsk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCFXX0GHsk .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCFXX0GHsk .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCFXX0GHsk .close::before {
  content: '\e91a';
}
.cid-sCFXX0GHsk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCFXX0GHsk .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCFXX0GHsk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFXX0GHsk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCFXX0GHsk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCFXX0GHsk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCFXX0GHsk .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCFXX0GHsk .carousel-indicators li.active,
.cid-sCFXX0GHsk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCFXX0GHsk .carousel-indicators li::after,
.cid-sCFXX0GHsk .carousel-indicators li::before {
  content: none;
}
.cid-sCFXX0GHsk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCFXX0GHsk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCFXX0GHsk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCFXX0GHsk .carousel-indicators {
    display: none;
  }
}
.cid-sCFXX0GHsk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCFXX0GHsk .carousel-inner > .active {
  display: block;
}
.cid-sCFXX0GHsk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFXX0GHsk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCFXX0GHsk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCFXX0GHsk .carousel-control,
  .cid-sCFXX0GHsk .carousel-indicators,
  .cid-sCFXX0GHsk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCFXX0GHsk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCFXX0GHsk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCFXX0GHsk .carousel-indicators .active,
.cid-sCFXX0GHsk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCFXX0GHsk .carousel-indicators .active {
  background: #fff;
}
.cid-sCFXX0GHsk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCFXX0GHsk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCFXX0GHsk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCFXX0GHsk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCFXX0GHsk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCFXX0GHsk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCFXX0GHsk .carousel {
  width: 100%;
}
.cid-sCFXX0GHsk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCFXX0GHsk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCFXX0GHsk .modal.fade .modal-dialog,
.cid-sCFXX0GHsk .modal.in .modal-dialog {
  transform: none;
}
.cid-sCFXX0GHsk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCFXX0GHsk H6 {
  text-align: center;
  color: #f5951b;
}
.cid-sCFXXzzySi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCFXXzzySi .item {
  padding-bottom: 2rem;
}
.cid-sCFXXzzySi .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCFXXzzySi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCFXXzzySi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCFXXzzySi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCFXXzzySi .carousel-control,
.cid-sCFXXzzySi .close {
  background: #1b1b1b;
}
.cid-sCFXXzzySi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCFXXzzySi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCFXXzzySi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCFXXzzySi .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCFXXzzySi .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCFXXzzySi .close::before {
  content: '\e91a';
}
.cid-sCFXXzzySi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCFXXzzySi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCFXXzzySi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFXXzzySi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCFXXzzySi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCFXXzzySi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCFXXzzySi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCFXXzzySi .carousel-indicators li.active,
.cid-sCFXXzzySi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCFXXzzySi .carousel-indicators li::after,
.cid-sCFXXzzySi .carousel-indicators li::before {
  content: none;
}
.cid-sCFXXzzySi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCFXXzzySi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCFXXzzySi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCFXXzzySi .carousel-indicators {
    display: none;
  }
}
.cid-sCFXXzzySi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCFXXzzySi .carousel-inner > .active {
  display: block;
}
.cid-sCFXXzzySi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFXXzzySi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCFXXzzySi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCFXXzzySi .carousel-control,
  .cid-sCFXXzzySi .carousel-indicators,
  .cid-sCFXXzzySi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCFXXzzySi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCFXXzzySi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCFXXzzySi .carousel-indicators .active,
.cid-sCFXXzzySi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCFXXzzySi .carousel-indicators .active {
  background: #fff;
}
.cid-sCFXXzzySi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCFXXzzySi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCFXXzzySi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCFXXzzySi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCFXXzzySi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCFXXzzySi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCFXXzzySi .carousel {
  width: 100%;
}
.cid-sCFXXzzySi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCFXXzzySi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCFXXzzySi .modal.fade .modal-dialog,
.cid-sCFXXzzySi .modal.in .modal-dialog {
  transform: none;
}
.cid-sCFXXzzySi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCFXXzzySi H6 {
  text-align: center;
}
.cid-sCFYXafuRJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCFYXafuRJ .item {
  padding-bottom: 2rem;
}
.cid-sCFYXafuRJ .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCFYXafuRJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCFYXafuRJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCFYXafuRJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCFYXafuRJ .carousel-control,
.cid-sCFYXafuRJ .close {
  background: #1b1b1b;
}
.cid-sCFYXafuRJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCFYXafuRJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCFYXafuRJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCFYXafuRJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCFYXafuRJ .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCFYXafuRJ .close::before {
  content: '\e91a';
}
.cid-sCFYXafuRJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCFYXafuRJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCFYXafuRJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFYXafuRJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCFYXafuRJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCFYXafuRJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCFYXafuRJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCFYXafuRJ .carousel-indicators li.active,
.cid-sCFYXafuRJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCFYXafuRJ .carousel-indicators li::after,
.cid-sCFYXafuRJ .carousel-indicators li::before {
  content: none;
}
.cid-sCFYXafuRJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCFYXafuRJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCFYXafuRJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCFYXafuRJ .carousel-indicators {
    display: none;
  }
}
.cid-sCFYXafuRJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCFYXafuRJ .carousel-inner > .active {
  display: block;
}
.cid-sCFYXafuRJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFYXafuRJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCFYXafuRJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCFYXafuRJ .carousel-control,
  .cid-sCFYXafuRJ .carousel-indicators,
  .cid-sCFYXafuRJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCFYXafuRJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCFYXafuRJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCFYXafuRJ .carousel-indicators .active,
.cid-sCFYXafuRJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCFYXafuRJ .carousel-indicators .active {
  background: #fff;
}
.cid-sCFYXafuRJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCFYXafuRJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCFYXafuRJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCFYXafuRJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCFYXafuRJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCFYXafuRJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCFYXafuRJ .carousel {
  width: 100%;
}
.cid-sCFYXafuRJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCFYXafuRJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCFYXafuRJ .modal.fade .modal-dialog,
.cid-sCFYXafuRJ .modal.in .modal-dialog {
  transform: none;
}
.cid-sCFYXafuRJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCFYXafuRJ H6 {
  text-align: center;
  color: #f5951b;
}
.cid-sCFYYNqBln {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCFYYNqBln .item {
  padding-bottom: 2rem;
}
.cid-sCFYYNqBln .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCFYYNqBln .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCFYYNqBln .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCFYYNqBln .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCFYYNqBln .carousel-control,
.cid-sCFYYNqBln .close {
  background: #1b1b1b;
}
.cid-sCFYYNqBln .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCFYYNqBln .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCFYYNqBln .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCFYYNqBln .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCFYYNqBln .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCFYYNqBln .close::before {
  content: '\e91a';
}
.cid-sCFYYNqBln .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCFYYNqBln .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCFYYNqBln .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFYYNqBln .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCFYYNqBln .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCFYYNqBln .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCFYYNqBln .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCFYYNqBln .carousel-indicators li.active,
.cid-sCFYYNqBln .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCFYYNqBln .carousel-indicators li::after,
.cid-sCFYYNqBln .carousel-indicators li::before {
  content: none;
}
.cid-sCFYYNqBln .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCFYYNqBln .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCFYYNqBln .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCFYYNqBln .carousel-indicators {
    display: none;
  }
}
.cid-sCFYYNqBln .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCFYYNqBln .carousel-inner > .active {
  display: block;
}
.cid-sCFYYNqBln .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCFYYNqBln .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCFYYNqBln .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCFYYNqBln .carousel-control,
  .cid-sCFYYNqBln .carousel-indicators,
  .cid-sCFYYNqBln .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCFYYNqBln .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCFYYNqBln .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCFYYNqBln .carousel-indicators .active,
.cid-sCFYYNqBln .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCFYYNqBln .carousel-indicators .active {
  background: #fff;
}
.cid-sCFYYNqBln .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCFYYNqBln .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCFYYNqBln .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCFYYNqBln .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCFYYNqBln .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCFYYNqBln .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCFYYNqBln .carousel {
  width: 100%;
}
.cid-sCFYYNqBln .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCFYYNqBln .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCFYYNqBln .modal.fade .modal-dialog,
.cid-sCFYYNqBln .modal.in .modal-dialog {
  transform: none;
}
.cid-sCFYYNqBln .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCFYYNqBln H6 {
  text-align: center;
}
.cid-sCG553cJk8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bamboo-513511-1920-1920x1325.jpg");
}
.cid-sCG553cJk8 .item {
  padding-bottom: 2rem;
}
.cid-sCG553cJk8 .item-wrapper {
  height: 500px;
  position: relative;
}
.cid-sCG553cJk8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sCG553cJk8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCG553cJk8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCG553cJk8 .carousel-control,
.cid-sCG553cJk8 .close {
  background: #1b1b1b;
}
.cid-sCG553cJk8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCG553cJk8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCG553cJk8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCG553cJk8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCG553cJk8 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCG553cJk8 .close::before {
  content: '\e91a';
}
.cid-sCG553cJk8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCG553cJk8 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCG553cJk8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCG553cJk8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCG553cJk8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCG553cJk8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCG553cJk8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCG553cJk8 .carousel-indicators li.active,
.cid-sCG553cJk8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCG553cJk8 .carousel-indicators li::after,
.cid-sCG553cJk8 .carousel-indicators li::before {
  content: none;
}
.cid-sCG553cJk8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCG553cJk8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCG553cJk8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCG553cJk8 .carousel-indicators {
    display: none;
  }
}
.cid-sCG553cJk8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCG553cJk8 .carousel-inner > .active {
  display: block;
}
.cid-sCG553cJk8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCG553cJk8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCG553cJk8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCG553cJk8 .carousel-control,
  .cid-sCG553cJk8 .carousel-indicators,
  .cid-sCG553cJk8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCG553cJk8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCG553cJk8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCG553cJk8 .carousel-indicators .active,
.cid-sCG553cJk8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCG553cJk8 .carousel-indicators .active {
  background: #fff;
}
.cid-sCG553cJk8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCG553cJk8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCG553cJk8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCG553cJk8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCG553cJk8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCG553cJk8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCG553cJk8 .carousel {
  width: 100%;
}
.cid-sCG553cJk8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCG553cJk8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCG553cJk8 .modal.fade .modal-dialog,
.cid-sCG553cJk8 .modal.in .modal-dialog {
  transform: none;
}
.cid-sCG553cJk8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCG553cJk8 H6 {
  text-align: center;
  color: #f5951b;
}
.cid-syE9O5wxwC {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syE9O5wxwC .mbr-section-title {
  color: #000000;
}
.cid-syE9O5wxwC .mbr-text,
.cid-syE9O5wxwC .mbr-section-btn {
  color: #f5951b;
}
.cid-syE9O5wxwC .mbr-section-subtitle {
  color: #232323;
}
.cid-sx3cs1dEiA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-sx3cs1dEiA .google-map {
  height: 30rem;
  position: relative;
}
.cid-sx3cs1dEiA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sx3cs1dEiA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sx3cs1dEiA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sx3cs1dEiA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sx3ctAWGjU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sx3ctAWGjU .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sx3ctAWGjU .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sx3ctAWGjU .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sx3ctAWGjU .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sx3ctAWGjU .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sx3ctAWGjU .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sx3ctAWGjU .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sx3ctAWGjU .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sx3ctAWGjU .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sx3ctAWGjU .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sx3ctAWGjU .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sx3ctAWGjU .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sx3ctAWGjU .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sx3ctAWGjU .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sx3ctAWGjU [class^="socicon-"]:before,
.cid-sx3ctAWGjU [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sx3cuSIahe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx3cuSIahe .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sx3cuSIahe .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sx2JCtSWoN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sx2JCtSWoN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sx2JCtSWoN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sx2JCtSWoN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sx2JCtSWoN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx2JCtSWoN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sx2JCtSWoN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx2JCtSWoN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sxH2WQ2dsI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxH2WQ2dsI nav.navbar {
  position: fixed;
}
.cid-sxH2WQ2dsI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxH2WQ2dsI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxH2WQ2dsI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxH2WQ2dsI .dropdown-item:hover,
.cid-sxH2WQ2dsI .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sxH2WQ2dsI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxH2WQ2dsI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxH2WQ2dsI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxH2WQ2dsI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxH2WQ2dsI .nav-link {
  position: relative;
}
.cid-sxH2WQ2dsI .container {
  display: flex;
  margin: auto;
}
.cid-sxH2WQ2dsI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxH2WQ2dsI .dropdown-menu,
.cid-sxH2WQ2dsI .navbar.opened {
  background: #353535 !important;
}
.cid-sxH2WQ2dsI .nav-item:focus,
.cid-sxH2WQ2dsI .nav-link:focus {
  outline: none;
}
.cid-sxH2WQ2dsI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxH2WQ2dsI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxH2WQ2dsI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxH2WQ2dsI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxH2WQ2dsI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxH2WQ2dsI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxH2WQ2dsI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sxH2WQ2dsI .navbar.opened {
  transition: all 0.3s;
}
.cid-sxH2WQ2dsI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxH2WQ2dsI .navbar .navbar-logo img {
  width: auto;
}
.cid-sxH2WQ2dsI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxH2WQ2dsI .navbar.collapsed {
  justify-content: center;
}
.cid-sxH2WQ2dsI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxH2WQ2dsI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxH2WQ2dsI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sxH2WQ2dsI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxH2WQ2dsI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxH2WQ2dsI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxH2WQ2dsI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxH2WQ2dsI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxH2WQ2dsI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxH2WQ2dsI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxH2WQ2dsI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxH2WQ2dsI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxH2WQ2dsI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxH2WQ2dsI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxH2WQ2dsI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxH2WQ2dsI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxH2WQ2dsI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxH2WQ2dsI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxH2WQ2dsI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxH2WQ2dsI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxH2WQ2dsI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxH2WQ2dsI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxH2WQ2dsI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxH2WQ2dsI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxH2WQ2dsI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxH2WQ2dsI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxH2WQ2dsI .dropdown-item.active,
.cid-sxH2WQ2dsI .dropdown-item:active {
  background-color: transparent;
}
.cid-sxH2WQ2dsI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxH2WQ2dsI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxH2WQ2dsI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxH2WQ2dsI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sxH2WQ2dsI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxH2WQ2dsI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxH2WQ2dsI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxH2WQ2dsI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxH2WQ2dsI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxH2WQ2dsI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sxH2WQ2dsI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxH2WQ2dsI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxH2WQ2dsI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxH2WQ2dsI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxH2WQ2dsI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxH2WQ2dsI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxH2WQ2dsI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxH2WQ2dsI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxH2WQ2dsI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxH2WQ2dsI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxH2WQ2dsI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxH2WQ2dsI .navbar {
    height: 70px;
  }
  .cid-sxH2WQ2dsI .navbar.opened {
    height: auto;
  }
  .cid-sxH2WQ2dsI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxH2WRruCN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1079.jpg");
}
.cid-sxH2WRruCN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sxH2WRruCN .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxH2WRruCN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sxH2WRruCN .mbr-section-title {
  color: #ffffff;
}
.cid-sxH2WRruCN .mbr-text,
.cid-sxH2WRruCN .mbr-section-btn {
  color: #f5951b;
}
.cid-sz1uI3KgP7 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sz1uI3KgP7 .video-wrapper iframe {
  width: 100%;
}
.cid-sz1uI3KgP7 .mbr-section-title,
.cid-sz1uI3KgP7 .mbr-section-subtitle,
.cid-sz1uI3KgP7 .mbr-text {
  text-align: center;
}
.cid-sBsEWTfamS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sBsEWTfamS .video-wrapper iframe {
  width: 100%;
}
.cid-sBsEWTfamS .mbr-section-title,
.cid-sBsEWTfamS .mbr-section-subtitle,
.cid-sBsEWTfamS .mbr-text {
  text-align: center;
}
.cid-sxH2WV0PWJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sxH2WV0PWJ .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sxH2WV0PWJ .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sxH2WV0PWJ .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sxH2WV0PWJ .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sxH2WV0PWJ .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sxH2WV0PWJ .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sxH2WV0PWJ .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sxH2WV0PWJ .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sxH2WV0PWJ .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sxH2WV0PWJ .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sxH2WV0PWJ .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sxH2WV0PWJ .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sxH2WV0PWJ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sxH2WV0PWJ .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sxH2WV0PWJ [class^="socicon-"]:before,
.cid-sxH2WV0PWJ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sxH2WWawdR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxH2WWawdR .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxH2WWawdR .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syE9yJF4a0 {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syE9yJF4a0 .mbr-section-title {
  color: #000000;
}
.cid-syE9yJF4a0 .mbr-text,
.cid-syE9yJF4a0 .mbr-section-btn {
  color: #f5951b;
}
.cid-syE9yJF4a0 .mbr-section-subtitle {
  color: #232323;
}
.cid-sxH2WUrOcr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sxH2WUrOcr .google-map {
  height: 30rem;
  position: relative;
}
.cid-sxH2WUrOcr .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sxH2WUrOcr .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sxH2WUrOcr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sxH2WUrOcr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sxH2WY1Lup {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sxH2WY1Lup .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxH2WY1Lup .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxH2WY1Lup .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxH2WY1Lup .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxH2WY1Lup .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxH2WY1Lup .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxH2WY1Lup .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxH2WY1Lup .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxH2WY1Lup .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxH2WY1Lup .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxH2WY1Lup .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxH2WY1Lup .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxH2WY1Lup .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxH2WY1Lup .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sxH5Cwy5jU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sxH5Cwy5jU nav.navbar {
  position: fixed;
}
.cid-sxH5Cwy5jU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxH5Cwy5jU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sxH5Cwy5jU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sxH5Cwy5jU .dropdown-item:hover,
.cid-sxH5Cwy5jU .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sxH5Cwy5jU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sxH5Cwy5jU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sxH5Cwy5jU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sxH5Cwy5jU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sxH5Cwy5jU .nav-link {
  position: relative;
}
.cid-sxH5Cwy5jU .container {
  display: flex;
  margin: auto;
}
.cid-sxH5Cwy5jU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sxH5Cwy5jU .dropdown-menu,
.cid-sxH5Cwy5jU .navbar.opened {
  background: #353535 !important;
}
.cid-sxH5Cwy5jU .nav-item:focus,
.cid-sxH5Cwy5jU .nav-link:focus {
  outline: none;
}
.cid-sxH5Cwy5jU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sxH5Cwy5jU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sxH5Cwy5jU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sxH5Cwy5jU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sxH5Cwy5jU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sxH5Cwy5jU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sxH5Cwy5jU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sxH5Cwy5jU .navbar.opened {
  transition: all 0.3s;
}
.cid-sxH5Cwy5jU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sxH5Cwy5jU .navbar .navbar-logo img {
  width: auto;
}
.cid-sxH5Cwy5jU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sxH5Cwy5jU .navbar.collapsed {
  justify-content: center;
}
.cid-sxH5Cwy5jU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sxH5Cwy5jU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sxH5Cwy5jU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sxH5Cwy5jU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sxH5Cwy5jU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sxH5Cwy5jU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sxH5Cwy5jU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sxH5Cwy5jU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sxH5Cwy5jU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sxH5Cwy5jU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sxH5Cwy5jU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sxH5Cwy5jU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sxH5Cwy5jU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sxH5Cwy5jU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sxH5Cwy5jU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sxH5Cwy5jU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sxH5Cwy5jU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sxH5Cwy5jU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sxH5Cwy5jU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sxH5Cwy5jU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sxH5Cwy5jU .navbar.navbar-short {
  min-height: 60px;
}
.cid-sxH5Cwy5jU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sxH5Cwy5jU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sxH5Cwy5jU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sxH5Cwy5jU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sxH5Cwy5jU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sxH5Cwy5jU .dropdown-item.active,
.cid-sxH5Cwy5jU .dropdown-item:active {
  background-color: transparent;
}
.cid-sxH5Cwy5jU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sxH5Cwy5jU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sxH5Cwy5jU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sxH5Cwy5jU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sxH5Cwy5jU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sxH5Cwy5jU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sxH5Cwy5jU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sxH5Cwy5jU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sxH5Cwy5jU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sxH5Cwy5jU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sxH5Cwy5jU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sxH5Cwy5jU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxH5Cwy5jU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sxH5Cwy5jU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sxH5Cwy5jU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxH5Cwy5jU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sxH5Cwy5jU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sxH5Cwy5jU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sxH5Cwy5jU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sxH5Cwy5jU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sxH5Cwy5jU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sxH5Cwy5jU .navbar {
    height: 70px;
  }
  .cid-sxH5Cwy5jU .navbar.opened {
    height: auto;
  }
  .cid-sxH5Cwy5jU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxH5CynS5D {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/art-1352435-1920x915.jpg");
}
.cid-sxH5CynS5D .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sxH5CynS5D .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxH5CynS5D .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sxH5CynS5D .mbr-section-title {
  color: #f5951b;
}
.cid-sxH5CynS5D .mbr-text,
.cid-sxH5CynS5D .mbr-section-btn {
  color: #5cd136;
}
.cid-syEctHie3r {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #8bc94b;
}
.cid-syEctHie3r .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-syEctHie3r .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-syEctHie3r .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-syEctHie3r .mbr-section-title {
  color: #353535;
}
.cid-syEctHie3r .mbr-text,
.cid-syEctHie3r .mbr-section-btn {
  color: #ffffff;
}
.cid-sz1KMUEAst {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sxH5CCIkJ2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sxH5CCIkJ2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sxH5CCIkJ2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sxH5CCIkJ2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sxH5CCIkJ2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sxH5CCIkJ2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sxH5CCIkJ2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sxH5CCIkJ2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sxH5CCIkJ2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sxH5CCIkJ2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sxH5CCIkJ2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sxH5CCIkJ2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sxH5CCIkJ2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sxH5CCIkJ2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sxH5CCIkJ2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sxH5CCIkJ2 [class^="socicon-"]:before,
.cid-sxH5CCIkJ2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sxH5CDaTtU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sxH5CDaTtU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sxH5CDaTtU .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syE9FgrXUn {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syE9FgrXUn .mbr-section-title {
  color: #000000;
}
.cid-syE9FgrXUn .mbr-text,
.cid-syE9FgrXUn .mbr-section-btn {
  color: #f5951b;
}
.cid-syE9FgrXUn .mbr-section-subtitle {
  color: #232323;
}
.cid-sxH5CC9W75 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sxH5CC9W75 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sxH5CC9W75 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sxH5CC9W75 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sxH5CC9W75 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sxH5CC9W75 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sxH5CE3ZwU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sxH5CE3ZwU .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sxH5CE3ZwU .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sxH5CE3ZwU .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sxH5CE3ZwU .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sxH5CE3ZwU .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sxH5CE3ZwU .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sxH5CE3ZwU .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sxH5CE3ZwU .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sxH5CE3ZwU .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxH5CE3ZwU .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sxH5CE3ZwU .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxH5CE3ZwU .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxH5CE3ZwU .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sxH5CE3ZwU .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syx2pnl7tw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syx2pnl7tw nav.navbar {
  position: fixed;
}
.cid-syx2pnl7tw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syx2pnl7tw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syx2pnl7tw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syx2pnl7tw .dropdown-item:hover,
.cid-syx2pnl7tw .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-syx2pnl7tw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syx2pnl7tw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syx2pnl7tw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syx2pnl7tw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syx2pnl7tw .nav-link {
  position: relative;
}
.cid-syx2pnl7tw .container {
  display: flex;
  margin: auto;
}
.cid-syx2pnl7tw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syx2pnl7tw .dropdown-menu,
.cid-syx2pnl7tw .navbar.opened {
  background: #353535 !important;
}
.cid-syx2pnl7tw .nav-item:focus,
.cid-syx2pnl7tw .nav-link:focus {
  outline: none;
}
.cid-syx2pnl7tw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syx2pnl7tw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syx2pnl7tw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syx2pnl7tw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syx2pnl7tw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syx2pnl7tw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syx2pnl7tw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-syx2pnl7tw .navbar.opened {
  transition: all 0.3s;
}
.cid-syx2pnl7tw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syx2pnl7tw .navbar .navbar-logo img {
  width: auto;
}
.cid-syx2pnl7tw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syx2pnl7tw .navbar.collapsed {
  justify-content: center;
}
.cid-syx2pnl7tw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syx2pnl7tw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syx2pnl7tw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-syx2pnl7tw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syx2pnl7tw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syx2pnl7tw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-syx2pnl7tw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syx2pnl7tw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syx2pnl7tw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syx2pnl7tw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syx2pnl7tw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syx2pnl7tw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syx2pnl7tw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syx2pnl7tw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-syx2pnl7tw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syx2pnl7tw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syx2pnl7tw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syx2pnl7tw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syx2pnl7tw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syx2pnl7tw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syx2pnl7tw .navbar.navbar-short {
  min-height: 60px;
}
.cid-syx2pnl7tw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syx2pnl7tw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syx2pnl7tw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syx2pnl7tw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syx2pnl7tw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syx2pnl7tw .dropdown-item.active,
.cid-syx2pnl7tw .dropdown-item:active {
  background-color: transparent;
}
.cid-syx2pnl7tw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syx2pnl7tw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syx2pnl7tw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syx2pnl7tw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-syx2pnl7tw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syx2pnl7tw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syx2pnl7tw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syx2pnl7tw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syx2pnl7tw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syx2pnl7tw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-syx2pnl7tw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syx2pnl7tw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syx2pnl7tw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syx2pnl7tw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syx2pnl7tw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syx2pnl7tw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syx2pnl7tw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syx2pnl7tw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syx2pnl7tw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syx2pnl7tw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syx2pnl7tw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syx2pnl7tw .navbar {
    height: 70px;
  }
  .cid-syx2pnl7tw .navbar.opened {
    height: auto;
  }
  .cid-syx2pnl7tw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syx2pocyPD {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-syxRm7vNCH {
  background-image: url("../../../assets/images/meuble-carton-chat2-1-1920x1280.jpg");
}
.cid-syEaxNHxft {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syEaxNHxft .mbr-section-title {
  color: #000000;
}
.cid-syEaxNHxft .mbr-text,
.cid-syEaxNHxft .mbr-section-btn {
  color: #f5951b;
}
.cid-syEaxNHxft .mbr-section-subtitle {
  color: #232323;
}
.cid-syx2pq1ZCY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-syx2pq1ZCY .google-map {
  height: 30rem;
  position: relative;
}
.cid-syx2pq1ZCY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syx2pq1ZCY .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syx2pq1ZCY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syx2pq1ZCY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syx2pqvLgY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syx2pqvLgY .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-syx2pqvLgY .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-syx2pqvLgY .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-syx2pqvLgY .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-syx2pqvLgY .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-syx2pqvLgY .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-syx2pqvLgY .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-syx2pqvLgY .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-syx2pqvLgY .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-syx2pqvLgY .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-syx2pqvLgY .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-syx2pqvLgY .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-syx2pqvLgY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-syx2pqvLgY .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-syx2pqvLgY [class^="socicon-"]:before,
.cid-syx2pqvLgY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-syx2pqYO9K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syx2pqYO9K .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syx2pqYO9K .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syx2prIUSd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syx2prIUSd .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syx2prIUSd .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syx2prIUSd .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syx2prIUSd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syx2prIUSd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syx2prIUSd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syx2prIUSd .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syx2prIUSd .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syx2prIUSd .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syx2prIUSd .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syx2prIUSd .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syx2prIUSd .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syx2prIUSd .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syx2prIUSd .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syOA2gm43q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syOA2gm43q nav.navbar {
  position: fixed;
}
.cid-syOA2gm43q .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syOA2gm43q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syOA2gm43q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syOA2gm43q .dropdown-item:hover,
.cid-syOA2gm43q .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-syOA2gm43q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syOA2gm43q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syOA2gm43q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syOA2gm43q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syOA2gm43q .nav-link {
  position: relative;
}
.cid-syOA2gm43q .container {
  display: flex;
  margin: auto;
}
.cid-syOA2gm43q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syOA2gm43q .dropdown-menu,
.cid-syOA2gm43q .navbar.opened {
  background: #353535 !important;
}
.cid-syOA2gm43q .nav-item:focus,
.cid-syOA2gm43q .nav-link:focus {
  outline: none;
}
.cid-syOA2gm43q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syOA2gm43q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syOA2gm43q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syOA2gm43q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syOA2gm43q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syOA2gm43q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syOA2gm43q .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-syOA2gm43q .navbar.opened {
  transition: all 0.3s;
}
.cid-syOA2gm43q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syOA2gm43q .navbar .navbar-logo img {
  width: auto;
}
.cid-syOA2gm43q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syOA2gm43q .navbar.collapsed {
  justify-content: center;
}
.cid-syOA2gm43q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syOA2gm43q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syOA2gm43q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-syOA2gm43q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syOA2gm43q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syOA2gm43q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-syOA2gm43q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syOA2gm43q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syOA2gm43q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syOA2gm43q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syOA2gm43q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syOA2gm43q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syOA2gm43q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syOA2gm43q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-syOA2gm43q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syOA2gm43q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syOA2gm43q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syOA2gm43q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syOA2gm43q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syOA2gm43q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syOA2gm43q .navbar.navbar-short {
  min-height: 60px;
}
.cid-syOA2gm43q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syOA2gm43q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syOA2gm43q .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syOA2gm43q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syOA2gm43q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syOA2gm43q .dropdown-item.active,
.cid-syOA2gm43q .dropdown-item:active {
  background-color: transparent;
}
.cid-syOA2gm43q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syOA2gm43q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syOA2gm43q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syOA2gm43q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-syOA2gm43q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syOA2gm43q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syOA2gm43q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syOA2gm43q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syOA2gm43q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syOA2gm43q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-syOA2gm43q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syOA2gm43q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syOA2gm43q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syOA2gm43q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syOA2gm43q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syOA2gm43q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syOA2gm43q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syOA2gm43q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syOA2gm43q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syOA2gm43q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syOA2gm43q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syOA2gm43q .navbar {
    height: 70px;
  }
  .cid-syOA2gm43q .navbar.opened {
    height: auto;
  }
  .cid-syOA2gm43q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syOA2hpW6S {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syOA2hVJsf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-syOA2hVJsf .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-syOA2hVJsf .currentcost {
  color: #232323;
}
.cid-syOA2hVJsf .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-syOA2hVJsf .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-syOA2hVJsf .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syOA2hVJsf .text-box {
    padding: 1rem;
  }
}
.cid-syOA2hVJsf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-syOA2hVJsf H5 {
  color: #f5951b;
}
.cid-sAZ4kLdk11 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f5951b;
}
.cid-sAZ4kLdk11 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sAZ4kLdk11 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sAZ4kLdk11 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sAZ4kLdk11 .wrapper {
  padding: 30px 0;
}
.cid-sAZ4kLdk11 .mbr-section-title {
  color: #fafafa;
}
.cid-sAZ4kLdk11 .mbr-text,
.cid-sAZ4kLdk11 .mbr-section-btn {
  color: #000000;
}
.cid-sAZ4kLdk11 H3 {
  color: #ffffff;
}
.cid-sAZ4lDgMfg {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f5951b;
}
.cid-sAZ4lDgMfg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sAZ4lDgMfg .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sAZ4lDgMfg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sAZ4lDgMfg .mbr-section-title {
  color: #ffffff;
}
.cid-syOA2iqIps {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-syOA2iqIps img,
.cid-syOA2iqIps .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-syOA2iqIps .item:focus,
.cid-syOA2iqIps span:focus {
  outline: none;
}
.cid-syOA2iqIps .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-syOA2iqIps .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-syOA2iqIps .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-syOA2iqIps .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-syOA2iqIps .mbr-section-btn {
  margin-top: auto !important;
}
.cid-syOA2iqIps .mbr-section-title {
  color: #f5951b;
}
.cid-syOA2iqIps .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syOA2jWq9B {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syOA2jWq9B .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-syOA2jWq9B .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-syOA2jWq9B .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-syOA2jWq9B .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-syOA2jWq9B .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-syOA2jWq9B .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-syOA2jWq9B .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-syOA2jWq9B .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-syOA2jWq9B .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-syOA2jWq9B .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-syOA2jWq9B .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-syOA2jWq9B .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-syOA2jWq9B .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-syOA2jWq9B .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-syOA2jWq9B [class^="socicon-"]:before,
.cid-syOA2jWq9B [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-syOA2kimyJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syOA2kimyJ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syOA2kimyJ .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syOA2iZq6k {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syOA2iZq6k .mbr-section-title {
  color: #000000;
}
.cid-syOA2iZq6k .mbr-text,
.cid-syOA2iZq6k .mbr-section-btn {
  color: #f5951b;
}
.cid-syOA2iZq6k .mbr-section-subtitle {
  color: #232323;
}
.cid-syOA2jpCc9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-syOA2jpCc9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-syOA2jpCc9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syOA2jpCc9 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syOA2jpCc9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syOA2jpCc9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syOA2kN4jI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syOA2kN4jI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syOA2kN4jI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syOA2kN4jI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syOA2kN4jI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syOA2kN4jI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syOA2kN4jI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syOA2kN4jI .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syOA2kN4jI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syOA2kN4jI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syOA2kN4jI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syOA2kN4jI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syOA2kN4jI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syOA2kN4jI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syOA2kN4jI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syOMRfismJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syOMRfismJ nav.navbar {
  position: fixed;
}
.cid-syOMRfismJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syOMRfismJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syOMRfismJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syOMRfismJ .dropdown-item:hover,
.cid-syOMRfismJ .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-syOMRfismJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syOMRfismJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syOMRfismJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syOMRfismJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syOMRfismJ .nav-link {
  position: relative;
}
.cid-syOMRfismJ .container {
  display: flex;
  margin: auto;
}
.cid-syOMRfismJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syOMRfismJ .dropdown-menu,
.cid-syOMRfismJ .navbar.opened {
  background: #353535 !important;
}
.cid-syOMRfismJ .nav-item:focus,
.cid-syOMRfismJ .nav-link:focus {
  outline: none;
}
.cid-syOMRfismJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syOMRfismJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syOMRfismJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syOMRfismJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syOMRfismJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syOMRfismJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syOMRfismJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-syOMRfismJ .navbar.opened {
  transition: all 0.3s;
}
.cid-syOMRfismJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syOMRfismJ .navbar .navbar-logo img {
  width: auto;
}
.cid-syOMRfismJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syOMRfismJ .navbar.collapsed {
  justify-content: center;
}
.cid-syOMRfismJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syOMRfismJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syOMRfismJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-syOMRfismJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syOMRfismJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syOMRfismJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-syOMRfismJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syOMRfismJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syOMRfismJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syOMRfismJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syOMRfismJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syOMRfismJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syOMRfismJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syOMRfismJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-syOMRfismJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syOMRfismJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syOMRfismJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syOMRfismJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syOMRfismJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syOMRfismJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syOMRfismJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-syOMRfismJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syOMRfismJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syOMRfismJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syOMRfismJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syOMRfismJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syOMRfismJ .dropdown-item.active,
.cid-syOMRfismJ .dropdown-item:active {
  background-color: transparent;
}
.cid-syOMRfismJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syOMRfismJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syOMRfismJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syOMRfismJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-syOMRfismJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syOMRfismJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syOMRfismJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syOMRfismJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syOMRfismJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syOMRfismJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-syOMRfismJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syOMRfismJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syOMRfismJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syOMRfismJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syOMRfismJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syOMRfismJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syOMRfismJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syOMRfismJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syOMRfismJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syOMRfismJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syOMRfismJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syOMRfismJ .navbar {
    height: 70px;
  }
  .cid-syOMRfismJ .navbar.opened {
    height: auto;
  }
  .cid-syOMRfismJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syOMRgJYYs {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syOMRhrDGC {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-syOMRhrDGC .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-syOMRhrDGC .currentcost {
  color: #232323;
}
.cid-syOMRhrDGC .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-syOMRhrDGC .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-syOMRhrDGC .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syOMRhrDGC .text-box {
    padding: 1rem;
  }
}
.cid-syOMRhrDGC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-syOMRhrDGC H5 {
  color: #f5951b;
}
.cid-sB00ESpjaF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f5951b;
}
.cid-sB00ESpjaF .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sB00ESpjaF .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sB00ESpjaF .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sB00ESpjaF .wrapper {
  padding: 30px 0;
}
.cid-sB00ESpjaF .mbr-section-title {
  color: #fafafa;
}
.cid-sB00ESpjaF .mbr-text,
.cid-sB00ESpjaF .mbr-section-btn {
  color: #000000;
}
.cid-sB00ESpjaF H3 {
  color: #ffffff;
}
.cid-sB00FPh1Cg {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f5951b;
}
.cid-sB00FPh1Cg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sB00FPh1Cg .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sB00FPh1Cg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sB00FPh1Cg .mbr-section-title {
  color: #ffffff;
}
.cid-syOMRi8jjU {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-syOMRi8jjU img,
.cid-syOMRi8jjU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-syOMRi8jjU .item:focus,
.cid-syOMRi8jjU span:focus {
  outline: none;
}
.cid-syOMRi8jjU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-syOMRi8jjU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-syOMRi8jjU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-syOMRi8jjU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-syOMRi8jjU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-syOMRi8jjU .mbr-section-title {
  color: #f5951b;
}
.cid-syOMRi8jjU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syOMRiNyC1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syOMRiNyC1 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-syOMRiNyC1 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-syOMRiNyC1 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-syOMRiNyC1 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-syOMRiNyC1 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-syOMRiNyC1 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-syOMRiNyC1 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-syOMRiNyC1 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-syOMRiNyC1 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-syOMRiNyC1 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-syOMRiNyC1 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-syOMRiNyC1 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-syOMRiNyC1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-syOMRiNyC1 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-syOMRiNyC1 [class^="socicon-"]:before,
.cid-syOMRiNyC1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-syOMRjaEb1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syOMRjaEb1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syOMRjaEb1 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syOMRjwURG {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syOMRjwURG .mbr-section-title {
  color: #000000;
}
.cid-syOMRjwURG .mbr-text,
.cid-syOMRjwURG .mbr-section-btn {
  color: #f5951b;
}
.cid-syOMRjwURG .mbr-section-subtitle {
  color: #232323;
}
.cid-syOMRjWdbt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-syOMRjWdbt .google-map {
  height: 30rem;
  position: relative;
}
.cid-syOMRjWdbt .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syOMRjWdbt .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syOMRjWdbt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syOMRjWdbt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syOMRklH4f {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syOMRklH4f .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syOMRklH4f .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syOMRklH4f .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syOMRklH4f .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syOMRklH4f .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syOMRklH4f .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syOMRklH4f .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syOMRklH4f .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syOMRklH4f .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syOMRklH4f .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syOMRklH4f .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syOMRklH4f .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syOMRklH4f .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syOMRklH4f .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syORYEEq2V {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syORYEEq2V nav.navbar {
  position: fixed;
}
.cid-syORYEEq2V .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syORYEEq2V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syORYEEq2V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syORYEEq2V .dropdown-item:hover,
.cid-syORYEEq2V .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-syORYEEq2V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syORYEEq2V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syORYEEq2V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syORYEEq2V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syORYEEq2V .nav-link {
  position: relative;
}
.cid-syORYEEq2V .container {
  display: flex;
  margin: auto;
}
.cid-syORYEEq2V .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syORYEEq2V .dropdown-menu,
.cid-syORYEEq2V .navbar.opened {
  background: #353535 !important;
}
.cid-syORYEEq2V .nav-item:focus,
.cid-syORYEEq2V .nav-link:focus {
  outline: none;
}
.cid-syORYEEq2V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syORYEEq2V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syORYEEq2V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syORYEEq2V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syORYEEq2V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syORYEEq2V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syORYEEq2V .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-syORYEEq2V .navbar.opened {
  transition: all 0.3s;
}
.cid-syORYEEq2V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syORYEEq2V .navbar .navbar-logo img {
  width: auto;
}
.cid-syORYEEq2V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syORYEEq2V .navbar.collapsed {
  justify-content: center;
}
.cid-syORYEEq2V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syORYEEq2V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syORYEEq2V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-syORYEEq2V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syORYEEq2V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syORYEEq2V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-syORYEEq2V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syORYEEq2V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syORYEEq2V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syORYEEq2V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syORYEEq2V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syORYEEq2V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syORYEEq2V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syORYEEq2V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-syORYEEq2V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syORYEEq2V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syORYEEq2V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syORYEEq2V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syORYEEq2V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syORYEEq2V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syORYEEq2V .navbar.navbar-short {
  min-height: 60px;
}
.cid-syORYEEq2V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syORYEEq2V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syORYEEq2V .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syORYEEq2V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syORYEEq2V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syORYEEq2V .dropdown-item.active,
.cid-syORYEEq2V .dropdown-item:active {
  background-color: transparent;
}
.cid-syORYEEq2V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syORYEEq2V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syORYEEq2V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syORYEEq2V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-syORYEEq2V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syORYEEq2V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syORYEEq2V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syORYEEq2V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syORYEEq2V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syORYEEq2V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-syORYEEq2V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syORYEEq2V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syORYEEq2V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syORYEEq2V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syORYEEq2V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syORYEEq2V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syORYEEq2V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syORYEEq2V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syORYEEq2V .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syORYEEq2V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syORYEEq2V .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syORYEEq2V .navbar {
    height: 70px;
  }
  .cid-syORYEEq2V .navbar.opened {
    height: auto;
  }
  .cid-syORYEEq2V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syORYG7yMJ {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syORYGMxO6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-syORYGMxO6 .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-syORYGMxO6 .currentcost {
  color: #232323;
}
.cid-syORYGMxO6 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-syORYGMxO6 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-syORYGMxO6 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syORYGMxO6 .text-box {
    padding: 1rem;
  }
}
.cid-syORYGMxO6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-syORYGMxO6 H5 {
  color: #f5951b;
}
.cid-sB6cprW8sC {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f5951b;
}
.cid-sB6cprW8sC .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sB6cprW8sC .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sB6cprW8sC .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sB6cprW8sC .wrapper {
  padding: 30px 0;
}
.cid-sB6cprW8sC .mbr-section-title {
  color: #fafafa;
}
.cid-sB6cprW8sC .mbr-text,
.cid-sB6cprW8sC .mbr-section-btn {
  color: #000000;
}
.cid-sB6cprW8sC H3 {
  color: #ffffff;
}
.cid-sB6cqsXlyB {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f5951b;
}
.cid-sB6cqsXlyB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sB6cqsXlyB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sB6cqsXlyB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sB6cqsXlyB .mbr-section-title {
  color: #ffffff;
}
.cid-syORYHs8kF {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-syORYHs8kF img,
.cid-syORYHs8kF .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-syORYHs8kF .item:focus,
.cid-syORYHs8kF span:focus {
  outline: none;
}
.cid-syORYHs8kF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-syORYHs8kF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-syORYHs8kF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-syORYHs8kF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-syORYHs8kF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-syORYHs8kF .mbr-section-title {
  color: #f5951b;
}
.cid-syORYHs8kF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syORYIfKx0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syORYIfKx0 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-syORYIfKx0 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-syORYIfKx0 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-syORYIfKx0 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-syORYIfKx0 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-syORYIfKx0 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-syORYIfKx0 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-syORYIfKx0 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-syORYIfKx0 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-syORYIfKx0 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-syORYIfKx0 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-syORYIfKx0 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-syORYIfKx0 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-syORYIfKx0 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-syORYIfKx0 [class^="socicon-"]:before,
.cid-syORYIfKx0 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-syORYIC5pL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syORYIC5pL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syORYIC5pL .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syORYIZVtP {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syORYIZVtP .mbr-section-title {
  color: #000000;
}
.cid-syORYIZVtP .mbr-text,
.cid-syORYIZVtP .mbr-section-btn {
  color: #f5951b;
}
.cid-syORYIZVtP .mbr-section-subtitle {
  color: #232323;
}
.cid-syORYJs0tQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-syORYJs0tQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-syORYJs0tQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syORYJs0tQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syORYJs0tQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syORYJs0tQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syORYJU6Gs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syORYJU6Gs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syORYJU6Gs .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syORYJU6Gs .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syORYJU6Gs .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syORYJU6Gs .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syORYJU6Gs .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syORYJU6Gs .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syORYJU6Gs .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syORYJU6Gs .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syORYJU6Gs .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syORYJU6Gs .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syORYJU6Gs .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syORYJU6Gs .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syORYJU6Gs .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz0cMJwVzo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz0cMJwVzo nav.navbar {
  position: fixed;
}
.cid-sz0cMJwVzo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0cMJwVzo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz0cMJwVzo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz0cMJwVzo .dropdown-item:hover,
.cid-sz0cMJwVzo .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sz0cMJwVzo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz0cMJwVzo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz0cMJwVzo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz0cMJwVzo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz0cMJwVzo .nav-link {
  position: relative;
}
.cid-sz0cMJwVzo .container {
  display: flex;
  margin: auto;
}
.cid-sz0cMJwVzo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz0cMJwVzo .dropdown-menu,
.cid-sz0cMJwVzo .navbar.opened {
  background: #353535 !important;
}
.cid-sz0cMJwVzo .nav-item:focus,
.cid-sz0cMJwVzo .nav-link:focus {
  outline: none;
}
.cid-sz0cMJwVzo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz0cMJwVzo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz0cMJwVzo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz0cMJwVzo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0cMJwVzo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz0cMJwVzo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz0cMJwVzo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sz0cMJwVzo .navbar.opened {
  transition: all 0.3s;
}
.cid-sz0cMJwVzo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz0cMJwVzo .navbar .navbar-logo img {
  width: auto;
}
.cid-sz0cMJwVzo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz0cMJwVzo .navbar.collapsed {
  justify-content: center;
}
.cid-sz0cMJwVzo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz0cMJwVzo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz0cMJwVzo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz0cMJwVzo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz0cMJwVzo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz0cMJwVzo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz0cMJwVzo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz0cMJwVzo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz0cMJwVzo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz0cMJwVzo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz0cMJwVzo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz0cMJwVzo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz0cMJwVzo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz0cMJwVzo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz0cMJwVzo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz0cMJwVzo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz0cMJwVzo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz0cMJwVzo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz0cMJwVzo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz0cMJwVzo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz0cMJwVzo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz0cMJwVzo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz0cMJwVzo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz0cMJwVzo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz0cMJwVzo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz0cMJwVzo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz0cMJwVzo .dropdown-item.active,
.cid-sz0cMJwVzo .dropdown-item:active {
  background-color: transparent;
}
.cid-sz0cMJwVzo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz0cMJwVzo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz0cMJwVzo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz0cMJwVzo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sz0cMJwVzo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz0cMJwVzo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz0cMJwVzo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz0cMJwVzo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz0cMJwVzo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz0cMJwVzo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sz0cMJwVzo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz0cMJwVzo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0cMJwVzo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0cMJwVzo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz0cMJwVzo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0cMJwVzo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz0cMJwVzo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz0cMJwVzo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0cMJwVzo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz0cMJwVzo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz0cMJwVzo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sz0cMJwVzo .navbar {
    height: 70px;
  }
  .cid-sz0cMJwVzo .navbar.opened {
    height: auto;
  }
  .cid-sz0cMJwVzo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sz0cMKDc9I {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sz0cML2IIc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sz0cML2IIc .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sz0cML2IIc .currentcost {
  color: #232323;
}
.cid-sz0cML2IIc .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sz0cML2IIc .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0cML2IIc .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz0cML2IIc .text-box {
    padding: 1rem;
  }
}
.cid-sz0cML2IIc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz0cML2IIc H5 {
  color: #f5951b;
}
.cid-sz0cMLx8Ci {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sz0cMLx8Ci img,
.cid-sz0cMLx8Ci .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sz0cMLx8Ci .item:focus,
.cid-sz0cMLx8Ci span:focus {
  outline: none;
}
.cid-sz0cMLx8Ci .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sz0cMLx8Ci .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sz0cMLx8Ci .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0cMLx8Ci .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sz0cMLx8Ci .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sz0cMLx8Ci .mbr-section-title {
  color: #f5951b;
}
.cid-sz0cMLx8Ci .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sz0cMLZ3GL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz0cMLZ3GL .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sz0cMLZ3GL .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sz0cMLZ3GL .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sz0cMLZ3GL .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sz0cMLZ3GL .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sz0cMLZ3GL .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sz0cMLZ3GL .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sz0cMLZ3GL .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sz0cMLZ3GL .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sz0cMLZ3GL .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sz0cMLZ3GL .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sz0cMLZ3GL .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sz0cMLZ3GL .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sz0cMLZ3GL .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sz0cMLZ3GL [class^="socicon-"]:before,
.cid-sz0cMLZ3GL [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sz0cMMmZ3i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz0cMMmZ3i .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz0cMMmZ3i .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sz0cMMHUP7 {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sz0cMMHUP7 .mbr-section-title {
  color: #000000;
}
.cid-sz0cMMHUP7 .mbr-text,
.cid-sz0cMMHUP7 .mbr-section-btn {
  color: #f5951b;
}
.cid-sz0cMMHUP7 .mbr-section-subtitle {
  color: #232323;
}
.cid-sz0cMN4AyV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sz0cMN4AyV .google-map {
  height: 30rem;
  position: relative;
}
.cid-sz0cMN4AyV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sz0cMN4AyV .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sz0cMN4AyV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sz0cMN4AyV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sz0cMNuDVF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sz0cMNuDVF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sz0cMNuDVF .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sz0cMNuDVF .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sz0cMNuDVF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sz0cMNuDVF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sz0cMNuDVF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sz0cMNuDVF .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sz0cMNuDVF .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sz0cMNuDVF .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sz0cMNuDVF .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sz0cMNuDVF .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sz0cMNuDVF .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sz0cMNuDVF .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sz0cMNuDVF .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz0lZMHrDi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz0lZMHrDi nav.navbar {
  position: fixed;
}
.cid-sz0lZMHrDi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0lZMHrDi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz0lZMHrDi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz0lZMHrDi .dropdown-item:hover,
.cid-sz0lZMHrDi .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sz0lZMHrDi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz0lZMHrDi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz0lZMHrDi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz0lZMHrDi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz0lZMHrDi .nav-link {
  position: relative;
}
.cid-sz0lZMHrDi .container {
  display: flex;
  margin: auto;
}
.cid-sz0lZMHrDi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz0lZMHrDi .dropdown-menu,
.cid-sz0lZMHrDi .navbar.opened {
  background: #353535 !important;
}
.cid-sz0lZMHrDi .nav-item:focus,
.cid-sz0lZMHrDi .nav-link:focus {
  outline: none;
}
.cid-sz0lZMHrDi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz0lZMHrDi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz0lZMHrDi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz0lZMHrDi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0lZMHrDi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz0lZMHrDi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz0lZMHrDi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sz0lZMHrDi .navbar.opened {
  transition: all 0.3s;
}
.cid-sz0lZMHrDi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz0lZMHrDi .navbar .navbar-logo img {
  width: auto;
}
.cid-sz0lZMHrDi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz0lZMHrDi .navbar.collapsed {
  justify-content: center;
}
.cid-sz0lZMHrDi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz0lZMHrDi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz0lZMHrDi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz0lZMHrDi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz0lZMHrDi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz0lZMHrDi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz0lZMHrDi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz0lZMHrDi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz0lZMHrDi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz0lZMHrDi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz0lZMHrDi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz0lZMHrDi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz0lZMHrDi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz0lZMHrDi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz0lZMHrDi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz0lZMHrDi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz0lZMHrDi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz0lZMHrDi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz0lZMHrDi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz0lZMHrDi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz0lZMHrDi .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz0lZMHrDi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz0lZMHrDi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz0lZMHrDi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz0lZMHrDi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz0lZMHrDi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz0lZMHrDi .dropdown-item.active,
.cid-sz0lZMHrDi .dropdown-item:active {
  background-color: transparent;
}
.cid-sz0lZMHrDi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz0lZMHrDi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz0lZMHrDi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz0lZMHrDi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sz0lZMHrDi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz0lZMHrDi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz0lZMHrDi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz0lZMHrDi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz0lZMHrDi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz0lZMHrDi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sz0lZMHrDi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz0lZMHrDi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0lZMHrDi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0lZMHrDi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz0lZMHrDi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0lZMHrDi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz0lZMHrDi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz0lZMHrDi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0lZMHrDi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz0lZMHrDi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz0lZMHrDi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sz0lZMHrDi .navbar {
    height: 70px;
  }
  .cid-sz0lZMHrDi .navbar.opened {
    height: auto;
  }
  .cid-sz0lZMHrDi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sz0lZOsgjT {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sz0lZPzdXZ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sz0lZPzdXZ .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sz0lZPzdXZ .currentcost {
  color: #232323;
}
.cid-sz0lZPzdXZ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sz0lZPzdXZ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0lZPzdXZ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz0lZPzdXZ .text-box {
    padding: 1rem;
  }
}
.cid-sz0lZPzdXZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz0lZPzdXZ H5 {
  color: #f5951b;
}
.cid-sz0lZQwC1v {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sz0lZQwC1v img,
.cid-sz0lZQwC1v .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sz0lZQwC1v .item:focus,
.cid-sz0lZQwC1v span:focus {
  outline: none;
}
.cid-sz0lZQwC1v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sz0lZQwC1v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sz0lZQwC1v .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0lZQwC1v .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sz0lZQwC1v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sz0lZQwC1v .mbr-section-title {
  color: #f5951b;
}
.cid-sz0lZQwC1v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sz0lZRuWFT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz0lZRuWFT .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sz0lZRuWFT .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sz0lZRuWFT .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sz0lZRuWFT .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sz0lZRuWFT .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sz0lZRuWFT .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sz0lZRuWFT .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sz0lZRuWFT .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sz0lZRuWFT .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sz0lZRuWFT .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sz0lZRuWFT .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sz0lZRuWFT .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sz0lZRuWFT .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sz0lZRuWFT .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sz0lZRuWFT [class^="socicon-"]:before,
.cid-sz0lZRuWFT [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sz0lZSGS3r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz0lZSGS3r .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz0lZSGS3r .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sz0lZTd9NZ {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sz0lZTd9NZ .mbr-section-title {
  color: #000000;
}
.cid-sz0lZTd9NZ .mbr-text,
.cid-sz0lZTd9NZ .mbr-section-btn {
  color: #f5951b;
}
.cid-sz0lZTd9NZ .mbr-section-subtitle {
  color: #232323;
}
.cid-sz0lZTYReC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sz0lZTYReC .google-map {
  height: 30rem;
  position: relative;
}
.cid-sz0lZTYReC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sz0lZTYReC .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sz0lZTYReC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sz0lZTYReC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sz0lZUFygc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sz0lZUFygc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sz0lZUFygc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sz0lZUFygc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sz0lZUFygc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sz0lZUFygc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sz0lZUFygc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sz0lZUFygc .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sz0lZUFygc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sz0lZUFygc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sz0lZUFygc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sz0lZUFygc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sz0lZUFygc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sz0lZUFygc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sz0lZUFygc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syDOPgyMOr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syDOPgyMOr nav.navbar {
  position: fixed;
}
.cid-syDOPgyMOr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syDOPgyMOr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syDOPgyMOr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syDOPgyMOr .dropdown-item:hover,
.cid-syDOPgyMOr .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-syDOPgyMOr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syDOPgyMOr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syDOPgyMOr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syDOPgyMOr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syDOPgyMOr .nav-link {
  position: relative;
}
.cid-syDOPgyMOr .container {
  display: flex;
  margin: auto;
}
.cid-syDOPgyMOr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syDOPgyMOr .dropdown-menu,
.cid-syDOPgyMOr .navbar.opened {
  background: #353535 !important;
}
.cid-syDOPgyMOr .nav-item:focus,
.cid-syDOPgyMOr .nav-link:focus {
  outline: none;
}
.cid-syDOPgyMOr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syDOPgyMOr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syDOPgyMOr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syDOPgyMOr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syDOPgyMOr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syDOPgyMOr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syDOPgyMOr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-syDOPgyMOr .navbar.opened {
  transition: all 0.3s;
}
.cid-syDOPgyMOr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syDOPgyMOr .navbar .navbar-logo img {
  width: auto;
}
.cid-syDOPgyMOr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syDOPgyMOr .navbar.collapsed {
  justify-content: center;
}
.cid-syDOPgyMOr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syDOPgyMOr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syDOPgyMOr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-syDOPgyMOr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syDOPgyMOr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syDOPgyMOr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-syDOPgyMOr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syDOPgyMOr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syDOPgyMOr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syDOPgyMOr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syDOPgyMOr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syDOPgyMOr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syDOPgyMOr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syDOPgyMOr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-syDOPgyMOr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syDOPgyMOr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syDOPgyMOr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syDOPgyMOr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syDOPgyMOr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syDOPgyMOr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syDOPgyMOr .navbar.navbar-short {
  min-height: 60px;
}
.cid-syDOPgyMOr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syDOPgyMOr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syDOPgyMOr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syDOPgyMOr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syDOPgyMOr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syDOPgyMOr .dropdown-item.active,
.cid-syDOPgyMOr .dropdown-item:active {
  background-color: transparent;
}
.cid-syDOPgyMOr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syDOPgyMOr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syDOPgyMOr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syDOPgyMOr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-syDOPgyMOr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syDOPgyMOr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syDOPgyMOr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syDOPgyMOr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syDOPgyMOr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syDOPgyMOr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-syDOPgyMOr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syDOPgyMOr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syDOPgyMOr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syDOPgyMOr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syDOPgyMOr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syDOPgyMOr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syDOPgyMOr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syDOPgyMOr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syDOPgyMOr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syDOPgyMOr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syDOPgyMOr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syDOPgyMOr .navbar {
    height: 70px;
  }
  .cid-syDOPgyMOr .navbar.opened {
    height: auto;
  }
  .cid-syDOPgyMOr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syDOPhXJ8T {
  background-image: url("../../../assets/images/abstract-1845397-1920-1920x1277.jpg");
}
.cid-syDOPhXJ8T .row {
  flex-direction: row-reverse;
}
.cid-syDOPhXJ8T .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-syDOPhXJ8T .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-syDOPhXJ8T .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sz0tI9bLJh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
@media (max-width: 991px) {
  .cid-sz0tI9bLJh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz0tI9bLJh .row {
  flex-direction: row-reverse;
}
.cid-sz0tI9bLJh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz0tI9bLJh .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz0tI9bLJh .mbr-section-title {
  color: #f5951b;
  text-align: right;
}
.cid-sz0tI9bLJh .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-sz0tI9bLJh .mbr-description {
  color: #f5951b;
}
.cid-sz1Suk4TNU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sz1Suk4TNU .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-sz1Suk4TNU .currentcost {
  color: #232323;
}
.cid-sz1Suk4TNU .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sz1Suk4TNU .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sz1Suk4TNU .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz1Suk4TNU .text-box {
    padding: 1rem;
  }
}
.cid-sz1Suk4TNU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz1Suk4TNU H5 {
  color: #f5951b;
}
.cid-sz1UCBASM8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/abstract-19616-1920-1920x1286.jpg");
}
.cid-sz1UCBASM8 .mbr-section-title,
.cid-sz1UCBASM8 .mbr-section-subtitle {
  text-align: center;
}
.cid-sz1UCBASM8 .cost {
  word-break: normal;
}
.cid-sz1UCBASM8 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-sz1UCBASM8 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-sz1UCBASM8 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz1UCBASM8 .card-wrapper {
    padding: 1rem;
  }
}
.cid-sz1UCBASM8 .card-title {
  color: #f5951b;
}
.cid-sz27SIFLIu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sz27SIFLIu .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sz27SIFLIu .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sz27SIFLIu .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sz27SIFLIu .wrapper {
  padding: 30px 0;
}
.cid-sz27SIFLIu .mbr-section-title {
  color: #fafafa;
}
.cid-sz27SIFLIu .mbr-text,
.cid-sz27SIFLIu .mbr-section-btn {
  color: #f5951b;
}
.cid-sz27SIFLIu H3 {
  color: #f5951b;
}
.cid-sz279QaaVm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/abstract-19616-1920-1920x1286.jpg");
}
.cid-sz279QaaVm .mbr-section-title,
.cid-sz279QaaVm .mbr-section-subtitle {
  text-align: center;
}
.cid-sz279QaaVm .cost {
  word-break: normal;
}
.cid-sz279QaaVm .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-sz279QaaVm .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-sz279QaaVm .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz279QaaVm .card-wrapper {
    padding: 1rem;
  }
}
.cid-sz279QaaVm .card-title {
  color: #f5951b;
}
.cid-sz2am7Rt8n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sz2am7Rt8n .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sz2am7Rt8n .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sz2am7Rt8n .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sz2am7Rt8n .wrapper {
  padding: 30px 0;
}
.cid-sz2am7Rt8n .mbr-section-title {
  color: #fafafa;
}
.cid-sz2am7Rt8n .mbr-text,
.cid-sz2am7Rt8n .mbr-section-btn {
  color: #ffffff;
}
.cid-syDOPlHfXf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syDOPlHfXf .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-syDOPlHfXf .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-syDOPlHfXf .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-syDOPlHfXf .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-syDOPlHfXf .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-syDOPlHfXf .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-syDOPlHfXf .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-syDOPlHfXf .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-syDOPlHfXf .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-syDOPlHfXf .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-syDOPlHfXf .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-syDOPlHfXf .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-syDOPlHfXf .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-syDOPlHfXf .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-syDOPlHfXf [class^="socicon-"]:before,
.cid-syDOPlHfXf [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-syDOPm9V5F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syDOPm9V5F .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syDOPm9V5F .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syE9gsnxwJ {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syE9gsnxwJ .mbr-section-title {
  color: #000000;
}
.cid-syE9gsnxwJ .mbr-text,
.cid-syE9gsnxwJ .mbr-section-btn {
  color: #f5951b;
}
.cid-syE9gsnxwJ .mbr-section-subtitle {
  color: #232323;
}
.cid-syDOPngLlx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-syDOPngLlx .google-map {
  height: 30rem;
  position: relative;
}
.cid-syDOPngLlx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syDOPngLlx .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syDOPngLlx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syDOPngLlx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syDOPoBuhc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syDOPoBuhc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syDOPoBuhc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syDOPoBuhc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syDOPoBuhc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syDOPoBuhc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syDOPoBuhc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syDOPoBuhc .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syDOPoBuhc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syDOPoBuhc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syDOPoBuhc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syDOPoBuhc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syDOPoBuhc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syDOPoBuhc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syDOPoBuhc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sx26MmHLuu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sx26MmHLuu nav.navbar {
  position: fixed;
}
.cid-sx26MmHLuu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx26MmHLuu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sx26MmHLuu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sx26MmHLuu .dropdown-item:hover,
.cid-sx26MmHLuu .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sx26MmHLuu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sx26MmHLuu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sx26MmHLuu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sx26MmHLuu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sx26MmHLuu .nav-link {
  position: relative;
}
.cid-sx26MmHLuu .container {
  display: flex;
  margin: auto;
}
.cid-sx26MmHLuu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sx26MmHLuu .dropdown-menu,
.cid-sx26MmHLuu .navbar.opened {
  background: #353535 !important;
}
.cid-sx26MmHLuu .nav-item:focus,
.cid-sx26MmHLuu .nav-link:focus {
  outline: none;
}
.cid-sx26MmHLuu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sx26MmHLuu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx26MmHLuu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sx26MmHLuu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx26MmHLuu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx26MmHLuu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx26MmHLuu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sx26MmHLuu .navbar.opened {
  transition: all 0.3s;
}
.cid-sx26MmHLuu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sx26MmHLuu .navbar .navbar-logo img {
  width: auto;
}
.cid-sx26MmHLuu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx26MmHLuu .navbar.collapsed {
  justify-content: center;
}
.cid-sx26MmHLuu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx26MmHLuu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx26MmHLuu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sx26MmHLuu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx26MmHLuu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sx26MmHLuu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sx26MmHLuu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx26MmHLuu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sx26MmHLuu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sx26MmHLuu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx26MmHLuu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx26MmHLuu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx26MmHLuu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sx26MmHLuu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sx26MmHLuu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sx26MmHLuu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx26MmHLuu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sx26MmHLuu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sx26MmHLuu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sx26MmHLuu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sx26MmHLuu .navbar.navbar-short {
  min-height: 60px;
}
.cid-sx26MmHLuu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sx26MmHLuu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sx26MmHLuu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sx26MmHLuu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx26MmHLuu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx26MmHLuu .dropdown-item.active,
.cid-sx26MmHLuu .dropdown-item:active {
  background-color: transparent;
}
.cid-sx26MmHLuu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sx26MmHLuu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx26MmHLuu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx26MmHLuu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sx26MmHLuu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx26MmHLuu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx26MmHLuu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sx26MmHLuu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sx26MmHLuu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sx26MmHLuu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sx26MmHLuu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sx26MmHLuu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx26MmHLuu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx26MmHLuu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sx26MmHLuu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx26MmHLuu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sx26MmHLuu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sx26MmHLuu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx26MmHLuu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sx26MmHLuu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sx26MmHLuu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx26MmHLuu .navbar {
    height: 70px;
  }
  .cid-sx26MmHLuu .navbar.opened {
    height: auto;
  }
  .cid-sx26MmHLuu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sxHa8W7qV4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/cardboard-2111107-1920-1920x1280.jpg");
}
.cid-sxHa8W7qV4 .row {
  flex-direction: row-reverse;
}
.cid-sxHa8W7qV4 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sxHa8W7qV4 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sxHa8W7qV4 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sz1zzcXH2v {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/cardboard-1835892-1920-1920x638.jpg");
}
@media (max-width: 991px) {
  .cid-sz1zzcXH2v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sz1zzcXH2v img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz1zzcXH2v .text-wrapper {
    padding: 2rem;
  }
}
.cid-sz1zzcXH2v .mbr-text {
  color: #ffffff;
}
.cid-sz1zzcXH2v .mbr-section-title {
  color: #f5951b;
}
.cid-sxHcbHQQZV {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/cardboard-267282-1920-1920x1280.jpg");
}
.cid-sxHcbHQQZV .mbr-text,
.cid-sxHcbHQQZV .mbr-section-btn {
  color: #f5951b;
}
.cid-sxHcbHQQZV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sxHcbHQQZV .mbr-section-subtitle {
  color: #000000;
}
.cid-sx3h9ie3EJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sx3h9ie3EJ .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sx3h9ie3EJ .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sx3h9ie3EJ .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sx3h9ie3EJ .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sx3h9ie3EJ .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sx3h9ie3EJ .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sx3h9ie3EJ .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sx3h9ie3EJ .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sx3h9ie3EJ .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sx3h9ie3EJ .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sx3h9ie3EJ .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sx3h9ie3EJ .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sx3h9ie3EJ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sx3h9ie3EJ .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sx3h9ie3EJ [class^="socicon-"]:before,
.cid-sx3h9ie3EJ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sx3h83fSWq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx3h83fSWq .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sx3h83fSWq .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syE9b3HXj2 {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syE9b3HXj2 .mbr-section-title {
  color: #000000;
}
.cid-syE9b3HXj2 .mbr-text,
.cid-syE9b3HXj2 .mbr-section-btn {
  color: #f5951b;
}
.cid-syE9b3HXj2 .mbr-section-subtitle {
  color: #232323;
}
.cid-sx3hacZaPt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sx3hacZaPt .google-map {
  height: 30rem;
  position: relative;
}
.cid-sx3hacZaPt .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sx3hacZaPt .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sx3hacZaPt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sx3hacZaPt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sx2JCtSWoN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sx2JCtSWoN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sx2JCtSWoN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sx2JCtSWoN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sx2JCtSWoN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx2JCtSWoN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sx2JCtSWoN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx2JCtSWoN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syODOEGuz0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syODOEGuz0 nav.navbar {
  position: fixed;
}
.cid-syODOEGuz0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syODOEGuz0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syODOEGuz0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syODOEGuz0 .dropdown-item:hover,
.cid-syODOEGuz0 .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-syODOEGuz0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syODOEGuz0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syODOEGuz0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syODOEGuz0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syODOEGuz0 .nav-link {
  position: relative;
}
.cid-syODOEGuz0 .container {
  display: flex;
  margin: auto;
}
.cid-syODOEGuz0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syODOEGuz0 .dropdown-menu,
.cid-syODOEGuz0 .navbar.opened {
  background: #353535 !important;
}
.cid-syODOEGuz0 .nav-item:focus,
.cid-syODOEGuz0 .nav-link:focus {
  outline: none;
}
.cid-syODOEGuz0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syODOEGuz0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syODOEGuz0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syODOEGuz0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syODOEGuz0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syODOEGuz0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syODOEGuz0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-syODOEGuz0 .navbar.opened {
  transition: all 0.3s;
}
.cid-syODOEGuz0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syODOEGuz0 .navbar .navbar-logo img {
  width: auto;
}
.cid-syODOEGuz0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syODOEGuz0 .navbar.collapsed {
  justify-content: center;
}
.cid-syODOEGuz0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syODOEGuz0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syODOEGuz0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-syODOEGuz0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syODOEGuz0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syODOEGuz0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-syODOEGuz0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syODOEGuz0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syODOEGuz0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syODOEGuz0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syODOEGuz0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syODOEGuz0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syODOEGuz0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syODOEGuz0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-syODOEGuz0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syODOEGuz0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syODOEGuz0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syODOEGuz0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syODOEGuz0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syODOEGuz0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syODOEGuz0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-syODOEGuz0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syODOEGuz0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syODOEGuz0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syODOEGuz0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syODOEGuz0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syODOEGuz0 .dropdown-item.active,
.cid-syODOEGuz0 .dropdown-item:active {
  background-color: transparent;
}
.cid-syODOEGuz0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syODOEGuz0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syODOEGuz0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syODOEGuz0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-syODOEGuz0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syODOEGuz0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syODOEGuz0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syODOEGuz0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syODOEGuz0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syODOEGuz0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-syODOEGuz0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syODOEGuz0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syODOEGuz0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syODOEGuz0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syODOEGuz0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syODOEGuz0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syODOEGuz0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syODOEGuz0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syODOEGuz0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syODOEGuz0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syODOEGuz0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syODOEGuz0 .navbar {
    height: 70px;
  }
  .cid-syODOEGuz0 .navbar.opened {
    height: auto;
  }
  .cid-syODOEGuz0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syODOG2skb {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syODOGQWME {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-syODOGQWME .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-syODOGQWME .currentcost {
  color: #232323;
}
.cid-syODOGQWME .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-syODOGQWME .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-syODOGQWME .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syODOGQWME .text-box {
    padding: 1rem;
  }
}
.cid-syODOGQWME .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-syODOGQWME H5 {
  color: #f5951b;
}
.cid-sAZ9ZnWFny {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f5951b;
}
.cid-sAZ9ZnWFny .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sAZ9ZnWFny .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sAZ9ZnWFny .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sAZ9ZnWFny .wrapper {
  padding: 30px 0;
}
.cid-sAZ9ZnWFny .mbr-section-title {
  color: #fafafa;
}
.cid-sAZ9ZnWFny .mbr-text,
.cid-sAZ9ZnWFny .mbr-section-btn {
  color: #000000;
}
.cid-sAZ9ZnWFny H3 {
  color: #ffffff;
}
.cid-sAZa0NP0U0 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f5951b;
}
.cid-sAZa0NP0U0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sAZa0NP0U0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sAZa0NP0U0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sAZa0NP0U0 .mbr-section-title {
  color: #ffffff;
}
.cid-syODOHuGYf {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-syODOHuGYf img,
.cid-syODOHuGYf .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-syODOHuGYf .item:focus,
.cid-syODOHuGYf span:focus {
  outline: none;
}
.cid-syODOHuGYf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-syODOHuGYf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-syODOHuGYf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-syODOHuGYf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-syODOHuGYf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-syODOHuGYf .mbr-section-title {
  color: #f5951b;
}
.cid-syODOHuGYf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syODOIjpwy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syODOIjpwy .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-syODOIjpwy .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-syODOIjpwy .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-syODOIjpwy .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-syODOIjpwy .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-syODOIjpwy .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-syODOIjpwy .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-syODOIjpwy .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-syODOIjpwy .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-syODOIjpwy .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-syODOIjpwy .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-syODOIjpwy .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-syODOIjpwy .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-syODOIjpwy .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-syODOIjpwy [class^="socicon-"]:before,
.cid-syODOIjpwy [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-syODOIFALM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syODOIFALM .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syODOIFALM .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syODOJ9iD6 {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syODOJ9iD6 .mbr-section-title {
  color: #000000;
}
.cid-syODOJ9iD6 .mbr-text,
.cid-syODOJ9iD6 .mbr-section-btn {
  color: #f5951b;
}
.cid-syODOJ9iD6 .mbr-section-subtitle {
  color: #232323;
}
.cid-syODOJAOT1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-syODOJAOT1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-syODOJAOT1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syODOJAOT1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syODOJAOT1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syODOJAOT1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syODOJZHdN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syODOJZHdN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syODOJZHdN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syODOJZHdN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syODOJZHdN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syODOJZHdN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syODOJZHdN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syODOJZHdN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syODOJZHdN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syODOJZHdN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syODOJZHdN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syODOJZHdN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syODOJZHdN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syODOJZHdN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syODOJZHdN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-syOKQp4r4g {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-syOKQp4r4g nav.navbar {
  position: fixed;
}
.cid-syOKQp4r4g .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syOKQp4r4g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-syOKQp4r4g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-syOKQp4r4g .dropdown-item:hover,
.cid-syOKQp4r4g .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-syOKQp4r4g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-syOKQp4r4g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-syOKQp4r4g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-syOKQp4r4g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-syOKQp4r4g .nav-link {
  position: relative;
}
.cid-syOKQp4r4g .container {
  display: flex;
  margin: auto;
}
.cid-syOKQp4r4g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-syOKQp4r4g .dropdown-menu,
.cid-syOKQp4r4g .navbar.opened {
  background: #353535 !important;
}
.cid-syOKQp4r4g .nav-item:focus,
.cid-syOKQp4r4g .nav-link:focus {
  outline: none;
}
.cid-syOKQp4r4g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-syOKQp4r4g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syOKQp4r4g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-syOKQp4r4g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-syOKQp4r4g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syOKQp4r4g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syOKQp4r4g .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-syOKQp4r4g .navbar.opened {
  transition: all 0.3s;
}
.cid-syOKQp4r4g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-syOKQp4r4g .navbar .navbar-logo img {
  width: auto;
}
.cid-syOKQp4r4g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-syOKQp4r4g .navbar.collapsed {
  justify-content: center;
}
.cid-syOKQp4r4g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syOKQp4r4g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syOKQp4r4g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-syOKQp4r4g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syOKQp4r4g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syOKQp4r4g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-syOKQp4r4g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syOKQp4r4g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-syOKQp4r4g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-syOKQp4r4g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syOKQp4r4g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syOKQp4r4g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syOKQp4r4g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syOKQp4r4g .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-syOKQp4r4g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-syOKQp4r4g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syOKQp4r4g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syOKQp4r4g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-syOKQp4r4g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-syOKQp4r4g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-syOKQp4r4g .navbar.navbar-short {
  min-height: 60px;
}
.cid-syOKQp4r4g .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-syOKQp4r4g .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-syOKQp4r4g .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-syOKQp4r4g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syOKQp4r4g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syOKQp4r4g .dropdown-item.active,
.cid-syOKQp4r4g .dropdown-item:active {
  background-color: transparent;
}
.cid-syOKQp4r4g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syOKQp4r4g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syOKQp4r4g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syOKQp4r4g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-syOKQp4r4g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syOKQp4r4g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syOKQp4r4g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-syOKQp4r4g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-syOKQp4r4g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-syOKQp4r4g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-syOKQp4r4g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-syOKQp4r4g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syOKQp4r4g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-syOKQp4r4g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-syOKQp4r4g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syOKQp4r4g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-syOKQp4r4g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-syOKQp4r4g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-syOKQp4r4g .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-syOKQp4r4g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-syOKQp4r4g .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syOKQp4r4g .navbar {
    height: 70px;
  }
  .cid-syOKQp4r4g .navbar.opened {
    height: auto;
  }
  .cid-syOKQp4r4g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syOKQr565f {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syOKQs8PCG {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-syOKQs8PCG .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-syOKQs8PCG .currentcost {
  color: #232323;
}
.cid-syOKQs8PCG .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-syOKQs8PCG .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-syOKQs8PCG .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syOKQs8PCG .text-box {
    padding: 1rem;
  }
}
.cid-syOKQs8PCG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-syOKQs8PCG H5 {
  color: #f5951b;
}
.cid-sAZd0l0b00 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f5951b;
}
.cid-sAZd0l0b00 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sAZd0l0b00 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sAZd0l0b00 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sAZd0l0b00 .wrapper {
  padding: 30px 0;
}
.cid-sAZd0l0b00 .mbr-section-title {
  color: #fafafa;
}
.cid-sAZd0l0b00 .mbr-text,
.cid-sAZd0l0b00 .mbr-section-btn {
  color: #000000;
}
.cid-sAZd0l0b00 H3 {
  color: #ffffff;
}
.cid-sAZd177UhB {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f5951b;
}
.cid-sAZd177UhB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sAZd177UhB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sAZd177UhB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sAZd177UhB .mbr-section-title {
  color: #ffffff;
}
.cid-syOKQtsBdN {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-syOKQtsBdN img,
.cid-syOKQtsBdN .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-syOKQtsBdN .item:focus,
.cid-syOKQtsBdN span:focus {
  outline: none;
}
.cid-syOKQtsBdN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-syOKQtsBdN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-syOKQtsBdN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-syOKQtsBdN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-syOKQtsBdN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-syOKQtsBdN .mbr-section-title {
  color: #f5951b;
}
.cid-syOKQtsBdN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syOKQu8zrX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-syOKQu8zrX .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-syOKQu8zrX .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-syOKQu8zrX .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-syOKQu8zrX .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-syOKQu8zrX .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-syOKQu8zrX .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-syOKQu8zrX .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-syOKQu8zrX .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-syOKQu8zrX .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-syOKQu8zrX .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-syOKQu8zrX .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-syOKQu8zrX .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-syOKQu8zrX .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-syOKQu8zrX .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-syOKQu8zrX [class^="socicon-"]:before,
.cid-syOKQu8zrX [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-syOKQuxYSg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-syOKQuxYSg .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-syOKQuxYSg .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syOKQuT8Na {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syOKQuT8Na .mbr-section-title {
  color: #000000;
}
.cid-syOKQuT8Na .mbr-text,
.cid-syOKQuT8Na .mbr-section-btn {
  color: #f5951b;
}
.cid-syOKQuT8Na .mbr-section-subtitle {
  color: #232323;
}
.cid-syOKQvmbkw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-syOKQvmbkw .google-map {
  height: 30rem;
  position: relative;
}
.cid-syOKQvmbkw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-syOKQvmbkw .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-syOKQvmbkw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-syOKQvmbkw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-syOKQvQfZ7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-syOKQvQfZ7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-syOKQvQfZ7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-syOKQvQfZ7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-syOKQvQfZ7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-syOKQvQfZ7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-syOKQvQfZ7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-syOKQvQfZ7 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-syOKQvQfZ7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-syOKQvQfZ7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-syOKQvQfZ7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-syOKQvQfZ7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-syOKQvQfZ7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-syOKQvQfZ7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-syOKQvQfZ7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz0rtYhvvM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz0rtYhvvM nav.navbar {
  position: fixed;
}
.cid-sz0rtYhvvM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0rtYhvvM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz0rtYhvvM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz0rtYhvvM .dropdown-item:hover,
.cid-sz0rtYhvvM .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sz0rtYhvvM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz0rtYhvvM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz0rtYhvvM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz0rtYhvvM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz0rtYhvvM .nav-link {
  position: relative;
}
.cid-sz0rtYhvvM .container {
  display: flex;
  margin: auto;
}
.cid-sz0rtYhvvM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz0rtYhvvM .dropdown-menu,
.cid-sz0rtYhvvM .navbar.opened {
  background: #353535 !important;
}
.cid-sz0rtYhvvM .nav-item:focus,
.cid-sz0rtYhvvM .nav-link:focus {
  outline: none;
}
.cid-sz0rtYhvvM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz0rtYhvvM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz0rtYhvvM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz0rtYhvvM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0rtYhvvM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz0rtYhvvM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz0rtYhvvM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sz0rtYhvvM .navbar.opened {
  transition: all 0.3s;
}
.cid-sz0rtYhvvM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz0rtYhvvM .navbar .navbar-logo img {
  width: auto;
}
.cid-sz0rtYhvvM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz0rtYhvvM .navbar.collapsed {
  justify-content: center;
}
.cid-sz0rtYhvvM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz0rtYhvvM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz0rtYhvvM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz0rtYhvvM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz0rtYhvvM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz0rtYhvvM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz0rtYhvvM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz0rtYhvvM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz0rtYhvvM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz0rtYhvvM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz0rtYhvvM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz0rtYhvvM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz0rtYhvvM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz0rtYhvvM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz0rtYhvvM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz0rtYhvvM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz0rtYhvvM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz0rtYhvvM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz0rtYhvvM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz0rtYhvvM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz0rtYhvvM .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz0rtYhvvM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz0rtYhvvM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz0rtYhvvM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz0rtYhvvM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz0rtYhvvM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz0rtYhvvM .dropdown-item.active,
.cid-sz0rtYhvvM .dropdown-item:active {
  background-color: transparent;
}
.cid-sz0rtYhvvM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz0rtYhvvM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz0rtYhvvM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz0rtYhvvM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sz0rtYhvvM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz0rtYhvvM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz0rtYhvvM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz0rtYhvvM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz0rtYhvvM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz0rtYhvvM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sz0rtYhvvM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz0rtYhvvM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0rtYhvvM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0rtYhvvM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz0rtYhvvM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0rtYhvvM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz0rtYhvvM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz0rtYhvvM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0rtYhvvM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz0rtYhvvM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz0rtYhvvM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sz0rtYhvvM .navbar {
    height: 70px;
  }
  .cid-sz0rtYhvvM .navbar.opened {
    height: auto;
  }
  .cid-sz0rtYhvvM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sz0rtZCxFc {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sz0ru0f2J5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sz0ru0f2J5 .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sz0ru0f2J5 .currentcost {
  color: #232323;
}
.cid-sz0ru0f2J5 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sz0ru0f2J5 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0ru0f2J5 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz0ru0f2J5 .text-box {
    padding: 1rem;
  }
}
.cid-sz0ru0f2J5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz0ru0f2J5 H5 {
  color: #f5951b;
}
.cid-sz0ru0R2os {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sz0ru0R2os img,
.cid-sz0ru0R2os .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sz0ru0R2os .item:focus,
.cid-sz0ru0R2os span:focus {
  outline: none;
}
.cid-sz0ru0R2os .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sz0ru0R2os .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sz0ru0R2os .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0ru0R2os .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sz0ru0R2os .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sz0ru0R2os .mbr-section-title {
  color: #f5951b;
}
.cid-sz0ru0R2os .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sz0ru1HV6E {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz0ru1HV6E .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sz0ru1HV6E .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sz0ru1HV6E .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sz0ru1HV6E .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sz0ru1HV6E .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sz0ru1HV6E .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sz0ru1HV6E .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sz0ru1HV6E .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sz0ru1HV6E .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sz0ru1HV6E .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sz0ru1HV6E .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sz0ru1HV6E .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sz0ru1HV6E .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sz0ru1HV6E .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sz0ru1HV6E [class^="socicon-"]:before,
.cid-sz0ru1HV6E [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sz0ru24pht {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz0ru24pht .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz0ru24pht .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sz0ru2tmH1 {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sz0ru2tmH1 .mbr-section-title {
  color: #000000;
}
.cid-sz0ru2tmH1 .mbr-text,
.cid-sz0ru2tmH1 .mbr-section-btn {
  color: #f5951b;
}
.cid-sz0ru2tmH1 .mbr-section-subtitle {
  color: #232323;
}
.cid-sz0ru2TgzQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sz0ru2TgzQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-sz0ru2TgzQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sz0ru2TgzQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sz0ru2TgzQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sz0ru2TgzQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sz0ru3mAoT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sz0ru3mAoT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sz0ru3mAoT .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sz0ru3mAoT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sz0ru3mAoT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sz0ru3mAoT .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sz0ru3mAoT .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sz0ru3mAoT .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sz0ru3mAoT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sz0ru3mAoT .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sz0ru3mAoT .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sz0ru3mAoT .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sz0ru3mAoT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sz0ru3mAoT .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sz0ru3mAoT .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-szj6zWnmLe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-szj6zWnmLe nav.navbar {
  position: fixed;
}
.cid-szj6zWnmLe .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szj6zWnmLe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-szj6zWnmLe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-szj6zWnmLe .dropdown-item:hover,
.cid-szj6zWnmLe .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-szj6zWnmLe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-szj6zWnmLe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-szj6zWnmLe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-szj6zWnmLe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szj6zWnmLe .nav-link {
  position: relative;
}
.cid-szj6zWnmLe .container {
  display: flex;
  margin: auto;
}
.cid-szj6zWnmLe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-szj6zWnmLe .dropdown-menu,
.cid-szj6zWnmLe .navbar.opened {
  background: #353535 !important;
}
.cid-szj6zWnmLe .nav-item:focus,
.cid-szj6zWnmLe .nav-link:focus {
  outline: none;
}
.cid-szj6zWnmLe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szj6zWnmLe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szj6zWnmLe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-szj6zWnmLe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szj6zWnmLe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szj6zWnmLe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szj6zWnmLe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-szj6zWnmLe .navbar.opened {
  transition: all 0.3s;
}
.cid-szj6zWnmLe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-szj6zWnmLe .navbar .navbar-logo img {
  width: auto;
}
.cid-szj6zWnmLe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szj6zWnmLe .navbar.collapsed {
  justify-content: center;
}
.cid-szj6zWnmLe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szj6zWnmLe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-szj6zWnmLe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-szj6zWnmLe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szj6zWnmLe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szj6zWnmLe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-szj6zWnmLe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szj6zWnmLe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-szj6zWnmLe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-szj6zWnmLe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szj6zWnmLe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szj6zWnmLe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szj6zWnmLe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szj6zWnmLe .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-szj6zWnmLe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-szj6zWnmLe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szj6zWnmLe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-szj6zWnmLe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-szj6zWnmLe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szj6zWnmLe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-szj6zWnmLe .navbar.navbar-short {
  min-height: 60px;
}
.cid-szj6zWnmLe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-szj6zWnmLe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-szj6zWnmLe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szj6zWnmLe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szj6zWnmLe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szj6zWnmLe .dropdown-item.active,
.cid-szj6zWnmLe .dropdown-item:active {
  background-color: transparent;
}
.cid-szj6zWnmLe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szj6zWnmLe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szj6zWnmLe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szj6zWnmLe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-szj6zWnmLe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szj6zWnmLe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szj6zWnmLe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szj6zWnmLe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szj6zWnmLe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-szj6zWnmLe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-szj6zWnmLe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-szj6zWnmLe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szj6zWnmLe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-szj6zWnmLe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-szj6zWnmLe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szj6zWnmLe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-szj6zWnmLe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-szj6zWnmLe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-szj6zWnmLe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-szj6zWnmLe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szj6zWnmLe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szj6zWnmLe .navbar {
    height: 70px;
  }
  .cid-szj6zWnmLe .navbar.opened {
    height: auto;
  }
  .cid-szj6zWnmLe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szj6zXiZo0 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-szj6zXiZo0 .mbr-section-title {
  color: #f5951b;
}
.cid-sCMkwORUOI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dab891;
}
.cid-sCMkwORUOI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sCMkwORUOI .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sCMkwORUOI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sCMC71lzOS {
  background-color: #232323;
}
.cid-sCMC71lzOS .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sCMC71lzOS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sCMC71lzOS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sCMC71lzOS .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sCMC71lzOS .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sCMC71lzOS .mbr-section-title {
  color: #ecbf85;
}
.cid-sCMC71lzOS .mbr-text,
.cid-sCMC71lzOS .mbr-section-btn {
  color: #ffffff;
}
.cid-sMQU2RAPXr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #83643c;
}
@media (min-width: 992px) {
  .cid-sMQU2RAPXr .carousel {
    min-height: 800px;
  }
  .cid-sMQU2RAPXr .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sMQU2RAPXr .carousel {
    min-height: 520px;
  }
  .cid-sMQU2RAPXr .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sMQU2RAPXr .carousel {
    min-height: 440px;
  }
  .cid-sMQU2RAPXr .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-sMQU2RAPXr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sMQU2RAPXr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sMQU2RAPXr .carousel,
.cid-sMQU2RAPXr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sMQU2RAPXr .item-wrapper {
  width: 100%;
}
.cid-sMQU2RAPXr .carousel-caption {
  bottom: 40px;
}
.cid-sMQU2RAPXr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sMQU2RAPXr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sMQU2RAPXr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sMQU2RAPXr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sMQU2RAPXr .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sMQU2RAPXr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sMQU2RAPXr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sMQU2RAPXr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sMQU2RAPXr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sMQU2RAPXr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sMQU2RAPXr .carousel-indicators li.active,
.cid-sMQU2RAPXr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sMQU2RAPXr .carousel-indicators li::after,
.cid-sMQU2RAPXr .carousel-indicators li::before {
  content: none;
}
.cid-sMQU2RAPXr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sMQU2RAPXr .carousel-indicators {
    display: none !important;
  }
}
.cid-sCRZeX3qWH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f5951b;
}
.cid-sCRZeX3qWH .mbr-section-title {
  color: #ffffff;
}
.cid-sCRVdKVdZe {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #f5951b;
}
.cid-sCRVdKVdZe .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sCRVdKVdZe .plan-body {
  padding-bottom: 2rem;
}
.cid-sCRVdKVdZe .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCRVdKVdZe .price {
  color: #f5951b;
}
.cid-sCRVdKVdZe .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sCRVdKVdZe .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sCRVdKVdZe .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-sCRVdKVdZe .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sCRVdKVdZe .plan {
    margin-bottom: 2rem;
  }
}
.cid-szj6zYLo7a {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-szj6zYLo7a .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-szj6zYLo7a .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-szj6zYLo7a .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-szj6zYLo7a .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-szj6zYLo7a .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-szj6zYLo7a .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-szj6zYLo7a .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-szj6zYLo7a .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-szj6zYLo7a .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-szj6zYLo7a .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-szj6zYLo7a .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-szj6zYLo7a .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-szj6zYLo7a .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-szj6zYLo7a .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-szj6zYLo7a [class^="socicon-"]:before,
.cid-szj6zYLo7a [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-szj6zZa3Ih {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-szj6zZa3Ih .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szj6zZa3Ih .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-szj6zZAx8F {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-szj6zZAx8F .mbr-section-title {
  color: #000000;
}
.cid-szj6zZAx8F .mbr-text,
.cid-szj6zZAx8F .mbr-section-btn {
  color: #f5951b;
}
.cid-szj6zZAx8F .mbr-section-subtitle {
  color: #232323;
}
.cid-szj6A03uCj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-szj6A03uCj .google-map {
  height: 30rem;
  position: relative;
}
.cid-szj6A03uCj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-szj6A03uCj .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-szj6A03uCj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-szj6A03uCj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-szj6A0tr3F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-szj6A0tr3F .row-links {
  width: 100%;
  justify-content: center;
}
.cid-szj6A0tr3F .social-row {
  width: 100%;
  justify-content: center;
}
.cid-szj6A0tr3F .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-szj6A0tr3F .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-szj6A0tr3F .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-szj6A0tr3F .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-szj6A0tr3F .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-szj6A0tr3F .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szj6A0tr3F .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szj6A0tr3F .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-szj6A0tr3F .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szj6A0tr3F .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szj6A0tr3F .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-szj6A0tr3F .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sx2BgYRlIp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sx2BgYRlIp nav.navbar {
  position: fixed;
}
.cid-sx2BgYRlIp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx2BgYRlIp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sx2BgYRlIp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sx2BgYRlIp .dropdown-item:hover,
.cid-sx2BgYRlIp .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sx2BgYRlIp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sx2BgYRlIp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sx2BgYRlIp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sx2BgYRlIp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sx2BgYRlIp .nav-link {
  position: relative;
}
.cid-sx2BgYRlIp .container {
  display: flex;
  margin: auto;
}
.cid-sx2BgYRlIp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sx2BgYRlIp .dropdown-menu,
.cid-sx2BgYRlIp .navbar.opened {
  background: #353535 !important;
}
.cid-sx2BgYRlIp .nav-item:focus,
.cid-sx2BgYRlIp .nav-link:focus {
  outline: none;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sx2BgYRlIp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sx2BgYRlIp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx2BgYRlIp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx2BgYRlIp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sx2BgYRlIp .navbar.opened {
  transition: all 0.3s;
}
.cid-sx2BgYRlIp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sx2BgYRlIp .navbar .navbar-logo img {
  width: auto;
}
.cid-sx2BgYRlIp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sx2BgYRlIp .navbar.collapsed {
  justify-content: center;
}
.cid-sx2BgYRlIp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sx2BgYRlIp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sx2BgYRlIp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sx2BgYRlIp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sx2BgYRlIp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sx2BgYRlIp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sx2BgYRlIp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sx2BgYRlIp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sx2BgYRlIp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sx2BgYRlIp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sx2BgYRlIp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sx2BgYRlIp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sx2BgYRlIp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sx2BgYRlIp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sx2BgYRlIp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sx2BgYRlIp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sx2BgYRlIp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sx2BgYRlIp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sx2BgYRlIp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sx2BgYRlIp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sx2BgYRlIp .dropdown-item.active,
.cid-sx2BgYRlIp .dropdown-item:active {
  background-color: transparent;
}
.cid-sx2BgYRlIp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sx2BgYRlIp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sx2BgYRlIp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sx2BgYRlIp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sx2BgYRlIp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sx2BgYRlIp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx2BgYRlIp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sx2BgYRlIp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sx2BgYRlIp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sx2BgYRlIp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sx2BgYRlIp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sx2BgYRlIp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sx2BgYRlIp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sx2BgYRlIp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sx2BgYRlIp .navbar {
    height: 70px;
  }
  .cid-sx2BgYRlIp .navbar.opened {
    height: auto;
  }
  .cid-sx2BgYRlIp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syaEmZYuuV {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-syaDqDruSO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-syaDqDruSO .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-syaDqDruSO .currentcost {
  color: #232323;
}
.cid-syaDqDruSO .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-syaDqDruSO .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-syaDqDruSO .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-syaDqDruSO .text-box {
    padding: 1rem;
  }
}
.cid-syaDqDruSO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-syaDqDruSO H5 {
  color: #f5951b;
}
.cid-sAHBzNVwB2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f5951b;
}
.cid-sAHBzNVwB2 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-sAHBzNVwB2 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-sAHBzNVwB2 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-sAHBzNVwB2 .wrapper {
  padding: 30px 0;
}
.cid-sAHBzNVwB2 .mbr-section-title {
  color: #fafafa;
}
.cid-sAHBzNVwB2 .mbr-text,
.cid-sAHBzNVwB2 .mbr-section-btn {
  color: #000000;
}
.cid-sAHBzNVwB2 H3 {
  color: #ffffff;
}
.cid-sAHZb2nZVn {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f5951b;
}
.cid-sAHZb2nZVn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sAHZb2nZVn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sAHZb2nZVn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sAHZb2nZVn .mbr-section-title {
  color: #ffffff;
}
.cid-syE0TFxyKH {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-syE0TFxyKH img,
.cid-syE0TFxyKH .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-syE0TFxyKH .item:focus,
.cid-syE0TFxyKH span:focus {
  outline: none;
}
.cid-syE0TFxyKH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-syE0TFxyKH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-syE0TFxyKH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-syE0TFxyKH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-syE0TFxyKH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-syE0TFxyKH .mbr-section-title {
  color: #f5951b;
}
.cid-syE0TFxyKH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sx3blP1ece {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sx3blP1ece .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sx3blP1ece .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sx3blP1ece .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sx3blP1ece .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sx3blP1ece .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sx3blP1ece .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sx3blP1ece .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sx3blP1ece .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sx3blP1ece .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sx3blP1ece .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sx3blP1ece .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sx3blP1ece .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sx3blP1ece .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sx3blP1ece .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sx3blP1ece [class^="socicon-"]:before,
.cid-sx3blP1ece [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sx3bnKGDVH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sx3bnKGDVH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sx3bnKGDVH .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-syE9UeqMdk {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-syE9UeqMdk .mbr-section-title {
  color: #000000;
}
.cid-syE9UeqMdk .mbr-text,
.cid-syE9UeqMdk .mbr-section-btn {
  color: #f5951b;
}
.cid-syE9UeqMdk .mbr-section-subtitle {
  color: #232323;
}
.cid-sx3bknIwEB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sx3bknIwEB .google-map {
  height: 30rem;
  position: relative;
}
.cid-sx3bknIwEB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sx3bknIwEB .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sx3bknIwEB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sx3bknIwEB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sx2JCtSWoN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sx2JCtSWoN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sx2JCtSWoN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sx2JCtSWoN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sx2JCtSWoN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sx2JCtSWoN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sx2JCtSWoN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sx2JCtSWoN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sx2JCtSWoN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sx2JCtSWoN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sx2JCtSWoN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz0ouWCbPQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sz0ouWCbPQ nav.navbar {
  position: fixed;
}
.cid-sz0ouWCbPQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0ouWCbPQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz0ouWCbPQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sz0ouWCbPQ .dropdown-item:hover,
.cid-sz0ouWCbPQ .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sz0ouWCbPQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sz0ouWCbPQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sz0ouWCbPQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sz0ouWCbPQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sz0ouWCbPQ .nav-link {
  position: relative;
}
.cid-sz0ouWCbPQ .container {
  display: flex;
  margin: auto;
}
.cid-sz0ouWCbPQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sz0ouWCbPQ .dropdown-menu,
.cid-sz0ouWCbPQ .navbar.opened {
  background: #353535 !important;
}
.cid-sz0ouWCbPQ .nav-item:focus,
.cid-sz0ouWCbPQ .nav-link:focus {
  outline: none;
}
.cid-sz0ouWCbPQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sz0ouWCbPQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz0ouWCbPQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sz0ouWCbPQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sz0ouWCbPQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sz0ouWCbPQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sz0ouWCbPQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sz0ouWCbPQ .navbar.opened {
  transition: all 0.3s;
}
.cid-sz0ouWCbPQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sz0ouWCbPQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sz0ouWCbPQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sz0ouWCbPQ .navbar.collapsed {
  justify-content: center;
}
.cid-sz0ouWCbPQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sz0ouWCbPQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sz0ouWCbPQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sz0ouWCbPQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sz0ouWCbPQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sz0ouWCbPQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sz0ouWCbPQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sz0ouWCbPQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sz0ouWCbPQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sz0ouWCbPQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sz0ouWCbPQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sz0ouWCbPQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sz0ouWCbPQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sz0ouWCbPQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sz0ouWCbPQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sz0ouWCbPQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sz0ouWCbPQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sz0ouWCbPQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sz0ouWCbPQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sz0ouWCbPQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sz0ouWCbPQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sz0ouWCbPQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sz0ouWCbPQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sz0ouWCbPQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sz0ouWCbPQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sz0ouWCbPQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sz0ouWCbPQ .dropdown-item.active,
.cid-sz0ouWCbPQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sz0ouWCbPQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sz0ouWCbPQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sz0ouWCbPQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sz0ouWCbPQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sz0ouWCbPQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sz0ouWCbPQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz0ouWCbPQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sz0ouWCbPQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sz0ouWCbPQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sz0ouWCbPQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sz0ouWCbPQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz0ouWCbPQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0ouWCbPQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz0ouWCbPQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz0ouWCbPQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0ouWCbPQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz0ouWCbPQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz0ouWCbPQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz0ouWCbPQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sz0ouWCbPQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sz0ouWCbPQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sz0ouWCbPQ .navbar {
    height: 70px;
  }
  .cid-sz0ouWCbPQ .navbar.opened {
    height: auto;
  }
  .cid-sz0ouWCbPQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sz0ouYhYZJ {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sz0ouZ7SLZ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sz0ouZ7SLZ .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sz0ouZ7SLZ .currentcost {
  color: #232323;
}
.cid-sz0ouZ7SLZ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sz0ouZ7SLZ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0ouZ7SLZ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sz0ouZ7SLZ .text-box {
    padding: 1rem;
  }
}
.cid-sz0ouZ7SLZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sz0ouZ7SLZ H5 {
  color: #f5951b;
}
.cid-sz0ouZFukm {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sz0ouZFukm img,
.cid-sz0ouZFukm .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sz0ouZFukm .item:focus,
.cid-sz0ouZFukm span:focus {
  outline: none;
}
.cid-sz0ouZFukm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sz0ouZFukm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sz0ouZFukm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sz0ouZFukm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sz0ouZFukm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sz0ouZFukm .mbr-section-title {
  color: #f5951b;
}
.cid-sz0ouZFukm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sz0ov0jM37 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz0ov0jM37 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sz0ov0jM37 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sz0ov0jM37 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sz0ov0jM37 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sz0ov0jM37 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sz0ov0jM37 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sz0ov0jM37 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sz0ov0jM37 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sz0ov0jM37 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sz0ov0jM37 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sz0ov0jM37 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sz0ov0jM37 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sz0ov0jM37 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sz0ov0jM37 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sz0ov0jM37 [class^="socicon-"]:before,
.cid-sz0ov0jM37 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sz0ov0Npy3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sz0ov0Npy3 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sz0ov0Npy3 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sz0ov1pBik {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sz0ov1pBik .mbr-section-title {
  color: #000000;
}
.cid-sz0ov1pBik .mbr-text,
.cid-sz0ov1pBik .mbr-section-btn {
  color: #f5951b;
}
.cid-sz0ov1pBik .mbr-section-subtitle {
  color: #232323;
}
.cid-sz0ov1Xt1h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sz0ov1Xt1h .google-map {
  height: 30rem;
  position: relative;
}
.cid-sz0ov1Xt1h .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sz0ov1Xt1h .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sz0ov1Xt1h .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sz0ov1Xt1h .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sz0ov2ug2U {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sz0ov2ug2U .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sz0ov2ug2U .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sz0ov2ug2U .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sz0ov2ug2U .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sz0ov2ug2U .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sz0ov2ug2U .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sz0ov2ug2U .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sz0ov2ug2U .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sz0ov2ug2U .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sz0ov2ug2U .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sz0ov2ug2U .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sz0ov2ug2U .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sz0ov2ug2U .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sz0ov2ug2U .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCXKeW2Eej {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCXKeW2Eej nav.navbar {
  position: fixed;
}
.cid-sCXKeW2Eej .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCXKeW2Eej .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sCXKeW2Eej .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCXKeW2Eej .dropdown-item:hover,
.cid-sCXKeW2Eej .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sCXKeW2Eej .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sCXKeW2Eej .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sCXKeW2Eej .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sCXKeW2Eej .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCXKeW2Eej .nav-link {
  position: relative;
}
.cid-sCXKeW2Eej .container {
  display: flex;
  margin: auto;
}
.cid-sCXKeW2Eej .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sCXKeW2Eej .dropdown-menu,
.cid-sCXKeW2Eej .navbar.opened {
  background: #353535 !important;
}
.cid-sCXKeW2Eej .nav-item:focus,
.cid-sCXKeW2Eej .nav-link:focus {
  outline: none;
}
.cid-sCXKeW2Eej .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCXKeW2Eej .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCXKeW2Eej .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sCXKeW2Eej .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCXKeW2Eej .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCXKeW2Eej .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCXKeW2Eej .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sCXKeW2Eej .navbar.opened {
  transition: all 0.3s;
}
.cid-sCXKeW2Eej .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sCXKeW2Eej .navbar .navbar-logo img {
  width: auto;
}
.cid-sCXKeW2Eej .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCXKeW2Eej .navbar.collapsed {
  justify-content: center;
}
.cid-sCXKeW2Eej .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCXKeW2Eej .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCXKeW2Eej .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sCXKeW2Eej .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCXKeW2Eej .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCXKeW2Eej .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sCXKeW2Eej .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCXKeW2Eej .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sCXKeW2Eej .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sCXKeW2Eej .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCXKeW2Eej .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCXKeW2Eej .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCXKeW2Eej .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCXKeW2Eej .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sCXKeW2Eej .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sCXKeW2Eej .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCXKeW2Eej .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCXKeW2Eej .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCXKeW2Eej .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCXKeW2Eej .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sCXKeW2Eej .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCXKeW2Eej .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sCXKeW2Eej .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sCXKeW2Eej .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCXKeW2Eej .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCXKeW2Eej .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCXKeW2Eej .dropdown-item.active,
.cid-sCXKeW2Eej .dropdown-item:active {
  background-color: transparent;
}
.cid-sCXKeW2Eej .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCXKeW2Eej .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCXKeW2Eej .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCXKeW2Eej .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sCXKeW2Eej .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCXKeW2Eej .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCXKeW2Eej ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCXKeW2Eej .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCXKeW2Eej button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sCXKeW2Eej button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sCXKeW2Eej button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCXKeW2Eej button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXKeW2Eej button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCXKeW2Eej button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCXKeW2Eej nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXKeW2Eej nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCXKeW2Eej nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCXKeW2Eej nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCXKeW2Eej .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sCXKeW2Eej a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCXKeW2Eej .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sCXKeW2Eej .navbar {
    height: 70px;
  }
  .cid-sCXKeW2Eej .navbar.opened {
    height: auto;
  }
  .cid-sCXKeW2Eej .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCXKeXxXKz {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCXKeYVnud {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sCXKeYVnud .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sCXKeYVnud .currentcost {
  color: #232323;
}
.cid-sCXKeYVnud .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sCXKeYVnud .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sCXKeYVnud .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCXKeYVnud .text-box {
    padding: 1rem;
  }
}
.cid-sCXKeYVnud .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCXKeYVnud H5 {
  color: #f5951b;
}
.cid-sCXKeZppmm {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sCXKeZppmm img,
.cid-sCXKeZppmm .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sCXKeZppmm .item:focus,
.cid-sCXKeZppmm span:focus {
  outline: none;
}
.cid-sCXKeZppmm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sCXKeZppmm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sCXKeZppmm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCXKeZppmm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sCXKeZppmm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sCXKeZppmm .mbr-section-title {
  color: #f5951b;
}
.cid-sCXKeZppmm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sCXKeZQtGn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sCXKeZQtGn .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sCXKeZQtGn .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sCXKeZQtGn .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sCXKeZQtGn .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sCXKeZQtGn .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sCXKeZQtGn .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sCXKeZQtGn .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sCXKeZQtGn .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sCXKeZQtGn .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sCXKeZQtGn .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sCXKeZQtGn .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sCXKeZQtGn .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sCXKeZQtGn .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sCXKeZQtGn .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sCXKeZQtGn [class^="socicon-"]:before,
.cid-sCXKeZQtGn [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sCXKf0eAXu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCXKf0eAXu .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sCXKf0eAXu .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sCXKf0AUts {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sCXKf0AUts .mbr-section-title {
  color: #000000;
}
.cid-sCXKf0AUts .mbr-text,
.cid-sCXKf0AUts .mbr-section-btn {
  color: #f5951b;
}
.cid-sCXKf0AUts .mbr-section-subtitle {
  color: #232323;
}
.cid-sCXKf0X8MI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sCXKf0X8MI .google-map {
  height: 30rem;
  position: relative;
}
.cid-sCXKf0X8MI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sCXKf0X8MI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sCXKf0X8MI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sCXKf0X8MI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sCXKf1pjYM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sCXKf1pjYM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCXKf1pjYM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCXKf1pjYM .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCXKf1pjYM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCXKf1pjYM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCXKf1pjYM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCXKf1pjYM .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCXKf1pjYM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCXKf1pjYM .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCXKf1pjYM .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCXKf1pjYM .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCXKf1pjYM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCXKf1pjYM .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCXKf1pjYM .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCY0raGhPa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCY0raGhPa nav.navbar {
  position: fixed;
}
.cid-sCY0raGhPa .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCY0raGhPa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sCY0raGhPa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCY0raGhPa .dropdown-item:hover,
.cid-sCY0raGhPa .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sCY0raGhPa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sCY0raGhPa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sCY0raGhPa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sCY0raGhPa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCY0raGhPa .nav-link {
  position: relative;
}
.cid-sCY0raGhPa .container {
  display: flex;
  margin: auto;
}
.cid-sCY0raGhPa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sCY0raGhPa .dropdown-menu,
.cid-sCY0raGhPa .navbar.opened {
  background: #353535 !important;
}
.cid-sCY0raGhPa .nav-item:focus,
.cid-sCY0raGhPa .nav-link:focus {
  outline: none;
}
.cid-sCY0raGhPa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCY0raGhPa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCY0raGhPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sCY0raGhPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCY0raGhPa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCY0raGhPa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCY0raGhPa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sCY0raGhPa .navbar.opened {
  transition: all 0.3s;
}
.cid-sCY0raGhPa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sCY0raGhPa .navbar .navbar-logo img {
  width: auto;
}
.cid-sCY0raGhPa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCY0raGhPa .navbar.collapsed {
  justify-content: center;
}
.cid-sCY0raGhPa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCY0raGhPa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCY0raGhPa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sCY0raGhPa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCY0raGhPa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCY0raGhPa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sCY0raGhPa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCY0raGhPa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sCY0raGhPa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sCY0raGhPa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCY0raGhPa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCY0raGhPa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCY0raGhPa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCY0raGhPa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sCY0raGhPa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sCY0raGhPa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCY0raGhPa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCY0raGhPa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCY0raGhPa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCY0raGhPa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sCY0raGhPa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCY0raGhPa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sCY0raGhPa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sCY0raGhPa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCY0raGhPa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCY0raGhPa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCY0raGhPa .dropdown-item.active,
.cid-sCY0raGhPa .dropdown-item:active {
  background-color: transparent;
}
.cid-sCY0raGhPa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCY0raGhPa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCY0raGhPa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCY0raGhPa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sCY0raGhPa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCY0raGhPa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCY0raGhPa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCY0raGhPa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCY0raGhPa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sCY0raGhPa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sCY0raGhPa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCY0raGhPa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCY0raGhPa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCY0raGhPa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCY0raGhPa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCY0raGhPa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCY0raGhPa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCY0raGhPa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCY0raGhPa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sCY0raGhPa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCY0raGhPa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sCY0raGhPa .navbar {
    height: 70px;
  }
  .cid-sCY0raGhPa .navbar.opened {
    height: auto;
  }
  .cid-sCY0raGhPa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCY0rcJ5Vx {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCY0rdB3Oo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sCY0rdB3Oo .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sCY0rdB3Oo .currentcost {
  color: #232323;
}
.cid-sCY0rdB3Oo .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sCY0rdB3Oo .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sCY0rdB3Oo .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCY0rdB3Oo .text-box {
    padding: 1rem;
  }
}
.cid-sCY0rdB3Oo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCY0rdB3Oo H5 {
  color: #f5951b;
}
.cid-sCY0re2MHk {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sCY0re2MHk img,
.cid-sCY0re2MHk .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sCY0re2MHk .item:focus,
.cid-sCY0re2MHk span:focus {
  outline: none;
}
.cid-sCY0re2MHk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sCY0re2MHk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sCY0re2MHk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCY0re2MHk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sCY0re2MHk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sCY0re2MHk .mbr-section-title {
  color: #f5951b;
}
.cid-sCY0re2MHk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sCY0reEct4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sCY0reEct4 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sCY0reEct4 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sCY0reEct4 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sCY0reEct4 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sCY0reEct4 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sCY0reEct4 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sCY0reEct4 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sCY0reEct4 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sCY0reEct4 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sCY0reEct4 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sCY0reEct4 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sCY0reEct4 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sCY0reEct4 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sCY0reEct4 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sCY0reEct4 [class^="socicon-"]:before,
.cid-sCY0reEct4 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sCY0rf1joP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCY0rf1joP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sCY0rf1joP .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sCY0rfuzVb {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sCY0rfuzVb .mbr-section-title {
  color: #000000;
}
.cid-sCY0rfuzVb .mbr-text,
.cid-sCY0rfuzVb .mbr-section-btn {
  color: #f5951b;
}
.cid-sCY0rfuzVb .mbr-section-subtitle {
  color: #232323;
}
.cid-sCY0rfZuOX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sCY0rfZuOX .google-map {
  height: 30rem;
  position: relative;
}
.cid-sCY0rfZuOX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sCY0rfZuOX .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sCY0rfZuOX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sCY0rfZuOX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sCY0rgw5VA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sCY0rgw5VA .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCY0rgw5VA .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCY0rgw5VA .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCY0rgw5VA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCY0rgw5VA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCY0rgw5VA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCY0rgw5VA .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCY0rgw5VA .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCY0rgw5VA .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCY0rgw5VA .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCY0rgw5VA .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCY0rgw5VA .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCY0rgw5VA .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCY0rgw5VA .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCY462TXV1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCY462TXV1 nav.navbar {
  position: fixed;
}
.cid-sCY462TXV1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCY462TXV1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sCY462TXV1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCY462TXV1 .dropdown-item:hover,
.cid-sCY462TXV1 .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sCY462TXV1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sCY462TXV1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sCY462TXV1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sCY462TXV1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCY462TXV1 .nav-link {
  position: relative;
}
.cid-sCY462TXV1 .container {
  display: flex;
  margin: auto;
}
.cid-sCY462TXV1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sCY462TXV1 .dropdown-menu,
.cid-sCY462TXV1 .navbar.opened {
  background: #353535 !important;
}
.cid-sCY462TXV1 .nav-item:focus,
.cid-sCY462TXV1 .nav-link:focus {
  outline: none;
}
.cid-sCY462TXV1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCY462TXV1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCY462TXV1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sCY462TXV1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCY462TXV1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCY462TXV1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCY462TXV1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sCY462TXV1 .navbar.opened {
  transition: all 0.3s;
}
.cid-sCY462TXV1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sCY462TXV1 .navbar .navbar-logo img {
  width: auto;
}
.cid-sCY462TXV1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCY462TXV1 .navbar.collapsed {
  justify-content: center;
}
.cid-sCY462TXV1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCY462TXV1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCY462TXV1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sCY462TXV1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCY462TXV1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCY462TXV1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sCY462TXV1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCY462TXV1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sCY462TXV1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sCY462TXV1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCY462TXV1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCY462TXV1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCY462TXV1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCY462TXV1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sCY462TXV1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sCY462TXV1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCY462TXV1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCY462TXV1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCY462TXV1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCY462TXV1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sCY462TXV1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCY462TXV1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sCY462TXV1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sCY462TXV1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCY462TXV1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCY462TXV1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCY462TXV1 .dropdown-item.active,
.cid-sCY462TXV1 .dropdown-item:active {
  background-color: transparent;
}
.cid-sCY462TXV1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCY462TXV1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCY462TXV1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCY462TXV1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sCY462TXV1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCY462TXV1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCY462TXV1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCY462TXV1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCY462TXV1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sCY462TXV1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sCY462TXV1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCY462TXV1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCY462TXV1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCY462TXV1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCY462TXV1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCY462TXV1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCY462TXV1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCY462TXV1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCY462TXV1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sCY462TXV1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCY462TXV1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sCY462TXV1 .navbar {
    height: 70px;
  }
  .cid-sCY462TXV1 .navbar.opened {
    height: auto;
  }
  .cid-sCY462TXV1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCY464Kn5D {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCY465MQ00 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sCY465MQ00 .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sCY465MQ00 .currentcost {
  color: #232323;
}
.cid-sCY465MQ00 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sCY465MQ00 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sCY465MQ00 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCY465MQ00 .text-box {
    padding: 1rem;
  }
}
.cid-sCY465MQ00 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCY465MQ00 H5 {
  color: #f5951b;
}
.cid-sCY466gWcU {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sCY466gWcU img,
.cid-sCY466gWcU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sCY466gWcU .item:focus,
.cid-sCY466gWcU span:focus {
  outline: none;
}
.cid-sCY466gWcU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sCY466gWcU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sCY466gWcU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCY466gWcU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sCY466gWcU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sCY466gWcU .mbr-section-title {
  color: #f5951b;
}
.cid-sCY466gWcU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sCY466PjJ1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sCY466PjJ1 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sCY466PjJ1 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sCY466PjJ1 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sCY466PjJ1 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sCY466PjJ1 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sCY466PjJ1 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sCY466PjJ1 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sCY466PjJ1 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sCY466PjJ1 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sCY466PjJ1 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sCY466PjJ1 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sCY466PjJ1 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sCY466PjJ1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sCY466PjJ1 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sCY466PjJ1 [class^="socicon-"]:before,
.cid-sCY466PjJ1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sCY467bQEg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCY467bQEg .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sCY467bQEg .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sCY467yEqQ {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sCY467yEqQ .mbr-section-title {
  color: #000000;
}
.cid-sCY467yEqQ .mbr-text,
.cid-sCY467yEqQ .mbr-section-btn {
  color: #f5951b;
}
.cid-sCY467yEqQ .mbr-section-subtitle {
  color: #232323;
}
.cid-sCY467X1tr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sCY467X1tr .google-map {
  height: 30rem;
  position: relative;
}
.cid-sCY467X1tr .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sCY467X1tr .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sCY467X1tr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sCY467X1tr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sCY468tiHm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sCY468tiHm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCY468tiHm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCY468tiHm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCY468tiHm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCY468tiHm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCY468tiHm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCY468tiHm .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCY468tiHm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCY468tiHm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCY468tiHm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCY468tiHm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCY468tiHm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCY468tiHm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCY468tiHm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCYdBRbkz7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCYdBRbkz7 nav.navbar {
  position: fixed;
}
.cid-sCYdBRbkz7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCYdBRbkz7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sCYdBRbkz7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCYdBRbkz7 .dropdown-item:hover,
.cid-sCYdBRbkz7 .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sCYdBRbkz7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sCYdBRbkz7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sCYdBRbkz7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sCYdBRbkz7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCYdBRbkz7 .nav-link {
  position: relative;
}
.cid-sCYdBRbkz7 .container {
  display: flex;
  margin: auto;
}
.cid-sCYdBRbkz7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sCYdBRbkz7 .dropdown-menu,
.cid-sCYdBRbkz7 .navbar.opened {
  background: #353535 !important;
}
.cid-sCYdBRbkz7 .nav-item:focus,
.cid-sCYdBRbkz7 .nav-link:focus {
  outline: none;
}
.cid-sCYdBRbkz7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCYdBRbkz7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCYdBRbkz7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sCYdBRbkz7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCYdBRbkz7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCYdBRbkz7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCYdBRbkz7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sCYdBRbkz7 .navbar.opened {
  transition: all 0.3s;
}
.cid-sCYdBRbkz7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sCYdBRbkz7 .navbar .navbar-logo img {
  width: auto;
}
.cid-sCYdBRbkz7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCYdBRbkz7 .navbar.collapsed {
  justify-content: center;
}
.cid-sCYdBRbkz7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCYdBRbkz7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCYdBRbkz7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sCYdBRbkz7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCYdBRbkz7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCYdBRbkz7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sCYdBRbkz7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCYdBRbkz7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sCYdBRbkz7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sCYdBRbkz7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCYdBRbkz7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCYdBRbkz7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCYdBRbkz7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCYdBRbkz7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sCYdBRbkz7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sCYdBRbkz7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCYdBRbkz7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCYdBRbkz7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCYdBRbkz7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCYdBRbkz7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sCYdBRbkz7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCYdBRbkz7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sCYdBRbkz7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sCYdBRbkz7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCYdBRbkz7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCYdBRbkz7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCYdBRbkz7 .dropdown-item.active,
.cid-sCYdBRbkz7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sCYdBRbkz7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCYdBRbkz7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCYdBRbkz7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCYdBRbkz7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sCYdBRbkz7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCYdBRbkz7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCYdBRbkz7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCYdBRbkz7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCYdBRbkz7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sCYdBRbkz7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sCYdBRbkz7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sCYdBRbkz7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCYdBRbkz7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sCYdBRbkz7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sCYdBRbkz7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCYdBRbkz7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sCYdBRbkz7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sCYdBRbkz7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sCYdBRbkz7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sCYdBRbkz7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCYdBRbkz7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sCYdBRbkz7 .navbar {
    height: 70px;
  }
  .cid-sCYdBRbkz7 .navbar.opened {
    height: auto;
  }
  .cid-sCYdBRbkz7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCYdBSB7Gb {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCYdBTv82W {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sCYdBTv82W .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sCYdBTv82W .currentcost {
  color: #232323;
}
.cid-sCYdBTv82W .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sCYdBTv82W .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sCYdBTv82W .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCYdBTv82W .text-box {
    padding: 1rem;
  }
}
.cid-sCYdBTv82W .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCYdBTv82W H5 {
  color: #f5951b;
}
.cid-sCYdBU7ZqL {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sCYdBU7ZqL img,
.cid-sCYdBU7ZqL .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sCYdBU7ZqL .item:focus,
.cid-sCYdBU7ZqL span:focus {
  outline: none;
}
.cid-sCYdBU7ZqL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sCYdBU7ZqL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sCYdBU7ZqL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sCYdBU7ZqL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sCYdBU7ZqL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sCYdBU7ZqL .mbr-section-title {
  color: #f5951b;
}
.cid-sCYdBU7ZqL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sCYdBUK2ue {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sCYdBUK2ue .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sCYdBUK2ue .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sCYdBUK2ue .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sCYdBUK2ue .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sCYdBUK2ue .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sCYdBUK2ue .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sCYdBUK2ue .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sCYdBUK2ue .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sCYdBUK2ue .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sCYdBUK2ue .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sCYdBUK2ue .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sCYdBUK2ue .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sCYdBUK2ue .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sCYdBUK2ue .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sCYdBUK2ue [class^="socicon-"]:before,
.cid-sCYdBUK2ue [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sCYdBV7Bka {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCYdBV7Bka .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sCYdBV7Bka .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sCYdBVIhUr {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sCYdBVIhUr .mbr-section-title {
  color: #000000;
}
.cid-sCYdBVIhUr .mbr-text,
.cid-sCYdBVIhUr .mbr-section-btn {
  color: #f5951b;
}
.cid-sCYdBVIhUr .mbr-section-subtitle {
  color: #232323;
}
.cid-sCYdBWegAU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sCYdBWegAU .google-map {
  height: 30rem;
  position: relative;
}
.cid-sCYdBWegAU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sCYdBWegAU .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sCYdBWegAU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sCYdBWegAU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sCYdBWKldt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sCYdBWKldt .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCYdBWKldt .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCYdBWKldt .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCYdBWKldt .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCYdBWKldt .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCYdBWKldt .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCYdBWKldt .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCYdBWKldt .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCYdBWKldt .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCYdBWKldt .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCYdBWKldt .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCYdBWKldt .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCYdBWKldt .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCYdBWKldt .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sDr46tdbqD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDr46tdbqD nav.navbar {
  position: fixed;
}
.cid-sDr46tdbqD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDr46tdbqD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDr46tdbqD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDr46tdbqD .dropdown-item:hover,
.cid-sDr46tdbqD .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sDr46tdbqD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDr46tdbqD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDr46tdbqD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDr46tdbqD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDr46tdbqD .nav-link {
  position: relative;
}
.cid-sDr46tdbqD .container {
  display: flex;
  margin: auto;
}
.cid-sDr46tdbqD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDr46tdbqD .dropdown-menu,
.cid-sDr46tdbqD .navbar.opened {
  background: #353535 !important;
}
.cid-sDr46tdbqD .nav-item:focus,
.cid-sDr46tdbqD .nav-link:focus {
  outline: none;
}
.cid-sDr46tdbqD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDr46tdbqD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDr46tdbqD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDr46tdbqD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDr46tdbqD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDr46tdbqD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDr46tdbqD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sDr46tdbqD .navbar.opened {
  transition: all 0.3s;
}
.cid-sDr46tdbqD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDr46tdbqD .navbar .navbar-logo img {
  width: auto;
}
.cid-sDr46tdbqD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDr46tdbqD .navbar.collapsed {
  justify-content: center;
}
.cid-sDr46tdbqD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDr46tdbqD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDr46tdbqD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sDr46tdbqD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDr46tdbqD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDr46tdbqD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sDr46tdbqD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDr46tdbqD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDr46tdbqD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDr46tdbqD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDr46tdbqD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDr46tdbqD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDr46tdbqD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDr46tdbqD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sDr46tdbqD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDr46tdbqD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDr46tdbqD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDr46tdbqD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDr46tdbqD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDr46tdbqD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDr46tdbqD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDr46tdbqD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDr46tdbqD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDr46tdbqD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDr46tdbqD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDr46tdbqD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDr46tdbqD .dropdown-item.active,
.cid-sDr46tdbqD .dropdown-item:active {
  background-color: transparent;
}
.cid-sDr46tdbqD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDr46tdbqD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDr46tdbqD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDr46tdbqD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sDr46tdbqD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDr46tdbqD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDr46tdbqD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDr46tdbqD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDr46tdbqD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDr46tdbqD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sDr46tdbqD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDr46tdbqD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDr46tdbqD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDr46tdbqD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDr46tdbqD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDr46tdbqD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDr46tdbqD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDr46tdbqD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDr46tdbqD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDr46tdbqD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDr46tdbqD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDr46tdbqD .navbar {
    height: 70px;
  }
  .cid-sDr46tdbqD .navbar.opened {
    height: auto;
  }
  .cid-sDr46tdbqD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDr46uqFMJ {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDr46vdJ7P {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sDr46vdJ7P .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sDr46vdJ7P .currentcost {
  color: #232323;
}
.cid-sDr46vdJ7P .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sDr46vdJ7P .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDr46vdJ7P .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sDr46vdJ7P .text-box {
    padding: 1rem;
  }
}
.cid-sDr46vdJ7P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDr46vdJ7P H5 {
  color: #f5951b;
}
.cid-sDr46vFuJ8 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sDr46vFuJ8 img,
.cid-sDr46vFuJ8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sDr46vFuJ8 .item:focus,
.cid-sDr46vFuJ8 span:focus {
  outline: none;
}
.cid-sDr46vFuJ8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sDr46vFuJ8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sDr46vFuJ8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sDr46vFuJ8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sDr46vFuJ8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sDr46vFuJ8 .mbr-section-title {
  color: #f5951b;
}
.cid-sDr46vFuJ8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sDr46weeQ1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sDr46weeQ1 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDr46weeQ1 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDr46weeQ1 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDr46weeQ1 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDr46weeQ1 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sDr46weeQ1 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sDr46weeQ1 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sDr46weeQ1 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sDr46weeQ1 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sDr46weeQ1 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sDr46weeQ1 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sDr46weeQ1 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sDr46weeQ1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sDr46weeQ1 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sDr46weeQ1 [class^="socicon-"]:before,
.cid-sDr46weeQ1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sDr46wEH37 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sDr46wEH37 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sDr46wEH37 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sDr46x4JZY {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sDr46x4JZY .mbr-section-title {
  color: #000000;
}
.cid-sDr46x4JZY .mbr-text,
.cid-sDr46x4JZY .mbr-section-btn {
  color: #f5951b;
}
.cid-sDr46x4JZY .mbr-section-subtitle {
  color: #232323;
}
.cid-sDr46xrGIM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sDr46xrGIM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sDr46xrGIM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sDr46xrGIM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sDr46xrGIM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sDr46xrGIM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sDr46ylfvx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sDr46ylfvx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sDr46ylfvx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sDr46ylfvx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sDr46ylfvx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sDr46ylfvx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sDr46ylfvx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sDr46ylfvx .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sDr46ylfvx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sDr46ylfvx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sDr46ylfvx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sDr46ylfvx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sDr46ylfvx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDr46ylfvx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sDr46ylfvx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sDrccUP1Kn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDrccUP1Kn nav.navbar {
  position: fixed;
}
.cid-sDrccUP1Kn .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDrccUP1Kn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDrccUP1Kn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDrccUP1Kn .dropdown-item:hover,
.cid-sDrccUP1Kn .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sDrccUP1Kn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDrccUP1Kn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDrccUP1Kn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDrccUP1Kn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDrccUP1Kn .nav-link {
  position: relative;
}
.cid-sDrccUP1Kn .container {
  display: flex;
  margin: auto;
}
.cid-sDrccUP1Kn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDrccUP1Kn .dropdown-menu,
.cid-sDrccUP1Kn .navbar.opened {
  background: #353535 !important;
}
.cid-sDrccUP1Kn .nav-item:focus,
.cid-sDrccUP1Kn .nav-link:focus {
  outline: none;
}
.cid-sDrccUP1Kn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDrccUP1Kn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDrccUP1Kn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDrccUP1Kn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDrccUP1Kn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDrccUP1Kn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDrccUP1Kn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sDrccUP1Kn .navbar.opened {
  transition: all 0.3s;
}
.cid-sDrccUP1Kn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDrccUP1Kn .navbar .navbar-logo img {
  width: auto;
}
.cid-sDrccUP1Kn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDrccUP1Kn .navbar.collapsed {
  justify-content: center;
}
.cid-sDrccUP1Kn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDrccUP1Kn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDrccUP1Kn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sDrccUP1Kn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDrccUP1Kn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDrccUP1Kn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sDrccUP1Kn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDrccUP1Kn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDrccUP1Kn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDrccUP1Kn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDrccUP1Kn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDrccUP1Kn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDrccUP1Kn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDrccUP1Kn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sDrccUP1Kn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDrccUP1Kn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDrccUP1Kn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDrccUP1Kn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDrccUP1Kn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDrccUP1Kn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDrccUP1Kn .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDrccUP1Kn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDrccUP1Kn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDrccUP1Kn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDrccUP1Kn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDrccUP1Kn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDrccUP1Kn .dropdown-item.active,
.cid-sDrccUP1Kn .dropdown-item:active {
  background-color: transparent;
}
.cid-sDrccUP1Kn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDrccUP1Kn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDrccUP1Kn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDrccUP1Kn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sDrccUP1Kn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDrccUP1Kn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDrccUP1Kn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDrccUP1Kn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDrccUP1Kn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDrccUP1Kn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sDrccUP1Kn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDrccUP1Kn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDrccUP1Kn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDrccUP1Kn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDrccUP1Kn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDrccUP1Kn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDrccUP1Kn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDrccUP1Kn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDrccUP1Kn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDrccUP1Kn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDrccUP1Kn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDrccUP1Kn .navbar {
    height: 70px;
  }
  .cid-sDrccUP1Kn .navbar.opened {
    height: auto;
  }
  .cid-sDrccUP1Kn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDrccWdJWh {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDrccX2NGe {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sDrccX2NGe .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sDrccX2NGe .currentcost {
  color: #232323;
}
.cid-sDrccX2NGe .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sDrccX2NGe .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDrccX2NGe .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sDrccX2NGe .text-box {
    padding: 1rem;
  }
}
.cid-sDrccX2NGe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDrccX2NGe H5 {
  color: #f5951b;
}
.cid-sDrccXA3lD {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sDrccXA3lD img,
.cid-sDrccXA3lD .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sDrccXA3lD .item:focus,
.cid-sDrccXA3lD span:focus {
  outline: none;
}
.cid-sDrccXA3lD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sDrccXA3lD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sDrccXA3lD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sDrccXA3lD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sDrccXA3lD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sDrccXA3lD .mbr-section-title {
  color: #f5951b;
}
.cid-sDrccXA3lD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sDrccY1W9s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sDrccY1W9s .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDrccY1W9s .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDrccY1W9s .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDrccY1W9s .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDrccY1W9s .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sDrccY1W9s .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sDrccY1W9s .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sDrccY1W9s .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sDrccY1W9s .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sDrccY1W9s .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sDrccY1W9s .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sDrccY1W9s .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sDrccY1W9s .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sDrccY1W9s .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sDrccY1W9s [class^="socicon-"]:before,
.cid-sDrccY1W9s [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sDrccYp3d1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sDrccYp3d1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sDrccYp3d1 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sDrccYLB8P {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sDrccYLB8P .mbr-section-title {
  color: #000000;
}
.cid-sDrccYLB8P .mbr-text,
.cid-sDrccYLB8P .mbr-section-btn {
  color: #f5951b;
}
.cid-sDrccYLB8P .mbr-section-subtitle {
  color: #232323;
}
.cid-sDrccZarTl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sDrccZarTl .google-map {
  height: 30rem;
  position: relative;
}
.cid-sDrccZarTl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sDrccZarTl .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sDrccZarTl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sDrccZarTl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sDrccZQLre {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sDrccZQLre .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sDrccZQLre .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sDrccZQLre .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sDrccZQLre .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sDrccZQLre .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sDrccZQLre .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sDrccZQLre .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sDrccZQLre .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sDrccZQLre .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sDrccZQLre .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sDrccZQLre .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sDrccZQLre .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDrccZQLre .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sDrccZQLre .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sDrfynGb51 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDrfynGb51 nav.navbar {
  position: fixed;
}
.cid-sDrfynGb51 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDrfynGb51 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDrfynGb51 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDrfynGb51 .dropdown-item:hover,
.cid-sDrfynGb51 .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sDrfynGb51 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDrfynGb51 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDrfynGb51 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDrfynGb51 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDrfynGb51 .nav-link {
  position: relative;
}
.cid-sDrfynGb51 .container {
  display: flex;
  margin: auto;
}
.cid-sDrfynGb51 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDrfynGb51 .dropdown-menu,
.cid-sDrfynGb51 .navbar.opened {
  background: #353535 !important;
}
.cid-sDrfynGb51 .nav-item:focus,
.cid-sDrfynGb51 .nav-link:focus {
  outline: none;
}
.cid-sDrfynGb51 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDrfynGb51 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDrfynGb51 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDrfynGb51 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDrfynGb51 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDrfynGb51 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDrfynGb51 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sDrfynGb51 .navbar.opened {
  transition: all 0.3s;
}
.cid-sDrfynGb51 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDrfynGb51 .navbar .navbar-logo img {
  width: auto;
}
.cid-sDrfynGb51 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDrfynGb51 .navbar.collapsed {
  justify-content: center;
}
.cid-sDrfynGb51 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDrfynGb51 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDrfynGb51 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sDrfynGb51 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDrfynGb51 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDrfynGb51 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sDrfynGb51 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDrfynGb51 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDrfynGb51 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDrfynGb51 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDrfynGb51 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDrfynGb51 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDrfynGb51 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDrfynGb51 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sDrfynGb51 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDrfynGb51 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDrfynGb51 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDrfynGb51 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDrfynGb51 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDrfynGb51 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDrfynGb51 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDrfynGb51 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDrfynGb51 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDrfynGb51 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDrfynGb51 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDrfynGb51 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDrfynGb51 .dropdown-item.active,
.cid-sDrfynGb51 .dropdown-item:active {
  background-color: transparent;
}
.cid-sDrfynGb51 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDrfynGb51 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDrfynGb51 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDrfynGb51 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sDrfynGb51 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDrfynGb51 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDrfynGb51 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDrfynGb51 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDrfynGb51 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDrfynGb51 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sDrfynGb51 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDrfynGb51 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDrfynGb51 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDrfynGb51 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDrfynGb51 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDrfynGb51 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDrfynGb51 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDrfynGb51 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDrfynGb51 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDrfynGb51 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDrfynGb51 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDrfynGb51 .navbar {
    height: 70px;
  }
  .cid-sDrfynGb51 .navbar.opened {
    height: auto;
  }
  .cid-sDrfynGb51 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDrfypbi6H {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDrfyq6qzB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sDrfyq6qzB .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sDrfyq6qzB .currentcost {
  color: #232323;
}
.cid-sDrfyq6qzB .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sDrfyq6qzB .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDrfyq6qzB .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sDrfyq6qzB .text-box {
    padding: 1rem;
  }
}
.cid-sDrfyq6qzB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDrfyq6qzB H5 {
  color: #f5951b;
}
.cid-sDrfyqOMC7 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sDrfyqOMC7 img,
.cid-sDrfyqOMC7 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sDrfyqOMC7 .item:focus,
.cid-sDrfyqOMC7 span:focus {
  outline: none;
}
.cid-sDrfyqOMC7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sDrfyqOMC7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sDrfyqOMC7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sDrfyqOMC7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sDrfyqOMC7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sDrfyqOMC7 .mbr-section-title {
  color: #f5951b;
}
.cid-sDrfyqOMC7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sDrfyrgxxx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sDrfyrgxxx .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDrfyrgxxx .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDrfyrgxxx .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDrfyrgxxx .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDrfyrgxxx .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sDrfyrgxxx .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sDrfyrgxxx .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sDrfyrgxxx .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sDrfyrgxxx .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sDrfyrgxxx .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sDrfyrgxxx .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sDrfyrgxxx .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sDrfyrgxxx .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sDrfyrgxxx .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sDrfyrgxxx [class^="socicon-"]:before,
.cid-sDrfyrgxxx [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sDrfyrBriB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sDrfyrBriB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sDrfyrBriB .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sDrfyrX5LO {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sDrfyrX5LO .mbr-section-title {
  color: #000000;
}
.cid-sDrfyrX5LO .mbr-text,
.cid-sDrfyrX5LO .mbr-section-btn {
  color: #f5951b;
}
.cid-sDrfyrX5LO .mbr-section-subtitle {
  color: #232323;
}
.cid-sDrfyskMq3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sDrfyskMq3 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sDrfyskMq3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sDrfyskMq3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sDrfyskMq3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sDrfyskMq3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sDrfyt7IVB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sDrfyt7IVB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sDrfyt7IVB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sDrfyt7IVB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sDrfyt7IVB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sDrfyt7IVB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sDrfyt7IVB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sDrfyt7IVB .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sDrfyt7IVB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sDrfyt7IVB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sDrfyt7IVB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sDrfyt7IVB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sDrfyt7IVB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDrfyt7IVB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sDrfyt7IVB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sDrqPo3cdV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDrqPo3cdV nav.navbar {
  position: fixed;
}
.cid-sDrqPo3cdV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDrqPo3cdV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDrqPo3cdV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDrqPo3cdV .dropdown-item:hover,
.cid-sDrqPo3cdV .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sDrqPo3cdV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDrqPo3cdV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDrqPo3cdV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDrqPo3cdV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDrqPo3cdV .nav-link {
  position: relative;
}
.cid-sDrqPo3cdV .container {
  display: flex;
  margin: auto;
}
.cid-sDrqPo3cdV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDrqPo3cdV .dropdown-menu,
.cid-sDrqPo3cdV .navbar.opened {
  background: #353535 !important;
}
.cid-sDrqPo3cdV .nav-item:focus,
.cid-sDrqPo3cdV .nav-link:focus {
  outline: none;
}
.cid-sDrqPo3cdV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDrqPo3cdV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDrqPo3cdV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDrqPo3cdV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDrqPo3cdV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDrqPo3cdV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDrqPo3cdV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sDrqPo3cdV .navbar.opened {
  transition: all 0.3s;
}
.cid-sDrqPo3cdV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDrqPo3cdV .navbar .navbar-logo img {
  width: auto;
}
.cid-sDrqPo3cdV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDrqPo3cdV .navbar.collapsed {
  justify-content: center;
}
.cid-sDrqPo3cdV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDrqPo3cdV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDrqPo3cdV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sDrqPo3cdV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDrqPo3cdV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDrqPo3cdV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sDrqPo3cdV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDrqPo3cdV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDrqPo3cdV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDrqPo3cdV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDrqPo3cdV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDrqPo3cdV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDrqPo3cdV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDrqPo3cdV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sDrqPo3cdV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDrqPo3cdV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDrqPo3cdV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDrqPo3cdV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDrqPo3cdV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDrqPo3cdV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDrqPo3cdV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDrqPo3cdV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDrqPo3cdV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDrqPo3cdV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDrqPo3cdV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDrqPo3cdV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDrqPo3cdV .dropdown-item.active,
.cid-sDrqPo3cdV .dropdown-item:active {
  background-color: transparent;
}
.cid-sDrqPo3cdV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDrqPo3cdV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDrqPo3cdV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDrqPo3cdV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sDrqPo3cdV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDrqPo3cdV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDrqPo3cdV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDrqPo3cdV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDrqPo3cdV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDrqPo3cdV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sDrqPo3cdV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDrqPo3cdV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDrqPo3cdV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDrqPo3cdV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDrqPo3cdV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDrqPo3cdV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDrqPo3cdV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDrqPo3cdV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDrqPo3cdV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDrqPo3cdV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDrqPo3cdV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDrqPo3cdV .navbar {
    height: 70px;
  }
  .cid-sDrqPo3cdV .navbar.opened {
    height: auto;
  }
  .cid-sDrqPo3cdV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDrqPpBzaz {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDrqPqt6jR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sDrqPqt6jR .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sDrqPqt6jR .currentcost {
  color: #232323;
}
.cid-sDrqPqt6jR .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sDrqPqt6jR .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDrqPqt6jR .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sDrqPqt6jR .text-box {
    padding: 1rem;
  }
}
.cid-sDrqPqt6jR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDrqPqt6jR H5 {
  color: #f5951b;
}
.cid-sDrqPrgqr4 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sDrqPrgqr4 img,
.cid-sDrqPrgqr4 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sDrqPrgqr4 .item:focus,
.cid-sDrqPrgqr4 span:focus {
  outline: none;
}
.cid-sDrqPrgqr4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sDrqPrgqr4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sDrqPrgqr4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sDrqPrgqr4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sDrqPrgqr4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sDrqPrgqr4 .mbr-section-title {
  color: #f5951b;
}
.cid-sDrqPrgqr4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sDrqPrPivA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sDrqPrPivA .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDrqPrPivA .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDrqPrPivA .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDrqPrPivA .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDrqPrPivA .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sDrqPrPivA .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sDrqPrPivA .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sDrqPrPivA .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sDrqPrPivA .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sDrqPrPivA .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sDrqPrPivA .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sDrqPrPivA .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sDrqPrPivA .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sDrqPrPivA .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sDrqPrPivA [class^="socicon-"]:before,
.cid-sDrqPrPivA [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sDrqPsd97q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sDrqPsd97q .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sDrqPsd97q .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sDrqPszvgJ {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sDrqPszvgJ .mbr-section-title {
  color: #000000;
}
.cid-sDrqPszvgJ .mbr-text,
.cid-sDrqPszvgJ .mbr-section-btn {
  color: #f5951b;
}
.cid-sDrqPszvgJ .mbr-section-subtitle {
  color: #232323;
}
.cid-sDrqPt4N09 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sDrqPt4N09 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sDrqPt4N09 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sDrqPt4N09 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sDrqPt4N09 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sDrqPt4N09 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sDrqPu1zx1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sDrqPu1zx1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sDrqPu1zx1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sDrqPu1zx1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sDrqPu1zx1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sDrqPu1zx1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sDrqPu1zx1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sDrqPu1zx1 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sDrqPu1zx1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sDrqPu1zx1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sDrqPu1zx1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sDrqPu1zx1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sDrqPu1zx1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDrqPu1zx1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sDrqPu1zx1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sDwY07uN4l {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDwY07uN4l nav.navbar {
  position: fixed;
}
.cid-sDwY07uN4l .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDwY07uN4l .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDwY07uN4l .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDwY07uN4l .dropdown-item:hover,
.cid-sDwY07uN4l .dropdown-item:focus {
  background: #f5951b !important;
  color: white !important;
}
.cid-sDwY07uN4l .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDwY07uN4l .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDwY07uN4l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDwY07uN4l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDwY07uN4l .nav-link {
  position: relative;
}
.cid-sDwY07uN4l .container {
  display: flex;
  margin: auto;
}
.cid-sDwY07uN4l .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDwY07uN4l .dropdown-menu,
.cid-sDwY07uN4l .navbar.opened {
  background: #353535 !important;
}
.cid-sDwY07uN4l .nav-item:focus,
.cid-sDwY07uN4l .nav-link:focus {
  outline: none;
}
.cid-sDwY07uN4l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDwY07uN4l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDwY07uN4l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDwY07uN4l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDwY07uN4l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDwY07uN4l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDwY07uN4l .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sDwY07uN4l .navbar.opened {
  transition: all 0.3s;
}
.cid-sDwY07uN4l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDwY07uN4l .navbar .navbar-logo img {
  width: auto;
}
.cid-sDwY07uN4l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDwY07uN4l .navbar.collapsed {
  justify-content: center;
}
.cid-sDwY07uN4l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDwY07uN4l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDwY07uN4l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sDwY07uN4l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDwY07uN4l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDwY07uN4l .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sDwY07uN4l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDwY07uN4l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDwY07uN4l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDwY07uN4l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDwY07uN4l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDwY07uN4l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDwY07uN4l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDwY07uN4l .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sDwY07uN4l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDwY07uN4l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDwY07uN4l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDwY07uN4l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDwY07uN4l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDwY07uN4l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDwY07uN4l .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDwY07uN4l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDwY07uN4l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDwY07uN4l .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDwY07uN4l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDwY07uN4l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDwY07uN4l .dropdown-item.active,
.cid-sDwY07uN4l .dropdown-item:active {
  background-color: transparent;
}
.cid-sDwY07uN4l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDwY07uN4l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDwY07uN4l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDwY07uN4l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sDwY07uN4l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDwY07uN4l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDwY07uN4l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDwY07uN4l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDwY07uN4l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDwY07uN4l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f5951b;
}
.cid-sDwY07uN4l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDwY07uN4l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDwY07uN4l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDwY07uN4l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDwY07uN4l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDwY07uN4l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDwY07uN4l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDwY07uN4l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDwY07uN4l .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDwY07uN4l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDwY07uN4l .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDwY07uN4l .navbar {
    height: 70px;
  }
  .cid-sDwY07uN4l .navbar.opened {
    height: auto;
  }
  .cid-sDwY07uN4l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDwY08DjYq {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDwY09GbQf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/brown-69465-1920x1280.jpg");
}
.cid-sDwY09GbQf .oldcost {
  text-decoration: line-through;
  color: #f5951b;
}
.cid-sDwY09GbQf .currentcost {
  color: #232323;
}
.cid-sDwY09GbQf .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sDwY09GbQf .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sDwY09GbQf .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sDwY09GbQf .text-box {
    padding: 1rem;
  }
}
.cid-sDwY09GbQf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDwY09GbQf H5 {
  color: #f5951b;
}
.cid-sDwY0adfUb {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sDwY0adfUb img,
.cid-sDwY0adfUb .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sDwY0adfUb .item:focus,
.cid-sDwY0adfUb span:focus {
  outline: none;
}
.cid-sDwY0adfUb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sDwY0adfUb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sDwY0adfUb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sDwY0adfUb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sDwY0adfUb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sDwY0adfUb .mbr-section-title {
  color: #f5951b;
}
.cid-sDwY0adfUb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sDwY0aSHsz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sDwY0aSHsz .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDwY0aSHsz .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDwY0aSHsz .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDwY0aSHsz .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDwY0aSHsz .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sDwY0aSHsz .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sDwY0aSHsz .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sDwY0aSHsz .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sDwY0aSHsz .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sDwY0aSHsz .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sDwY0aSHsz .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sDwY0aSHsz .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sDwY0aSHsz .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sDwY0aSHsz .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sDwY0aSHsz [class^="socicon-"]:before,
.cid-sDwY0aSHsz [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-sDwY0bmSHw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sDwY0bmSHw .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sDwY0bmSHw .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sDwY0bQxiH {
  background-image: url("../../../assets/images/pieds2page-1920x1357.jpg");
}
.cid-sDwY0bQxiH .mbr-section-title {
  color: #000000;
}
.cid-sDwY0bQxiH .mbr-text,
.cid-sDwY0bQxiH .mbr-section-btn {
  color: #f5951b;
}
.cid-sDwY0bQxiH .mbr-section-subtitle {
  color: #232323;
}
.cid-sDwY0croLA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sDwY0croLA .google-map {
  height: 30rem;
  position: relative;
}
.cid-sDwY0croLA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sDwY0croLA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sDwY0croLA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sDwY0croLA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sDwY0cSe3y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sDwY0cSe3y .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sDwY0cSe3y .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sDwY0cSe3y .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sDwY0cSe3y .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sDwY0cSe3y .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sDwY0cSe3y .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sDwY0cSe3y .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sDwY0cSe3y .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sDwY0cSe3y .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sDwY0cSe3y .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sDwY0cSe3y .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sDwY0cSe3y .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sDwY0cSe3y .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sDwY0cSe3y .media-container-row .row-copirayt p {
  width: 100%;
}
