body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.67px;
  font-weight: 400;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.4rem;
  line-height: 1.05;
  letter-spacing: -0.58px;
  font-weight: 400;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.8rem;
  line-height: 1.68;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.38px;
  font-weight: 400;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 400;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
@keyframes scale-in {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes scale-out {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.75rem 1rem;
  border-radius: 0;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #000000 !important;
}
.btn-secondary {
  background-color: #f0dec8 !important;
}
.bg-success {
  background-color: #ebd2b4 !important;
}
.bg-info {
  background-color: #522802 !important;
}
.bg-warning {
  background-color: #eec29b !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background: #ffffff !important;
  color: #333333 !important;
  border-color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f0dec8 !important;
  border-color: #f0dec8 !important;
  color: #191107 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background: #eec29b !important;
  color: #ffffff !important;
  border-color: #eec29b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #191107 !important;
  background-color: #eec29b !important;
  border-color: #eec29b !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background: #f0dec8 !important;
  color: #191107 !important;
  border-color: #f0dec8 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #f0dec8 !important;
  border-color: #f0dec8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ebd2b4 !important;
  border-color: #ebd2b4 !important;
  color: #060401 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #060401 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #eec29b !important;
  border-color: #eec29b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background: #ebd2b4 !important;
  color: #060401 !important;
  border-color: #ebd2b4 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ebd2b4 !important;
  border-color: #ebd2b4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #333333 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background: #ebd2b4 !important;
  color: #060401 !important;
  border-color: #ebd2b4 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #333333 !important;
  background-color: #ebd2b4 !important;
  border-color: #ebd2b4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background: #ffffff !important;
  color: #333333 !important;
  border-color: #ffffff !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f0dec8;
  color: #f0dec8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #916228 !important;
  background-color: #f0dec8 !important;
  border-color: #f0dec8 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #916228 !important;
  background-color: #f0dec8 !important;
  border-color: #f0dec8 !important;
}
.btn-info-outline {
  color: #000000 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-info-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #000000;
}
.btn-info-outline:hover {
  background-color: transparent !important;
  color: #eec29b !important;
}
.btn-info-outline:active {
  outline: none;
}
.btn-info-outline:hover:after {
  background-color: #eec29b;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ebd2b4;
  color: #ebd2b4;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #7e5422 !important;
  background-color: #ebd2b4 !important;
  border-color: #ebd2b4 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #7e5422 !important;
  background-color: #ebd2b4 !important;
  border-color: #ebd2b4 !important;
}
.btn-warning-outline {
  color: #eec29b !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-warning-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #eec29b;
}
.btn-warning-outline:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
.btn-warning-outline:active {
  outline: none;
}
.btn-warning-outline:hover:after {
  background-color: #ffffff;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-danger-outline {
  color: #000000 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-danger-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #000000;
}
.btn-danger-outline:hover {
  background-color: transparent !important;
  color: #f0dec8 !important;
}
.btn-danger-outline:active {
  outline: none;
}
.btn-danger-outline:hover:after {
  background-color: #f0dec8;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #f0dec8 !important;
}
.text-success {
  color: #ebd2b4 !important;
}
.text-info {
  color: #522802 !important;
}
.text-warning {
  color: #eec29b !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #f0dec8 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ebd2b4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #522802 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eec29b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffffff !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #522802;
}
.alert-warning {
  background-color: #eec29b;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fa983f;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.8rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.8rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f0dec8 !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='%23000000' %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;
}
.cid-v18nbGkAtY .navbar-dropdown {
  position: relative !important;
}
.cid-v18nbGkAtY .navbar-dropdown {
  position: absolute !important;
}
.cid-v18nbGkAtY .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v18nbGkAtY .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v18nbGkAtY .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v18nbGkAtY .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-v18nbGkAtY .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v18nbGkAtY .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v18nbGkAtY .dropdown-item:hover,
.cid-v18nbGkAtY .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v18nbGkAtY .dropdown-item:hover span {
  color: white;
}
.cid-v18nbGkAtY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v18nbGkAtY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v18nbGkAtY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v18nbGkAtY .nav-link {
  position: relative;
}
.cid-v18nbGkAtY .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v18nbGkAtY .container {
    flex-wrap: nowrap;
  }
}
.cid-v18nbGkAtY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v18nbGkAtY .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v18nbGkAtY .dropdown-menu,
.cid-v18nbGkAtY .navbar.opened {
  background: #ffffff !important;
}
.cid-v18nbGkAtY .nav-item:focus,
.cid-v18nbGkAtY .nav-link:focus {
  outline: none;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v18nbGkAtY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v18nbGkAtY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v18nbGkAtY .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v18nbGkAtY .navbar.opened {
  transition: all 0.3s;
}
.cid-v18nbGkAtY .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v18nbGkAtY .navbar .navbar-logo img {
  width: auto;
}
.cid-v18nbGkAtY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v18nbGkAtY .navbar.collapsed {
  justify-content: center;
}
.cid-v18nbGkAtY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v18nbGkAtY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v18nbGkAtY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v18nbGkAtY .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-v18nbGkAtY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v18nbGkAtY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v18nbGkAtY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v18nbGkAtY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v18nbGkAtY .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-v18nbGkAtY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v18nbGkAtY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v18nbGkAtY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v18nbGkAtY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v18nbGkAtY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v18nbGkAtY .navbar.navbar-short {
  min-height: 96px;
}
.cid-v18nbGkAtY .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v18nbGkAtY .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v18nbGkAtY .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v18nbGkAtY .navbar-brand .navbar-caption:hover,
.cid-v18nbGkAtY .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v18nbGkAtY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v18nbGkAtY .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v18nbGkAtY .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v18nbGkAtY .dropdown-item.active,
.cid-v18nbGkAtY .dropdown-item:active {
  background-color: transparent;
}
.cid-v18nbGkAtY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v18nbGkAtY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v18nbGkAtY ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v18nbGkAtY ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v18nbGkAtY .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v18nbGkAtY .navbar-buttons {
    text-align: left;
  }
}
.cid-v18nbGkAtY .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v18nbGkAtY .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v18nbGkAtY button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v18nbGkAtY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v18nbGkAtY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v18nbGkAtY .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-v18nbGkAtY .navbar {
    height: 70px;
  }
  .cid-v18nbGkAtY .navbar.opened {
    height: auto;
  }
  .cid-v18nbGkAtY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v18nbGkAtY .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.cid-v18nbGkAtY .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v18nbGkAtY .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v18nbGkAtY .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v18nbGkAtY .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover,
.cid-v18nbGkAtY .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover::after,
.cid-v18nbGkAtY .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover::before,
.cid-v18nbGkAtY .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v18nbGkAtY .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v18nbGkAtY .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v18nbGkAtY .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v18nbGkAtY .navbar {
    justify-content: flex-start !important;
  }
  .cid-v18nbGkAtY .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v18nbGkAtY .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v18nbGkAtY .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v18nbGkAtY .content-wrap {
  min-height: 110px;
}
.cid-v1iLq05q8B {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v1iLq05q8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1iLq05q8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1iLq05q8B .content-wrapper .image-wrapper {
  margin-bottom: 32px;
}
.cid-v1iLq05q8B .content-wrapper .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v1iLq05q8B .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-v1iLq05q8B .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-v1iLq05q8B .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-v1iLq05q8B .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v1iLq05q8B .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
    width: 100%;
  }
}
.cid-v1iLq05q8B .mbr-section-title {
  color: #ffffff;
}
.cid-v1iLq05q8B .mbr-text,
.cid-v1iLq05q8B .text-wrapper {
  color: #5c6873;
  text-align: justify;
}
.cid-v1iLq05q8B .mbr-section-title,
.cid-v1iLq05q8B .mbr-section-btn {
  text-align: justify;
  color: #000000;
}
.cid-v18ywZD529 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v18ywZD529 .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem 3rem;
  background: #d2c8bb;
}
@media (max-width: 767px) {
  .cid-v18ywZD529 .mbr-section-head {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-v18ywZD529 .mbr-section-title {
  color: #24262b;
}
.cid-v18ywZD529 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-v18ywZD529 .main-text {
  color: #24262b;
  margin-top: 16px;
}
.cid-v18ywZD529 .item-footer {
  margin-top: 16px;
}
.cid-v18ywZD529 .item-footer .btn-danger:hover {
  background-color: #000000 !important;
}
.cid-v18ywZD529 .items-row {
  row-gap: 48px;
}
.cid-v18ywZD529 .item {
  cursor: pointer;
}
.cid-v18ywZD529 .item:focus,
.cid-v18ywZD529 span:focus {
  outline: none;
}
.cid-v18ywZD529 .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-v18ywZD529 .item-wrapper .mbr-section-btn {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  max-width: calc(100% - 32px);
  margin: 0 !important;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
@media (max-width: 767px) {
  .cid-v18ywZD529 .item-wrapper .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-v18ywZD529 .item-wrapper .mbr-section-btn .btn {
  margin: 0 !important;
}
@media (min-width: 768px) {
  .cid-v18ywZD529 .item-wrapper:hover .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-v18ywZD529 .item-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}
.cid-v18ywZD529 img {
  width: 100%;
  aspect-ratio: calc(305 / (57 * 4));
  object-fit: cover;
}
.cid-v18ywZD529 .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
  background-color: #efefef;
}
.cid-v18ywZD529 .item-title {
  color: #24262b;
}
.cid-v18ywZD529 .item-subtitle {
  color: #24262b;
  margin-top: 6px;
}
.cid-v18ywZD529 .mbr-text {
  margin-top: 2px;
  color: #24262b;
}
.cid-v1o84oHfiP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v1o84oHfiP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1o84oHfiP .row {
  flex-direction: row-reverse;
}
.cid-v1o84oHfiP img {
  width: 100%;
  height: 600px;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-v1o84oHfiP .image-wrapper {
  overflow: hidden;
  height: 600px;
}
.cid-v1o84oHfiP .image-wrapper:hover img {
  transform: scale(1.03);
}
@media (max-width: 992px) {
  .cid-v1o84oHfiP .image-wrapper {
    height: 400px;
  }
}
.cid-v1o8pnWVXh {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v1o8pnWVXh .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem 3rem;
  background: #d2c8bb;
}
@media (max-width: 767px) {
  .cid-v1o8pnWVXh .mbr-section-head {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-v1o8pnWVXh .mbr-section-title {
  color: #24262b;
}
.cid-v1o8pnWVXh .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-v1o8pnWVXh .main-text {
  color: #24262b;
  margin-top: 16px;
}
.cid-v1o8pnWVXh .item-footer {
  margin-top: 16px;
}
.cid-v1o8pnWVXh .item-footer .btn-danger:hover {
  background-color: #000000 !important;
}
.cid-v1o8pnWVXh .items-row {
  row-gap: 48px;
}
.cid-v1o8pnWVXh .item {
  cursor: pointer;
}
.cid-v1o8pnWVXh .item:focus,
.cid-v1o8pnWVXh span:focus {
  outline: none;
}
.cid-v1o8pnWVXh .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-v1o8pnWVXh .item-wrapper .mbr-section-btn {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  max-width: calc(100% - 32px);
  margin: 0 !important;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
@media (max-width: 767px) {
  .cid-v1o8pnWVXh .item-wrapper .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-v1o8pnWVXh .item-wrapper .mbr-section-btn .btn {
  margin: 0 !important;
}
@media (min-width: 768px) {
  .cid-v1o8pnWVXh .item-wrapper:hover .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-v1o8pnWVXh .item-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}
.cid-v1o8pnWVXh img {
  width: 100%;
  aspect-ratio: calc(305 / (57 * 4));
  object-fit: cover;
}
.cid-v1o8pnWVXh .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
  background-color: #efefef;
}
.cid-v1o8pnWVXh .item-title {
  color: #24262b;
}
.cid-v1o8pnWVXh .item-subtitle {
  color: #24262b;
  margin-top: 6px;
}
.cid-v1o8pnWVXh .mbr-text {
  margin-top: 2px;
  color: #24262b;
}
.cid-v1iSXfSSd7 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v1iSXfSSd7 .image-block {
  margin: auto;
  height: 520px;
  overflow: hidden;
  position: relative;
}
.cid-v1iSXfSSd7 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-v1iSXfSSd7 .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-v1iSXfSSd7 .wrap {
    opacity: 1!important;
  }
}
.cid-v1iSXfSSd7 [class*="col"] {
  padding-left: .80rem !important;
  padding-right: .80rem !important;
}
.cid-v1iSXfSSd7 .mbr-section-title {
  text-align: left;
}
.cid-v0Rqe6SEfI {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0Rqe6SEfI .column-wrapper {
  padding-left: 1.5rem;
}
.cid-v0Rqe6SEfI .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-v0Rqe6SEfI .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-v0Rqe6SEfI .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-v0Rqe6SEfI .mbr-text,
.cid-v0Rqe6SEfI .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v0Rqe6SEfI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v0Rqe6SEfI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Rqe6SEfI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1oaFK8znB {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v1oaFK8znB .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem 3rem;
  background: #d2c8bb;
}
@media (max-width: 767px) {
  .cid-v1oaFK8znB .mbr-section-head {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-v1oaFK8znB .mbr-section-title {
  color: #24262b;
}
.cid-v1oaFK8znB .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-v1oaFK8znB .main-text {
  color: #24262b;
  margin-top: 16px;
}
.cid-v1oaFK8znB .item-footer {
  margin-top: 16px;
}
.cid-v1oaFK8znB .item-footer .btn-danger:hover {
  background-color: #000000 !important;
}
.cid-v1oaFK8znB .items-row {
  row-gap: 48px;
}
.cid-v1oaFK8znB .item {
  cursor: pointer;
}
.cid-v1oaFK8znB .item:focus,
.cid-v1oaFK8znB span:focus {
  outline: none;
}
.cid-v1oaFK8znB .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-v1oaFK8znB .item-wrapper .mbr-section-btn {
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  max-width: calc(100% - 32px);
  margin: 0 !important;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
@media (max-width: 767px) {
  .cid-v1oaFK8znB .item-wrapper .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-v1oaFK8znB .item-wrapper .mbr-section-btn .btn {
  margin: 0 !important;
}
@media (min-width: 768px) {
  .cid-v1oaFK8znB .item-wrapper:hover .mbr-section-btn {
    opacity: 1 !important;
    bottom: 1.5rem !important;
    pointer-events: auto !important;
  }
}
.cid-v1oaFK8znB .item-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}
.cid-v1oaFK8znB img {
  width: 100%;
  aspect-ratio: calc(305 / (57 * 4));
  object-fit: cover;
}
.cid-v1oaFK8znB .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
  background-color: #efefef;
}
.cid-v1oaFK8znB .item-title {
  color: #24262b;
}
.cid-v1oaFK8znB .item-subtitle {
  color: #24262b;
  margin-top: 6px;
}
.cid-v1oaFK8znB .mbr-text {
  margin-top: 2px;
  color: #24262b;
}
.cid-v1oaYAUBcH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v1oaYAUBcH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1oaYAUBcH .row {
  flex-direction: row-reverse;
}
.cid-v1oaYAUBcH img {
  width: 100%;
  height: 600px;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-v1oaYAUBcH .image-wrapper {
  overflow: hidden;
  height: 600px;
}
.cid-v1oaYAUBcH .image-wrapper:hover img {
  transform: scale(1.03);
}
@media (max-width: 992px) {
  .cid-v1oaYAUBcH .image-wrapper {
    height: 400px;
  }
}
.cid-v1oayQ8wVv {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v1oayQ8wVv .image-block {
  margin: auto;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.cid-v1oayQ8wVv img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-v1oayQ8wVv .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-v1oayQ8wVv .wrap {
    opacity: 1!important;
  }
}
.cid-v1oayQ8wVv [class*="col"] {
  padding-left: .80rem !important;
  padding-right: .80rem !important;
}
.cid-v1oayQ8wVv .mbr-section-title {
  text-align: left;
}
.cid-v3atwGfbRV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3atwGfbRV .card-wrapper {
  background-color: #d2c8bb;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-v3atwGfbRV .card-wrapper {
    padding: 1rem;
  }
}
.cid-v3atwGfbRV .text-wrapper {
  max-width: 28rem;
}
.cid-v3atwGfbRV .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3atwGfbRV .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v3atwGfbRV .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v3atwGfbRV .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3atwGfbRV .content-wrapper {
    padding: 3rem;
  }
  .cid-v3atwGfbRV .content-wrapper .text-column {
    padding-left: 4rem;
  }
}
.cid-v3atwGfbRV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v3atwGfbRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3atwGfbRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0RqG0k8di {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0RqG0k8di .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-v0RqG0k8di .social-row {
    justify-content: center;
  }
  .cid-v0RqG0k8di .social-row .soc-item {
    margin-right: 0;
    margin: 0 .5rem .5rem 0;
  }
}
.cid-v0RqG0k8di .mbr-section-subtitle {
  text-align: left;
}
.cid-v0RqG0k8di a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0RqG0k8di .addres-list li {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-v0RqG0k8di .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin-right: 0.8rem;
  margin-bottom: 1rem;
  height: 3.2rem;
  width: 3.2rem;
}
.cid-v0RqG0k8di .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-v0RqG0k8di .list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  text-align: left;
  color: #7f7f7f;
}
@media (max-width: 991px) {
  .cid-v0RqG0k8di .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0RqG0k8di .list {
    margin-bottom: 0rem;
  }
}
.cid-v0RqG0k8di .mbr-iconfont {
  transition: color 0.3s;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-v0RqG0k8di .addres-list {
  text-align: left;
  color: #fafafa;
}
.cid-v0RqG0k8di li {
  margin-bottom: .5rem;
}
.cid-v0RqG0k8di li:hover {
  opacity: .75;
}
.cid-v0RqG0k8di .privacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 4rem;
  border-top: 2px solid #444;
}
.cid-v0RqG0k8di SPAN {
  text-align: left;
  color: #bbbbbb;
}
.cid-v0RqG0k8di .privacy-text {
  text-align: left;
}
.cid-v0RqG0k8di .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0RqG0k8di .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v18nbGkAtY .navbar-dropdown {
  position: relative !important;
}
.cid-v18nbGkAtY .navbar-dropdown {
  position: absolute !important;
}
.cid-v18nbGkAtY .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v18nbGkAtY .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v18nbGkAtY .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v18nbGkAtY .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-v18nbGkAtY .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v18nbGkAtY .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v18nbGkAtY .dropdown-item:hover,
.cid-v18nbGkAtY .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v18nbGkAtY .dropdown-item:hover span {
  color: white;
}
.cid-v18nbGkAtY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v18nbGkAtY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v18nbGkAtY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v18nbGkAtY .nav-link {
  position: relative;
}
.cid-v18nbGkAtY .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v18nbGkAtY .container {
    flex-wrap: nowrap;
  }
}
.cid-v18nbGkAtY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v18nbGkAtY .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v18nbGkAtY .dropdown-menu,
.cid-v18nbGkAtY .navbar.opened {
  background: #ffffff !important;
}
.cid-v18nbGkAtY .nav-item:focus,
.cid-v18nbGkAtY .nav-link:focus {
  outline: none;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v18nbGkAtY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v18nbGkAtY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v18nbGkAtY .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v18nbGkAtY .navbar.opened {
  transition: all 0.3s;
}
.cid-v18nbGkAtY .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v18nbGkAtY .navbar .navbar-logo img {
  width: auto;
}
.cid-v18nbGkAtY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v18nbGkAtY .navbar.collapsed {
  justify-content: center;
}
.cid-v18nbGkAtY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v18nbGkAtY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v18nbGkAtY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v18nbGkAtY .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-v18nbGkAtY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v18nbGkAtY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v18nbGkAtY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v18nbGkAtY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v18nbGkAtY .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-v18nbGkAtY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v18nbGkAtY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v18nbGkAtY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v18nbGkAtY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v18nbGkAtY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v18nbGkAtY .navbar.navbar-short {
  min-height: 96px;
}
.cid-v18nbGkAtY .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v18nbGkAtY .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v18nbGkAtY .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v18nbGkAtY .navbar-brand .navbar-caption:hover,
.cid-v18nbGkAtY .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v18nbGkAtY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v18nbGkAtY .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v18nbGkAtY .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v18nbGkAtY .dropdown-item.active,
.cid-v18nbGkAtY .dropdown-item:active {
  background-color: transparent;
}
.cid-v18nbGkAtY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v18nbGkAtY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v18nbGkAtY ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v18nbGkAtY ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v18nbGkAtY .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v18nbGkAtY .navbar-buttons {
    text-align: left;
  }
}
.cid-v18nbGkAtY .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v18nbGkAtY .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v18nbGkAtY button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v18nbGkAtY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v18nbGkAtY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v18nbGkAtY .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-v18nbGkAtY .navbar {
    height: 70px;
  }
  .cid-v18nbGkAtY .navbar.opened {
    height: auto;
  }
  .cid-v18nbGkAtY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v18nbGkAtY .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.cid-v18nbGkAtY .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v18nbGkAtY .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v18nbGkAtY .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v18nbGkAtY .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover,
.cid-v18nbGkAtY .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover::after,
.cid-v18nbGkAtY .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover::before,
.cid-v18nbGkAtY .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v18nbGkAtY .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v18nbGkAtY .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v18nbGkAtY .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v18nbGkAtY .navbar {
    justify-content: flex-start !important;
  }
  .cid-v18nbGkAtY .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v18nbGkAtY .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v18nbGkAtY .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v18nbGkAtY .content-wrap {
  min-height: 110px;
}
.cid-v0RxcZqCQs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0RxcZqCQs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0RxcZqCQs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-v0RxcZqCQs .container {
    padding: 0 20px;
  }
}
.cid-v0RxcZqCQs .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-v0RxcZqCQs .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-v0RxcZqCQs .mbr-section-title {
  color: #1d1d1d;
}
.cid-v0RxcZqCQs .mbr-text {
  color: #706f6d;
}
.cid-v0Ryb7aYQw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #d2c8bb;
}
.cid-v0Ryb7aYQw .row {
  flex-directiion: row-reverse;
}
.cid-v0Ryb7aYQw .first-card {
  background-color: #d2c8bb;
}
.cid-v0Ryb7aYQw .card-box {
  padding: 1.5rem 1rem 0 1rem;
}
.cid-v0Ryb7aYQw .second-card-title {
  text-align: justify;
  color: #000000;
}
.cid-v0Ryb7aYQw .second-card-subtitle {
  text-align: center;
}
.cid-v0Ryb7aYQw .second-card {
  background-color: #d2c8bb;
}
.cid-v0Ryb7aYQw .second-card-wrap {
  margin: auto 0;
  padding: 3rem 1.5rem;
}
@media (min-width: 992px) {
  .cid-v0Ryb7aYQw [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-v0Ryb7aYQw .card-img {
  height: 100%;
}
.cid-v0Ryb7aYQw .card-img img {
  height: 100%;
}
@media (max-width: 991px) {
  .cid-v0Ryb7aYQw .card-wrapper {
    padding-bottom: 3rem;
    text-align: center;
  }
}
.cid-v0Ryb7aYQw .first-card-title {
  text-align: left;
  color: #000000;
}
.cid-v0Ryb7aYQw .first-card-text,
.cid-v0Ryb7aYQw .card-btn {
  text-align: center;
}
.cid-v0Ryb7aYQw .mbr-text,
.cid-v0Ryb7aYQw .card-btn {
  text-align: left;
}
.cid-v0Ryb7aYQw .second-card-subtitle,
.cid-v0Ryb7aYQw .second-btn {
  text-align: justify;
}
.cid-v0Ryb7aYQw .card {
  border-radius: 0 !important;
}
.cid-v0Ryb7aYQw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Ryb7aYQw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1olbGVU8g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v1olbGVU8g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1olbGVU8g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1olbGVU8g .row {
  justify-content: center;
}
.cid-v1olbGVU8g .col-title {
  margin-bottom: 2.5rem;
}
.cid-v1olbGVU8g .mbr-section-title {
  color: #080813;
}
.cid-v1olbGVU8g .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
  text-align: justify;
}
.cid-v1olbGVU8g .img-container {
  margin: 0 auto;
}
.cid-v1olbGVU8g .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 620px;
}
.cid-v1olbGVU8g .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v1olbGVU8g .mbr-section-subtitle DIV {
  text-align: justify;
}
.cid-v1ohZ4V2eJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d2c8bb;
}
.cid-v1ohZ4V2eJ .content-row {
  background-color: #d2c8bb;
  padding: 5rem;
}
@media (max-width: 767px) {
  .cid-v1ohZ4V2eJ .content-row {
    padding: 1rem;
  }
}
.cid-v1ohZ4V2eJ p {
  margin-bottom: 0rem;
}
.cid-v1ohZ4V2eJ .btn {
  margin-bottom: 0rem;
}
.cid-v1ohZ4V2eJ .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v1ohZ4V2eJ .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-v1ohZ4V2eJ .mbr-section-btn {
  margin-right: 0rem;
}
@media (max-width: 767px) {
  .cid-v1ohZ4V2eJ .mbr-section-btn {
    text-align: left;
  }
  .cid-v1ohZ4V2eJ .btn {
    margin-left: 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1ohZ4V2eJ .mbr-section-btn {
    text-align: left;
  }
  .cid-v1ohZ4V2eJ .btn {
    margin-left: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-v1ohZ4V2eJ .mbr-section-btn {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v1ohZ4V2eJ .btn {
    margin-top: 0rem;
  }
}
.cid-v1ohZ4V2eJ H1 {
  text-align: center;
}
.cid-v1ohZ4V2eJ .mbr-text {
  text-align: center;
}
.cid-v1ohZ4V2eJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1ohZ4V2eJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0RwSpXLP2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0RwSpXLP2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-v0RwSpXLP2 .social-row {
    justify-content: center;
  }
  .cid-v0RwSpXLP2 .social-row .soc-item {
    margin-right: 0;
    margin: 0 .5rem .5rem 0;
  }
}
.cid-v0RwSpXLP2 .mbr-section-subtitle {
  text-align: left;
}
.cid-v0RwSpXLP2 a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0RwSpXLP2 .addres-list li {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-v0RwSpXLP2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin-right: 0.8rem;
  margin-bottom: 1rem;
  height: 3.2rem;
  width: 3.2rem;
}
.cid-v0RwSpXLP2 .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-v0RwSpXLP2 .list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  text-align: left;
  color: #7f7f7f;
}
@media (max-width: 991px) {
  .cid-v0RwSpXLP2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0RwSpXLP2 .list {
    margin-bottom: 0rem;
  }
}
.cid-v0RwSpXLP2 .mbr-iconfont {
  transition: color 0.3s;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-v0RwSpXLP2 .addres-list {
  text-align: left;
  color: #fafafa;
}
.cid-v0RwSpXLP2 li {
  margin-bottom: .5rem;
}
.cid-v0RwSpXLP2 li:hover {
  opacity: .75;
}
.cid-v0RwSpXLP2 .privacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 4rem;
  border-top: 2px solid #444;
}
.cid-v0RwSpXLP2 SPAN {
  text-align: left;
  color: #bbbbbb;
}
.cid-v0RwSpXLP2 .privacy-text {
  text-align: left;
}
.cid-v0RwSpXLP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0RwSpXLP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v18nbGkAtY .navbar-dropdown {
  position: relative !important;
}
.cid-v18nbGkAtY .navbar-dropdown {
  position: absolute !important;
}
.cid-v18nbGkAtY .container-fluid {
  padding-left: 72px;
  padding-right: 72px;
}
@media (max-width: 1440px) {
  .cid-v18nbGkAtY .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v18nbGkAtY .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-v18nbGkAtY .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-v18nbGkAtY .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v18nbGkAtY .dropdown-item {
  border: none !important;
  background: #ffffff !important;
}
.cid-v18nbGkAtY .dropdown-item:hover,
.cid-v18nbGkAtY .dropdown-item:focus {
  background: #ffffff !important;
  color: #000000 !important;
}
.cid-v18nbGkAtY .dropdown-item:hover span {
  color: white;
}
.cid-v18nbGkAtY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v18nbGkAtY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v18nbGkAtY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v18nbGkAtY .nav-link {
  position: relative;
}
.cid-v18nbGkAtY .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v18nbGkAtY .container {
    flex-wrap: nowrap;
  }
}
.cid-v18nbGkAtY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-v18nbGkAtY .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v18nbGkAtY .dropdown-menu,
.cid-v18nbGkAtY .navbar.opened {
  background: #ffffff !important;
}
.cid-v18nbGkAtY .nav-item:focus,
.cid-v18nbGkAtY .nav-link:focus {
  outline: none;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v18nbGkAtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v18nbGkAtY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v18nbGkAtY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v18nbGkAtY .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v18nbGkAtY .navbar.opened {
  transition: all 0.3s;
}
.cid-v18nbGkAtY .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-v18nbGkAtY .navbar .navbar-logo img {
  width: auto;
}
.cid-v18nbGkAtY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v18nbGkAtY .navbar.collapsed {
  justify-content: center;
}
.cid-v18nbGkAtY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v18nbGkAtY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v18nbGkAtY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v18nbGkAtY .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-v18nbGkAtY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v18nbGkAtY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v18nbGkAtY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v18nbGkAtY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v18nbGkAtY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v18nbGkAtY .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-v18nbGkAtY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v18nbGkAtY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v18nbGkAtY .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-v18nbGkAtY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v18nbGkAtY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v18nbGkAtY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v18nbGkAtY .navbar.navbar-short {
  min-height: 96px;
}
.cid-v18nbGkAtY .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v18nbGkAtY .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v18nbGkAtY .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v18nbGkAtY .navbar-brand .navbar-caption:hover,
.cid-v18nbGkAtY .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v18nbGkAtY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v18nbGkAtY .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v18nbGkAtY .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #000000 !important;
}
.cid-v18nbGkAtY .dropdown-item.active,
.cid-v18nbGkAtY .dropdown-item:active {
  background-color: transparent;
}
.cid-v18nbGkAtY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v18nbGkAtY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v18nbGkAtY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v18nbGkAtY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v18nbGkAtY ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v18nbGkAtY ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v18nbGkAtY .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v18nbGkAtY .navbar-buttons {
    text-align: left;
  }
}
.cid-v18nbGkAtY .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 7px 20px;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v18nbGkAtY .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v18nbGkAtY button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v18nbGkAtY button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v18nbGkAtY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v18nbGkAtY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v18nbGkAtY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v18nbGkAtY .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-v18nbGkAtY .navbar {
    height: 70px;
  }
  .cid-v18nbGkAtY .navbar.opened {
    height: auto;
  }
  .cid-v18nbGkAtY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v18nbGkAtY .navbar-nav {
  justify-content: flex-end;
  margin: 0;
}
.cid-v18nbGkAtY .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v18nbGkAtY .nav-item .nav-link {
  padding: 2px 0 !important;
  margin: 6px 17px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v18nbGkAtY .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v18nbGkAtY .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover,
.cid-v18nbGkAtY .nav-item .nav-link:focus {
  background-color: transparent;
  color: #000000 !important;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover::after,
.cid-v18nbGkAtY .nav-item .nav-link:focus::after {
  color: inherit !important;
}
.cid-v18nbGkAtY .nav-item .nav-link:hover::before,
.cid-v18nbGkAtY .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v18nbGkAtY .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v18nbGkAtY .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v18nbGkAtY .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v18nbGkAtY .navbar {
    justify-content: flex-start !important;
  }
  .cid-v18nbGkAtY .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v18nbGkAtY .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v18nbGkAtY .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v18nbGkAtY .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-v18nbGkAtY .content-wrap {
  min-height: 110px;
}
.cid-v0RAro60n2 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0RAro60n2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0RAro60n2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-v0RAro60n2 .container {
    padding: 0 20px;
  }
}
.cid-v0RAro60n2 .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-v0RAro60n2 .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-v0RAro60n2 .mbr-section-title {
  color: #1d1d1d;
}
.cid-v0RAro60n2 .mbr-text {
  color: #706f6d;
}
.cid-v1Zi7s11ZI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-v1Zi7s11ZI span {
  color: #c1c1c1;
}
.cid-v1Zi7s11ZI .mbr-text {
  padding-left: 1.5rem;
}
.cid-v1Zi7s11ZI .mbr-section-title {
  padding-left: 1.5px;
}
.cid-v1Zi7s11ZI .mbr-section-btn {
  margin-top: 22.5px;
}
.cid-v1Zi7s11ZI H1 {
  text-align: left;
  color: #000000;
}
.cid-v1Zi7s11ZI .mbr-text,
.cid-v1Zi7s11ZI .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v0RC8O6b9q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v0RC8O6b9q .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  background-color: #000000;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
.cid-v0RC8O6b9q .card {
  margin-bottom: 1.5rem;
}
.cid-v0RC8O6b9q .card-wrapper {
  padding: 3rem 2.5rem;
  background-color: #ffffff;
  border-width: 0 0 4px 0;
  border-style: solid;
}
.cid-v0RC8O6b9q .card-wrapper-1 {
  border-color: #522802;
}
.cid-v0RC8O6b9q .card-wrapper-2 {
  border-color: #eec39c;
}
.cid-v0RC8O6b9q .card-wrapper-3 {
  border-color: #bcd9df;
}
.cid-v0RC8O6b9q .card-wrapper-4 {
  border-color: #67beb0;
}
.cid-v0RC8O6b9q .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.cid-v0RC8O6b9q .card-text {
  color: #000000;
  text-align: left;
}
.cid-v0RC8O6b9q .card-title,
.cid-v0RC8O6b9q .icon-wrap {
  color: #000000;
  text-align: left;
}
.cid-v0RC8O6b9q .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-v0RC8O6b9q .card-subtitle {
  text-align: left;
}
.cid-v0RC8O6b9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0RC8O6b9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0RAroZGrR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0RAroZGrR .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-v0RAroZGrR .social-row {
    justify-content: center;
  }
  .cid-v0RAroZGrR .social-row .soc-item {
    margin-right: 0;
    margin: 0 .5rem .5rem 0;
  }
}
.cid-v0RAroZGrR .mbr-section-subtitle {
  text-align: left;
}
.cid-v0RAroZGrR a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0RAroZGrR .addres-list li {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-v0RAroZGrR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin-right: 0.8rem;
  margin-bottom: 1rem;
  height: 3.2rem;
  width: 3.2rem;
}
.cid-v0RAroZGrR .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-v0RAroZGrR .list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  text-align: left;
  color: #7f7f7f;
}
@media (max-width: 991px) {
  .cid-v0RAroZGrR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0RAroZGrR .list {
    margin-bottom: 0rem;
  }
}
.cid-v0RAroZGrR .mbr-iconfont {
  transition: color 0.3s;
  color: #ffffff;
  font-size: 1.2rem;
}
.cid-v0RAroZGrR .addres-list {
  text-align: left;
  color: #fafafa;
}
.cid-v0RAroZGrR li {
  margin-bottom: .5rem;
}
.cid-v0RAroZGrR li:hover {
  opacity: .75;
}
.cid-v0RAroZGrR .privacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 4rem;
  border-top: 2px solid #444;
}
.cid-v0RAroZGrR SPAN {
  text-align: left;
  color: #bbbbbb;
}
.cid-v0RAroZGrR .privacy-text {
  text-align: left;
}
.cid-v0RAroZGrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0RAroZGrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
