body {
  font-family: Syne;
}
.display-1 {
  font-family: 'Poppins-Medium';
  font-size: 4rem;
  line-height: .89;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Poppins-Medium';
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.06em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Syncopate-Regular';
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Syncopate-Regular';
  font-size: 1.6rem;
  line-height: 1.56;
  letter-spacing: -0.01em;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Syncopate-Regular';
  font-size: 1.2rem;
  line-height: 1.53;
  letter-spacing: -0.01em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 200px;
}
.bg-primary {
  background-color: #181818 !important;
}
.bg-success {
  background-color: #f8f8f8 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #838b9c !important;
}
.bg-danger {
  background-color: #9d5578 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #181818 !important;
  border-color: #181818 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #454545 !important;
  border-color: #454545 !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: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  color: #797979 !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: #4d4d4d !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #797979 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #838b9c !important;
  border-color: #838b9c !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: #59606f !important;
  border-color: #59606f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59606f !important;
  border-color: #59606f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #9d5578 !important;
  border-color: #9d5578 !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: #65374d !important;
  border-color: #65374d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #65374d !important;
  border-color: #65374d !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: transparent;
  color: #181818;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #454545;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1a1a1a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #454545 !important;
  border-color: #454545 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f8f8f8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cdcdcd !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #797979 !important;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #838b9c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #59606f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #838b9c !important;
  border-color: #838b9c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9d5578;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #65374d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #9d5578 !important;
  border-color: #9d5578 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #181818 !important;
}
.text-secondary {
  color: #454545 !important;
}
.text-success {
  color: #f8f8f8 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #838b9c !important;
}
.text-danger {
  color: #9d5578 !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: #121212 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c5c5c5 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #525967 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #5b3145 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #181818;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #838b9c;
}
.alert-danger {
  background-color: #9d5578;
}
.mbr-gallery-filter li.active .btn {
  background-color: #181818;
  border-color: #181818;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #181818;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cbcbcb;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cacdd5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cea4b8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Syncopate-Regular';
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #181818 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syncopate-Regular';
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #181818;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #181818;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #181818;
}
.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: #181818;
  border-bottom-color: #181818;
}
.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: #181818 !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: #454545 !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='%23181818' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  min-width: 148px;
  max-height: 55px;
  font-weight: 400;
  box-shadow: none;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover {
  box-shadow: none;
}
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  color: #181818 !important;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border-color: #181818;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border-color: #454545;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border-color: #f8f8f8;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border-color: #ffffff;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border-color: #838b9c;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border-color: #9d5578;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txkFDIYjuv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txkFDIYjuv .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkFDIYjuv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkFDIYjuv .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txkFDIYjuv .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txkFDIYjuv .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkFDIYjuv .row {
    padding: 0 12px;
  }
}
.cid-txkFDIYjuv .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txkFDIYjuv .item-wrap {
  z-index: 1;
}
.cid-txkFDIYjuv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkFDIYjuv .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txkFDIYjuv .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkFDIYjuv .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkFDIYjuv .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkFDIYjuv .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkFDIYjuv .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txkFDIYjuv .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txkFDIYjuv .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txkFDIYjuv .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txkFDIYjuv .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txkFDIYjuv .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txkFDIYjuv .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkFDIYjuv .mbr-section-btn {
    text-align: center;
  }
}
.cid-txkFDIYjuv .mbr-section-title {
  color: #ffffff;
}
.cid-txkFDIYjuv .mbr-text {
  color: #ffffff;
}
.cid-txkFDIYjuv .mbr-price {
  color: #ffffff;
}
.cid-txkFDIYjuv .mbr-max-price {
  color: #ffffff;
}
.cid-txgsFoXpSv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-txgsFoXpSv .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgsFoXpSv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgsFoXpSv .row {
  justify-content: center;
}
.cid-txgsFoXpSv .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-txgsFoXpSv .row {
    padding: 0 19px;
  }
}
.cid-txgsFoXpSv .item {
  padding: 0 5px !important;
}
.cid-txgsFoXpSv .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-txgsFoXpSv .item-wrap {
    padding: 0 5px;
  }
}
.cid-txgsFoXpSv .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-txgsFoXpSv .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txgsFoXpSv .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-txgsFoXpSv .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-txgsFoXpSv .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-txgsFoXpSv .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txgsFoXpSv .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-txgsFoXpSv .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-txgsFoXpSv .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-txgsFoXpSv .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-txgsFoXpSv .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-txgsFoXpSv .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-txgsFoXpSv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-txgsFoXpSv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-txgsFoXpSv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-txgsFoXpSv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-txgsFoXpSv .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-txgsFoXpSv .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-txgsFoXpSv .mbr-like {
  color: #181818;
}
.cid-txgsFoXpSv .mbr-comment,
.cid-txgsFoXpSv .mbr-iconfont {
  color: #181818;
}
.cid-txgsFoXpSv .mbr-text {
  color: #181818;
}
.cid-txgsFoXpSv .mbr-text,
.cid-txgsFoXpSv .icon-container {
  text-align: center;
}
.cid-v0VU7XcFrW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-v0VU7XcFrW .container-fluid {
  padding-right: 0;
}
.cid-v0VU7XcFrW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0VU7XcFrW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0VU7XcFrW .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-v0VU7XcFrW .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v0VU7XcFrW .title {
  display: flex;
  align-items: center;
}
.cid-v0VU7XcFrW .title-wrapper {
  width: 100%;
}
.cid-v0VU7XcFrW .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v0VU7XcFrW .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-v0VU7XcFrW .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v0VU7XcFrW .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-v0VU7XcFrW .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v0VU7XcFrW .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-v0VU7XcFrW .image-wrapper {
    margin-top: 39px;
  }
}
.cid-v0VU7XcFrW .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v0VU7XcFrW .mbr-section-subtitle {
  color: #181818;
}
.cid-v0VU7XcFrW .mbr-section-title {
  color: #181818;
}
.cid-v0VU7XcFrW .mbr-text {
  color: #454545;
}
.cid-v0VU8FTq5F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-v0VU8FTq5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0VU8FTq5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0VU8FTq5F .row {
  justify-content: center;
}
.cid-v0VU8FTq5F .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-v0VU8FTq5F .row {
    padding: 0 12px;
  }
}
.cid-v0VU8FTq5F .item-wrap {
  z-index: 1;
}
.cid-v0VU8FTq5F .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-v0VU8FTq5F .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uWYH6hCwij {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWYH6hCwij .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWYH6hCwij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWYH6hCwij .row {
  margin: 0 -32px;
}
.cid-uWYH6hCwij .row .card {
  padding: 0 32px;
  justify-content: center;
}
.cid-uWYH6hCwij .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uWYH6hCwij .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWYH6hCwij .title-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-uWYH6hCwij .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uWYH6hCwij .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uWYH6hCwij .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uWYH6hCwij .title-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWYH6hCwij .image-wrapper {
  padding: 12px;
  border: 1px solid #cdcddd;
  background-color: #e0e0eb;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .cid-uWYH6hCwij .image-wrapper {
    padding: 6px;
  }
}
.cid-uWYH6hCwij .image-wrapper .image-wrap {
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid #cdcddd;
  box-shadow: 0 0.25rem 0.375rem -0.125rem #9797b9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uWYH6hCwij .image-wrapper .image-wrap {
    padding: 6px;
  }
}
.cid-uWYH6hCwij .image-wrapper .image-wrap img {
  height: 550px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uWYH6hCwij .image-wrapper .image-wrap img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .cid-uWYH6hCwij .image-wrapper .image-wrap img {
    height: 250px;
  }
}
.cid-uWYH6hCwij .mbr-label {
  color: #49496d;
}
.cid-uWYH6hCwij .mbr-section-title {
  color: #181824;
}
.cid-uWYH6hCwij .mbr-text,
.cid-uWYH6hCwij .text-wrapper {
  color: #54547e;
}
.cid-uWYHa4x7Vl {
  background-color: #eeeef4;
  position: relative;
  overflow: hidden;
}
.cid-uWYHa4x7Vl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWYHa4x7Vl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWYHa4x7Vl .decor-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 32px 0;
}
.cid-uWYHa4x7Vl .decor-wrapper .decor {
  height: 100%;
  width: 400px;
  border: 1px solid #cdcddd;
}
.cid-uWYHa4x7Vl .decor-wrapper .decor_1 {
  box-shadow: inset 0 0 0 2px #ffffff;
}
.cid-uWYHa4x7Vl .decor-wrapper .decor_2 {
  box-shadow: inset 0 0 0 2px #ffffff;
}
.cid-uWYHa4x7Vl .decoration_1 {
  left: -100px;
  left: -250px !important;
}
@media (max-width: 1640px) {
  .cid-uWYHa4x7Vl .decoration_1 {
    left: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uWYHa4x7Vl .decoration_1 {
    left: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uWYHa4x7Vl .decoration_1 {
    left: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uWYHa4x7Vl .decoration_1 {
    left: -380px;
  }
}
@media (max-width: 1200px) {
  .cid-uWYHa4x7Vl .decoration_1 {
    left: -300px !important;
  }
}
@media (max-width: 992px) {
  .cid-uWYHa4x7Vl .decoration_1 {
    left: -380px !important;
  }
}
.cid-uWYHa4x7Vl .decoration_2 {
  right: -100px;
  right: -250px !important;
}
@media (max-width: 1640px) {
  .cid-uWYHa4x7Vl .decoration_2 {
    right: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uWYHa4x7Vl .decoration_2 {
    right: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uWYHa4x7Vl .decoration_2 {
    right: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uWYHa4x7Vl .decoration_2 {
    right: -380px;
  }
}
@media (max-width: 1200px) {
  .cid-uWYHa4x7Vl .decoration_2 {
    right: -300px !important;
  }
}
@media (max-width: 992px) {
  .cid-uWYHa4x7Vl .decoration_2 {
    right: -380px !important;
  }
}
.cid-uWYHa4x7Vl .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  padding: 120px 0;
}
@media (max-width: 1440px) {
  .cid-uWYHa4x7Vl .content-wrapper {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-uWYHa4x7Vl .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uWYHa4x7Vl .content-wrapper {
    padding: 0 16px;
  }
}
.cid-uWYHa4x7Vl .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uWYHa4x7Vl .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 24px;
}
.cid-uWYHa4x7Vl .content-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-uWYHa4x7Vl .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWYHa4x7Vl .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uWYHa4x7Vl .content-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-uWYHa4x7Vl .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-uWYHa4x7Vl .mbr-section-title {
  color: #181824;
}
.cid-uWYHa4x7Vl .mbr-section-title,
.cid-uWYHa4x7Vl .mbr-section-btn,
.cid-uWYHa4x7Vl .icon-wrapper {
  text-align: center;
}
.cid-uoJyGtTY7h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uoJyGtTY7h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoJyGtTY7h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoJyGtTY7h .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoJyGtTY7h .row {
    padding: 0 12px;
  }
}
.cid-uoJyGtTY7h .item-wrap {
  z-index: 1;
}
.cid-uoJyGtTY7h .title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uoJyGtTY7h .image-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uoJyGtTY7h .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uoJyGtTY7h .image-wrapper {
    margin-bottom: 32px;
    padding: 0;
  }
}
.cid-uoJyGtTY7h .image-wrapper img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.cid-uoJyGtTY7h .desc-container .desc-wrapper {
  display: inline-flex;
}
.cid-uoJyGtTY7h .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
}
.cid-uoJyGtTY7h .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  opacity: .7;
}
.cid-uoJyGtTY7h .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-uoJyGtTY7h .title-wrapper {
  margin-bottom: 18px;
}
@media (max-width: 992px) {
  .cid-uoJyGtTY7h .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uoJyGtTY7h .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: .3s ease;
}
.cid-uoJyGtTY7h .title-wrapper .mbr-section-title:hover {
  opacity: .7;
}
.cid-uoJyGtTY7h .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoJyGtTY7h .person-container .person-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-uoJyGtTY7h .person-container .person-wrapper {
    margin-bottom: 8px;
  }
}
.cid-uoJyGtTY7h .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-uoJyGtTY7h .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-uoJyGtTY7h .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-uoJyGtTY7h .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .7;
}
.cid-uoJyGtTY7h .mbr-section-title {
  color: #181818;
}
.cid-uoJyGtTY7h .mbr-desc,
.cid-uoJyGtTY7h .mbr-dot {
  color: #181818;
}
.cid-uoJyGtTY7h .mbr-person {
  color: #181818;
}
.cid-totMIH104q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-totMIH104q .container-fluid {
  padding-right: 0;
}
.cid-totMIH104q .mbr-fallback-image.disabled {
  display: none;
}
.cid-totMIH104q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-totMIH104q .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-totMIH104q .title-wrapper {
    padding: 0 12px;
  }
}
.cid-totMIH104q .title {
  display: flex;
  align-items: center;
}
.cid-totMIH104q .title-wrapper {
  width: 100%;
}
.cid-totMIH104q .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-totMIH104q .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-totMIH104q .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-totMIH104q .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-totMIH104q .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-totMIH104q .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-totMIH104q .image-wrapper {
    margin-top: 39px;
  }
}
.cid-totMIH104q .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-totMIH104q .mbr-section-subtitle {
  color: #181818;
}
.cid-totMIH104q .mbr-section-title {
  color: #181818;
}
.cid-totMIH104q .mbr-text {
  color: #454545;
}
.cid-txga8Z8Qom {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txga8Z8Qom .mbr-fallback-image.disabled {
  display: none;
}
.cid-txga8Z8Qom .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txga8Z8Qom .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txga8Z8Qom .row {
    padding: 0 12px;
  }
}
.cid-txga8Z8Qom .item-wrap {
  z-index: 1;
}
.cid-txga8Z8Qom .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txga8Z8Qom .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txga8Z8Qom .mbr-section-title {
  margin-bottom: 0;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txga8Z8Qom .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txga8Z8Qom .mbr-text {
  margin-bottom: 48px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txga8Z8Qom .mbr-text {
    margin-bottom: 39px;
  }
}
.cid-txga8Z8Qom .card {
  margin-bottom: 4rem;
}
.cid-txga8Z8Qom .card .mbr-iconfont {
  font-size: 40px;
  color: #a1a1a1;
}
.cid-txga8Z8Qom .card .mbr-card-title {
  margin: 32px 0 25px;
  line-height: .32;
}
@media (max-width: 992px) {
  .cid-txga8Z8Qom .card .mbr-card-title {
    margin: 26px 0 20px;
  }
}
.cid-txga8Z8Qom .card .mbr-card-subtitle {
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .cid-txga8Z8Qom .card .mbr-card-subtitle {
    margin-bottom: 23px;
  }
}
.cid-txga8Z8Qom .card .mbr-card-subtitle span {
  opacity: .6;
}
.cid-txga8Z8Qom .card .mbr-card-text {
  margin-bottom: 0;
}
.cid-txga8Z8Qom .mbr-card-title {
  color: #181818;
}
.cid-txga8Z8Qom .mbr-card-subtitle {
  color: #181818;
}
.cid-txga8Z8Qom .mbr-card-text {
  color: #454545;
}
.cid-txgnctHQP3 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-txgnctHQP3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgnctHQP3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgnctHQP3 .row {
  justify-content: center;
}
.cid-txgnctHQP3 .row {
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .cid-txgnctHQP3 .row {
    padding: 0 19px;
  }
}
.cid-txgnctHQP3 .item {
  padding: 0 !important;
  height: 230px;
}
@media (max-width: 768px) {
  .cid-txgnctHQP3 .item {
    height: 150px;
  }
}
.cid-txgnctHQP3 .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-txgnctHQP3 .item-wrap {
    padding: 0 5px;
  }
}
.cid-txgnctHQP3 .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-txgnctHQP3 .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txgnctHQP3 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-txgnctHQP3 .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-txgnctHQP3 .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-txgnctHQP3 .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txgnctHQP3 .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-txgnctHQP3 .item-wrapper .item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.cid-txgnctHQP3 .item-wrapper .item-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txgnctHQP3 .item-wrapper .item-link img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 768px) {
  .cid-txgnctHQP3 .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-txgnctHQP3 .item-wrapper .item-link .icon-wrapper {
  position: absolute;
  bottom: 1rem;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.cid-txgnctHQP3 .item-wrapper .item-link .icon-wrapper .mbr-like {
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.cid-txgnctHQP3 .item-wrapper .item-link .icon-wrapper .mbr-like .mbr-iconfont {
  font-size: 11px !important;
  display: block;
  margin-right: 5px;
}
.cid-txgnctHQP3 .item-wrapper .item-link .icon-wrapper .mbr-comment {
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.cid-txgnctHQP3 .item-wrapper .item-link .icon-wrapper .mbr-comment .mbr-iconfont {
  font-size: 11px !important;
  display: block;
  margin-right: 5px;
}
.cid-txgnctHQP3 .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-txgnctHQP3 .mbr-like {
  color: #ffffff;
}
.cid-txgnctHQP3 .mbr-comment,
.cid-txgnctHQP3 .mbr-iconfont {
  color: #ffffff;
}
.cid-txg9IbP0xe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #181818;
}
.cid-txg9IbP0xe .mbr-fallback-image.disabled {
  display: none;
}
.cid-txg9IbP0xe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txg9IbP0xe .row {
  justify-content: center;
}
.cid-txg9IbP0xe .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .row {
    padding: 0 12px;
  }
}
.cid-txg9IbP0xe .item-wrap {
  z-index: 1;
}
.cid-txg9IbP0xe .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .title-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txg9IbP0xe .title-wrapper .mbr-section-subtitle {
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .title-wrapper .mbr-section-subtitle {
    margin-bottom: 6.5px;
  }
}
.cid-txg9IbP0xe .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txg9IbP0xe .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .8;
}
.cid-txg9IbP0xe .card {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .card {
    margin-bottom: 65px;
  }
}
.cid-txg9IbP0xe .card .mbr-iconfont {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .card .mbr-iconfont {
    margin-bottom: 8px;
  }
}
.cid-txg9IbP0xe .card .mbr-card-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .card .mbr-card-title {
    margin-bottom: 13px;
  }
}
.cid-txg9IbP0xe .card .mbr-text {
  margin-bottom: 0;
  opacity: .8;
}
.cid-txg9IbP0xe .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txg9IbP0xe .border-wrap {
    margin-bottom: 65px;
  }
}
.cid-txg9IbP0xe .mbr-section-title {
  color: #ffffff;
}
.cid-txg9IbP0xe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-txg9IbP0xe .mbr-text {
  color: #ffffff;
}
.cid-txg9IbP0xe .mbr-card-title {
  color: #ffffff;
}
.cid-txg9IbP0xe .mbr-card-text {
  color: #ffffff;
}
.cid-txgnbkqFGw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txgnbkqFGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgnbkqFGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgnbkqFGw .row {
  justify-content: center;
}
.cid-txgnbkqFGw .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txgnbkqFGw .row {
    padding: 0 12px;
  }
}
.cid-txgnbkqFGw .item-wrap {
  z-index: 1;
}
.cid-txgnbkqFGw .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txgnbkqFGw .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txgnbkqFGw .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txgnbkqFGw .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txgnbkqFGw .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txgnbkqFGw .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txgnbkqFGw .item {
  margin-bottom: 4rem;
}
.cid-txgnbkqFGw .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txgnbkqFGw .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txgnbkqFGw .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txgnbkqFGw .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txgnbkqFGw .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txgnbkqFGw .item a:hover {
  transform: translateY(-10px);
}
.cid-txgnbkqFGw .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txgnbkqFGw .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txgnbkqFGw .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txgnbkqFGw .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txgnbkqFGw .mbr-card-title {
  color: #181818;
}
.cid-txgnbkqFGw .mbr-card-subtitle {
  color: #454545;
}
.cid-txgmXjoLcA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txgmXjoLcA .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgmXjoLcA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgmXjoLcA .row {
  justify-content: center;
}
.cid-txgmXjoLcA .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-txgmXjoLcA .row {
    padding: 0 12px;
  }
}
.cid-txgmXjoLcA .item-wrap {
  z-index: 1;
}
.cid-txgmXjoLcA .image-wrapper {
  padding: 32px 16px;
}
@media (max-width: 992px) {
  .cid-txgmXjoLcA .image-wrapper {
    padding: 12px 0;
  }
}
.cid-txgmXjoLcA .image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-txgmXjoLcA .image-wrapper img {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .cid-txgmXjoLcA .image-wrapper img {
    height: 150px;
  }
}
.cid-txr52eFQvZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txr52eFQvZ .container-fluid {
  padding-right: 0;
}
.cid-txr52eFQvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txr52eFQvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txr52eFQvZ .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txr52eFQvZ .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txr52eFQvZ .title {
  display: flex;
  align-items: center;
}
.cid-txr52eFQvZ .title-wrapper {
  width: 100%;
}
.cid-txr52eFQvZ .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr52eFQvZ .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txr52eFQvZ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr52eFQvZ .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txr52eFQvZ .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txr52eFQvZ .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txr52eFQvZ .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txr52eFQvZ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txr52eFQvZ .mbr-section-subtitle {
  color: #181818;
}
.cid-txr52eFQvZ .mbr-section-title {
  color: #181818;
}
.cid-txr52eFQvZ .mbr-text {
  color: #454545;
}
.cid-totNh6i9lX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-totNh6i9lX .mbr-fallback-image.disabled {
  display: none;
}
.cid-totNh6i9lX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-totNh6i9lX .row {
  justify-content: center;
}
.cid-totNh6i9lX .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-totNh6i9lX .row {
    padding: 0 12px;
  }
}
.cid-totNh6i9lX .item-wrap {
  z-index: 1;
}
.cid-totNh6i9lX .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-totNh6i9lX .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txkKnaCL5R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txkKnaCL5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkKnaCL5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkKnaCL5R .row {
  justify-content: center;
}
.cid-txkKnaCL5R .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkKnaCL5R .row {
    padding: 0 12px;
  }
}
.cid-txkKnaCL5R .item-wrap {
  z-index: 1;
}
.cid-txkKnaCL5R .mbr-section-subtitle {
  margin-bottom: 46px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-txkKnaCL5R .mbr-section-subtitle {
    margin-bottom: 37px;
  }
}
.cid-txkKnaCL5R .title-wrapper .mbr-section-title {
  margin-bottom: 19.5px;
}
.cid-txkKnaCL5R .text-wrapper .mbr-text {
  margin-bottom: 46px;
  padding-top: 8px;
  opacity: .8;
}
@media (max-width: 992px) {
  .cid-txkKnaCL5R .text-wrapper .mbr-text {
    margin-bottom: 37px;
    padding-top: 6.5px;
  }
}
.cid-txkKnaCL5R .mbr-section-title {
  color: #ffffff;
}
.cid-txkKnaCL5R .mbr-text {
  color: #ffffff;
}
.cid-txgEuEHnII {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txgEuEHnII .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgEuEHnII .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgEuEHnII .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txgEuEHnII .row {
    padding: 0 12px;
  }
}
.cid-txgEuEHnII .item-wrap {
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-txgEuEHnII .text-wrapper {
    margin-bottom: 8rem;
  }
}
.cid-txgEuEHnII .text-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-txgEuEHnII .text-wrapper .mbr-section-title span {
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-txgEuEHnII .text-wrapper .mbr-section-title {
    margin-bottom: 9.5px;
  }
}
.cid-txgEuEHnII .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txgEuEHnII .image-wrapper {
  display: flex;
  overflow: hidden;
}
.cid-txgEuEHnII .image-wrapper .image-container {
  height: 292px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .cid-txgEuEHnII .image-wrapper .image-container {
    height: 152px;
  }
}
.cid-txgEuEHnII .image-wrapper .image-container img {
  width: 190px;
  height: 140px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txgEuEHnII .image-wrapper .image-container img {
    width: 95px;
    height: 70px;
  }
}
.cid-txgEuEHnII .image-wrapper .image-container img:first-child {
  margin-bottom: 12px;
}
.cid-txgEuEHnII .image-wrapper img {
  height: 292px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txgEuEHnII .image-wrapper img {
    height: 152px;
  }
}
.cid-txgEuEHnII .border-wrap_1 {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-txgEuEHnII .border-wrap_1 {
    margin-bottom: 114px;
  }
}
.cid-txgEuEHnII .border-wrap_2 {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .cid-txgEuEHnII .border-wrap_2 {
    margin-top: 65px;
  }
}
.cid-txgEuEHnII .mbr-section-title {
  color: #181818;
}
.cid-txgEuEHnII .mbr-text {
  color: #454545;
}
.cid-txgDj0kLYw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txgDj0kLYw .container-fluid {
  padding-right: 0;
}
.cid-txgDj0kLYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgDj0kLYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgDj0kLYw .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txgDj0kLYw .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txgDj0kLYw .title {
  display: flex;
  align-items: center;
}
.cid-txgDj0kLYw .title-wrapper {
  width: 100%;
}
.cid-txgDj0kLYw .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txgDj0kLYw .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txgDj0kLYw .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txgDj0kLYw .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txgDj0kLYw .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txgDj0kLYw .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txgDj0kLYw .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txgDj0kLYw .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txgDj0kLYw .mbr-section-subtitle {
  color: #181818;
}
.cid-txgDj0kLYw .mbr-section-title {
  color: #181818;
}
.cid-txgDj0kLYw .mbr-text {
  color: #454545;
}
.cid-txgDKLV0Sm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txgDKLV0Sm .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgDKLV0Sm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgDKLV0Sm .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txgDKLV0Sm .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txgDKLV0Sm .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txgDKLV0Sm .row {
    padding: 0 12px;
  }
}
.cid-txgDKLV0Sm .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txgDKLV0Sm .item-wrap {
  z-index: 1;
}
.cid-txgDKLV0Sm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txgDKLV0Sm .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txgDKLV0Sm .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txgDKLV0Sm .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txgDKLV0Sm .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txgDKLV0Sm .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txgDKLV0Sm .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txgDKLV0Sm .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txgDKLV0Sm .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txgDKLV0Sm .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txgDKLV0Sm .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txgDKLV0Sm .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txgDKLV0Sm .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txgDKLV0Sm .mbr-section-btn {
    text-align: center;
  }
}
.cid-txgDKLV0Sm .mbr-section-title {
  color: #ffffff;
}
.cid-txgDKLV0Sm .mbr-text {
  color: #ffffff;
}
.cid-txgDKLV0Sm .mbr-price {
  color: #ffffff;
}
.cid-txgDKLV0Sm .mbr-max-price {
  color: #ffffff;
}
.cid-tx9E27V9cL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tx9E27V9cL .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tx9E27V9cL .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tx9E27V9cL .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tx9E27V9cL .mbr-text {
    text-align: center;
  }
}
.cid-tx9DXAkhhW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tx9DXAkhhW .card-img {
  background-color: #fff;
}
.cid-tx9DXAkhhW .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tx9DXAkhhW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tx9DXAkhhW p {
  text-align: left;
}
.cid-tx9DXAkhhW .mbr-text {
  color: #767676;
}
.cid-tx9DXAkhhW .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tx9DXAkhhW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tx9DXAkhhW .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tx9DXAkhhW .card-title {
  color: #149dcc;
}
.cid-txl8CKz5Xv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txl8CKz5Xv h2 {
  text-align: left;
}
.cid-txl8CKz5Xv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-txl8CKz5Xv p {
  color: #767676;
  text-align: left;
}
.cid-txl8CKz5Xv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-txl8CKz5Xv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-txl8CKz5Xv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-txl8CKz5Xv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-txl8CKz5Xv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-txl8CKz5Xv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-txl8CKz5Xv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-txl8CKz5Xv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-txl8CKz5Xv .card-img span {
    font-size: 40px !important;
  }
}
.cid-totYzc5bgW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-totYzc5bgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-totYzc5bgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-totYzc5bgW .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-totYzc5bgW .row {
    padding: 0 12px;
  }
}
.cid-totYzc5bgW .item-wrap {
  z-index: 1;
}
.cid-totYzc5bgW .title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-totYzc5bgW .image-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-totYzc5bgW .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-totYzc5bgW .image-wrapper {
    margin-bottom: 32px;
    padding: 0;
  }
}
.cid-totYzc5bgW .image-wrapper img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.cid-totYzc5bgW .desc-container .desc-wrapper {
  display: inline-flex;
}
.cid-totYzc5bgW .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
}
.cid-totYzc5bgW .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  opacity: .7;
}
.cid-totYzc5bgW .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-totYzc5bgW .title-wrapper {
  margin-bottom: 18px;
}
@media (max-width: 992px) {
  .cid-totYzc5bgW .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-totYzc5bgW .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: .3s ease;
}
.cid-totYzc5bgW .title-wrapper .mbr-section-title:hover {
  opacity: .7;
}
.cid-totYzc5bgW .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-totYzc5bgW .person-container .person-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-totYzc5bgW .person-container .person-wrapper {
    margin-bottom: 8px;
  }
}
.cid-totYzc5bgW .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-totYzc5bgW .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-totYzc5bgW .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-totYzc5bgW .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .7;
}
.cid-totYzc5bgW .mbr-section-title {
  color: #181818;
}
.cid-totYzc5bgW .mbr-desc,
.cid-totYzc5bgW .mbr-dot {
  color: #181818;
}
.cid-totYzc5bgW .mbr-person {
  color: #181818;
}
.cid-tou04BfIz0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tou04BfIz0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tou04BfIz0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tou04BfIz0 .row {
  justify-content: center;
}
.cid-tou04BfIz0 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tou04BfIz0 .row {
    padding: 0 12px;
  }
}
.cid-tou04BfIz0 .item-wrap {
  z-index: 1;
}
.cid-tou04BfIz0 .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tou04BfIz0 .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-tou04BfIz0 .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-tou04BfIz0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tou04BfIz0 .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-tou04BfIz0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tou04BfIz0 .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tou04BfIz0 .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-tou04BfIz0 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tou04BfIz0 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-tou04BfIz0 .mbr-section-title {
  color: #ffffff;
}
.cid-tou04BfIz0 .mbr-text {
  color: #ffffff;
}
.cid-totYxhJxUQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-totYxhJxUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-totYxhJxUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-totYxhJxUQ .row {
  justify-content: center;
}
.cid-totYxhJxUQ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-totYxhJxUQ .row {
    padding: 0 12px;
  }
}
.cid-totYxhJxUQ .item-wrap {
  z-index: 1;
}
.cid-totYxhJxUQ .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-totYxhJxUQ .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txb7FOrm77 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txb7FOrm77 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txb7FOrm77 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txb7FOrm77 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txb7FOrm77 .row {
    padding: 0 12px;
  }
}
.cid-txb7FOrm77 .item-wrap {
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-txb7FOrm77 .text-wrapper {
    margin-bottom: 8rem;
  }
}
.cid-txb7FOrm77 .text-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-txb7FOrm77 .text-wrapper .mbr-section-title span {
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-txb7FOrm77 .text-wrapper .mbr-section-title {
    margin-bottom: 9.5px;
  }
}
.cid-txb7FOrm77 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txb7FOrm77 .image-wrapper {
  display: flex;
  overflow: hidden;
}
.cid-txb7FOrm77 .image-wrapper .image-container {
  height: 292px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .cid-txb7FOrm77 .image-wrapper .image-container {
    height: 152px;
  }
}
.cid-txb7FOrm77 .image-wrapper .image-container img {
  width: 190px;
  height: 140px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txb7FOrm77 .image-wrapper .image-container img {
    width: 95px;
    height: 70px;
  }
}
.cid-txb7FOrm77 .image-wrapper .image-container img:first-child {
  margin-bottom: 12px;
}
.cid-txb7FOrm77 .image-wrapper img {
  height: 292px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txb7FOrm77 .image-wrapper img {
    height: 152px;
  }
}
.cid-txb7FOrm77 .border-wrap_1 {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-txb7FOrm77 .border-wrap_1 {
    margin-bottom: 114px;
  }
}
.cid-txb7FOrm77 .border-wrap_2 {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .cid-txb7FOrm77 .border-wrap_2 {
    margin-top: 65px;
  }
}
.cid-txb7FOrm77 .mbr-section-title {
  color: #181818;
}
.cid-txb7FOrm77 .mbr-text {
  color: #454545;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txkQtiaHSS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txkQtiaHSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkQtiaHSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkQtiaHSS .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txkQtiaHSS .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txkQtiaHSS .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkQtiaHSS .row {
    padding: 0 12px;
  }
}
.cid-txkQtiaHSS .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txkQtiaHSS .item-wrap {
  z-index: 1;
}
.cid-txkQtiaHSS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQtiaHSS .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txkQtiaHSS .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQtiaHSS .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQtiaHSS .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQtiaHSS .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQtiaHSS .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txkQtiaHSS .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txkQtiaHSS .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txkQtiaHSS .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txkQtiaHSS .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txkQtiaHSS .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txkQtiaHSS .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQtiaHSS .mbr-section-btn {
    text-align: center;
  }
}
.cid-txkQtiaHSS .mbr-section-title {
  color: #ffffff;
}
.cid-txkQtiaHSS .mbr-text {
  color: #ffffff;
}
.cid-txkQtiaHSS .mbr-price {
  color: #ffffff;
}
.cid-txkQtiaHSS .mbr-max-price {
  color: #ffffff;
}
.cid-tzfTlchEoi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzfTlchEoi .container-fluid {
  padding-right: 0;
}
.cid-tzfTlchEoi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfTlchEoi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzfTlchEoi .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzfTlchEoi .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzfTlchEoi .title {
  display: flex;
  align-items: center;
}
.cid-tzfTlchEoi .title-wrapper {
  width: 100%;
}
.cid-tzfTlchEoi .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzfTlchEoi .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzfTlchEoi .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzfTlchEoi .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzfTlchEoi .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzfTlchEoi .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzfTlchEoi .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzfTlchEoi .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzfTlchEoi .mbr-section-subtitle {
  color: #181818;
}
.cid-tzfTlchEoi .mbr-section-title {
  color: #181818;
}
.cid-tzfTlchEoi .mbr-text {
  color: #454545;
}
.cid-tx98xJiK8N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tx98xJiK8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx98xJiK8N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx98xJiK8N .row {
  justify-content: center;
}
.cid-tx98xJiK8N .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tx98xJiK8N .row {
    padding: 0 12px;
  }
}
.cid-tx98xJiK8N .item-wrap {
  z-index: 1;
}
.cid-tx98xJiK8N .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tx98xJiK8N .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-tx98xJiK8N .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-tx98xJiK8N .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tx98xJiK8N .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-tx98xJiK8N .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tx98xJiK8N .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tx98xJiK8N .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-tx98xJiK8N .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tx98xJiK8N .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-tx98xJiK8N .mbr-section-title {
  color: #ffffff;
}
.cid-tx98xJiK8N .mbr-text {
  color: #ffffff;
}
.cid-tx98fpBC5I {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/00-3-1046x1395.jpg");
}
.cid-tx98fpBC5I .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tx98fpBC5I .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-tx98fpBC5I .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tx98fpBC5I .time-line-date-content {
  margin-right: 2rem;
}
.cid-tx98fpBC5I .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-tx98fpBC5I .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tx98fpBC5I .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tx98fpBC5I .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tx98fpBC5I .mbr-timeline-date,
.cid-tx98fpBC5I .timeline-text-content {
  transition: all .4s;
}
.cid-tx98fpBC5I .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tx98fpBC5I .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tx98fpBC5I .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tx98fpBC5I .reverse .time-line-date-content p {
  float: left;
}
.cid-tx98fpBC5I .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-tx98fpBC5I .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tx98fpBC5I .iconBackground {
    left: 0 !important;
  }
  .cid-tx98fpBC5I .separline:before {
    left: 0!important;
  }
  .cid-tx98fpBC5I .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tx98fpBC5I .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tx98fpBC5I .time-line-date-content p {
    float: left !important;
  }
  .cid-tx98fpBC5I .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tx98fpBC5I .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tx98fpBC5I .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-tx98fpBC5I .mbr-section-title {
  color: #000000;
}
.cid-txb9ND5Mdx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txb9ND5Mdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-txb9ND5Mdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txb9ND5Mdx .row {
  justify-content: center;
}
.cid-txb9ND5Mdx .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txb9ND5Mdx .row {
    padding: 0 12px;
  }
}
.cid-txb9ND5Mdx .item-wrap {
  z-index: 1;
}
.cid-txb9ND5Mdx .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txb9ND5Mdx .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tx98iKtK33 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tx98iKtK33 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tx98iKtK33 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx98iKtK33 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tx98iKtK33 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tx98iKtK33 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tx98iKtK33 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tx98iKtK33 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tx98iKtK33 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tx98iKtK33 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txkQJH7HP3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txkQJH7HP3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkQJH7HP3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkQJH7HP3 .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txkQJH7HP3 .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txkQJH7HP3 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkQJH7HP3 .row {
    padding: 0 12px;
  }
}
.cid-txkQJH7HP3 .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txkQJH7HP3 .item-wrap {
  z-index: 1;
}
.cid-txkQJH7HP3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQJH7HP3 .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txkQJH7HP3 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQJH7HP3 .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQJH7HP3 .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQJH7HP3 .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQJH7HP3 .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txkQJH7HP3 .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txkQJH7HP3 .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txkQJH7HP3 .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txkQJH7HP3 .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txkQJH7HP3 .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txkQJH7HP3 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQJH7HP3 .mbr-section-btn {
    text-align: center;
  }
}
.cid-txkQJH7HP3 .mbr-section-title {
  color: #ffffff;
}
.cid-txkQJH7HP3 .mbr-text {
  color: #ffffff;
}
.cid-txkQJH7HP3 .mbr-price {
  color: #ffffff;
}
.cid-txkQJH7HP3 .mbr-max-price {
  color: #ffffff;
}
.cid-txr1q65pL9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txr1q65pL9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txr1q65pL9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txr1q65pL9 .row {
  justify-content: center;
}
.cid-txr1q65pL9 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txr1q65pL9 .row {
    padding: 0 12px;
  }
}
.cid-txr1q65pL9 .item-wrap {
  z-index: 1;
}
.cid-txr1q65pL9 .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txr0Am1uRc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-txr0Am1uRc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txr0Am1uRc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txr0Am1uRc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txr0Am1uRc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txr0Am1uRc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txr0Am1uRc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txr0Am1uRc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-txr0Am1uRc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-txr0Am1uRc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txr2d45GYs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txr2d45GYs .container-fluid {
  padding-right: 0;
}
.cid-txr2d45GYs .mbr-fallback-image.disabled {
  display: none;
}
.cid-txr2d45GYs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txr2d45GYs .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txr2d45GYs .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txr2d45GYs .title {
  display: flex;
  align-items: center;
}
.cid-txr2d45GYs .title-wrapper {
  width: 100%;
}
.cid-txr2d45GYs .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr2d45GYs .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txr2d45GYs .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr2d45GYs .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txr2d45GYs .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txr2d45GYs .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txr2d45GYs .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txr2d45GYs .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txr2d45GYs .mbr-section-subtitle {
  color: #181818;
}
.cid-txr2d45GYs .mbr-section-title {
  color: #181818;
}
.cid-txr2d45GYs .mbr-text {
  color: #454545;
}
.cid-txr2oxCcRB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txr2oxCcRB .container-fluid {
  padding-right: 0;
  padding-right: 32px;
  padding-left: 0;
}
.cid-txr2oxCcRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-txr2oxCcRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txr2oxCcRB .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txr2oxCcRB .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txr2oxCcRB .title {
  display: flex;
  align-items: center;
}
.cid-txr2oxCcRB .title-wrapper {
  width: 100%;
}
.cid-txr2oxCcRB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr2oxCcRB .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txr2oxCcRB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr2oxCcRB .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txr2oxCcRB .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txr2oxCcRB .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txr2oxCcRB .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txr2oxCcRB .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txr2oxCcRB .mbr-section-subtitle {
  color: #181818;
}
.cid-txr2oxCcRB .mbr-section-title {
  color: #181818;
}
.cid-txr2oxCcRB .mbr-text {
  color: #454545;
}
.cid-txr2p9K2dF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txr2p9K2dF .container-fluid {
  padding-right: 0;
}
.cid-txr2p9K2dF .mbr-fallback-image.disabled {
  display: none;
}
.cid-txr2p9K2dF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txr2p9K2dF .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txr2p9K2dF .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txr2p9K2dF .title {
  display: flex;
  align-items: center;
}
.cid-txr2p9K2dF .title-wrapper {
  width: 100%;
}
.cid-txr2p9K2dF .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr2p9K2dF .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txr2p9K2dF .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txr2p9K2dF .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txr2p9K2dF .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txr2p9K2dF .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txr2p9K2dF .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txr2p9K2dF .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txr2p9K2dF .mbr-section-subtitle {
  color: #181818;
}
.cid-txr2p9K2dF .mbr-section-title {
  color: #181818;
}
.cid-txr2p9K2dF .mbr-text {
  color: #454545;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txkQMFB7dL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txkQMFB7dL .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkQMFB7dL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkQMFB7dL .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txkQMFB7dL .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txkQMFB7dL .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkQMFB7dL .row {
    padding: 0 12px;
  }
}
.cid-txkQMFB7dL .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txkQMFB7dL .item-wrap {
  z-index: 1;
}
.cid-txkQMFB7dL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQMFB7dL .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txkQMFB7dL .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQMFB7dL .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQMFB7dL .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQMFB7dL .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQMFB7dL .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txkQMFB7dL .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txkQMFB7dL .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txkQMFB7dL .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txkQMFB7dL .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txkQMFB7dL .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txkQMFB7dL .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQMFB7dL .mbr-section-btn {
    text-align: center;
  }
}
.cid-txkQMFB7dL .mbr-section-title {
  color: #ffffff;
}
.cid-txkQMFB7dL .mbr-text {
  color: #ffffff;
}
.cid-txkQMFB7dL .mbr-price {
  color: #ffffff;
}
.cid-txkQMFB7dL .mbr-max-price {
  color: #ffffff;
}
.cid-txqEe9UcPu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-txqEe9UcPu .container-fluid {
  padding-right: 0;
}
.cid-txqEe9UcPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqEe9UcPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqEe9UcPu .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqEe9UcPu .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txqEe9UcPu .title {
  display: flex;
  align-items: center;
}
.cid-txqEe9UcPu .title-wrapper {
  width: 100%;
}
.cid-txqEe9UcPu .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txqEe9UcPu .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txqEe9UcPu .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txqEe9UcPu .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txqEe9UcPu .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txqEe9UcPu .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txqEe9UcPu .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txqEe9UcPu .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txqEe9UcPu .mbr-section-subtitle {
  color: #181818;
}
.cid-txqEe9UcPu .mbr-section-title {
  color: #181818;
}
.cid-txqEe9UcPu .mbr-text {
  color: #454545;
}
.cid-txqH3qTvhj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txqH3qTvhj .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqH3qTvhj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqH3qTvhj .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqH3qTvhj .row {
    padding: 0 12px;
  }
}
.cid-txqH3qTvhj .item-wrap {
  z-index: 1;
}
.cid-txqH3qTvhj .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-bottom: 32px;
}
.cid-txqH3qTvhj .desc-container .desc-wrapper {
  display: inline-flex;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.cid-txqH3qTvhj .desc-container .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.cid-txqH3qTvhj .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  color: #ae856c;
}
.cid-txqH3qTvhj .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-txqH3qTvhj .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txqH3qTvhj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-txqH3qTvhj .title-wrapper .mbr-section-title:hover {
  color: #ae856c;
}
.cid-txqH3qTvhj .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txqH3qTvhj .date-wrapper .mbr-date {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txqH3qTvhj .date-wrapper .mbr-date {
    text-align: left;
  }
}
.cid-txqH3qTvhj .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-txqH3qTvhj .image-wrapper {
    justify-content: flex-start;
    padding-left: 0;
  }
}
@media (max-width: 425px) {
  .cid-txqH3qTvhj .image-wrapper {
    padding: 0;
  }
}
.cid-txqH3qTvhj .image-wrapper .image-link {
  display: block;
  overflow: hidden;
}
.cid-txqH3qTvhj .image-wrapper .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txqH3qTvhj .image-wrapper .image-link img {
  width: 178px;
  height: 128px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-txqH3qTvhj .mbr-section-title {
  color: #181818;
}
.cid-txqH3qTvhj .mbr-desc,
.cid-txqH3qTvhj .mbr-dot {
  color: #181818;
}
.cid-txqH3qTvhj .mbr-date {
  color: #181818;
  text-align: right;
}
.cid-txqEfKifvg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txqEfKifvg .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqEfKifvg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqEfKifvg .row {
  justify-content: center;
}
.cid-txqEfKifvg .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqEfKifvg .row {
    padding: 0 12px;
  }
}
.cid-txqEfKifvg .item-wrap {
  z-index: 1;
}
.cid-txqEfKifvg .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txqH4laNxQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txqH4laNxQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqH4laNxQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqH4laNxQ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqH4laNxQ .row {
    padding: 0 12px;
  }
}
.cid-txqH4laNxQ .item-wrap {
  z-index: 1;
}
.cid-txqH4laNxQ .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-bottom: 32px;
}
.cid-txqH4laNxQ .desc-container .desc-wrapper {
  display: inline-flex;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.cid-txqH4laNxQ .desc-container .desc-wrapper .mbr-desc {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.cid-txqH4laNxQ .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  color: #ae856c;
}
.cid-txqH4laNxQ .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-txqH4laNxQ .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txqH4laNxQ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-txqH4laNxQ .title-wrapper .mbr-section-title:hover {
  color: #ae856c;
}
.cid-txqH4laNxQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txqH4laNxQ .date-wrapper .mbr-date {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txqH4laNxQ .date-wrapper .mbr-date {
    text-align: left;
  }
}
.cid-txqH4laNxQ .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-txqH4laNxQ .image-wrapper {
    justify-content: flex-start;
    padding-left: 0;
  }
}
@media (max-width: 425px) {
  .cid-txqH4laNxQ .image-wrapper {
    padding: 0;
  }
}
.cid-txqH4laNxQ .image-wrapper .image-link {
  display: block;
  overflow: hidden;
}
.cid-txqH4laNxQ .image-wrapper .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txqH4laNxQ .image-wrapper .image-link img {
  width: 178px;
  height: 128px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-txqH4laNxQ .mbr-section-title {
  color: #181818;
}
.cid-txqH4laNxQ .mbr-desc,
.cid-txqH4laNxQ .mbr-dot {
  color: #181818;
}
.cid-txqH4laNxQ .mbr-date {
  color: #181818;
  text-align: right;
}
.cid-txqHJTrMy6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txqHJTrMy6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqHJTrMy6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqHJTrMy6 .row {
  justify-content: center;
}
.cid-txqHJTrMy6 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqHJTrMy6 .row {
    padding: 0 12px;
  }
}
.cid-txqHJTrMy6 .item-wrap {
  z-index: 1;
}
.cid-txqHJTrMy6 .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txkQP0zINK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txkQP0zINK .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkQP0zINK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkQP0zINK .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txkQP0zINK .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txkQP0zINK .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkQP0zINK .row {
    padding: 0 12px;
  }
}
.cid-txkQP0zINK .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txkQP0zINK .item-wrap {
  z-index: 1;
}
.cid-txkQP0zINK .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQP0zINK .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txkQP0zINK .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQP0zINK .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQP0zINK .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQP0zINK .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQP0zINK .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txkQP0zINK .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txkQP0zINK .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txkQP0zINK .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txkQP0zINK .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txkQP0zINK .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txkQP0zINK .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQP0zINK .mbr-section-btn {
    text-align: center;
  }
}
.cid-txkQP0zINK .mbr-section-title {
  color: #ffffff;
}
.cid-txkQP0zINK .mbr-text {
  color: #ffffff;
}
.cid-txkQP0zINK .mbr-price {
  color: #ffffff;
}
.cid-txkQP0zINK .mbr-max-price {
  color: #ffffff;
}
.cid-tzfULAdBWa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzfULAdBWa .container-fluid {
  padding-right: 0;
}
.cid-tzfULAdBWa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfULAdBWa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzfULAdBWa .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzfULAdBWa .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzfULAdBWa .title {
  display: flex;
  align-items: center;
}
.cid-tzfULAdBWa .title-wrapper {
  width: 100%;
}
.cid-tzfULAdBWa .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzfULAdBWa .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzfULAdBWa .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzfULAdBWa .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzfULAdBWa .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzfULAdBWa .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzfULAdBWa .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzfULAdBWa .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzfULAdBWa .mbr-section-subtitle {
  color: #181818;
}
.cid-tzfULAdBWa .mbr-section-title {
  color: #181818;
}
.cid-tzfULAdBWa .mbr-text {
  color: #454545;
}
.cid-txqNxTRGMO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txqNxTRGMO .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqNxTRGMO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqNxTRGMO .row {
  justify-content: center;
}
.cid-txqNxTRGMO .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqNxTRGMO .row {
    padding: 0 12px;
  }
}
.cid-txqNxTRGMO .item-wrap {
  z-index: 1;
}
.cid-txqNxTRGMO .mbr-section-subtitle {
  margin-bottom: 46px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-txqNxTRGMO .mbr-section-subtitle {
    margin-bottom: 37px;
  }
}
.cid-txqNxTRGMO .title-wrapper .mbr-section-title {
  margin-bottom: 19.5px;
}
.cid-txqNxTRGMO .text-wrapper .mbr-text {
  margin-bottom: 46px;
  padding-top: 8px;
  opacity: .8;
}
@media (max-width: 992px) {
  .cid-txqNxTRGMO .text-wrapper .mbr-text {
    margin-bottom: 37px;
    padding-top: 6.5px;
  }
}
.cid-txqNxTRGMO .mbr-section-title {
  color: #ffffff;
}
.cid-txqNxTRGMO .mbr-text {
  color: #ffffff;
}
.cid-txqLJdxwYs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-txqLJdxwYs .card-img {
  background-color: #fff;
}
.cid-txqLJdxwYs .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-txqLJdxwYs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-txqLJdxwYs p {
  text-align: left;
}
.cid-txqLJdxwYs .mbr-text {
  color: #767676;
}
.cid-txqLJdxwYs .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-txqLJdxwYs .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-txqLJdxwYs .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-txqLKxf3g0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #82786e;
}
.cid-txqLKxf3g0 .card-img {
  background-color: #fff;
}
.cid-txqLKxf3g0 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-txqLKxf3g0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-txqLKxf3g0 p {
  text-align: left;
}
.cid-txqLKxf3g0 .mbr-text {
  color: #767676;
}
.cid-txqLKxf3g0 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-txqLKxf3g0 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-txqLKxf3g0 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-txqLMzGfnn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-txqLMzGfnn .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-txqLMzGfnn .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-txqLMzGfnn .mbr-text {
  color: #232323;
}
.cid-txqLPmloXl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-txqLPmloXl .mbr-text,
.cid-txqLPmloXl blockquote {
  color: #767676;
}
.cid-txqLPmloXl .mbr-text {
  color: #232323;
}
.cid-txqLS3pPZg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-txqLS3pPZg .card-img {
  background-color: #fff;
}
.cid-txqLS3pPZg .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-txqLS3pPZg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-txqLS3pPZg p {
  text-align: left;
}
.cid-txqLS3pPZg .mbr-text {
  color: #232323;
}
.cid-txqLS3pPZg .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-txqLS3pPZg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-txqLS3pPZg .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-txqLS3pPZg .card-title {
  color: #ff3366;
}
.cid-txqLT8q6Dq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-txqLT8q6Dq .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-txqLT8q6Dq div.b {
  padding-top: 2rem;
}
.cid-txqNa23cg5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txqNa23cg5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqNa23cg5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqNa23cg5 .row {
  justify-content: center;
}
.cid-txqNa23cg5 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqNa23cg5 .row {
    padding: 0 12px;
  }
}
.cid-txqNa23cg5 .item-wrap {
  z-index: 1;
}
.cid-txqNa23cg5 .mbr-section-subtitle {
  margin-bottom: 46px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-txqNa23cg5 .mbr-section-subtitle {
    margin-bottom: 37px;
  }
}
.cid-txqNa23cg5 .title-wrapper .mbr-section-title {
  margin-bottom: 19.5px;
}
.cid-txqNa23cg5 .text-wrapper .mbr-text {
  margin-bottom: 46px;
  padding-top: 8px;
  opacity: .8;
}
@media (max-width: 992px) {
  .cid-txqNa23cg5 .text-wrapper .mbr-text {
    margin-bottom: 37px;
    padding-top: 6.5px;
  }
}
.cid-txqNa23cg5 .mbr-section-title {
  color: #ffffff;
}
.cid-txqNa23cg5 .mbr-text {
  color: #ffffff;
}
.cid-txqNfa5h32 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txqNfa5h32 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-txqNfa5h32 p {
  color: #767676;
  text-align: left;
}
.cid-txqNfa5h32 .card-box {
  padding-top: 2rem;
}
.cid-txqNfa5h32 .card-wrapper {
  height: 100%;
}
.cid-txqNg8tGfM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #767676;
}
.cid-txqNg8tGfM .card-img {
  background-color: #fff;
}
.cid-txqNg8tGfM .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-txqNg8tGfM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-txqNg8tGfM p {
  text-align: left;
}
.cid-txqNg8tGfM .mbr-text {
  color: #767676;
}
.cid-txqNg8tGfM .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-txqNg8tGfM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-txqNg8tGfM .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-txqNh9sbAW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-txqNh9sbAW .card-img {
  background-color: #fff;
}
.cid-txqNh9sbAW .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-txqNh9sbAW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-txqNh9sbAW p {
  text-align: left;
}
.cid-txqNh9sbAW .mbr-text {
  color: #767676;
}
.cid-txqNh9sbAW .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-txqNh9sbAW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-txqNh9sbAW .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-txqNibtHlr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #767676;
}
.cid-txqNibtHlr .card-img {
  background-color: #fff;
}
.cid-txqNibtHlr .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-txqNibtHlr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-txqNibtHlr p {
  text-align: left;
}
.cid-txqNibtHlr .mbr-text {
  color: #767676;
}
.cid-txqNibtHlr .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-txqNibtHlr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-txqNibtHlr .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txkQQZJGbj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txkQQZJGbj .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkQQZJGbj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkQQZJGbj .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txkQQZJGbj .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txkQQZJGbj .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkQQZJGbj .row {
    padding: 0 12px;
  }
}
.cid-txkQQZJGbj .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txkQQZJGbj .item-wrap {
  z-index: 1;
}
.cid-txkQQZJGbj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQQZJGbj .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txkQQZJGbj .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQQZJGbj .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQQZJGbj .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQQZJGbj .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQQZJGbj .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txkQQZJGbj .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txkQQZJGbj .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txkQQZJGbj .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txkQQZJGbj .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txkQQZJGbj .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txkQQZJGbj .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQQZJGbj .mbr-section-btn {
    text-align: center;
  }
}
.cid-txkQQZJGbj .mbr-section-title {
  color: #ffffff;
}
.cid-txkQQZJGbj .mbr-text {
  color: #ffffff;
}
.cid-txkQQZJGbj .mbr-price {
  color: #ffffff;
}
.cid-txkQQZJGbj .mbr-max-price {
  color: #ffffff;
}
.cid-u4I6JTLzrp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4I6JTLzrp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4I6JTLzrp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4I6JTLzrp .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-u4I6JTLzrp .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-u4I6JTLzrp .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-u4I6JTLzrp .row {
    padding: 0 12px;
  }
}
.cid-u4I6JTLzrp .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-u4I6JTLzrp .item-wrap {
  z-index: 1;
}
.cid-u4I6JTLzrp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u4I6JTLzrp .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-u4I6JTLzrp .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u4I6JTLzrp .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-u4I6JTLzrp .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u4I6JTLzrp .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-u4I6JTLzrp .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-u4I6JTLzrp .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-u4I6JTLzrp .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-u4I6JTLzrp .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-u4I6JTLzrp .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-u4I6JTLzrp .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-u4I6JTLzrp .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u4I6JTLzrp .mbr-section-btn {
    text-align: center;
  }
}
.cid-u4I6JTLzrp .mbr-section-title {
  color: #ffffff;
}
.cid-u4I6JTLzrp .mbr-text {
  color: #ffffff;
}
.cid-u4I6JTLzrp .mbr-price {
  color: #ffffff;
}
.cid-u4I6JTLzrp .mbr-max-price {
  color: #ffffff;
}
.cid-u4I6JTLzrp .mbr-section-title,
.cid-u4I6JTLzrp .mbr-section-btn {
  text-align: right;
}
.cid-v0VSu5nupS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-v0VSu5nupS .container-fluid {
  padding-right: 0;
}
.cid-v0VSu5nupS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0VSu5nupS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0VSu5nupS .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-v0VSu5nupS .title-wrapper {
    padding: 0 12px;
  }
}
.cid-v0VSu5nupS .title {
  display: flex;
  align-items: center;
}
.cid-v0VSu5nupS .title-wrapper {
  width: 100%;
}
.cid-v0VSu5nupS .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v0VSu5nupS .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-v0VSu5nupS .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v0VSu5nupS .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-v0VSu5nupS .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v0VSu5nupS .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-v0VSu5nupS .image-wrapper {
    margin-top: 39px;
  }
}
.cid-v0VSu5nupS .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v0VSu5nupS .mbr-section-subtitle {
  color: #181818;
}
.cid-v0VSu5nupS .mbr-section-title {
  color: #181818;
}
.cid-v0VSu5nupS .mbr-text {
  color: #454545;
}
.cid-v0VTiT3uLZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-v0VTiT3uLZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0VTiT3uLZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0VTiT3uLZ .row {
  justify-content: center;
}
.cid-v0VTiT3uLZ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-v0VTiT3uLZ .row {
    padding: 0 12px;
  }
}
.cid-v0VTiT3uLZ .item-wrap {
  z-index: 1;
}
.cid-v0VTiT3uLZ .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-v0VTiT3uLZ .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-uWYN0S4iAJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uWYN0S4iAJ .container-fluid {
  padding-right: 0;
}
.cid-uWYN0S4iAJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWYN0S4iAJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWYN0S4iAJ .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uWYN0S4iAJ .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uWYN0S4iAJ .title {
  display: flex;
  align-items: center;
}
.cid-uWYN0S4iAJ .title-wrapper {
  width: 100%;
}
.cid-uWYN0S4iAJ .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uWYN0S4iAJ .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uWYN0S4iAJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uWYN0S4iAJ .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uWYN0S4iAJ .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uWYN0S4iAJ .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uWYN0S4iAJ .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uWYN0S4iAJ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWYN0S4iAJ .mbr-section-subtitle {
  color: #181818;
}
.cid-uWYN0S4iAJ .mbr-section-title {
  color: #181818;
}
.cid-uWYN0S4iAJ .mbr-text {
  color: #454545;
}
.cid-uTnAqHmMHT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uTnAqHmMHT .container-fluid {
  padding-right: 0;
}
.cid-uTnAqHmMHT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTnAqHmMHT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTnAqHmMHT .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uTnAqHmMHT .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uTnAqHmMHT .title {
  display: flex;
  align-items: center;
}
.cid-uTnAqHmMHT .title-wrapper {
  width: 100%;
}
.cid-uTnAqHmMHT .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uTnAqHmMHT .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uTnAqHmMHT .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uTnAqHmMHT .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uTnAqHmMHT .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uTnAqHmMHT .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uTnAqHmMHT .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uTnAqHmMHT .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTnAqHmMHT .mbr-section-subtitle {
  color: #181818;
}
.cid-uTnAqHmMHT .mbr-section-title {
  color: #181818;
}
.cid-uTnAqHmMHT .mbr-text {
  color: #454545;
}
.cid-uTnAs9I53i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uTnAs9I53i .container-fluid {
  padding-right: 0;
}
.cid-uTnAs9I53i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTnAs9I53i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTnAs9I53i .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uTnAs9I53i .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uTnAs9I53i .title {
  display: flex;
  align-items: center;
}
.cid-uTnAs9I53i .title-wrapper {
  width: 100%;
}
.cid-uTnAs9I53i .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uTnAs9I53i .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uTnAs9I53i .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uTnAs9I53i .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uTnAs9I53i .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uTnAs9I53i .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uTnAs9I53i .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uTnAs9I53i .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTnAs9I53i .mbr-section-subtitle {
  color: #181818;
}
.cid-uTnAs9I53i .mbr-section-title {
  color: #181818;
}
.cid-uTnAs9I53i .mbr-text {
  color: #454545;
}
.cid-uyP0MmTSgn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uyP0MmTSgn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyP0MmTSgn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyP0MmTSgn .row {
  justify-content: center;
}
.cid-uyP0MmTSgn .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uyP0MmTSgn .row {
    padding: 0 12px;
  }
}
.cid-uyP0MmTSgn .item-wrap {
  z-index: 1;
}
.cid-uyP0MmTSgn .item-wrap-video {
  z-index: 1;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uyP0MmTSgn .item-wrap-video {
    padding-right: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uyP0MmTSgn .item-wrap-video {
    padding: 0 12px;
  }
}
.cid-uyP0MmTSgn .item-wrap-image {
  z-index: 1;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uyP0MmTSgn .item-wrap-image {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .cid-uyP0MmTSgn .item-wrap-image {
    padding: 0 12px;
  }
}
.cid-uyP0MmTSgn .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-uyP0MmTSgn .mbr-section-subtitle {
  margin-bottom: 64px;
  color: #181818;
}
.cid-uyP0MmTSgn .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-uyP0MmTSgn .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-uyP0MmTSgn .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-uyP0MmTSgn .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-uyP0MmTSgn .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-uyP0MmTSgn .card .card-link {
  width: 100%;
  display: block;
}
.cid-uyP0MmTSgn .card .card-link:hover .image-wrapper img {
  transform: scale(1.1, 1.1);
}
.cid-uyP0MmTSgn .card .card-link:hover .mbr-card-title {
  color: #ae856c;
}
.cid-uyP0MmTSgn .video-wrapper {
  width: 100%;
  height: 420px;
  margin-bottom: 32px;
}
.cid-uyP0MmTSgn .video-wrapper .app-video-wrapper {
  height: 100%;
}
.cid-uyP0MmTSgn .video-wrapper .app-video-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyP0MmTSgn .video-wrapper iframe {
  height: 420px !important;
}
@media (max-width: 992px) {
  .cid-uyP0MmTSgn .video-wrapper iframe {
    height: 210px !important;
  }
}
@media (max-width: 768px) {
  .cid-uyP0MmTSgn .video-wrapper iframe {
    height: 150px !important;
  }
}
@media (max-width: 992px) {
  .cid-uyP0MmTSgn .video-wrapper {
    height: 210px;
  }
}
.cid-uyP0MmTSgn .image-wrapper {
  margin-bottom: 32px;
  overflow: hidden;
}
.cid-uyP0MmTSgn .image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uyP0MmTSgn .image-wrapper img {
    height: 210px;
  }
}
@media (max-width: 768px) {
  .cid-uyP0MmTSgn .image-wrapper img {
    height: 150px;
  }
}
.cid-uyP0MmTSgn .mbr-card-title {
  margin-bottom: 24px;
  transition: all .3s ease;
  color: #181818;
}
.cid-uyP0MmTSgn .mbr-card-text {
  margin-bottom: 18px;
  color: #181818;
}
.cid-uyP0MmTSgn .person-container .person-wrapper {
  display: inline-flex;
}
.cid-uyP0MmTSgn .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-uyP0MmTSgn .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-uyP0MmTSgn .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-uyP0MmTSgn .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
.cid-uyP0MmTSgn .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-uyP0MmTSgn .mbr-person {
  color: #181818;
}
.cid-uyP1rTAqvz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uyP1rTAqvz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyP1rTAqvz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyP1rTAqvz .row {
  justify-content: center;
}
.cid-uyP1rTAqvz .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uyP1rTAqvz .row {
    padding: 0 12px;
  }
}
.cid-uyP1rTAqvz .item-wrap {
  z-index: 1;
}
.cid-uyP1rTAqvz .item-wrap-video {
  z-index: 1;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uyP1rTAqvz .item-wrap-video {
    padding-right: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uyP1rTAqvz .item-wrap-video {
    padding: 0 12px;
  }
}
.cid-uyP1rTAqvz .item-wrap-image {
  z-index: 1;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uyP1rTAqvz .item-wrap-image {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .cid-uyP1rTAqvz .item-wrap-image {
    padding: 0 12px;
  }
}
.cid-uyP1rTAqvz .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-uyP1rTAqvz .mbr-section-subtitle {
  margin-bottom: 64px;
  color: #181818;
}
.cid-uyP1rTAqvz .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-uyP1rTAqvz .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-uyP1rTAqvz .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-uyP1rTAqvz .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-uyP1rTAqvz .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-uyP1rTAqvz .card .card-link {
  width: 100%;
  display: block;
}
.cid-uyP1rTAqvz .card .card-link:hover .image-wrapper img {
  transform: scale(1.1, 1.1);
}
.cid-uyP1rTAqvz .card .card-link:hover .mbr-card-title {
  color: #ae856c;
}
.cid-uyP1rTAqvz .video-wrapper {
  width: 100%;
  height: 420px;
  margin-bottom: 32px;
}
.cid-uyP1rTAqvz .video-wrapper .app-video-wrapper {
  height: 100%;
}
.cid-uyP1rTAqvz .video-wrapper .app-video-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyP1rTAqvz .video-wrapper iframe {
  height: 420px !important;
}
@media (max-width: 992px) {
  .cid-uyP1rTAqvz .video-wrapper iframe {
    height: 210px !important;
  }
}
@media (max-width: 768px) {
  .cid-uyP1rTAqvz .video-wrapper iframe {
    height: 150px !important;
  }
}
@media (max-width: 992px) {
  .cid-uyP1rTAqvz .video-wrapper {
    height: 210px;
  }
}
.cid-uyP1rTAqvz .image-wrapper {
  margin-bottom: 32px;
  overflow: hidden;
}
.cid-uyP1rTAqvz .image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uyP1rTAqvz .image-wrapper img {
    height: 210px;
  }
}
@media (max-width: 768px) {
  .cid-uyP1rTAqvz .image-wrapper img {
    height: 150px;
  }
}
.cid-uyP1rTAqvz .mbr-card-title {
  margin-bottom: 24px;
  transition: all .3s ease;
  color: #181818;
}
.cid-uyP1rTAqvz .mbr-card-text {
  margin-bottom: 18px;
  color: #181818;
}
.cid-uyP1rTAqvz .person-container .person-wrapper {
  display: inline-flex;
}
.cid-uyP1rTAqvz .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-uyP1rTAqvz .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-uyP1rTAqvz .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-uyP1rTAqvz .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
.cid-uyP1rTAqvz .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-uyP1rTAqvz .mbr-person {
  color: #181818;
}
.cid-uyCuPgWVPh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uyCuPgWVPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyCuPgWVPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyCuPgWVPh .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-uyCuPgWVPh .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uyCuPgWVPh .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uyCuPgWVPh .row {
    padding: 0 12px;
  }
}
.cid-uyCuPgWVPh .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-uyCuPgWVPh .item-wrap {
  z-index: 1;
}
.cid-uyCuPgWVPh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uyCuPgWVPh .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-uyCuPgWVPh .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uyCuPgWVPh .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-uyCuPgWVPh .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uyCuPgWVPh .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-uyCuPgWVPh .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-uyCuPgWVPh .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-uyCuPgWVPh .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-uyCuPgWVPh .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-uyCuPgWVPh .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-uyCuPgWVPh .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-uyCuPgWVPh .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uyCuPgWVPh .mbr-section-btn {
    text-align: center;
  }
}
.cid-uyCuPgWVPh .mbr-section-title {
  color: #ffffff;
}
.cid-uyCuPgWVPh .mbr-text {
  color: #ffffff;
}
.cid-uyCuPgWVPh .mbr-price {
  color: #ffffff;
}
.cid-uyCuPgWVPh .mbr-max-price {
  color: #ffffff;
}
.cid-uyCuPgWVPh .mbr-section-title,
.cid-uyCuPgWVPh .mbr-section-btn {
  text-align: right;
}
.cid-uoJIo2kGPP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoJIo2kGPP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoJIo2kGPP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoJIo2kGPP .row {
  justify-content: center;
}
.cid-uoJIo2kGPP .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoJIo2kGPP .row {
    padding: 0 12px;
  }
}
.cid-uoJIo2kGPP .item-wrap {
  z-index: 1;
}
.cid-uoJIo2kGPP .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoJIo2kGPP .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoJIo2kGPP .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoJIo2kGPP .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoJIo2kGPP .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoJIo2kGPP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoJIo2kGPP .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoJIo2kGPP .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoJIo2kGPP .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoJIo2kGPP .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoJIo2kGPP .mbr-section-title {
  color: #ffffff;
}
.cid-uoJIo2kGPP .mbr-text {
  color: #ffffff;
}
.cid-uelP9GdWs7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uelP9GdWs7 .container-fluid {
  padding-right: 0;
}
.cid-uelP9GdWs7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uelP9GdWs7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uelP9GdWs7 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uelP9GdWs7 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uelP9GdWs7 .title {
  display: flex;
  align-items: center;
}
.cid-uelP9GdWs7 .title-wrapper {
  width: 100%;
}
.cid-uelP9GdWs7 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uelP9GdWs7 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uelP9GdWs7 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uelP9GdWs7 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uelP9GdWs7 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uelP9GdWs7 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uelP9GdWs7 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uelP9GdWs7 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uelP9GdWs7 .mbr-section-subtitle {
  color: #181818;
}
.cid-uelP9GdWs7 .mbr-section-title {
  color: #181818;
}
.cid-uelP9GdWs7 .mbr-text {
  color: #454545;
}
.cid-txlpwjDqYo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlpwjDqYo .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlpwjDqYo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlpwjDqYo .row {
  justify-content: center;
}
.cid-txlpwjDqYo .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlpwjDqYo .row {
    padding: 0 12px;
  }
}
.cid-txlpwjDqYo .item-wrap {
  z-index: 1;
}
.cid-txlpwjDqYo .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlpwjDqYo .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txlrNMRbLY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txlrNMRbLY .container-fluid {
  padding-right: 0;
}
.cid-txlrNMRbLY .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlrNMRbLY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlrNMRbLY .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlrNMRbLY .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txlrNMRbLY .title {
  display: flex;
  align-items: center;
}
.cid-txlrNMRbLY .title-wrapper {
  width: 100%;
}
.cid-txlrNMRbLY .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlrNMRbLY .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txlrNMRbLY .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlrNMRbLY .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txlrNMRbLY .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txlrNMRbLY .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txlrNMRbLY .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txlrNMRbLY .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txlrNMRbLY .mbr-section-subtitle {
  color: #181818;
}
.cid-txlrNMRbLY .mbr-section-title {
  color: #181818;
}
.cid-txlrNMRbLY .mbr-text {
  color: #454545;
}
.cid-txlpuzWimD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlpuzWimD .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlpuzWimD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlpuzWimD .row {
  justify-content: center;
}
.cid-txlpuzWimD .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlpuzWimD .row {
    padding: 0 12px;
  }
}
.cid-txlpuzWimD .item-wrap {
  z-index: 1;
}
.cid-txlpuzWimD .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlpuzWimD .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-u4I6RMpse9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4I6RMpse9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4I6RMpse9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4I6RMpse9 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-u4I6RMpse9 .row {
    padding: 0 12px;
  }
}
.cid-u4I6RMpse9 .item-wrap {
  z-index: 1;
}
.cid-u4I6RMpse9 .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 48px;
}
.cid-u4I6RMpse9 .mbr-section-subtitle {
  margin-bottom: 62px;
  color: #181818;
}
.cid-u4I6RMpse9 .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 62px;
}
.cid-u4I6RMpse9 .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-u4I6RMpse9 .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-u4I6RMpse9 .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-u4I6RMpse9 .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-u4I6RMpse9 .desc-container .desc-wrapper {
  display: inline-flex;
  margin-bottom: 18px;
}
.cid-u4I6RMpse9 .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
  transition: all .3s ease;
}
.cid-u4I6RMpse9 .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  color: #ae856c;
}
.cid-u4I6RMpse9 .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-u4I6RMpse9 .person-container .person-wrapper {
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-u4I6RMpse9 .person-container .person-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u4I6RMpse9 .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-u4I6RMpse9 .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-u4I6RMpse9 .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-u4I6RMpse9 .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-u4I6RMpse9 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u4I6RMpse9 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.cid-u4I6RMpse9 .title-wrapper .mbr-section-title:hover {
  color: #ae856c;
}
.cid-u4I6RMpse9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u4I6RMpse9 .date-wrapper .mbr-date {
  margin-bottom: 24px;
}
@media (max-width: 425px) {
  .cid-u4I6RMpse9 .date-wrapper .mbr-date {
    text-align: left;
  }
}
.cid-u4I6RMpse9 .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-u4I6RMpse9 .image-wrapper {
    padding-left: 40%;
  }
}
@media (max-width: 425px) {
  .cid-u4I6RMpse9 .image-wrapper {
    padding: 0;
  }
}
.cid-u4I6RMpse9 .image-wrapper .image-link {
  display: block;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-u4I6RMpse9 .image-wrapper .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-u4I6RMpse9 .image-wrapper .image-link img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-u4I6RMpse9 .image-wrapper .image-container {
  width: 76px;
}
.cid-u4I6RMpse9 .image-wrapper .image-container .image-link {
  display: block;
  overflow: hidden;
}
.cid-u4I6RMpse9 .image-wrapper .image-container .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-u4I6RMpse9 .image-wrapper .image-container .image-link img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-u4I6RMpse9 .image-wrapper .image-container .image-link:first-child {
  margin-bottom: 1rem;
}
.cid-u4I6RMpse9 .mbr-section-title {
  color: #181818;
}
.cid-u4I6RMpse9 .mbr-text {
  color: #181818;
}
.cid-u4I6RMpse9 .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-u4I6RMpse9 .mbr-desc,
.cid-u4I6RMpse9 .mbr-dot {
  color: #181818;
}
.cid-u4I6RMpse9 .mbr-person {
  color: #181818;
}
.cid-u4I6RMpse9 .mbr-date {
  color: #181818;
  text-align: right;
}
.cid-txrbY0feZE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrbY0feZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrbY0feZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrbY0feZE .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrbY0feZE .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrbY0feZE .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrbY0feZE .row {
    padding: 0 12px;
  }
}
.cid-txrbY0feZE .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrbY0feZE .item-wrap {
  z-index: 1;
}
.cid-txrbY0feZE .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrbY0feZE .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrbY0feZE .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrbY0feZE .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrbY0feZE .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrbY0feZE .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrbY0feZE .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrbY0feZE .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrbY0feZE .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrbY0feZE .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrbY0feZE .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrbY0feZE .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrbY0feZE .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrbY0feZE .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrbY0feZE .mbr-section-title {
  color: #ffffff;
}
.cid-txrbY0feZE .mbr-text {
  color: #ffffff;
}
.cid-txrbY0feZE .mbr-price {
  color: #ffffff;
}
.cid-txrbY0feZE .mbr-max-price {
  color: #ffffff;
}
.cid-u4I8rJbHqV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4I8rJbHqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4I8rJbHqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4I8rJbHqV .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-u4I8rJbHqV .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-u4I8rJbHqV .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-u4I8rJbHqV .row {
    padding: 0 12px;
  }
}
.cid-u4I8rJbHqV .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-u4I8rJbHqV .item-wrap {
  z-index: 1;
}
.cid-u4I8rJbHqV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u4I8rJbHqV .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-u4I8rJbHqV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u4I8rJbHqV .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-u4I8rJbHqV .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u4I8rJbHqV .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-u4I8rJbHqV .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-u4I8rJbHqV .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-u4I8rJbHqV .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-u4I8rJbHqV .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-u4I8rJbHqV .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-u4I8rJbHqV .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-u4I8rJbHqV .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u4I8rJbHqV .mbr-section-btn {
    text-align: center;
  }
}
.cid-u4I8rJbHqV .mbr-section-title {
  color: #ffffff;
}
.cid-u4I8rJbHqV .mbr-text {
  color: #ffffff;
}
.cid-u4I8rJbHqV .mbr-price {
  color: #ffffff;
}
.cid-u4I8rJbHqV .mbr-max-price {
  color: #ffffff;
}
.cid-u4I8rJbHqV .mbr-section-title,
.cid-u4I8rJbHqV .mbr-section-btn {
  text-align: right;
}
.cid-u8Yl6c11nc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u8Yl6c11nc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8Yl6c11nc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8Yl6c11nc .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-u8Yl6c11nc .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-u8Yl6c11nc .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-u8Yl6c11nc .row {
    padding: 0 12px;
  }
}
.cid-u8Yl6c11nc .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-u8Yl6c11nc .item-wrap {
  z-index: 1;
}
.cid-u8Yl6c11nc .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u8Yl6c11nc .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-u8Yl6c11nc .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u8Yl6c11nc .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-u8Yl6c11nc .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u8Yl6c11nc .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-u8Yl6c11nc .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-u8Yl6c11nc .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-u8Yl6c11nc .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-u8Yl6c11nc .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-u8Yl6c11nc .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-u8Yl6c11nc .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-u8Yl6c11nc .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u8Yl6c11nc .mbr-section-btn {
    text-align: center;
  }
}
.cid-u8Yl6c11nc .mbr-section-title {
  color: #ffffff;
}
.cid-u8Yl6c11nc .mbr-text {
  color: #ffffff;
}
.cid-u8Yl6c11nc .mbr-price {
  color: #ffffff;
}
.cid-u8Yl6c11nc .mbr-max-price {
  color: #ffffff;
}
.cid-u8Yl6c11nc .mbr-section-title,
.cid-u8Yl6c11nc .mbr-section-btn {
  text-align: right;
}
.cid-txlpwM8PJb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlpwM8PJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlpwM8PJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlpwM8PJb .row {
  justify-content: center;
}
.cid-txlpwM8PJb .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlpwM8PJb .row {
    padding: 0 12px;
  }
}
.cid-txlpwM8PJb .item-wrap {
  z-index: 1;
}
.cid-txlpwM8PJb .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlpwM8PJb .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tzfXd4ZOtk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzfXd4ZOtk .container-fluid {
  padding-right: 0;
}
.cid-tzfXd4ZOtk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfXd4ZOtk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzfXd4ZOtk .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzfXd4ZOtk .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzfXd4ZOtk .title {
  display: flex;
  align-items: center;
}
.cid-tzfXd4ZOtk .title-wrapper {
  width: 100%;
}
.cid-tzfXd4ZOtk .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzfXd4ZOtk .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzfXd4ZOtk .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzfXd4ZOtk .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzfXd4ZOtk .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzfXd4ZOtk .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzfXd4ZOtk .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzfXd4ZOtk .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzfXd4ZOtk .mbr-section-subtitle {
  color: #181818;
}
.cid-tzfXd4ZOtk .mbr-section-title {
  color: #181818;
}
.cid-tzfXd4ZOtk .mbr-text {
  color: #454545;
}
.cid-txlpxeNMKg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlpxeNMKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlpxeNMKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlpxeNMKg .row {
  justify-content: center;
}
.cid-txlpxeNMKg .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlpxeNMKg .row {
    padding: 0 12px;
  }
}
.cid-txlpxeNMKg .item-wrap {
  z-index: 1;
}
.cid-txlpxeNMKg .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlpxeNMKg .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrceNW48T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrceNW48T .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrceNW48T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrceNW48T .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrceNW48T .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrceNW48T .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrceNW48T .row {
    padding: 0 12px;
  }
}
.cid-txrceNW48T .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrceNW48T .item-wrap {
  z-index: 1;
}
.cid-txrceNW48T .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrceNW48T .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrceNW48T .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrceNW48T .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrceNW48T .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrceNW48T .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrceNW48T .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrceNW48T .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrceNW48T .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrceNW48T .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrceNW48T .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrceNW48T .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrceNW48T .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrceNW48T .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrceNW48T .mbr-section-title {
  color: #ffffff;
}
.cid-txrceNW48T .mbr-text {
  color: #ffffff;
}
.cid-txrceNW48T .mbr-price {
  color: #ffffff;
}
.cid-txrceNW48T .mbr-max-price {
  color: #ffffff;
}
.cid-txlpxP5Jlk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlpxP5Jlk .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlpxP5Jlk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlpxP5Jlk .row {
  justify-content: center;
}
.cid-txlpxP5Jlk .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlpxP5Jlk .row {
    padding: 0 12px;
  }
}
.cid-txlpxP5Jlk .item-wrap {
  z-index: 1;
}
.cid-txlpxP5Jlk .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlpxP5Jlk .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrc95aH0o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrc95aH0o .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrc95aH0o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrc95aH0o .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrc95aH0o .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrc95aH0o .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrc95aH0o .row {
    padding: 0 12px;
  }
}
.cid-txrc95aH0o .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrc95aH0o .item-wrap {
  z-index: 1;
}
.cid-txrc95aH0o .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrc95aH0o .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrc95aH0o .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrc95aH0o .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrc95aH0o .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrc95aH0o .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrc95aH0o .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrc95aH0o .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrc95aH0o .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrc95aH0o .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrc95aH0o .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrc95aH0o .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrc95aH0o .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrc95aH0o .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrc95aH0o .mbr-section-title {
  color: #ffffff;
}
.cid-txrc95aH0o .mbr-text {
  color: #ffffff;
}
.cid-txrc95aH0o .mbr-price {
  color: #ffffff;
}
.cid-txrc95aH0o .mbr-max-price {
  color: #ffffff;
}
.cid-txlq64kRI7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlq64kRI7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlq64kRI7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlq64kRI7 .row {
  justify-content: center;
}
.cid-txlq64kRI7 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlq64kRI7 .row {
    padding: 0 12px;
  }
}
.cid-txlq64kRI7 .item-wrap {
  z-index: 1;
}
.cid-txlq64kRI7 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlq64kRI7 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrccItuPS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrccItuPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrccItuPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrccItuPS .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrccItuPS .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrccItuPS .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrccItuPS .row {
    padding: 0 12px;
  }
}
.cid-txrccItuPS .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrccItuPS .item-wrap {
  z-index: 1;
}
.cid-txrccItuPS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrccItuPS .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrccItuPS .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrccItuPS .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrccItuPS .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrccItuPS .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrccItuPS .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrccItuPS .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrccItuPS .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrccItuPS .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrccItuPS .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrccItuPS .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrccItuPS .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrccItuPS .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrccItuPS .mbr-section-title {
  color: #ffffff;
}
.cid-txrccItuPS .mbr-text {
  color: #ffffff;
}
.cid-txrccItuPS .mbr-price {
  color: #ffffff;
}
.cid-txrccItuPS .mbr-max-price {
  color: #ffffff;
}
.cid-txlq6CVvFS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlq6CVvFS .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlq6CVvFS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlq6CVvFS .row {
  justify-content: center;
}
.cid-txlq6CVvFS .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlq6CVvFS .row {
    padding: 0 12px;
  }
}
.cid-txlq6CVvFS .item-wrap {
  z-index: 1;
}
.cid-txlq6CVvFS .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlq6CVvFS .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrcbSriIp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrcbSriIp .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrcbSriIp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrcbSriIp .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrcbSriIp .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrcbSriIp .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrcbSriIp .row {
    padding: 0 12px;
  }
}
.cid-txrcbSriIp .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrcbSriIp .item-wrap {
  z-index: 1;
}
.cid-txrcbSriIp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcbSriIp .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrcbSriIp .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcbSriIp .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcbSriIp .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcbSriIp .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcbSriIp .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrcbSriIp .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrcbSriIp .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrcbSriIp .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrcbSriIp .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrcbSriIp .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrcbSriIp .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcbSriIp .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrcbSriIp .mbr-section-title {
  color: #ffffff;
}
.cid-txrcbSriIp .mbr-text {
  color: #ffffff;
}
.cid-txrcbSriIp .mbr-price {
  color: #ffffff;
}
.cid-txrcbSriIp .mbr-max-price {
  color: #ffffff;
}
.cid-txlq8hvzG6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlq8hvzG6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlq8hvzG6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlq8hvzG6 .row {
  justify-content: center;
}
.cid-txlq8hvzG6 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlq8hvzG6 .row {
    padding: 0 12px;
  }
}
.cid-txlq8hvzG6 .item-wrap {
  z-index: 1;
}
.cid-txlq8hvzG6 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlq8hvzG6 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrc9RbXBC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrc9RbXBC .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrc9RbXBC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrc9RbXBC .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrc9RbXBC .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrc9RbXBC .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrc9RbXBC .row {
    padding: 0 12px;
  }
}
.cid-txrc9RbXBC .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrc9RbXBC .item-wrap {
  z-index: 1;
}
.cid-txrc9RbXBC .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrc9RbXBC .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrc9RbXBC .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrc9RbXBC .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrc9RbXBC .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrc9RbXBC .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrc9RbXBC .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrc9RbXBC .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrc9RbXBC .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrc9RbXBC .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrc9RbXBC .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrc9RbXBC .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrc9RbXBC .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrc9RbXBC .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrc9RbXBC .mbr-section-title {
  color: #ffffff;
}
.cid-txrc9RbXBC .mbr-text {
  color: #ffffff;
}
.cid-txrc9RbXBC .mbr-price {
  color: #ffffff;
}
.cid-txrc9RbXBC .mbr-max-price {
  color: #ffffff;
}
.cid-txlq8ND0bG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlq8ND0bG .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlq8ND0bG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlq8ND0bG .row {
  justify-content: center;
}
.cid-txlq8ND0bG .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlq8ND0bG .row {
    padding: 0 12px;
  }
}
.cid-txlq8ND0bG .item-wrap {
  z-index: 1;
}
.cid-txlq8ND0bG .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlq8ND0bG .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrcawG0wx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrcawG0wx .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrcawG0wx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrcawG0wx .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrcawG0wx .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrcawG0wx .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrcawG0wx .row {
    padding: 0 12px;
  }
}
.cid-txrcawG0wx .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrcawG0wx .item-wrap {
  z-index: 1;
}
.cid-txrcawG0wx .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcawG0wx .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrcawG0wx .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcawG0wx .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcawG0wx .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcawG0wx .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcawG0wx .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrcawG0wx .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrcawG0wx .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrcawG0wx .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrcawG0wx .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrcawG0wx .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrcawG0wx .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcawG0wx .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrcawG0wx .mbr-section-title {
  color: #ffffff;
}
.cid-txrcawG0wx .mbr-text {
  color: #ffffff;
}
.cid-txrcawG0wx .mbr-price {
  color: #ffffff;
}
.cid-txrcawG0wx .mbr-max-price {
  color: #ffffff;
}
.cid-txlq7KPrCw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlq7KPrCw .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlq7KPrCw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlq7KPrCw .row {
  justify-content: center;
}
.cid-txlq7KPrCw .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlq7KPrCw .row {
    padding: 0 12px;
  }
}
.cid-txlq7KPrCw .item-wrap {
  z-index: 1;
}
.cid-txlq7KPrCw .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlq7KPrCw .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrcbckZKx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrcbckZKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrcbckZKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrcbckZKx .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrcbckZKx .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrcbckZKx .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrcbckZKx .row {
    padding: 0 12px;
  }
}
.cid-txrcbckZKx .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrcbckZKx .item-wrap {
  z-index: 1;
}
.cid-txrcbckZKx .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcbckZKx .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrcbckZKx .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcbckZKx .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcbckZKx .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcbckZKx .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcbckZKx .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrcbckZKx .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrcbckZKx .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrcbckZKx .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrcbckZKx .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrcbckZKx .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrcbckZKx .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcbckZKx .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrcbckZKx .mbr-section-title {
  color: #ffffff;
}
.cid-txrcbckZKx .mbr-text {
  color: #ffffff;
}
.cid-txrcbckZKx .mbr-price {
  color: #ffffff;
}
.cid-txrcbckZKx .mbr-max-price {
  color: #ffffff;
}
.cid-txlq7ekjgt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlq7ekjgt .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlq7ekjgt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlq7ekjgt .row {
  justify-content: center;
}
.cid-txlq7ekjgt .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlq7ekjgt .row {
    padding: 0 12px;
  }
}
.cid-txlq7ekjgt .item-wrap {
  z-index: 1;
}
.cid-txlq7ekjgt .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlq7ekjgt .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txrcsTt429 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrcsTt429 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrcsTt429 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrcsTt429 .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txrcsTt429 .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txrcsTt429 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrcsTt429 .row {
    padding: 0 12px;
  }
}
.cid-txrcsTt429 .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txrcsTt429 .item-wrap {
  z-index: 1;
}
.cid-txrcsTt429 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcsTt429 .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txrcsTt429 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txrcsTt429 .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcsTt429 .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcsTt429 .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txrcsTt429 .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txrcsTt429 .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txrcsTt429 .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txrcsTt429 .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txrcsTt429 .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txrcsTt429 .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txrcsTt429 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txrcsTt429 .mbr-section-btn {
    text-align: center;
  }
}
.cid-txrcsTt429 .mbr-section-title {
  color: #ffffff;
}
.cid-txrcsTt429 .mbr-text {
  color: #ffffff;
}
.cid-txrcsTt429 .mbr-price {
  color: #ffffff;
}
.cid-txrcsTt429 .mbr-max-price {
  color: #ffffff;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txkQTexsDE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txkQTexsDE .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkQTexsDE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkQTexsDE .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txkQTexsDE .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txkQTexsDE .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkQTexsDE .row {
    padding: 0 12px;
  }
}
.cid-txkQTexsDE .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txkQTexsDE .item-wrap {
  z-index: 1;
}
.cid-txkQTexsDE .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQTexsDE .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txkQTexsDE .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txkQTexsDE .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQTexsDE .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQTexsDE .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txkQTexsDE .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txkQTexsDE .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txkQTexsDE .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txkQTexsDE .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txkQTexsDE .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txkQTexsDE .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txkQTexsDE .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txkQTexsDE .mbr-section-btn {
    text-align: center;
  }
}
.cid-txkQTexsDE .mbr-section-title {
  color: #ffffff;
}
.cid-txkQTexsDE .mbr-text {
  color: #ffffff;
}
.cid-txkQTexsDE .mbr-price {
  color: #ffffff;
}
.cid-txkQTexsDE .mbr-max-price {
  color: #ffffff;
}
.cid-uoNU1IKops {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoNU1IKops .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoNU1IKops .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoNU1IKops .row {
  justify-content: center;
}
.cid-uoNU1IKops .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoNU1IKops .row {
    padding: 0 12px;
  }
}
.cid-uoNU1IKops .item-wrap {
  z-index: 1;
}
.cid-uoNU1IKops .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoNU1IKops .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoNU1IKops .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoNU1IKops .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoNU1IKops .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoNU1IKops .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoNU1IKops .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoNU1IKops .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoNU1IKops .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoNU1IKops .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoNU1IKops .mbr-section-title {
  color: #ffffff;
}
.cid-uoNU1IKops .mbr-text {
  color: #ffffff;
}
.cid-uoNYs5JmR4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uoNYs5JmR4 .container-fluid {
  padding-right: 0;
}
.cid-uoNYs5JmR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoNYs5JmR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoNYs5JmR4 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoNYs5JmR4 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uoNYs5JmR4 .title {
  display: flex;
  align-items: center;
}
.cid-uoNYs5JmR4 .title-wrapper {
  width: 100%;
}
.cid-uoNYs5JmR4 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoNYs5JmR4 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uoNYs5JmR4 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoNYs5JmR4 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uoNYs5JmR4 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uoNYs5JmR4 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uoNYs5JmR4 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uoNYs5JmR4 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoNYs5JmR4 .mbr-section-subtitle {
  color: #181818;
}
.cid-uoNYs5JmR4 .mbr-section-title {
  color: #181818;
}
.cid-uoNYs5JmR4 .mbr-text {
  color: #454545;
}
.cid-uoOixMdJot {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoOixMdJot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOixMdJot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOixMdJot .row {
  justify-content: center;
}
.cid-uoOixMdJot .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOixMdJot .row {
    padding: 0 12px;
  }
}
.cid-uoOixMdJot .item-wrap {
  z-index: 1;
}
.cid-uoOixMdJot .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOixMdJot .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOixMdJot .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoOixMdJot .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOixMdJot .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOixMdJot .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoOixMdJot .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOixMdJot .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoOixMdJot .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoOixMdJot .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoOixMdJot .mbr-section-title {
  color: #ffffff;
}
.cid-uoOixMdJot .mbr-text {
  color: #ffffff;
}
.cid-uoOiyVyuKM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uoOiyVyuKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOiyVyuKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOiyVyuKM .row {
  justify-content: center;
}
.cid-uoOiyVyuKM .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOiyVyuKM .row {
    padding: 0 12px;
  }
}
.cid-uoOiyVyuKM .item-wrap {
  z-index: 1;
}
.cid-uoOiyVyuKM .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoOhGXgbI0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoOhGXgbI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOhGXgbI0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOhGXgbI0 .row {
  justify-content: center;
}
.cid-uoOhGXgbI0 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOhGXgbI0 .row {
    padding: 0 12px;
  }
}
.cid-uoOhGXgbI0 .item-wrap {
  z-index: 1;
}
.cid-uoOhGXgbI0 .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOhGXgbI0 .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOhGXgbI0 .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoOhGXgbI0 .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOhGXgbI0 .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOhGXgbI0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoOhGXgbI0 .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOhGXgbI0 .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoOhGXgbI0 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoOhGXgbI0 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoOhGXgbI0 .mbr-section-title {
  color: #ffffff;
}
.cid-uoOhGXgbI0 .mbr-text {
  color: #ffffff;
}
.cid-uoOhEhfbUY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uoOhEhfbUY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOhEhfbUY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOhEhfbUY .row {
  justify-content: center;
}
.cid-uoOhEhfbUY .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOhEhfbUY .row {
    padding: 0 12px;
  }
}
.cid-uoOhEhfbUY .item-wrap {
  z-index: 1;
}
.cid-uoOhEhfbUY .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoOfU0tdDt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoOfU0tdDt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOfU0tdDt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOfU0tdDt .row {
  justify-content: center;
}
.cid-uoOfU0tdDt .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOfU0tdDt .row {
    padding: 0 12px;
  }
}
.cid-uoOfU0tdDt .item-wrap {
  z-index: 1;
}
.cid-uoOfU0tdDt .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOfU0tdDt .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOfU0tdDt .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoOfU0tdDt .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOfU0tdDt .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOfU0tdDt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoOfU0tdDt .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOfU0tdDt .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoOfU0tdDt .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoOfU0tdDt .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoOfU0tdDt .mbr-section-title {
  color: #ffffff;
}
.cid-uoOfU0tdDt .mbr-text {
  color: #ffffff;
}
.cid-uoOfUDdIZe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uoOfUDdIZe .container-fluid {
  padding-right: 0;
}
.cid-uoOfUDdIZe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOfUDdIZe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOfUDdIZe .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOfUDdIZe .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uoOfUDdIZe .title {
  display: flex;
  align-items: center;
}
.cid-uoOfUDdIZe .title-wrapper {
  width: 100%;
}
.cid-uoOfUDdIZe .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOfUDdIZe .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uoOfUDdIZe .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOfUDdIZe .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uoOfUDdIZe .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uoOfUDdIZe .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uoOfUDdIZe .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uoOfUDdIZe .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoOfUDdIZe .mbr-section-subtitle {
  color: #181818;
}
.cid-uoOfUDdIZe .mbr-section-title {
  color: #181818;
}
.cid-uoOfUDdIZe .mbr-text {
  color: #454545;
}
.cid-uoOh5QH3f3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uoOh5QH3f3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOh5QH3f3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOh5QH3f3 .row {
  justify-content: center;
}
.cid-uoOh5QH3f3 .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uoOh5QH3f3 .row {
    padding: 0 12px;
  }
}
.cid-uoOh5QH3f3 .item-wrap {
  z-index: 1;
}
.cid-uoOh5QH3f3 .image-wrapper {
  padding: 32px 16px;
}
@media (max-width: 992px) {
  .cid-uoOh5QH3f3 .image-wrapper {
    padding: 12px 0;
  }
}
.cid-uoOh5QH3f3 .image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uoOh5QH3f3 .image-wrapper img {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .cid-uoOh5QH3f3 .image-wrapper img {
    height: 150px;
  }
}
.cid-uoOg1gybFA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uoOg1gybFA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOg1gybFA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOg1gybFA .row {
  justify-content: center;
}
.cid-uoOg1gybFA .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOg1gybFA .row {
    padding: 0 12px;
  }
}
.cid-uoOg1gybFA .item-wrap {
  z-index: 1;
}
.cid-uoOg1gybFA .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoOe3EF1Hx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoOe3EF1Hx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOe3EF1Hx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOe3EF1Hx .row {
  justify-content: center;
}
.cid-uoOe3EF1Hx .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOe3EF1Hx .row {
    padding: 0 12px;
  }
}
.cid-uoOe3EF1Hx .item-wrap {
  z-index: 1;
}
.cid-uoOe3EF1Hx .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOe3EF1Hx .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOe3EF1Hx .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoOe3EF1Hx .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOe3EF1Hx .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOe3EF1Hx .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoOe3EF1Hx .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOe3EF1Hx .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoOe3EF1Hx .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoOe3EF1Hx .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoOe3EF1Hx .mbr-section-title {
  color: #ffffff;
}
.cid-uoOe3EF1Hx .mbr-text {
  color: #ffffff;
}
.cid-uoOe1VNPEp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uoOe1VNPEp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOe1VNPEp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOe1VNPEp .row {
  justify-content: center;
}
.cid-uoOe1VNPEp .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOe1VNPEp .row {
    padding: 0 12px;
  }
}
.cid-uoOe1VNPEp .item-wrap {
  z-index: 1;
}
.cid-uoOe1VNPEp .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoOeLhLltM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uoOeLhLltM .container {
    padding: 0 24px;
  }
}
.cid-uoOeLhLltM .card {
  justify-content: center;
}
.cid-uoOeLhLltM .image-wrapper {
  border-top: 1px solid #72716b;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-uoOeLhLltM .image-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-uoOeLhLltM .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uoOeLhLltM .image-wrapper img {
    height: 350px;
  }
}
.cid-uoOcKaAW8g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoOcKaAW8g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOcKaAW8g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOcKaAW8g .row {
  justify-content: center;
}
.cid-uoOcKaAW8g .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOcKaAW8g .row {
    padding: 0 12px;
  }
}
.cid-uoOcKaAW8g .item-wrap {
  z-index: 1;
}
.cid-uoOcKaAW8g .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOcKaAW8g .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOcKaAW8g .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoOcKaAW8g .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOcKaAW8g .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoOcKaAW8g .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoOcKaAW8g .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoOcKaAW8g .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoOcKaAW8g .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoOcKaAW8g .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoOcKaAW8g .mbr-section-title {
  color: #ffffff;
}
.cid-uoOcKaAW8g .mbr-text {
  color: #ffffff;
}
.cid-uoOcKPjINf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uoOcKPjINf .container-fluid {
  padding-right: 0;
}
.cid-uoOcKPjINf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOcKPjINf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOcKPjINf .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOcKPjINf .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uoOcKPjINf .title {
  display: flex;
  align-items: center;
}
.cid-uoOcKPjINf .title-wrapper {
  width: 100%;
}
.cid-uoOcKPjINf .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOcKPjINf .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uoOcKPjINf .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoOcKPjINf .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uoOcKPjINf .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uoOcKPjINf .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uoOcKPjINf .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uoOcKPjINf .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoOcKPjINf .mbr-section-subtitle {
  color: #181818;
}
.cid-uoOcKPjINf .mbr-section-title {
  color: #181818;
}
.cid-uoOcKPjINf .mbr-text {
  color: #454545;
}
.cid-uoOdk7bQbT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uoOdk7bQbT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOdk7bQbT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOdk7bQbT .row {
  justify-content: center;
}
.cid-uoOdk7bQbT .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOdk7bQbT .row {
    padding: 0 12px;
  }
}
.cid-uoOdk7bQbT .item-wrap {
  z-index: 1;
}
.cid-uoOdk7bQbT .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoObATGUnq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoObATGUnq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoObATGUnq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoObATGUnq .row {
  justify-content: center;
}
.cid-uoObATGUnq .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoObATGUnq .row {
    padding: 0 12px;
  }
}
.cid-uoObATGUnq .item-wrap {
  z-index: 1;
}
.cid-uoObATGUnq .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoObATGUnq .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoObATGUnq .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoObATGUnq .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoObATGUnq .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoObATGUnq .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoObATGUnq .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoObATGUnq .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoObATGUnq .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoObATGUnq .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoObATGUnq .mbr-section-title {
  color: #ffffff;
}
.cid-uoObATGUnq .mbr-text {
  color: #ffffff;
}
.cid-uoObwNkrcj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uoObwNkrcj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoObwNkrcj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoObwNkrcj .row {
  justify-content: center;
}
.cid-uoObwNkrcj .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoObwNkrcj .row {
    padding: 0 12px;
  }
}
.cid-uoObwNkrcj .item-wrap {
  z-index: 1;
}
.cid-uoObwNkrcj .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoObIuSx8V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uoObIuSx8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoObIuSx8V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoObIuSx8V .row {
  justify-content: center;
}
.cid-uoObIuSx8V .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uoObIuSx8V .row {
    padding: 0 12px;
  }
}
.cid-uoObIuSx8V .item-wrap {
  z-index: 1;
}
.cid-uoObIuSx8V .image-wrapper {
  padding: 32px 16px;
}
@media (max-width: 992px) {
  .cid-uoObIuSx8V .image-wrapper {
    padding: 12px 0;
  }
}
.cid-uoObIuSx8V .image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uoObIuSx8V .image-wrapper img {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .cid-uoObIuSx8V .image-wrapper img {
    height: 150px;
  }
}
.cid-uoO9m8KcSf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoO9m8KcSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoO9m8KcSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoO9m8KcSf .row {
  justify-content: center;
}
.cid-uoO9m8KcSf .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoO9m8KcSf .row {
    padding: 0 12px;
  }
}
.cid-uoO9m8KcSf .item-wrap {
  z-index: 1;
}
.cid-uoO9m8KcSf .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoO9m8KcSf .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoO9m8KcSf .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoO9m8KcSf .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoO9m8KcSf .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoO9m8KcSf .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoO9m8KcSf .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoO9m8KcSf .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoO9m8KcSf .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoO9m8KcSf .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoO9m8KcSf .mbr-section-title {
  color: #ffffff;
}
.cid-uoO9m8KcSf .mbr-text {
  color: #ffffff;
}
.cid-uoO9ngHHGx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uoO9ngHHGx .container-fluid {
  padding-right: 0;
}
.cid-uoO9ngHHGx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoO9ngHHGx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoO9ngHHGx .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoO9ngHHGx .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uoO9ngHHGx .title {
  display: flex;
  align-items: center;
}
.cid-uoO9ngHHGx .title-wrapper {
  width: 100%;
}
.cid-uoO9ngHHGx .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoO9ngHHGx .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uoO9ngHHGx .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoO9ngHHGx .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uoO9ngHHGx .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uoO9ngHHGx .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uoO9ngHHGx .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uoO9ngHHGx .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoO9ngHHGx .mbr-section-subtitle {
  color: #181818;
}
.cid-uoO9ngHHGx .mbr-section-title {
  color: #181818;
}
.cid-uoO9ngHHGx .mbr-text {
  color: #454545;
}
.cid-uoOashR4Ab {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-uoOashR4Ab .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOashR4Ab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOashR4Ab .row {
  justify-content: center;
}
.cid-uoOashR4Ab .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoOashR4Ab .row {
    padding: 0 12px;
  }
}
.cid-uoOashR4Ab .item-wrap {
  z-index: 1;
}
.cid-uoOashR4Ab .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoOaRufBcX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uoOaRufBcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoOaRufBcX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoOaRufBcX .row {
  justify-content: center;
}
.cid-uoOaRufBcX .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uoOaRufBcX .row {
    padding: 0 12px;
  }
}
.cid-uoOaRufBcX .item-wrap {
  z-index: 1;
}
.cid-uoOaRufBcX .image-wrapper {
  padding: 32px 16px;
}
@media (max-width: 992px) {
  .cid-uoOaRufBcX .image-wrapper {
    padding: 12px 0;
  }
}
.cid-uoOaRufBcX .image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uoOaRufBcX .image-wrapper img {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .cid-uoOaRufBcX .image-wrapper img {
    height: 150px;
  }
}
.cid-uoO07MiKmM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uoO07MiKmM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoO07MiKmM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoO07MiKmM .row {
  justify-content: center;
}
.cid-uoO07MiKmM .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoO07MiKmM .row {
    padding: 0 12px;
  }
}
.cid-uoO07MiKmM .item-wrap {
  z-index: 1;
}
.cid-uoO07MiKmM .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoO07MiKmM .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoO07MiKmM .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-uoO07MiKmM .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoO07MiKmM .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-uoO07MiKmM .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uoO07MiKmM .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uoO07MiKmM .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-uoO07MiKmM .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uoO07MiKmM .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-uoO07MiKmM .mbr-section-title {
  color: #ffffff;
}
.cid-uoO07MiKmM .mbr-text {
  color: #ffffff;
}
.cid-uoO8E9rfS1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uoO8E9rfS1 .container-fluid {
  padding-right: 0;
}
.cid-uoO8E9rfS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoO8E9rfS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoO8E9rfS1 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uoO8E9rfS1 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uoO8E9rfS1 .title {
  display: flex;
  align-items: center;
}
.cid-uoO8E9rfS1 .title-wrapper {
  width: 100%;
}
.cid-uoO8E9rfS1 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoO8E9rfS1 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uoO8E9rfS1 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uoO8E9rfS1 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uoO8E9rfS1 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uoO8E9rfS1 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uoO8E9rfS1 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uoO8E9rfS1 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uoO8E9rfS1 .mbr-section-subtitle {
  color: #181818;
}
.cid-uoO8E9rfS1 .mbr-section-title {
  color: #181818;
}
.cid-uoO8E9rfS1 .mbr-text {
  color: #454545;
}
.cid-txlFgmaKGU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlFgmaKGU .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlFgmaKGU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlFgmaKGU .row {
  justify-content: center;
}
.cid-txlFgmaKGU .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlFgmaKGU .row {
    padding: 0 12px;
  }
}
.cid-txlFgmaKGU .item-wrap {
  z-index: 1;
}
.cid-txlFgmaKGU .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlFgmaKGU .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txlFgmaKGU .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txlFgmaKGU .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txlFgmaKGU .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txlFgmaKGU .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txlFgmaKGU .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txlFgmaKGU .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txlFgmaKGU .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txlFgmaKGU .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txlFgmaKGU .mbr-section-title {
  color: #ffffff;
}
.cid-txlFgmaKGU .mbr-text {
  color: #ffffff;
}
.cid-tzfY9SQGOF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzfY9SQGOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzfY9SQGOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzfY9SQGOF .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-tzfY9SQGOF .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tzfY9SQGOF .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzfY9SQGOF .row {
    padding: 0 12px;
  }
}
.cid-tzfY9SQGOF .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-tzfY9SQGOF .item-wrap {
  z-index: 1;
}
.cid-tzfY9SQGOF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzfY9SQGOF .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-tzfY9SQGOF .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzfY9SQGOF .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-tzfY9SQGOF .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tzfY9SQGOF .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-tzfY9SQGOF .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-tzfY9SQGOF .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-tzfY9SQGOF .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-tzfY9SQGOF .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-tzfY9SQGOF .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-tzfY9SQGOF .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-tzfY9SQGOF .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tzfY9SQGOF .mbr-section-btn {
    text-align: center;
  }
}
.cid-tzfY9SQGOF .mbr-section-title {
  color: #ffffff;
}
.cid-tzfY9SQGOF .mbr-text {
  color: #ffffff;
}
.cid-tzfY9SQGOF .mbr-price {
  color: #ffffff;
}
.cid-tzfY9SQGOF .mbr-max-price {
  color: #ffffff;
}
.cid-txlDIIQsWX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txlDIIQsWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlDIIQsWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlDIIQsWX .row {
  justify-content: center;
}
.cid-txlDIIQsWX .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlDIIQsWX .row {
    padding: 0 12px;
  }
}
.cid-txlDIIQsWX .item-wrap {
  z-index: 1;
}
.cid-txlDIIQsWX .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txlDGzzTan {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txlDGzzTan .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlDGzzTan .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlDGzzTan .row {
  justify-content: center;
}
.cid-txlDGzzTan .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-txlDGzzTan .row {
    padding: 0 12px;
  }
}
.cid-txlDGzzTan .item-wrap {
  z-index: 1;
}
.cid-txlDGzzTan .image-wrapper {
  padding: 32px 16px;
}
@media (max-width: 992px) {
  .cid-txlDGzzTan .image-wrapper {
    padding: 12px 0;
  }
}
.cid-txlDGzzTan .image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-txlDGzzTan .image-wrapper img {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .cid-txlDGzzTan .image-wrapper img {
    height: 150px;
  }
}
.cid-txlCUgXNMN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txlCUgXNMN .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlCUgXNMN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlCUgXNMN .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txlCUgXNMN .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txlCUgXNMN .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlCUgXNMN .row {
    padding: 0 12px;
  }
}
.cid-txlCUgXNMN .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txlCUgXNMN .item-wrap {
  z-index: 1;
}
.cid-txlCUgXNMN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCUgXNMN .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txlCUgXNMN .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCUgXNMN .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCUgXNMN .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCUgXNMN .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCUgXNMN .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txlCUgXNMN .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txlCUgXNMN .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txlCUgXNMN .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txlCUgXNMN .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txlCUgXNMN .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txlCUgXNMN .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCUgXNMN .mbr-section-btn {
    text-align: center;
  }
}
.cid-txlCUgXNMN .mbr-section-title {
  color: #ffffff;
}
.cid-txlCUgXNMN .mbr-text {
  color: #ffffff;
}
.cid-txlCUgXNMN .mbr-price {
  color: #ffffff;
}
.cid-txlCUgXNMN .mbr-max-price {
  color: #ffffff;
}
.cid-txl7BMxO5k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl7BMxO5k .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl7BMxO5k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl7BMxO5k .row {
  justify-content: center;
}
.cid-txl7BMxO5k .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl7BMxO5k .row {
    padding: 0 12px;
  }
}
.cid-txl7BMxO5k .item-wrap {
  z-index: 1;
}
.cid-txl7BMxO5k .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txl7BMxO5k .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl7BMxO5k .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txl7BMxO5k .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl7BMxO5k .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl7BMxO5k .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txl7BMxO5k .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl7BMxO5k .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txl7BMxO5k .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txl7BMxO5k .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txl7BMxO5k .mbr-section-title {
  color: #ffffff;
}
.cid-txl7BMxO5k .mbr-text {
  color: #ffffff;
}
.cid-txl7jrJuVH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl7jrJuVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl7jrJuVH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl7jrJuVH .row {
  justify-content: center;
}
.cid-txl7jrJuVH .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl7jrJuVH .row {
    padding: 0 12px;
  }
}
.cid-txl7jrJuVH .item-wrap {
  z-index: 1;
}
.cid-txl7jrJuVH .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txl7jrJuVH .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txkYMov3Om {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-txkYMov3Om .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txkYMov3Om .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txkYMov3Om .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txkYMov3Om .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txkYMov3Om .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txkYMov3Om .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txkYMov3Om .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-txkYMov3Om .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-txkYMov3Om .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txlCW7tQrg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txlCW7tQrg .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlCW7tQrg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlCW7tQrg .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txlCW7tQrg .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txlCW7tQrg .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlCW7tQrg .row {
    padding: 0 12px;
  }
}
.cid-txlCW7tQrg .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txlCW7tQrg .item-wrap {
  z-index: 1;
}
.cid-txlCW7tQrg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCW7tQrg .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txlCW7tQrg .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCW7tQrg .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCW7tQrg .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCW7tQrg .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCW7tQrg .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txlCW7tQrg .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txlCW7tQrg .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txlCW7tQrg .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txlCW7tQrg .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txlCW7tQrg .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txlCW7tQrg .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCW7tQrg .mbr-section-btn {
    text-align: center;
  }
}
.cid-txlCW7tQrg .mbr-section-title {
  color: #ffffff;
}
.cid-txlCW7tQrg .mbr-text {
  color: #ffffff;
}
.cid-txlCW7tQrg .mbr-price {
  color: #ffffff;
}
.cid-txlCW7tQrg .mbr-max-price {
  color: #ffffff;
}
.cid-txl0oteSZi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl0oteSZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl0oteSZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl0oteSZi .row {
  justify-content: center;
}
.cid-txl0oteSZi .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl0oteSZi .row {
    padding: 0 12px;
  }
}
.cid-txl0oteSZi .item-wrap {
  z-index: 1;
}
.cid-txl0oteSZi .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txl0oteSZi .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl0oteSZi .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txl0oteSZi .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl0oteSZi .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl0oteSZi .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txl0oteSZi .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl0oteSZi .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txl0oteSZi .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txl0oteSZi .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txl0oteSZi .mbr-section-title {
  color: #ffffff;
}
.cid-txl0oteSZi .mbr-text {
  color: #ffffff;
}
.cid-txl6KBT7vi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txl6KBT7vi .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl6KBT7vi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl6KBT7vi .row {
  justify-content: center;
}
.cid-txl6KBT7vi .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl6KBT7vi .row {
    padding: 0 12px;
  }
}
.cid-txl6KBT7vi .item-wrap {
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-txl6KBT7vi .card {
    margin-bottom: 3rem;
  }
}
.cid-txl6KBT7vi .card:first-child {
  padding-right: 24px;
}
@media (max-width: 992px) {
  .cid-txl6KBT7vi .card:first-child {
    padding: 0 12px;
  }
}
.cid-txl6KBT7vi .card:nth-child(2) {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-txl6KBT7vi .card:nth-child(2) {
    padding: 0 12px;
  }
}
.cid-txl6KBT7vi .card:last-child {
  padding-left: 24px;
}
@media (max-width: 992px) {
  .cid-txl6KBT7vi .card:last-child {
    padding: 0 12px;
  }
}
.cid-txl6KBT7vi .card .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-txl6KBT7vi .card .mbr-section-title {
    margin-bottom: 2rem;
  }
}
.cid-txl6KBT7vi .card .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-txl6KBT7vi .mbr-section-title {
  color: #ffffff;
}
.cid-txl6KBT7vi .mbr-text {
  color: #ffffff;
}
.cid-txkZiz2z4g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-txkZiz2z4g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txkZiz2z4g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txkZiz2z4g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txkZiz2z4g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txkZiz2z4g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txkZiz2z4g .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txkZiz2z4g .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-txkZiz2z4g .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-txkZiz2z4g .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txlCXHPAI5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txlCXHPAI5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlCXHPAI5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlCXHPAI5 .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txlCXHPAI5 .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txlCXHPAI5 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlCXHPAI5 .row {
    padding: 0 12px;
  }
}
.cid-txlCXHPAI5 .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txlCXHPAI5 .item-wrap {
  z-index: 1;
}
.cid-txlCXHPAI5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCXHPAI5 .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txlCXHPAI5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCXHPAI5 .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCXHPAI5 .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCXHPAI5 .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCXHPAI5 .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txlCXHPAI5 .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txlCXHPAI5 .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txlCXHPAI5 .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txlCXHPAI5 .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txlCXHPAI5 .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txlCXHPAI5 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCXHPAI5 .mbr-section-btn {
    text-align: center;
  }
}
.cid-txlCXHPAI5 .mbr-section-title {
  color: #ffffff;
}
.cid-txlCXHPAI5 .mbr-text {
  color: #ffffff;
}
.cid-txlCXHPAI5 .mbr-price {
  color: #ffffff;
}
.cid-txlCXHPAI5 .mbr-max-price {
  color: #ffffff;
}
.cid-txl0mztkPS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl0mztkPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl0mztkPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl0mztkPS .row {
  justify-content: center;
}
.cid-txl0mztkPS .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl0mztkPS .row {
    padding: 0 12px;
  }
}
.cid-txl0mztkPS .item-wrap {
  z-index: 1;
}
.cid-txl0mztkPS .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txl0mztkPS .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl0mztkPS .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txl0mztkPS .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl0mztkPS .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl0mztkPS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txl0mztkPS .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl0mztkPS .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txl0mztkPS .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txl0mztkPS .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txl0mztkPS .mbr-section-title {
  color: #ffffff;
}
.cid-txl0mztkPS .mbr-text {
  color: #ffffff;
}
.cid-txl2ivc7V8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl2ivc7V8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl2ivc7V8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl2ivc7V8 .row {
  justify-content: center;
}
.cid-txl2ivc7V8 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl2ivc7V8 .row {
    padding: 0 12px;
  }
}
.cid-txl2ivc7V8 .item-wrap {
  z-index: 1;
}
.cid-txl2ivc7V8 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txl2ivc7V8 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txl1UnRob4 .modal-body .close {
  background: #1b1b1b;
}
.cid-txl1UnRob4 .modal-body .close span {
  font-style: normal;
}
.cid-txl1UnRob4 .carousel-inner > .active,
.cid-txl1UnRob4 .carousel-inner > .next,
.cid-txl1UnRob4 .carousel-inner > .prev {
  display: table;
}
.cid-txl1UnRob4 .carousel-control .icon-next,
.cid-txl1UnRob4 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-txl1UnRob4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txl1UnRob4 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txl1UnRob4 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-txl1UnRob4 .boxed-slider > div {
  position: relative;
}
.cid-txl1UnRob4 .container img {
  width: 100%;
}
.cid-txl1UnRob4 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-txl1UnRob4 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txl1UnRob4 .mbr-table-cell {
  padding: 0;
}
.cid-txl1UnRob4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-txl1UnRob4 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-txl1UnRob4 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txl1UnRob4 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-txl1UnRob4 .carousel-item .container {
    width: 100%;
  }
}
.cid-txl1UnRob4 .carousel-item-next.carousel-item-left,
.cid-txl1UnRob4 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-txl1UnRob4 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-txl1UnRob4 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txl1UnRob4 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txl1UnRob4 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-txl1UnRob4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txl1UnRob4 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-txl1UnRob4 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-txl1UnRob4 .mbr-slider .carousel-indicators li.active,
.cid-txl1UnRob4 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-txl1UnRob4 .mbr-slider .carousel-indicators li::after,
.cid-txl1UnRob4 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-txl1UnRob4 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-txl1UnRob4 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-txl1UnRob4 .mbr-slider > .container img {
  width: 100%;
}
.cid-txl1UnRob4 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-txl1UnRob4 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-txl1UnRob4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txl1UnRob4 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txl1UnRob4 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-txl1UnRob4 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-txl1UnRob4 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-txl1UnRob4 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-txl1UnRob4 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-txl1UnRob4 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txl1UnRob4 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-txl1UnRob4 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-txl1UnRob4 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-txlCZ0isZ0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txlCZ0isZ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlCZ0isZ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlCZ0isZ0 .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txlCZ0isZ0 .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txlCZ0isZ0 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlCZ0isZ0 .row {
    padding: 0 12px;
  }
}
.cid-txlCZ0isZ0 .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txlCZ0isZ0 .item-wrap {
  z-index: 1;
}
.cid-txlCZ0isZ0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCZ0isZ0 .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txlCZ0isZ0 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlCZ0isZ0 .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCZ0isZ0 .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCZ0isZ0 .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlCZ0isZ0 .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txlCZ0isZ0 .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txlCZ0isZ0 .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txlCZ0isZ0 .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txlCZ0isZ0 .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txlCZ0isZ0 .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txlCZ0isZ0 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlCZ0isZ0 .mbr-section-btn {
    text-align: center;
  }
}
.cid-txlCZ0isZ0 .mbr-section-title {
  color: #ffffff;
}
.cid-txlCZ0isZ0 .mbr-text {
  color: #ffffff;
}
.cid-txlCZ0isZ0 .mbr-price {
  color: #ffffff;
}
.cid-txlCZ0isZ0 .mbr-max-price {
  color: #ffffff;
}
.cid-txl2biOyqr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl2biOyqr .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl2biOyqr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl2biOyqr .row {
  justify-content: center;
}
.cid-txl2biOyqr .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl2biOyqr .row {
    padding: 0 12px;
  }
}
.cid-txl2biOyqr .item-wrap {
  z-index: 1;
}
.cid-txl2biOyqr .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txl2biOyqr .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl2biOyqr .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txl2biOyqr .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl2biOyqr .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl2biOyqr .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txl2biOyqr .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl2biOyqr .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txl2biOyqr .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txl2biOyqr .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txl2biOyqr .mbr-section-title {
  color: #ffffff;
}
.cid-txl2biOyqr .mbr-text {
  color: #ffffff;
}
.cid-txl2KR2C3v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl2KR2C3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl2KR2C3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl2KR2C3v .row {
  justify-content: center;
}
.cid-txl2KR2C3v .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl2KR2C3v .row {
    padding: 0 12px;
  }
}
.cid-txl2KR2C3v .item-wrap {
  z-index: 1;
}
.cid-txl2KR2C3v .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txl2KR2C3v .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txl26o6rPm .modal-body .close {
  background: #1b1b1b;
}
.cid-txl26o6rPm .modal-body .close span {
  font-style: normal;
}
.cid-txl26o6rPm .carousel-inner > .active,
.cid-txl26o6rPm .carousel-inner > .next,
.cid-txl26o6rPm .carousel-inner > .prev {
  display: table;
}
.cid-txl26o6rPm .carousel-control .icon-next,
.cid-txl26o6rPm .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-txl26o6rPm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txl26o6rPm .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txl26o6rPm .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-txl26o6rPm .boxed-slider > div {
  position: relative;
}
.cid-txl26o6rPm .container img {
  width: 100%;
}
.cid-txl26o6rPm .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-txl26o6rPm .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txl26o6rPm .mbr-table-cell {
  padding: 0;
}
.cid-txl26o6rPm .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-txl26o6rPm .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-txl26o6rPm .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txl26o6rPm .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-txl26o6rPm .carousel-item .container {
    width: 100%;
  }
}
.cid-txl26o6rPm .carousel-item-next.carousel-item-left,
.cid-txl26o6rPm .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-txl26o6rPm .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-txl26o6rPm .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txl26o6rPm .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txl26o6rPm .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-txl26o6rPm .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txl26o6rPm .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-txl26o6rPm .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-txl26o6rPm .mbr-slider .carousel-indicators li.active,
.cid-txl26o6rPm .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-txl26o6rPm .mbr-slider .carousel-indicators li::after,
.cid-txl26o6rPm .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-txl26o6rPm .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-txl26o6rPm .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-txl26o6rPm .mbr-slider > .container img {
  width: 100%;
}
.cid-txl26o6rPm .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-txl26o6rPm .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-txl26o6rPm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txl26o6rPm .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txl26o6rPm .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-txl26o6rPm .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-txl26o6rPm .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-txl26o6rPm .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-txl26o6rPm .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-txl26o6rPm .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txl26o6rPm .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-txl26o6rPm .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-txl26o6rPm .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-txlD1uXp3w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txlD1uXp3w .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlD1uXp3w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlD1uXp3w .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txlD1uXp3w .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txlD1uXp3w .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlD1uXp3w .row {
    padding: 0 12px;
  }
}
.cid-txlD1uXp3w .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txlD1uXp3w .item-wrap {
  z-index: 1;
}
.cid-txlD1uXp3w .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlD1uXp3w .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txlD1uXp3w .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlD1uXp3w .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlD1uXp3w .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlD1uXp3w .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlD1uXp3w .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txlD1uXp3w .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txlD1uXp3w .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txlD1uXp3w .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txlD1uXp3w .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txlD1uXp3w .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txlD1uXp3w .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlD1uXp3w .mbr-section-btn {
    text-align: center;
  }
}
.cid-txlD1uXp3w .mbr-section-title {
  color: #ffffff;
}
.cid-txlD1uXp3w .mbr-text {
  color: #ffffff;
}
.cid-txlD1uXp3w .mbr-price {
  color: #ffffff;
}
.cid-txlD1uXp3w .mbr-max-price {
  color: #ffffff;
}
.cid-txl0l2S7on {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txl0l2S7on .mbr-fallback-image.disabled {
  display: none;
}
.cid-txl0l2S7on .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txl0l2S7on .row {
  justify-content: center;
}
.cid-txl0l2S7on .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txl0l2S7on .row {
    padding: 0 12px;
  }
}
.cid-txl0l2S7on .item-wrap {
  z-index: 1;
}
.cid-txl0l2S7on .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txl0l2S7on .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl0l2S7on .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txl0l2S7on .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl0l2S7on .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txl0l2S7on .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txl0l2S7on .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txl0l2S7on .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txl0l2S7on .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txl0l2S7on .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txl0l2S7on .mbr-section-title {
  color: #ffffff;
}
.cid-txl0l2S7on .mbr-text {
  color: #ffffff;
}
.cid-txkZkdFTL1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-txkZkdFTL1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txkZkdFTL1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txkZkdFTL1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txkZkdFTL1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txkZkdFTL1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txkZkdFTL1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txkZkdFTL1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-txkZkdFTL1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-txkZkdFTL1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txlD2NwWc6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txlD2NwWc6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlD2NwWc6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlD2NwWc6 .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txlD2NwWc6 .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txlD2NwWc6 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlD2NwWc6 .row {
    padding: 0 12px;
  }
}
.cid-txlD2NwWc6 .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txlD2NwWc6 .item-wrap {
  z-index: 1;
}
.cid-txlD2NwWc6 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlD2NwWc6 .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txlD2NwWc6 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txlD2NwWc6 .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlD2NwWc6 .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlD2NwWc6 .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txlD2NwWc6 .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txlD2NwWc6 .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txlD2NwWc6 .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txlD2NwWc6 .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txlD2NwWc6 .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txlD2NwWc6 .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txlD2NwWc6 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txlD2NwWc6 .mbr-section-btn {
    text-align: center;
  }
}
.cid-txlD2NwWc6 .mbr-section-title {
  color: #ffffff;
}
.cid-txlD2NwWc6 .mbr-text {
  color: #ffffff;
}
.cid-txlD2NwWc6 .mbr-price {
  color: #ffffff;
}
.cid-txlD2NwWc6 .mbr-max-price {
  color: #ffffff;
}
.cid-txkZLcUsCl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txkZLcUsCl .mbr-fallback-image.disabled {
  display: none;
}
.cid-txkZLcUsCl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txkZLcUsCl .row {
  justify-content: center;
}
.cid-txkZLcUsCl .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txkZLcUsCl .row {
    padding: 0 12px;
  }
}
.cid-txkZLcUsCl .item-wrap {
  z-index: 1;
}
.cid-txkZLcUsCl .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txkZLcUsCl .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txkZLcUsCl .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txkZLcUsCl .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txkZLcUsCl .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txkZLcUsCl .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txkZLcUsCl .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txkZLcUsCl .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txkZLcUsCl .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txkZLcUsCl .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txkZLcUsCl .mbr-section-title {
  color: #ffffff;
}
.cid-txkZLcUsCl .mbr-text {
  color: #ffffff;
}
.cid-txkZl1iQ8Q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txkZl1iQ8Q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txkZl1iQ8Q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txkZl1iQ8Q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txkZl1iQ8Q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txkZl1iQ8Q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-txkZl1iQ8Q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txkZl1iQ8Q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-txkZl1iQ8Q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-txkZl1iQ8Q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txloZ87fhT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txloZ87fhT .mbr-fallback-image.disabled {
  display: none;
}
.cid-txloZ87fhT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txloZ87fhT .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txloZ87fhT .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txloZ87fhT .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txloZ87fhT .row {
    padding: 0 12px;
  }
}
.cid-txloZ87fhT .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txloZ87fhT .item-wrap {
  z-index: 1;
}
.cid-txloZ87fhT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txloZ87fhT .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txloZ87fhT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txloZ87fhT .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txloZ87fhT .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txloZ87fhT .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txloZ87fhT .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txloZ87fhT .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txloZ87fhT .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txloZ87fhT .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txloZ87fhT .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txloZ87fhT .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txloZ87fhT .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txloZ87fhT .mbr-section-btn {
    text-align: center;
  }
}
.cid-txloZ87fhT .mbr-section-title {
  color: #ffffff;
}
.cid-txloZ87fhT .mbr-text {
  color: #ffffff;
}
.cid-txloZ87fhT .mbr-price {
  color: #ffffff;
}
.cid-txloZ87fhT .mbr-max-price {
  color: #ffffff;
}
.cid-txmffCByS6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txmffCByS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txmffCByS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txmffCByS6 .row {
  justify-content: center;
}
.cid-txmffCByS6 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txmffCByS6 .row {
    padding: 0 12px;
  }
}
.cid-txmffCByS6 .item-wrap {
  z-index: 1;
}
.cid-txmffCByS6 .item-wrap-video {
  z-index: 1;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-txmffCByS6 .item-wrap-video {
    padding-right: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-txmffCByS6 .item-wrap-video {
    padding: 0 12px;
  }
}
.cid-txmffCByS6 .item-wrap-image {
  z-index: 1;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-txmffCByS6 .item-wrap-image {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .cid-txmffCByS6 .item-wrap-image {
    padding: 0 12px;
  }
}
.cid-txmffCByS6 .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-txmffCByS6 .mbr-section-subtitle {
  margin-bottom: 64px;
  color: #181818;
}
.cid-txmffCByS6 .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-txmffCByS6 .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-txmffCByS6 .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-txmffCByS6 .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-txmffCByS6 .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-txmffCByS6 .card .card-link {
  width: 100%;
  display: block;
}
.cid-txmffCByS6 .card .card-link:hover .image-wrapper img {
  transform: scale(1.1, 1.1);
}
.cid-txmffCByS6 .card .card-link:hover .mbr-card-title {
  color: #ae856c;
}
.cid-txmffCByS6 .video-wrapper {
  width: 100%;
  height: 420px;
  margin-bottom: 32px;
}
.cid-txmffCByS6 .video-wrapper .app-video-wrapper {
  height: 100%;
}
.cid-txmffCByS6 .video-wrapper .app-video-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-txmffCByS6 .video-wrapper iframe {
  height: 420px !important;
}
@media (max-width: 992px) {
  .cid-txmffCByS6 .video-wrapper iframe {
    height: 210px !important;
  }
}
@media (max-width: 768px) {
  .cid-txmffCByS6 .video-wrapper iframe {
    height: 150px !important;
  }
}
@media (max-width: 992px) {
  .cid-txmffCByS6 .video-wrapper {
    height: 210px;
  }
}
.cid-txmffCByS6 .image-wrapper {
  margin-bottom: 32px;
  overflow: hidden;
}
.cid-txmffCByS6 .image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-txmffCByS6 .image-wrapper img {
    height: 210px;
  }
}
@media (max-width: 768px) {
  .cid-txmffCByS6 .image-wrapper img {
    height: 150px;
  }
}
.cid-txmffCByS6 .mbr-card-title {
  margin-bottom: 24px;
  transition: all .3s ease;
  color: #181818;
}
.cid-txmffCByS6 .mbr-card-text {
  margin-bottom: 18px;
  color: #181818;
}
.cid-txmffCByS6 .person-container .person-wrapper {
  display: inline-flex;
}
.cid-txmffCByS6 .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-txmffCByS6 .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-txmffCByS6 .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-txmffCByS6 .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
.cid-txmffCByS6 .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-txmffCByS6 .mbr-person {
  color: #181818;
}
.cid-txlSEOGpkm {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txlSEOGpkm .container-fluid {
  padding-right: 0;
}
.cid-txlSEOGpkm .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlSEOGpkm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlSEOGpkm .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlSEOGpkm .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txlSEOGpkm .title {
  display: flex;
  align-items: center;
}
.cid-txlSEOGpkm .title-wrapper {
  width: 100%;
}
.cid-txlSEOGpkm .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlSEOGpkm .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txlSEOGpkm .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlSEOGpkm .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txlSEOGpkm .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txlSEOGpkm .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txlSEOGpkm .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txlSEOGpkm .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txlSEOGpkm .mbr-section-subtitle {
  color: #181818;
}
.cid-txlSEOGpkm .mbr-section-title {
  color: #181818;
}
.cid-txlSEOGpkm .mbr-text {
  color: #454545;
}
.cid-txlSGrNaW4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txlSGrNaW4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlSGrNaW4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlSGrNaW4 .row {
  justify-content: center;
}
.cid-txlSGrNaW4 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlSGrNaW4 .row {
    padding: 0 12px;
  }
}
.cid-txlSGrNaW4 .item-wrap {
  z-index: 1;
}
.cid-txlSGrNaW4 .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txm4AC7dBZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txm4AC7dBZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txm4AC7dBZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txm4AC7dBZ .row {
  justify-content: center;
}
.cid-txm4AC7dBZ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txm4AC7dBZ .row {
    padding: 0 12px;
  }
}
.cid-txm4AC7dBZ .item-wrap {
  z-index: 1;
}
.cid-txm4AC7dBZ .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txm4AC7dBZ .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txlYeg8GQh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txlYeg8GQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlYeg8GQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlYeg8GQh .row {
  justify-content: center;
}
.cid-txlYeg8GQh .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlYeg8GQh .row {
    padding: 0 12px;
  }
}
.cid-txlYeg8GQh .item-wrap {
  z-index: 1;
}
.cid-txlYeg8GQh .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txlYeg8GQh .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txlYeg8GQh .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txlYeg8GQh .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txlYeg8GQh .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txlYeg8GQh .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txlYeg8GQh .item {
  margin-bottom: 4rem;
}
.cid-txlYeg8GQh .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txlYeg8GQh .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txlYeg8GQh .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txlYeg8GQh .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txlYeg8GQh .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txlYeg8GQh .item a:hover {
  transform: translateY(-10px);
}
.cid-txlYeg8GQh .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txlYeg8GQh .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txlYeg8GQh .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txlYeg8GQh .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txlYeg8GQh .mbr-card-title {
  color: #181818;
}
.cid-txlYeg8GQh .mbr-card-subtitle {
  color: #454545;
}
.cid-txm4BhaZMf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txm4BhaZMf .mbr-fallback-image.disabled {
  display: none;
}
.cid-txm4BhaZMf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txm4BhaZMf .row {
  justify-content: center;
}
.cid-txm4BhaZMf .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txm4BhaZMf .row {
    padding: 0 12px;
  }
}
.cid-txm4BhaZMf .item-wrap {
  z-index: 1;
}
.cid-txm4BhaZMf .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txm4BhaZMf .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txm1GhRo7x {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txm1GhRo7x .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txm1GhRo7x .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txm1GhRo7x .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txm1GhRo7x .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txm1GhRo7x .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #149dcc);
}
.cid-txm1GhRo7x .icon-focus {
  display: none;
}
.cid-txm1GhRo7x .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-txm1GhRo7x ul {
  font-size: 0;
}
.cid-txm1GhRo7x .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-txm1GhRo7x .mbr-gallery-filter ul li .btn.active,
.cid-txm1GhRo7x .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-txm1GhRo7x .mbr-gallery-filter ul li .btn.active:after,
.cid-txm1GhRo7x .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #181818, #454545);
}
.cid-txm1GhRo7x .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-txm1GhRo7x .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-txm1GhRo7x .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-txm1GhRo7x .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-txm1GhRo7x .btn:hover {
  background: transparent !important;
}
.cid-txm1GhRo7x .btn:hover:before {
  background: transparent !important;
}
.cid-txm1GhRo7x .btn:before {
  background-color: transparent !important;
}
.cid-txm1GhRo7x .btn:focus {
  box-shadow: none;
}
.cid-txm1GhRo7x .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-txm5g93bmc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txm5g93bmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-txm5g93bmc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txm5g93bmc .row {
  justify-content: center;
}
.cid-txm5g93bmc .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txm5g93bmc .row {
    padding: 0 12px;
  }
}
.cid-txm5g93bmc .item-wrap {
  z-index: 1;
}
.cid-txm5g93bmc .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txm5g93bmc .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txlU7306x5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txlU7306x5 .container-fluid {
  padding-right: 0;
}
.cid-txlU7306x5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlU7306x5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlU7306x5 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlU7306x5 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txlU7306x5 .title {
  display: flex;
  align-items: center;
}
.cid-txlU7306x5 .title-wrapper {
  width: 100%;
}
.cid-txlU7306x5 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlU7306x5 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txlU7306x5 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlU7306x5 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txlU7306x5 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txlU7306x5 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txlU7306x5 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txlU7306x5 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txlU7306x5 .mbr-section-subtitle {
  color: #181818;
}
.cid-txlU7306x5 .mbr-section-title {
  color: #181818;
}
.cid-txlU7306x5 .mbr-text {
  color: #454545;
}
.cid-txlUYwSylT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlUYwSylT .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlUYwSylT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlUYwSylT .row {
  justify-content: center;
}
.cid-txlUYwSylT .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlUYwSylT .row {
    padding: 0 12px;
  }
}
.cid-txlUYwSylT .item-wrap {
  z-index: 1;
}
.cid-txlUYwSylT .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlUYwSylT .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txlVh17V8Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlVh17V8Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlVh17V8Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlVh17V8Q .row {
  justify-content: center;
}
.cid-txlVh17V8Q .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlVh17V8Q .row {
    padding: 0 12px;
  }
}
.cid-txlVh17V8Q .item-wrap {
  z-index: 1;
}
.cid-txlVh17V8Q .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlVh17V8Q .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txlTOhvfBw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txlTOhvfBw .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlTOhvfBw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlTOhvfBw .row {
  justify-content: center;
}
.cid-txlTOhvfBw .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlTOhvfBw .row {
    padding: 0 12px;
  }
}
.cid-txlTOhvfBw .item-wrap {
  z-index: 1;
}
.cid-txlTOhvfBw .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txm868NZ5m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txm868NZ5m .mbr-fallback-image.disabled {
  display: none;
}
.cid-txm868NZ5m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txm868NZ5m .row {
  justify-content: center;
}
.cid-txm868NZ5m .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txm868NZ5m .row {
    padding: 0 12px;
  }
}
.cid-txm868NZ5m .item-wrap {
  z-index: 1;
}
.cid-txm868NZ5m .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txm868NZ5m .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txm7KB5Ewp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txm7KB5Ewp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txm7KB5Ewp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txm7KB5Ewp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txm7KB5Ewp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txm7KB5Ewp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #149dcc);
}
.cid-txm7KB5Ewp .icon-focus {
  display: none;
}
.cid-txm7KB5Ewp .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-txm7KB5Ewp ul {
  font-size: 0;
}
.cid-txm7KB5Ewp .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-txm7KB5Ewp .mbr-gallery-filter ul li .btn.active,
.cid-txm7KB5Ewp .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-txm7KB5Ewp .mbr-gallery-filter ul li .btn.active:after,
.cid-txm7KB5Ewp .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #181818, #454545);
}
.cid-txm7KB5Ewp .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-txm7KB5Ewp .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-txm7KB5Ewp .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-txm7KB5Ewp .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-txm7KB5Ewp .btn:hover {
  background: transparent !important;
}
.cid-txm7KB5Ewp .btn:hover:before {
  background: transparent !important;
}
.cid-txm7KB5Ewp .btn:before {
  background-color: transparent !important;
}
.cid-txm7KB5Ewp .btn:focus {
  box-shadow: none;
}
.cid-txm7KB5Ewp .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-txm87NYNXu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txm87NYNXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-txm87NYNXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txm87NYNXu .row {
  justify-content: center;
}
.cid-txm87NYNXu .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txm87NYNXu .row {
    padding: 0 12px;
  }
}
.cid-txm87NYNXu .item-wrap {
  z-index: 1;
}
.cid-txm87NYNXu .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txm87NYNXu .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txmcBJMNWG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txmcBJMNWG .container-fluid {
  padding-right: 0;
}
.cid-txmcBJMNWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-txmcBJMNWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txmcBJMNWG .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txmcBJMNWG .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txmcBJMNWG .title {
  display: flex;
  align-items: center;
}
.cid-txmcBJMNWG .title-wrapper {
  width: 100%;
}
.cid-txmcBJMNWG .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txmcBJMNWG .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txmcBJMNWG .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txmcBJMNWG .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txmcBJMNWG .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txmcBJMNWG .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txmcBJMNWG .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txmcBJMNWG .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txmcBJMNWG .mbr-section-subtitle {
  color: #181818;
}
.cid-txmcBJMNWG .mbr-section-title {
  color: #181818;
}
.cid-txmcBJMNWG .mbr-text {
  color: #454545;
}
.cid-txm3oHaQjD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txm3oHaQjD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txm3oHaQjD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txm3oHaQjD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txm3oHaQjD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txm3oHaQjD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #149dcc);
}
.cid-txm3oHaQjD .icon-focus {
  display: none;
}
.cid-txm3oHaQjD .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-txm3oHaQjD ul {
  font-size: 0;
}
.cid-txm3oHaQjD .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-txm3oHaQjD .mbr-gallery-filter ul li .btn.active,
.cid-txm3oHaQjD .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-txm3oHaQjD .mbr-gallery-filter ul li .btn.active:after,
.cid-txm3oHaQjD .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #181818, #454545);
}
.cid-txm3oHaQjD .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-txm3oHaQjD .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-txm3oHaQjD .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-txm3oHaQjD .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-txm3oHaQjD .btn:hover {
  background: transparent !important;
}
.cid-txm3oHaQjD .btn:hover:before {
  background: transparent !important;
}
.cid-txm3oHaQjD .btn:before {
  background-color: transparent !important;
}
.cid-txm3oHaQjD .btn:focus {
  box-shadow: none;
}
.cid-txm3oHaQjD .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-txlVSK9jwF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlVSK9jwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlVSK9jwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlVSK9jwF .row {
  justify-content: center;
}
.cid-txlVSK9jwF .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlVSK9jwF .row {
    padding: 0 12px;
  }
}
.cid-txlVSK9jwF .item-wrap {
  z-index: 1;
}
.cid-txlVSK9jwF .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlVSK9jwF .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txm1uDhCdz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txm1uDhCdz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txm1uDhCdz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txm1uDhCdz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txm1uDhCdz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txm1uDhCdz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #149dcc);
}
.cid-txm1uDhCdz .icon-focus {
  display: none;
}
.cid-txm1uDhCdz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-txm1uDhCdz ul {
  font-size: 0;
}
.cid-txm1uDhCdz .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-txm1uDhCdz .mbr-gallery-filter ul li .btn.active,
.cid-txm1uDhCdz .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-txm1uDhCdz .mbr-gallery-filter ul li .btn.active:after,
.cid-txm1uDhCdz .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #181818, #454545);
}
.cid-txm1uDhCdz .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-txm1uDhCdz .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-txm1uDhCdz .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-txm1uDhCdz .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-txm1uDhCdz .btn:hover {
  background: transparent !important;
}
.cid-txm1uDhCdz .btn:hover:before {
  background: transparent !important;
}
.cid-txm1uDhCdz .btn:before {
  background-color: transparent !important;
}
.cid-txm1uDhCdz .btn:focus {
  box-shadow: none;
}
.cid-txm1uDhCdz .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-txm8aHOIm7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txm8aHOIm7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txm8aHOIm7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txm8aHOIm7 .row {
  justify-content: center;
}
.cid-txm8aHOIm7 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txm8aHOIm7 .row {
    padding: 0 12px;
  }
}
.cid-txm8aHOIm7 .item-wrap {
  z-index: 1;
}
.cid-txm8aHOIm7 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txm8aHOIm7 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-totMEg0Yua {
  z-index: 1000;
  width: 100%;
}
.cid-totMEg0Yua .navbar-dropdown {
  background-color: #f8f8f8 !important;
  padding: 0;
  position: fixed;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f8f8f8 !important;
  background: #f8f8f8;
}
.cid-totMEg0Yua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .menu_box .navbar.opened,
  .cid-totMEg0Yua .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-totMEg0Yua nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-totMEg0Yua .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-totMEg0Yua .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-totMEg0Yua .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #454545;
  }
  .cid-totMEg0Yua .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-totMEg0Yua .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-totMEg0Yua .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-totMEg0Yua .offcanvas-body .mbr-text,
  .cid-totMEg0Yua .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-totMEg0Yua .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #181818;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-totMEg0Yua .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-totMEg0Yua ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-totMEg0Yua li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-totMEg0Yua li.nav-item:hover {
    opacity: .8;
  }
  .cid-totMEg0Yua .lg_brand {
    margin: 0 1rem;
  }
}
.cid-totMEg0Yua .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-totMEg0Yua .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .nav-item {
    margin: 0 !important;
  }
}
.cid-totMEg0Yua .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-totMEg0Yua .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-totMEg0Yua .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-totMEg0Yua .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-totMEg0Yua .offcanvas_box {
    display: none;
  }
}
.cid-totMEg0Yua .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-totMEg0Yua .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-totMEg0Yua .container {
  display: flex;
  margin: auto;
}
.cid-totMEg0Yua .iconfont-wrapper {
  color: #181818;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-totMEg0Yua .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-totMEg0Yua .iconfont-wrapper:hover {
  color: #181818;
}
.cid-totMEg0Yua .navbar-caption {
  color: #181818;
}
.cid-totMEg0Yua .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-totMEg0Yua .navbar-nav {
    margin: 0;
  }
}
.cid-totMEg0Yua .dropdown-menu,
.cid-totMEg0Yua .navbar.opened {
  background-color: false !important;
}
.cid-totMEg0Yua .nav-item:focus,
.cid-totMEg0Yua .nav-link:focus {
  outline: none;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-totMEg0Yua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-totMEg0Yua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-totMEg0Yua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-totMEg0Yua .navbar {
  min-height: 140px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-totMEg0Yua .navbar.opened {
  transition: all 0.3s;
}
.cid-totMEg0Yua .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-totMEg0Yua .navbar .navbar-logo img {
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
}
.cid-totMEg0Yua .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-totMEg0Yua .navbar.collapsed {
  justify-content: center;
}
.cid-totMEg0Yua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-totMEg0Yua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-totMEg0Yua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-totMEg0Yua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-totMEg0Yua .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-totMEg0Yua .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-totMEg0Yua .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-totMEg0Yua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-totMEg0Yua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-totMEg0Yua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-totMEg0Yua .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-totMEg0Yua .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-totMEg0Yua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-totMEg0Yua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-totMEg0Yua .navbar .icons-menu {
    padding: 0;
  }
}
.cid-totMEg0Yua .navbar.navbar-short {
  min-height: 60px;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-totMEg0Yua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-totMEg0Yua .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-totMEg0Yua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-totMEg0Yua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-totMEg0Yua .dropdown-item.active,
.cid-totMEg0Yua .dropdown-item:active {
  background-color: transparent;
}
.cid-totMEg0Yua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-totMEg0Yua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-totMEg0Yua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-totMEg0Yua ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-totMEg0Yua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-totMEg0Yua button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f8f8f8;
  background: #ffffff;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-totMEg0Yua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-totMEg0Yua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-totMEg0Yua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-totMEg0Yua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-totMEg0Yua .navbar {
    height: 70px;
  }
  .cid-totMEg0Yua .navbar.opened {
    height: auto;
  }
  .cid-totMEg0Yua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-totMEg0Yua .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-totMEg0Yua .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-totMEg0Yua .navbar-caption:hover {
  color: #181818;
}
.cid-totMEg0Yua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-totMEg0Yua .text_widget {
  color: #ffffff;
}
.cid-totMEg0Yua .mbr-section-subtitle,
.cid-totMEg0Yua .text_widget {
  text-align: left;
}
.cid-totMEg0Yua a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-txloW7qRrt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txloW7qRrt .mbr-fallback-image.disabled {
  display: none;
}
.cid-txloW7qRrt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txloW7qRrt .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txloW7qRrt .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txloW7qRrt .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txloW7qRrt .row {
    padding: 0 12px;
  }
}
.cid-txloW7qRrt .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txloW7qRrt .item-wrap {
  z-index: 1;
}
.cid-txloW7qRrt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txloW7qRrt .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txloW7qRrt .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txloW7qRrt .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txloW7qRrt .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txloW7qRrt .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txloW7qRrt .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txloW7qRrt .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txloW7qRrt .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txloW7qRrt .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txloW7qRrt .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txloW7qRrt .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txloW7qRrt .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txloW7qRrt .mbr-section-btn {
    text-align: center;
  }
}
.cid-txloW7qRrt .mbr-section-title {
  color: #ffffff;
}
.cid-txloW7qRrt .mbr-text {
  color: #ffffff;
}
.cid-txloW7qRrt .mbr-price {
  color: #ffffff;
}
.cid-txloW7qRrt .mbr-max-price {
  color: #ffffff;
}
.cid-txlGexKkTm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txlGexKkTm .container-fluid {
  padding-right: 0;
}
.cid-txlGexKkTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlGexKkTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlGexKkTm .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlGexKkTm .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txlGexKkTm .title {
  display: flex;
  align-items: center;
}
.cid-txlGexKkTm .title-wrapper {
  width: 100%;
}
.cid-txlGexKkTm .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlGexKkTm .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txlGexKkTm .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txlGexKkTm .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txlGexKkTm .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txlGexKkTm .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txlGexKkTm .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txlGexKkTm .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txlGexKkTm .mbr-section-subtitle {
  color: #181818;
}
.cid-txlGexKkTm .mbr-section-title {
  color: #181818;
}
.cid-txlGexKkTm .mbr-text {
  color: #454545;
}
.cid-tzgbT8OcbN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzgbT8OcbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgbT8OcbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgbT8OcbN .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgbT8OcbN .row {
    padding: 0 12px;
  }
}
.cid-tzgbT8OcbN .item-wrap {
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tzgbT8OcbN .text-wrapper {
    margin-bottom: 8rem;
  }
}
.cid-tzgbT8OcbN .text-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-tzgbT8OcbN .text-wrapper .mbr-section-title span {
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-tzgbT8OcbN .text-wrapper .mbr-section-title {
    margin-bottom: 9.5px;
  }
}
.cid-tzgbT8OcbN .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tzgbT8OcbN .image-wrapper {
  display: flex;
  overflow: hidden;
}
.cid-tzgbT8OcbN .image-wrapper .image-container {
  height: 292px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .cid-tzgbT8OcbN .image-wrapper .image-container {
    height: 152px;
  }
}
.cid-tzgbT8OcbN .image-wrapper .image-container img {
  width: 190px;
  height: 140px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tzgbT8OcbN .image-wrapper .image-container img {
    width: 95px;
    height: 70px;
  }
}
.cid-tzgbT8OcbN .image-wrapper .image-container img:first-child {
  margin-bottom: 12px;
}
.cid-tzgbT8OcbN .image-wrapper img {
  height: 292px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tzgbT8OcbN .image-wrapper img {
    height: 152px;
  }
}
.cid-tzgbT8OcbN .border-wrap_1 {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-tzgbT8OcbN .border-wrap_1 {
    margin-bottom: 114px;
  }
}
.cid-tzgbT8OcbN .border-wrap_2 {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .cid-tzgbT8OcbN .border-wrap_2 {
    margin-top: 65px;
  }
}
.cid-tzgbT8OcbN .mbr-section-title {
  color: #181818;
}
.cid-tzgbT8OcbN .mbr-text {
  color: #454545;
}
.cid-txlGh51hDz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlGh51hDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlGh51hDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlGh51hDz .row {
  justify-content: center;
}
.cid-txlGh51hDz .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlGh51hDz .row {
    padding: 0 12px;
  }
}
.cid-txlGh51hDz .item-wrap {
  z-index: 1;
}
.cid-txlGh51hDz .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlGh51hDz .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txlGhLoTwJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txlGhLoTwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlGhLoTwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlGhLoTwJ .row {
  justify-content: center;
}
.cid-txlGhLoTwJ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlGhLoTwJ .row {
    padding: 0 12px;
  }
}
.cid-txlGhLoTwJ .item-wrap {
  z-index: 1;
}
.cid-txlGhLoTwJ .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzg9wiXvZh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzg9wiXvZh .container-fluid {
  padding-right: 0;
}
.cid-tzg9wiXvZh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzg9wiXvZh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzg9wiXvZh .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzg9wiXvZh .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzg9wiXvZh .title {
  display: flex;
  align-items: center;
}
.cid-tzg9wiXvZh .title-wrapper {
  width: 100%;
}
.cid-tzg9wiXvZh .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzg9wiXvZh .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzg9wiXvZh .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzg9wiXvZh .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzg9wiXvZh .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzg9wiXvZh .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzg9wiXvZh .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzg9wiXvZh .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzg9wiXvZh .mbr-section-subtitle {
  color: #181818;
}
.cid-tzg9wiXvZh .mbr-section-title {
  color: #181818;
}
.cid-tzg9wiXvZh .mbr-text {
  color: #454545;
}
.cid-tzg9xj54Gm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzg9xj54Gm .container-fluid {
  padding-right: 0;
  padding-right: 32px;
  padding-left: 0;
}
.cid-tzg9xj54Gm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzg9xj54Gm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzg9xj54Gm .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzg9xj54Gm .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzg9xj54Gm .title {
  display: flex;
  align-items: center;
}
.cid-tzg9xj54Gm .title-wrapper {
  width: 100%;
}
.cid-tzg9xj54Gm .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzg9xj54Gm .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzg9xj54Gm .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzg9xj54Gm .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzg9xj54Gm .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzg9xj54Gm .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzg9xj54Gm .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzg9xj54Gm .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzg9xj54Gm .mbr-section-subtitle {
  color: #181818;
}
.cid-tzg9xj54Gm .mbr-section-title {
  color: #181818;
}
.cid-tzg9xj54Gm .mbr-text {
  color: #454545;
}
.cid-txlIFdhWiA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txlIFdhWiA .mbr-fallback-image.disabled {
  display: none;
}
.cid-txlIFdhWiA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txlIFdhWiA .row {
  justify-content: center;
}
.cid-txlIFdhWiA .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txlIFdhWiA .row {
    padding: 0 12px;
  }
}
.cid-txlIFdhWiA .item-wrap {
  z-index: 1;
}
.cid-txlIFdhWiA .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txlIFdhWiA .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tzgaAtlwP9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzgaAtlwP9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgaAtlwP9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgaAtlwP9 .row {
  justify-content: center;
}
.cid-tzgaAtlwP9 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgaAtlwP9 .row {
    padding: 0 12px;
  }
}
.cid-tzgaAtlwP9 .item-wrap {
  z-index: 1;
}
.cid-tzgaAtlwP9 .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzgaAtlwP9 .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-tzgaAtlwP9 .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzgaAtlwP9 .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzgaAtlwP9 .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-tzgaAtlwP9 .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-tzgaAtlwP9 .item {
  margin-bottom: 4rem;
}
.cid-tzgaAtlwP9 .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-tzgaAtlwP9 .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-tzgaAtlwP9 .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-tzgaAtlwP9 .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-tzgaAtlwP9 .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-tzgaAtlwP9 .item a:hover {
  transform: translateY(-10px);
}
.cid-tzgaAtlwP9 .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-tzgaAtlwP9 .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-tzgaAtlwP9 .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-tzgaAtlwP9 .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-tzgaAtlwP9 .mbr-card-title {
  color: #181818;
}
.cid-tzgaAtlwP9 .mbr-card-subtitle {
  color: #454545;
}
.cid-tzgaHxmDVc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tzgaHxmDVc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgaHxmDVc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgaHxmDVc .row {
  justify-content: center;
}
.cid-tzgaHxmDVc .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgaHxmDVc .row {
    padding: 0 12px;
  }
}
.cid-tzgaHxmDVc .item-wrap {
  z-index: 1;
}
.cid-tzgaHxmDVc .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-tzgaHxmDVc .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txqZn0PDoE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txqZn0PDoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-txqZn0PDoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txqZn0PDoE .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txqZn0PDoE .row {
    padding: 0 12px;
  }
}
.cid-txqZn0PDoE .item-wrap {
  z-index: 1;
}
.cid-txqZn0PDoE .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-txqZn0PDoE .mbr-section-title {
  margin-bottom: 62px;
  color: #181818;
}
.cid-txqZn0PDoE .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 62px;
}
.cid-txqZn0PDoE .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-txqZn0PDoE .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-txqZn0PDoE .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-txqZn0PDoE .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
@media (max-width: 992px) {
  .cid-txqZn0PDoE .card {
    margin-bottom: 40px;
  }
}
.cid-txqZn0PDoE .card .date-container .date-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
}
.cid-txqZn0PDoE .card .date-container .date-wrapper .mbr-date {
  margin-bottom: 0;
}
.cid-txqZn0PDoE .card .date-container .date-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-txqZn0PDoE .card .mbr-text {
  margin-bottom: 0;
}
.cid-txqZn0PDoE .mbr-text {
  color: #181818;
}
.cid-txqZn0PDoE .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-txqZn0PDoE .mbr-date,
.cid-txqZn0PDoE .mbr-dot {
  color: #181818;
}
.cid-tzgd2wrAg4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzgd2wrAg4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgd2wrAg4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgd2wrAg4 .row {
  justify-content: center;
}
.cid-tzgd2wrAg4 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgd2wrAg4 .row {
    padding: 0 12px;
  }
}
.cid-tzgd2wrAg4 .item-wrap {
  z-index: 1;
}
.cid-tzgd2wrAg4 .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzgd7IGg9m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzgd7IGg9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgd7IGg9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgd7IGg9m .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgd7IGg9m .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzgd7IGg9m .person-container {
  margin-bottom: 64px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgd7IGg9m .person-container {
    margin-bottom: 32px;
  }
}
.cid-tzgd7IGg9m .person-container .person-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzgd7IGg9m .person-container .person-wrapper img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-tzgd7IGg9m .person-container .person-wrapper .mbr-person {
  margin-bottom: 0;
}
.cid-tzgd7IGg9m .person-container .person-wrapper .mbr-person:hover {
  opacity: .7;
}
.cid-tzgd7IGg9m .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tzgd7IGg9m .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tzgd7IGg9m .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzgd7IGg9m .title-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tzgd7IGg9m .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tzgd7IGg9m .links-container {
  padding: 0 1rem;
}
.cid-tzgd7IGg9m .links-container .links-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzgd7IGg9m .links-container .links-wrapper .mbr-links {
  margin-bottom: 0;
}
.cid-tzgd7IGg9m .links-container .links-wrapper .mbr-dot {
  margin: 0 10px;
}
.cid-tzgd7IGg9m .links-container .links-wrapper .mbr-iconfont {
  display: flex;
  width: 13px;
  font-size: 11px;
  margin-right: 5px;
}
.cid-tzgd7IGg9m .links-container .links-wrapper .mbr-iconfont:hover {
  opacity: .7;
}
.cid-tzgd7IGg9m .mbr-section-title {
  color: #181818;
}
.cid-tzgd7IGg9m .mbr-person {
  color: #181818;
}
.cid-tzgd7IGg9m .mbr-links,
.cid-tzgd7IGg9m .mbr-dot,
.cid-tzgd7IGg9m .mbr-iconfont {
  color: #181818;
}
.cid-tzgd7IGg9m .mbr-section-title,
.cid-tzgd7IGg9m .mbr-section-btn,
.cid-tzgd7IGg9m .person-container,
.cid-tzgd7IGg9m .links-container {
  text-align: center;
}
.cid-tzge5Nzmfn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzge5Nzmfn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzge5Nzmfn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzge5Nzmfn .row {
  justify-content: center;
}
.cid-tzge5Nzmfn .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzge5Nzmfn .row {
    padding: 0 12px;
  }
}
.cid-tzge5Nzmfn .item-wrap {
  z-index: 1;
}
.cid-tzge5Nzmfn .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzge9ETxTp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzge9ETxTp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzge9ETxTp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzge9ETxTp .row {
  justify-content: center;
}
.cid-tzge9ETxTp .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzge9ETxTp .row {
    padding: 0 12px;
  }
}
.cid-tzge9ETxTp .item-wrap {
  z-index: 1;
}
.cid-tzge9ETxTp .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzge9ETxTp .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-tzge9ETxTp .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzge9ETxTp .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzge9ETxTp .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-tzge9ETxTp .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-tzge9ETxTp .item {
  margin-bottom: 4rem;
}
.cid-tzge9ETxTp .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-tzge9ETxTp .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-tzge9ETxTp .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-tzge9ETxTp .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-tzge9ETxTp .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-tzge9ETxTp .item a:hover {
  transform: translateY(-10px);
}
.cid-tzge9ETxTp .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-tzge9ETxTp .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-tzge9ETxTp .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-tzge9ETxTp .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-tzge9ETxTp .mbr-card-title {
  color: #181818;
}
.cid-tzge9ETxTp .mbr-card-subtitle {
  color: #454545;
}
.cid-tzgeYpVaFU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-tzgeYpVaFU .container-fluid {
  padding-right: 0;
}
.cid-tzgeYpVaFU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgeYpVaFU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgeYpVaFU .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgeYpVaFU .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzgeYpVaFU .title {
  display: flex;
  align-items: center;
}
.cid-tzgeYpVaFU .title-wrapper {
  width: 100%;
}
.cid-tzgeYpVaFU .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzgeYpVaFU .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzgeYpVaFU .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzgeYpVaFU .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzgeYpVaFU .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzgeYpVaFU .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzgeYpVaFU .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzgeYpVaFU .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzgeYpVaFU .mbr-section-subtitle {
  color: #181818;
}
.cid-tzgeYpVaFU .mbr-section-title {
  color: #181818;
}
.cid-tzgeYpVaFU .mbr-text {
  color: #454545;
}
.cid-tzgf09A9Nf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzgf09A9Nf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgf09A9Nf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgf09A9Nf .row {
  justify-content: center;
}
.cid-tzgf09A9Nf .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgf09A9Nf .row {
    padding: 0 12px;
  }
}
.cid-tzgf09A9Nf .item-wrap {
  z-index: 1;
}
.cid-tzgf09A9Nf .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzgfLLAIre {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-tzgfLLAIre .container-fluid {
  padding-right: 0;
}
.cid-tzgfLLAIre .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgfLLAIre .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgfLLAIre .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgfLLAIre .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzgfLLAIre .title {
  display: flex;
  align-items: center;
}
.cid-tzgfLLAIre .title-wrapper {
  width: 100%;
}
.cid-tzgfLLAIre .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzgfLLAIre .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzgfLLAIre .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzgfLLAIre .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzgfLLAIre .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzgfLLAIre .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzgfLLAIre .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzgfLLAIre .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzgfLLAIre .mbr-section-subtitle {
  color: #181818;
}
.cid-tzgfLLAIre .mbr-section-title {
  color: #181818;
}
.cid-tzgfLLAIre .mbr-text {
  color: #454545;
}
.cid-tzgfN4Zoju {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzgfN4Zoju .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgfN4Zoju .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgfN4Zoju .row {
  justify-content: center;
}
.cid-tzgfN4Zoju .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgfN4Zoju .row {
    padding: 0 12px;
  }
}
.cid-tzgfN4Zoju .item-wrap {
  z-index: 1;
}
.cid-tzgfN4Zoju .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzgghGWyYY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzgghGWyYY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgghGWyYY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgghGWyYY .row {
  justify-content: center;
}
.cid-tzgghGWyYY .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgghGWyYY .row {
    padding: 0 12px;
  }
}
.cid-tzgghGWyYY .item-wrap {
  z-index: 1;
}
.cid-tzgghGWyYY .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzgghGWyYY .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-tzgghGWyYY .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzgghGWyYY .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzgghGWyYY .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-tzgghGWyYY .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-tzgghGWyYY .item {
  margin-bottom: 4rem;
}
.cid-tzgghGWyYY .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-tzgghGWyYY .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-tzgghGWyYY .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-tzgghGWyYY .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-tzgghGWyYY .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-tzgghGWyYY .item a:hover {
  transform: translateY(-10px);
}
.cid-tzgghGWyYY .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-tzgghGWyYY .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-tzgghGWyYY .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-tzgghGWyYY .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-tzgghGWyYY .mbr-card-title {
  color: #181818;
}
.cid-tzgghGWyYY .mbr-card-subtitle {
  color: #454545;
}
.cid-tzggjVxQxy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzggjVxQxy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzggjVxQxy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzggjVxQxy .row {
  justify-content: center;
}
.cid-tzggjVxQxy .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzggjVxQxy .row {
    padding: 0 12px;
  }
}
.cid-tzggjVxQxy .item-wrap {
  z-index: 1;
}
.cid-tzggjVxQxy .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzggRcuUou {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzggRcuUou .container-fluid {
  padding-right: 0;
}
.cid-tzggRcuUou .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzggRcuUou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzggRcuUou .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzggRcuUou .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzggRcuUou .title {
  display: flex;
  align-items: center;
}
.cid-tzggRcuUou .title-wrapper {
  width: 100%;
}
.cid-tzggRcuUou .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzggRcuUou .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzggRcuUou .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzggRcuUou .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzggRcuUou .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzggRcuUou .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzggRcuUou .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzggRcuUou .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzggRcuUou .mbr-section-subtitle {
  color: #181818;
}
.cid-tzggRcuUou .mbr-section-title {
  color: #181818;
}
.cid-tzggRcuUou .mbr-text {
  color: #454545;
}
.cid-tzggTinSjB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzggTinSjB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzggTinSjB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzggTinSjB .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzggTinSjB .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzggTinSjB .person-container {
  margin-bottom: 64px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzggTinSjB .person-container {
    margin-bottom: 32px;
  }
}
.cid-tzggTinSjB .person-container .person-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzggTinSjB .person-container .person-wrapper img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-tzggTinSjB .person-container .person-wrapper .mbr-person {
  margin-bottom: 0;
}
.cid-tzggTinSjB .person-container .person-wrapper .mbr-person:hover {
  opacity: .7;
}
.cid-tzggTinSjB .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tzggTinSjB .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tzggTinSjB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzggTinSjB .title-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tzggTinSjB .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tzggTinSjB .links-container {
  padding: 0 1rem;
}
.cid-tzggTinSjB .links-container .links-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzggTinSjB .links-container .links-wrapper .mbr-links {
  margin-bottom: 0;
}
.cid-tzggTinSjB .links-container .links-wrapper .mbr-dot {
  margin: 0 10px;
}
.cid-tzggTinSjB .links-container .links-wrapper .mbr-iconfont {
  display: flex;
  width: 13px;
  font-size: 11px;
  margin-right: 5px;
}
.cid-tzggTinSjB .links-container .links-wrapper .mbr-iconfont:hover {
  opacity: .7;
}
.cid-tzggTinSjB .mbr-section-title {
  color: #181818;
}
.cid-tzggTinSjB .mbr-person {
  color: #181818;
}
.cid-tzggTinSjB .mbr-links,
.cid-tzggTinSjB .mbr-dot,
.cid-tzggTinSjB .mbr-iconfont {
  color: #181818;
}
.cid-tzggTinSjB .mbr-section-title,
.cid-tzggTinSjB .mbr-section-btn,
.cid-tzggTinSjB .person-container,
.cid-tzggTinSjB .links-container {
  text-align: center;
}
.cid-tzggV97uZQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzggV97uZQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzggV97uZQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzggV97uZQ .row {
  justify-content: center;
}
.cid-tzggV97uZQ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzggV97uZQ .row {
    padding: 0 12px;
  }
}
.cid-tzggV97uZQ .item-wrap {
  z-index: 1;
}
.cid-tzggV97uZQ .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzghsZLTAB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzghsZLTAB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzghsZLTAB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzghsZLTAB .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzghsZLTAB .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzghsZLTAB .person-container {
  margin-bottom: 64px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzghsZLTAB .person-container {
    margin-bottom: 32px;
  }
}
.cid-tzghsZLTAB .person-container .person-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzghsZLTAB .person-container .person-wrapper img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-tzghsZLTAB .person-container .person-wrapper .mbr-person {
  margin-bottom: 0;
}
.cid-tzghsZLTAB .person-container .person-wrapper .mbr-person:hover {
  opacity: .7;
}
.cid-tzghsZLTAB .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tzghsZLTAB .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tzghsZLTAB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzghsZLTAB .title-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tzghsZLTAB .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tzghsZLTAB .links-container {
  padding: 0 1rem;
}
.cid-tzghsZLTAB .links-container .links-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzghsZLTAB .links-container .links-wrapper .mbr-links {
  margin-bottom: 0;
}
.cid-tzghsZLTAB .links-container .links-wrapper .mbr-dot {
  margin: 0 10px;
}
.cid-tzghsZLTAB .links-container .links-wrapper .mbr-iconfont {
  display: flex;
  width: 13px;
  font-size: 11px;
  margin-right: 5px;
}
.cid-tzghsZLTAB .links-container .links-wrapper .mbr-iconfont:hover {
  opacity: .7;
}
.cid-tzghsZLTAB .mbr-section-title {
  color: #181818;
}
.cid-tzghsZLTAB .mbr-person {
  color: #181818;
}
.cid-tzghsZLTAB .mbr-links,
.cid-tzghsZLTAB .mbr-dot,
.cid-tzghsZLTAB .mbr-iconfont {
  color: #181818;
}
.cid-tzghsZLTAB .mbr-section-title,
.cid-tzghsZLTAB .mbr-section-btn,
.cid-tzghsZLTAB .person-container,
.cid-tzghsZLTAB .links-container {
  text-align: center;
}
.cid-tzghtUJrNY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzghtUJrNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzghtUJrNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzghtUJrNY .row {
  justify-content: center;
}
.cid-tzghtUJrNY .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzghtUJrNY .row {
    padding: 0 12px;
  }
}
.cid-tzghtUJrNY .item-wrap {
  z-index: 1;
}
.cid-tzghtUJrNY .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzghx8wlIF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzghx8wlIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzghx8wlIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzghx8wlIF .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzghx8wlIF .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzghx8wlIF .person-container {
  margin-bottom: 64px;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzghx8wlIF .person-container {
    margin-bottom: 32px;
  }
}
.cid-tzghx8wlIF .person-container .person-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzghx8wlIF .person-container .person-wrapper img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 100%;
  object-fit: cover;
}
.cid-tzghx8wlIF .person-container .person-wrapper .mbr-person {
  margin-bottom: 0;
}
.cid-tzghx8wlIF .person-container .person-wrapper .mbr-person:hover {
  opacity: .7;
}
.cid-tzghx8wlIF .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tzghx8wlIF .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tzghx8wlIF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzghx8wlIF .title-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-tzghx8wlIF .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tzghx8wlIF .links-container {
  padding: 0 1rem;
}
.cid-tzghx8wlIF .links-container .links-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-tzghx8wlIF .links-container .links-wrapper .mbr-links {
  margin-bottom: 0;
}
.cid-tzghx8wlIF .links-container .links-wrapper .mbr-dot {
  margin: 0 10px;
}
.cid-tzghx8wlIF .links-container .links-wrapper .mbr-iconfont {
  display: flex;
  width: 13px;
  font-size: 11px;
  margin-right: 5px;
}
.cid-tzghx8wlIF .links-container .links-wrapper .mbr-iconfont:hover {
  opacity: .7;
}
.cid-tzghx8wlIF .mbr-section-title {
  color: #181818;
}
.cid-tzghx8wlIF .mbr-person {
  color: #181818;
}
.cid-tzghx8wlIF .mbr-links,
.cid-tzghx8wlIF .mbr-dot,
.cid-tzghx8wlIF .mbr-iconfont {
  color: #181818;
}
.cid-tzghx8wlIF .mbr-section-title,
.cid-tzghx8wlIF .mbr-section-btn,
.cid-tzghx8wlIF .person-container,
.cid-tzghx8wlIF .links-container {
  text-align: center;
}
.cid-tzghy54R2X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzghy54R2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzghy54R2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzghy54R2X .row {
  justify-content: center;
}
.cid-tzghy54R2X .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzghy54R2X .row {
    padding: 0 12px;
  }
}
.cid-tzghy54R2X .item-wrap {
  z-index: 1;
}
.cid-tzghy54R2X .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzghy54R2X .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-tzghy54R2X .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzghy54R2X .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzghy54R2X .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-tzghy54R2X .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-tzghy54R2X .item {
  margin-bottom: 4rem;
}
.cid-tzghy54R2X .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-tzghy54R2X .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-tzghy54R2X .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-tzghy54R2X .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-tzghy54R2X .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-tzghy54R2X .item a:hover {
  transform: translateY(-10px);
}
.cid-tzghy54R2X .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-tzghy54R2X .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-tzghy54R2X .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-tzghy54R2X .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-tzghy54R2X .mbr-card-title {
  color: #181818;
}
.cid-tzghy54R2X .mbr-card-subtitle {
  color: #454545;
}
.cid-tzgiOkO5zj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzgiOkO5zj .container-fluid {
  padding-right: 0;
}
.cid-tzgiOkO5zj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgiOkO5zj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgiOkO5zj .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgiOkO5zj .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzgiOkO5zj .title {
  display: flex;
  align-items: center;
}
.cid-tzgiOkO5zj .title-wrapper {
  width: 100%;
}
.cid-tzgiOkO5zj .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzgiOkO5zj .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzgiOkO5zj .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzgiOkO5zj .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzgiOkO5zj .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzgiOkO5zj .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzgiOkO5zj .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzgiOkO5zj .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzgiOkO5zj .mbr-section-subtitle {
  color: #181818;
}
.cid-tzgiOkO5zj .mbr-section-title {
  color: #181818;
}
.cid-tzgiOkO5zj .mbr-text {
  color: #454545;
}
.cid-tzgiT9qLjL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tzgiT9qLjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgiT9qLjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgiT9qLjL .row {
  justify-content: center;
}
.cid-tzgiT9qLjL .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzgiT9qLjL .row {
    padding: 0 12px;
  }
}
.cid-tzgiT9qLjL .item-wrap {
  z-index: 1;
}
.cid-tzgiT9qLjL .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
