body {
  font-family: Syne;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  line-height: .89;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #181818;
  border-color: #181818;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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 */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #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-txKdPEs63H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txKdPEs63H .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKdPEs63H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txKdPEs63H .row {
  justify-content: center;
}
.cid-txKdPEs63H .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-txKdPEs63H .row {
    padding: 0 19px;
  }
}
.cid-txKdPEs63H .item {
  padding: 0 5px !important;
}
.cid-txKdPEs63H .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-txKdPEs63H .item-wrap {
    padding: 0 5px;
  }
}
.cid-txKdPEs63H .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-txKdPEs63H .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txKdPEs63H .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-txKdPEs63H .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-txKdPEs63H .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-txKdPEs63H .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txKdPEs63H .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-txKdPEs63H .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-txKdPEs63H .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-txKdPEs63H .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-txKdPEs63H .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-txKdPEs63H .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-txKdPEs63H .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-txKdPEs63H .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-txKdPEs63H .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-txKdPEs63H .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-txKdPEs63H .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-txKdPEs63H .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-txKdPEs63H .mbr-like {
  color: #181818;
}
.cid-txKdPEs63H .mbr-comment,
.cid-txKdPEs63H .mbr-iconfont {
  color: #181818;
}
.cid-txKdPEs63H .mbr-text {
  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-txJFLMeIR3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJFLMeIR3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJFLMeIR3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJFLMeIR3 .row {
  justify-content: center;
}
.cid-txJFLMeIR3 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJFLMeIR3 .row {
    padding: 0 12px;
  }
}
.cid-txJFLMeIR3 .item-wrap {
  z-index: 1;
}
.cid-txJFLMeIR3 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJFLMeIR3 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-totNcPZJGP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-totNcPZJGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-totNcPZJGP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-totNcPZJGP .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-totNcPZJGP .row {
    padding: 0 12px;
  }
}
.cid-totNcPZJGP .item-wrap {
  z-index: 1;
}
.cid-totNcPZJGP .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 48px;
}
.cid-totNcPZJGP .mbr-section-subtitle {
  margin-bottom: 62px;
  color: #181818;
}
.cid-totNcPZJGP .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 62px;
}
.cid-totNcPZJGP .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-totNcPZJGP .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-totNcPZJGP .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-totNcPZJGP .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-totNcPZJGP .desc-container .desc-wrapper {
  display: inline-flex;
  margin-bottom: 18px;
}
.cid-totNcPZJGP .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
  transition: all .3s ease;
}
.cid-totNcPZJGP .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  color: #ae856c;
}
.cid-totNcPZJGP .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-totNcPZJGP .person-container .person-wrapper {
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-totNcPZJGP .person-container .person-wrapper {
    margin-bottom: 32px;
  }
}
.cid-totNcPZJGP .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-totNcPZJGP .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-totNcPZJGP .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-totNcPZJGP .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-totNcPZJGP .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-totNcPZJGP .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.cid-totNcPZJGP .title-wrapper .mbr-section-title:hover {
  color: #ae856c;
}
.cid-totNcPZJGP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-totNcPZJGP .date-wrapper .mbr-date {
  margin-bottom: 24px;
}
@media (max-width: 425px) {
  .cid-totNcPZJGP .date-wrapper .mbr-date {
    text-align: left;
  }
}
.cid-totNcPZJGP .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-totNcPZJGP .image-wrapper {
    padding-left: 40%;
  }
}
@media (max-width: 425px) {
  .cid-totNcPZJGP .image-wrapper {
    padding: 0;
  }
}
.cid-totNcPZJGP .image-wrapper .image-link {
  display: block;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-totNcPZJGP .image-wrapper .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-totNcPZJGP .image-wrapper .image-link img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-totNcPZJGP .image-wrapper .image-container {
  width: 76px;
}
.cid-totNcPZJGP .image-wrapper .image-container .image-link {
  display: block;
  overflow: hidden;
}
.cid-totNcPZJGP .image-wrapper .image-container .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-totNcPZJGP .image-wrapper .image-container .image-link img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-totNcPZJGP .image-wrapper .image-container .image-link:first-child {
  margin-bottom: 1rem;
}
.cid-totNcPZJGP .mbr-section-title {
  color: #181818;
}
.cid-totNcPZJGP .mbr-text {
  color: #181818;
}
.cid-totNcPZJGP .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-totNcPZJGP .mbr-desc,
.cid-totNcPZJGP .mbr-dot {
  color: #181818;
}
.cid-totNcPZJGP .mbr-person {
  color: #181818;
}
.cid-totNcPZJGP .mbr-date {
  color: #181818;
  text-align: right;
}
.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-txat2jWAFZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txat2jWAFZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txat2jWAFZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txat2jWAFZ .row {
  justify-content: center;
}
.cid-txat2jWAFZ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txat2jWAFZ .row {
    padding: 0 12px;
  }
}
.cid-txat2jWAFZ .item-wrap {
  z-index: 1;
}
.cid-txat2jWAFZ .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txat2jWAFZ .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txat2jWAFZ .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txat2jWAFZ .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txat2jWAFZ .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txat2jWAFZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txat2jWAFZ .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txat2jWAFZ .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txat2jWAFZ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txat2jWAFZ .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txat2jWAFZ .mbr-section-title {
  color: #ffffff;
}
.cid-txat2jWAFZ .mbr-text {
  color: #ffffff;
}
.cid-txauD6wF9G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txauD6wF9G .mbr-fallback-image.disabled {
  display: none;
}
.cid-txauD6wF9G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txauD6wF9G .row {
  justify-content: center;
}
.cid-txauD6wF9G .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-txauD6wF9G .row {
    padding: 0 12px;
  }
}
.cid-txauD6wF9G .item {
  margin-bottom: 40px;
  padding: 0 32px !important;
}
@media (max-width: 992px) {
  .cid-txauD6wF9G .item {
    padding: 0 12px !important;
  }
}
.cid-txauD6wF9G .link-wrapper {
  display: block;
}
.cid-txauD6wF9G .link-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txauD6wF9G .link-wrapper:hover .mbr-date:last-child {
  opacity: .7;
}
.cid-txauD6wF9G .link-wrapper:hover .mbr-section-title {
  opacity: .7;
}
.cid-txauD6wF9G .link-wrapper .image-wrapper {
  overflow: hidden;
  margin-bottom: 32px;
}
.cid-txauD6wF9G .link-wrapper .image-wrapper img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-txauD6wF9G .link-wrapper .date-container {
  margin-bottom: 24px;
}
.cid-txauD6wF9G .link-wrapper .date-container .date-wrapper {
  display: inline-flex;
}
.cid-txauD6wF9G .link-wrapper .date-container .date-wrapper .mbr-date {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-txauD6wF9G .link-wrapper .date-container .date-wrapper .mbr-dot {
  margin: 0 10px;
  opacity: .3;
}
.cid-txauD6wF9G .link-wrapper .mbr-section-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-txauD6wF9G .mbr-section-title {
  color: #181818;
}
.cid-txauD6wF9G .mbr-date,
.cid-txauD6wF9G .mbr-dot {
  color: #181818;
}
.cid-txaxlZsBPo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txaxlZsBPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaxlZsBPo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaxlZsBPo .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txaxlZsBPo .row {
    padding: 0 12px;
  }
}
.cid-txaxlZsBPo .item-wrap {
  z-index: 1;
}
.cid-txaxlZsBPo .title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-content: flex-end;
}
.cid-txaxlZsBPo .image-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-txaxlZsBPo .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-txaxlZsBPo .image-wrapper {
    margin-bottom: 32px;
    padding: 0;
  }
}
.cid-txaxlZsBPo .image-wrapper img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.cid-txaxlZsBPo .desc-container .desc-wrapper {
  display: inline-flex;
}
.cid-txaxlZsBPo .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
}
.cid-txaxlZsBPo .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  opacity: .7;
}
.cid-txaxlZsBPo .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-txaxlZsBPo .title-wrapper {
  margin-bottom: 18px;
}
@media (max-width: 992px) {
  .cid-txaxlZsBPo .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txaxlZsBPo .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: .3s ease;
}
.cid-txaxlZsBPo .title-wrapper .mbr-section-title:hover {
  opacity: .7;
}
.cid-txaxlZsBPo .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txaxlZsBPo .person-container .person-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-txaxlZsBPo .person-container .person-wrapper {
    margin-bottom: 8px;
  }
}
.cid-txaxlZsBPo .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-txaxlZsBPo .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-txaxlZsBPo .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-txaxlZsBPo .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .7;
}
.cid-txaxlZsBPo .mbr-section-title {
  color: #181818;
}
.cid-txaxlZsBPo .mbr-desc,
.cid-txaxlZsBPo .mbr-dot {
  color: #181818;
}
.cid-txaxlZsBPo .mbr-person {
  color: #181818;
}
.cid-txaEMMEnVb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txaEMMEnVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaEMMEnVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaEMMEnVb .row {
  justify-content: center;
}
.cid-txaEMMEnVb .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txaEMMEnVb .row {
    padding: 0 12px;
  }
}
.cid-txaEMMEnVb .item-wrap {
  z-index: 1;
}
.cid-txaEMMEnVb .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txaEMMEnVb .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txaEMMEnVb .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txaEMMEnVb .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txaEMMEnVb .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txaEMMEnVb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txaEMMEnVb .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txaEMMEnVb .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txaEMMEnVb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txaEMMEnVb .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txaEMMEnVb .mbr-section-title {
  color: #ffffff;
}
.cid-txaEMMEnVb .mbr-text {
  color: #ffffff;
}
.cid-txaFzjIS6c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txaFzjIS6c .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaFzjIS6c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaFzjIS6c .row {
  justify-content: center;
}
.cid-txaFzjIS6c .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txaFzjIS6c .row {
    padding: 0 12px;
  }
}
.cid-txaFzjIS6c .item-wrap {
  z-index: 1;
}
.cid-txaFzjIS6c .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txaFzjIS6c .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txaHDY0KVe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txaHDY0KVe .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaHDY0KVe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaHDY0KVe .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txaHDY0KVe .row {
    padding: 0 12px;
  }
}
.cid-txaHDY0KVe .item-wrap {
  z-index: 1;
}
.cid-txaHDY0KVe .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #8b634b;
  margin-bottom: 48px;
}
.cid-txaHDY0KVe .mbr-section-subtitle {
  margin-bottom: 62px;
  color: #181818;
}
.cid-txaHDY0KVe .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 62px;
}
.cid-txaHDY0KVe .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-txaHDY0KVe .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-txaHDY0KVe .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-txaHDY0KVe .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-txaHDY0KVe .desc-container .desc-wrapper {
  display: inline-flex;
  margin-bottom: 18px;
}
.cid-txaHDY0KVe .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
  transition: all .3s ease;
}
.cid-txaHDY0KVe .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  color: #ae856c;
}
.cid-txaHDY0KVe .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-txaHDY0KVe .person-container .person-wrapper {
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-txaHDY0KVe .person-container .person-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txaHDY0KVe .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-txaHDY0KVe .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-txaHDY0KVe .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-txaHDY0KVe .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-txaHDY0KVe .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txaHDY0KVe .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.cid-txaHDY0KVe .title-wrapper .mbr-section-title:hover {
  color: #ae856c;
}
.cid-txaHDY0KVe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txaHDY0KVe .date-wrapper .mbr-date {
  margin-bottom: 24px;
}
@media (max-width: 425px) {
  .cid-txaHDY0KVe .date-wrapper .mbr-date {
    text-align: left;
  }
}
.cid-txaHDY0KVe .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-txaHDY0KVe .image-wrapper {
    padding-left: 40%;
  }
}
@media (max-width: 425px) {
  .cid-txaHDY0KVe .image-wrapper {
    padding: 0;
  }
}
.cid-txaHDY0KVe .image-wrapper .image-link {
  display: block;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-txaHDY0KVe .image-wrapper .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txaHDY0KVe .image-wrapper .image-link img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-txaHDY0KVe .image-wrapper .image-container {
  width: 76px;
}
.cid-txaHDY0KVe .image-wrapper .image-container .image-link {
  display: block;
  overflow: hidden;
}
.cid-txaHDY0KVe .image-wrapper .image-container .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txaHDY0KVe .image-wrapper .image-container .image-link img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-txaHDY0KVe .image-wrapper .image-container .image-link:first-child {
  margin-bottom: 1rem;
}
.cid-txaHDY0KVe .mbr-section-title {
  color: #181818;
}
.cid-txaHDY0KVe .mbr-text {
  color: #181818;
}
.cid-txaHDY0KVe .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-txaHDY0KVe .mbr-desc,
.cid-txaHDY0KVe .mbr-dot {
  color: #181818;
}
.cid-txaHDY0KVe .mbr-person {
  color: #181818;
}
.cid-txaHDY0KVe .mbr-date {
  color: #181818;
  text-align: right;
}
.cid-txgpgNteeU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txgpgNteeU .mbr-fallback-image.disabled {
  display: none;
}
.cid-txgpgNteeU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txgpgNteeU .row {
  justify-content: center;
}
.cid-txgpgNteeU .row {
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .cid-txgpgNteeU .row {
    padding: 0 19px;
  }
}
.cid-txgpgNteeU .item {
  padding: 0 !important;
  height: 230px;
}
@media (max-width: 768px) {
  .cid-txgpgNteeU .item {
    height: 150px;
  }
}
.cid-txgpgNteeU .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-txgpgNteeU .item-wrap {
    padding: 0 5px;
  }
}
.cid-txgpgNteeU .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-txgpgNteeU .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txgpgNteeU .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-txgpgNteeU .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-txgpgNteeU .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-txgpgNteeU .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-txgpgNteeU .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-txgpgNteeU .item-wrapper .item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.cid-txgpgNteeU .item-wrapper .item-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txgpgNteeU .item-wrapper .item-link img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 768px) {
  .cid-txgpgNteeU .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-txgpgNteeU .item-wrapper .item-link .icon-wrapper {
  position: absolute;
  bottom: 1rem;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.cid-txgpgNteeU .item-wrapper .item-link .icon-wrapper .mbr-like {
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.cid-txgpgNteeU .item-wrapper .item-link .icon-wrapper .mbr-like .mbr-iconfont {
  font-size: 11px !important;
  display: block;
  margin-right: 5px;
}
.cid-txgpgNteeU .item-wrapper .item-link .icon-wrapper .mbr-comment {
  line-height: 1.3;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}
.cid-txgpgNteeU .item-wrapper .item-link .icon-wrapper .mbr-comment .mbr-iconfont {
  font-size: 11px !important;
  display: block;
  margin-right: 5px;
}
.cid-txgpgNteeU .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-txgpgNteeU .mbr-like {
  color: #ffffff;
}
.cid-txgpgNteeU .mbr-comment,
.cid-txgpgNteeU .mbr-iconfont {
  color: #ffffff;
}
.cid-tyASspoxrG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-tyASspoxrG .container-fluid {
  padding-right: 0;
}
.cid-tyASspoxrG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyASspoxrG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyASspoxrG .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tyASspoxrG .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tyASspoxrG .title {
  display: flex;
  align-items: center;
}
.cid-tyASspoxrG .title-wrapper {
  width: 100%;
}
.cid-tyASspoxrG .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tyASspoxrG .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tyASspoxrG .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tyASspoxrG .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tyASspoxrG .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tyASspoxrG .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tyASspoxrG .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tyASspoxrG .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tyASspoxrG .mbr-section-subtitle {
  color: #181818;
}
.cid-tyASspoxrG .mbr-section-title {
  color: #181818;
}
.cid-tyASspoxrG .mbr-text {
  color: #454545;
}
.cid-tyAStyMcOL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyAStyMcOL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyAStyMcOL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyAStyMcOL .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tyAStyMcOL .row {
    padding: 0 12px;
  }
}
.cid-tyAStyMcOL .item-wrap {
  z-index: 1;
}
.cid-tyAStyMcOL .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 48px;
}
.cid-tyAStyMcOL .mbr-section-subtitle {
  margin-bottom: 62px;
  color: #181818;
}
.cid-tyAStyMcOL .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 62px;
}
.cid-tyAStyMcOL .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-tyAStyMcOL .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-tyAStyMcOL .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-tyAStyMcOL .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-tyAStyMcOL .desc-container .desc-wrapper {
  display: inline-flex;
  margin-bottom: 18px;
}
.cid-tyAStyMcOL .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
  transition: all .3s ease;
}
.cid-tyAStyMcOL .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  color: #ae856c;
}
.cid-tyAStyMcOL .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-tyAStyMcOL .person-container .person-wrapper {
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-tyAStyMcOL .person-container .person-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tyAStyMcOL .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-tyAStyMcOL .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-tyAStyMcOL .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-tyAStyMcOL .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-tyAStyMcOL .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tyAStyMcOL .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.cid-tyAStyMcOL .title-wrapper .mbr-section-title:hover {
  color: #ae856c;
}
.cid-tyAStyMcOL .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tyAStyMcOL .date-wrapper .mbr-date {
  margin-bottom: 24px;
}
@media (max-width: 425px) {
  .cid-tyAStyMcOL .date-wrapper .mbr-date {
    text-align: left;
  }
}
.cid-tyAStyMcOL .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-tyAStyMcOL .image-wrapper {
    padding-left: 40%;
  }
}
@media (max-width: 425px) {
  .cid-tyAStyMcOL .image-wrapper {
    padding: 0;
  }
}
.cid-tyAStyMcOL .image-wrapper .image-link {
  display: block;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tyAStyMcOL .image-wrapper .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tyAStyMcOL .image-wrapper .image-link img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tyAStyMcOL .image-wrapper .image-container {
  width: 76px;
}
.cid-tyAStyMcOL .image-wrapper .image-container .image-link {
  display: block;
  overflow: hidden;
}
.cid-tyAStyMcOL .image-wrapper .image-container .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tyAStyMcOL .image-wrapper .image-container .image-link img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tyAStyMcOL .image-wrapper .image-container .image-link:first-child {
  margin-bottom: 1rem;
}
.cid-tyAStyMcOL .mbr-section-title {
  color: #181818;
}
.cid-tyAStyMcOL .mbr-text {
  color: #181818;
}
.cid-tyAStyMcOL .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tyAStyMcOL .mbr-desc,
.cid-tyAStyMcOL .mbr-dot {
  color: #181818;
}
.cid-tyAStyMcOL .mbr-person {
  color: #181818;
}
.cid-tyAStyMcOL .mbr-date {
  color: #181818;
  text-align: right;
}
.cid-tyASDMxbvw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tyASDMxbvw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyASDMxbvw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyASDMxbvw .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-tyASDMxbvw .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tyASDMxbvw .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tyASDMxbvw .row {
    padding: 0 12px;
  }
}
.cid-tyASDMxbvw .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-tyASDMxbvw .item-wrap {
  z-index: 1;
}
.cid-tyASDMxbvw .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tyASDMxbvw .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-tyASDMxbvw .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tyASDMxbvw .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-tyASDMxbvw .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tyASDMxbvw .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-tyASDMxbvw .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-tyASDMxbvw .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-tyASDMxbvw .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-tyASDMxbvw .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-tyASDMxbvw .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-tyASDMxbvw .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-tyASDMxbvw .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tyASDMxbvw .mbr-section-btn {
    text-align: center;
  }
}
.cid-tyASDMxbvw .mbr-section-title {
  color: #ffffff;
}
.cid-tyASDMxbvw .mbr-text {
  color: #ffffff;
}
.cid-tyASDMxbvw .mbr-price {
  color: #ffffff;
}
.cid-tyASDMxbvw .mbr-max-price {
  color: #ffffff;
}
.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-txrh4Rfm8D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txrh4Rfm8D .mbr-fallback-image.disabled {
  display: none;
}
.cid-txrh4Rfm8D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txrh4Rfm8D .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txrh4Rfm8D .row {
    padding: 0 12px;
  }
}
.cid-txrh4Rfm8D .item-wrap {
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-txrh4Rfm8D .text-wrapper {
    margin-bottom: 8rem;
  }
}
.cid-txrh4Rfm8D .text-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-txrh4Rfm8D .text-wrapper .mbr-section-title span {
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-txrh4Rfm8D .text-wrapper .mbr-section-title {
    margin-bottom: 9.5px;
  }
}
.cid-txrh4Rfm8D .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txrh4Rfm8D .image-wrapper {
  display: flex;
  overflow: hidden;
}
.cid-txrh4Rfm8D .image-wrapper .image-container {
  height: 292px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .cid-txrh4Rfm8D .image-wrapper .image-container {
    height: 152px;
  }
}
.cid-txrh4Rfm8D .image-wrapper .image-container img {
  width: 190px;
  height: 140px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrh4Rfm8D .image-wrapper .image-container img {
    width: 95px;
    height: 70px;
  }
}
.cid-txrh4Rfm8D .image-wrapper .image-container img:first-child {
  margin-bottom: 12px;
}
.cid-txrh4Rfm8D .image-wrapper img {
  height: 292px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrh4Rfm8D .image-wrapper img {
    height: 152px;
  }
}
.cid-txrh4Rfm8D .border-wrap_1 {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-txrh4Rfm8D .border-wrap_1 {
    margin-bottom: 114px;
  }
}
.cid-txrh4Rfm8D .border-wrap_2 {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .cid-txrh4Rfm8D .border-wrap_2 {
    margin-top: 65px;
  }
}
.cid-txrh4Rfm8D .mbr-section-title {
  color: #181818;
}
.cid-txrh4Rfm8D .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-txreTfia2g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txreTfia2g .container-fluid {
  padding-right: 0;
}
.cid-txreTfia2g .mbr-fallback-image.disabled {
  display: none;
}
.cid-txreTfia2g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txreTfia2g .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txreTfia2g .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txreTfia2g .title {
  display: flex;
  align-items: center;
}
.cid-txreTfia2g .title-wrapper {
  width: 100%;
}
.cid-txreTfia2g .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txreTfia2g .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txreTfia2g .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txreTfia2g .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txreTfia2g .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txreTfia2g .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txreTfia2g .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txreTfia2g .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txreTfia2g .mbr-section-subtitle {
  color: #181818;
}
.cid-txreTfia2g .mbr-section-title {
  color: #181818;
}
.cid-txreTfia2g .mbr-text {
  color: #454545;
}
.cid-txJ1o3dVMx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txJ1o3dVMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJ1o3dVMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJ1o3dVMx .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txJ1o3dVMx .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txJ1o3dVMx .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJ1o3dVMx .row {
    padding: 0 12px;
  }
}
.cid-txJ1o3dVMx .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txJ1o3dVMx .item-wrap {
  z-index: 1;
}
.cid-txJ1o3dVMx .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txJ1o3dVMx .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txJ1o3dVMx .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txJ1o3dVMx .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txJ1o3dVMx .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txJ1o3dVMx .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txJ1o3dVMx .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txJ1o3dVMx .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txJ1o3dVMx .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txJ1o3dVMx .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txJ1o3dVMx .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txJ1o3dVMx .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txJ1o3dVMx .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txJ1o3dVMx .mbr-section-btn {
    text-align: center;
  }
}
.cid-txJ1o3dVMx .mbr-section-title {
  color: #ffffff;
}
.cid-txJ1o3dVMx .mbr-text {
  color: #ffffff;
}
.cid-txJ1o3dVMx .mbr-price {
  color: #ffffff;
}
.cid-txJ1o3dVMx .mbr-max-price {
  color: #ffffff;
}
.cid-txJ0oA7BGi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txJ0oA7BGi .container-fluid {
  padding-right: 0;
  padding-right: 32px;
  padding-left: 0;
}
.cid-txJ0oA7BGi .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJ0oA7BGi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJ0oA7BGi .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJ0oA7BGi .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txJ0oA7BGi .title {
  display: flex;
  align-items: center;
}
.cid-txJ0oA7BGi .title-wrapper {
  width: 100%;
}
.cid-txJ0oA7BGi .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJ0oA7BGi .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txJ0oA7BGi .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJ0oA7BGi .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJ0oA7BGi .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txJ0oA7BGi .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txJ0oA7BGi .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txJ0oA7BGi .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txJ0oA7BGi .mbr-section-subtitle {
  color: #181818;
}
.cid-txJ0oA7BGi .mbr-section-title {
  color: #181818;
}
.cid-txJ0oA7BGi .mbr-text {
  color: #454545;
}
.cid-txJ03gS8vz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJ03gS8vz .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJ03gS8vz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJ03gS8vz .row {
  justify-content: center;
}
.cid-txJ03gS8vz .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJ03gS8vz .row {
    padding: 0 12px;
  }
}
.cid-txJ03gS8vz .item-wrap {
  z-index: 1;
}
.cid-txJ03gS8vz .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJ03gS8vz .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJ00OTDOs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-txJ00OTDOs .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJ00OTDOs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJ00OTDOs .row {
  justify-content: center;
}
.cid-txJ00OTDOs .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJ00OTDOs .row {
    padding: 0 12px;
  }
}
.cid-txJ00OTDOs .item-wrap {
  z-index: 1;
}
.cid-txJ00OTDOs .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txJ1Y93H6g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJ1Y93H6g .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJ1Y93H6g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJ1Y93H6g .row {
  justify-content: center;
}
.cid-txJ1Y93H6g .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJ1Y93H6g .row {
    padding: 0 12px;
  }
}
.cid-txJ1Y93H6g .item-wrap {
  z-index: 1;
}
.cid-txJ1Y93H6g .image-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJ1Y93H6g .image-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txJ1Y93H6g .image-wrapper img {
  display: inline-block;
  width: 70px;
  object-fit: cover;
}
.cid-txJ1Y93H6g .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txJ1Y93H6g .title-wrapper {
    margin-bottom: 19.5px;
  }
}
.cid-txJ1Y93H6g .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txJ1Y93H6g .text-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-txJ1Y93H6g .text-wrapper {
    margin-bottom: 65px;
  }
}
.cid-txJ1Y93H6g .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-txJ1Y93H6g .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.cid-txJ1Y93H6g .mbr-section-title {
  color: #ffffff;
}
.cid-txJ1Y93H6g .mbr-text {
  color: #ffffff;
}
.cid-txJ2IJSr5w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJ2IJSr5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJ2IJSr5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJ2IJSr5w .row {
  justify-content: center;
}
.cid-txJ2IJSr5w .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJ2IJSr5w .row {
    padding: 0 12px;
  }
}
.cid-txJ2IJSr5w .item-wrap {
  z-index: 1;
}
.cid-txJ2IJSr5w .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJ2IJSr5w .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJG83Lb23 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJG83Lb23 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJG83Lb23 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJG83Lb23 .row {
  justify-content: center;
}
.cid-txJG83Lb23 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJG83Lb23 .row {
    padding: 0 12px;
  }
}
.cid-txJG83Lb23 .item-wrap {
  z-index: 1;
}
.cid-txJG83Lb23 .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJG83Lb23 .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJG83Lb23 .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJG83Lb23 .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJG83Lb23 .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJG83Lb23 .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJG83Lb23 .item {
  margin-bottom: 4rem;
}
.cid-txJG83Lb23 .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJG83Lb23 .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJG83Lb23 .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJG83Lb23 .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJG83Lb23 .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJG83Lb23 .item a:hover {
  transform: translateY(-10px);
}
.cid-txJG83Lb23 .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJG83Lb23 .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJG83Lb23 .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJG83Lb23 .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJG83Lb23 .mbr-card-title {
  color: #181818;
}
.cid-txJG83Lb23 .mbr-card-subtitle {
  color: #454545;
}
.cid-txJG9EpeGC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJG9EpeGC .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJG9EpeGC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJG9EpeGC .row {
  justify-content: center;
}
.cid-txJG9EpeGC .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJG9EpeGC .row {
    padding: 0 12px;
  }
}
.cid-txJG9EpeGC .item-wrap {
  z-index: 1;
}
.cid-txJG9EpeGC .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJG9EpeGC .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJG9EpeGC .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJG9EpeGC .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJG9EpeGC .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJG9EpeGC .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJG9EpeGC .item {
  margin-bottom: 4rem;
}
.cid-txJG9EpeGC .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJG9EpeGC .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJG9EpeGC .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJG9EpeGC .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJG9EpeGC .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJG9EpeGC .item a:hover {
  transform: translateY(-10px);
}
.cid-txJG9EpeGC .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJG9EpeGC .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJG9EpeGC .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJG9EpeGC .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJG9EpeGC .mbr-card-title {
  color: #181818;
}
.cid-txJG9EpeGC .mbr-card-subtitle {
  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-txreQTbxIc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txreQTbxIc .container-fluid {
  padding-right: 0;
}
.cid-txreQTbxIc .mbr-fallback-image.disabled {
  display: none;
}
.cid-txreQTbxIc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txreQTbxIc .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txreQTbxIc .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txreQTbxIc .title {
  display: flex;
  align-items: center;
}
.cid-txreQTbxIc .title-wrapper {
  width: 100%;
}
.cid-txreQTbxIc .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txreQTbxIc .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txreQTbxIc .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txreQTbxIc .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txreQTbxIc .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txreQTbxIc .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txreQTbxIc .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txreQTbxIc .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txreQTbxIc .mbr-section-subtitle {
  color: #181818;
}
.cid-txreQTbxIc .mbr-section-title {
  color: #181818;
}
.cid-txreQTbxIc .mbr-text {
  color: #454545;
}
.cid-txJKcRQGgT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txJKcRQGgT .container-fluid {
  padding-right: 0;
  padding-right: 32px;
  padding-left: 0;
}
.cid-txJKcRQGgT .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJKcRQGgT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJKcRQGgT .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJKcRQGgT .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txJKcRQGgT .title {
  display: flex;
  align-items: center;
}
.cid-txJKcRQGgT .title-wrapper {
  width: 100%;
}
.cid-txJKcRQGgT .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJKcRQGgT .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txJKcRQGgT .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJKcRQGgT .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJKcRQGgT .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txJKcRQGgT .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txJKcRQGgT .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txJKcRQGgT .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txJKcRQGgT .mbr-section-subtitle {
  color: #181818;
}
.cid-txJKcRQGgT .mbr-section-title {
  color: #181818;
}
.cid-txJKcRQGgT .mbr-text {
  color: #454545;
}
.cid-txJ4YYpUWX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJ4YYpUWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJ4YYpUWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJ4YYpUWX .row {
  justify-content: center;
}
.cid-txJ4YYpUWX .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJ4YYpUWX .row {
    padding: 0 12px;
  }
}
.cid-txJ4YYpUWX .item-wrap {
  z-index: 1;
}
.cid-txJ4YYpUWX .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJ4YYpUWX .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJJL5qsFr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJJL5qsFr .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJJL5qsFr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJJL5qsFr .row {
  justify-content: center;
}
.cid-txJJL5qsFr .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJJL5qsFr .row {
    padding: 0 12px;
  }
}
.cid-txJJL5qsFr .item-wrap {
  z-index: 1;
}
.cid-txJJL5qsFr .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJJL5qsFr .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJJL5qsFr .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJJL5qsFr .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJJL5qsFr .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJJL5qsFr .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJJL5qsFr .item {
  margin-bottom: 4rem;
}
.cid-txJJL5qsFr .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJJL5qsFr .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJJL5qsFr .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJJL5qsFr .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJJL5qsFr .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJJL5qsFr .item a:hover {
  transform: translateY(-10px);
}
.cid-txJJL5qsFr .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJJL5qsFr .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJJL5qsFr .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJJL5qsFr .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJJL5qsFr .mbr-card-title {
  color: #181818;
}
.cid-txJJL5qsFr .mbr-card-subtitle {
  color: #454545;
}
.cid-txJPOZ83Me {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJPOZ83Me .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJPOZ83Me .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJPOZ83Me .row {
  justify-content: center;
}
.cid-txJPOZ83Me .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJPOZ83Me .row {
    padding: 0 12px;
  }
}
.cid-txJPOZ83Me .item-wrap {
  z-index: 1;
}
.cid-txJPOZ83Me .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJPOZ83Me .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJMDB0zOW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJMDB0zOW .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJMDB0zOW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJMDB0zOW .row {
  justify-content: center;
}
.cid-txJMDB0zOW .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJMDB0zOW .row {
    padding: 0 12px;
  }
}
.cid-txJMDB0zOW .item-wrap {
  z-index: 1;
}
.cid-txJMDB0zOW .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJMDB0zOW .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJMDB0zOW .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJMDB0zOW .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJMDB0zOW .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJMDB0zOW .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJMDB0zOW .item {
  margin-bottom: 4rem;
}
.cid-txJMDB0zOW .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJMDB0zOW .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJMDB0zOW .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJMDB0zOW .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJMDB0zOW .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJMDB0zOW .item a:hover {
  transform: translateY(-10px);
}
.cid-txJMDB0zOW .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJMDB0zOW .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJMDB0zOW .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJMDB0zOW .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJMDB0zOW .mbr-card-title {
  color: #181818;
}
.cid-txJMDB0zOW .mbr-card-subtitle {
  color: #454545;
}
.cid-txJPREuZIf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJPREuZIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJPREuZIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJPREuZIf .row {
  justify-content: center;
}
.cid-txJPREuZIf .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJPREuZIf .row {
    padding: 0 12px;
  }
}
.cid-txJPREuZIf .item-wrap {
  z-index: 1;
}
.cid-txJPREuZIf .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJPREuZIf .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJMWkW95b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJMWkW95b .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJMWkW95b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJMWkW95b .row {
  justify-content: center;
}
.cid-txJMWkW95b .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJMWkW95b .row {
    padding: 0 12px;
  }
}
.cid-txJMWkW95b .item-wrap {
  z-index: 1;
}
.cid-txJMWkW95b .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJMWkW95b .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJMWkW95b .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJMWkW95b .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJMWkW95b .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJMWkW95b .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJMWkW95b .item {
  margin-bottom: 4rem;
}
.cid-txJMWkW95b .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJMWkW95b .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJMWkW95b .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJMWkW95b .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJMWkW95b .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJMWkW95b .item a:hover {
  transform: translateY(-10px);
}
.cid-txJMWkW95b .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJMWkW95b .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJMWkW95b .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJMWkW95b .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJMWkW95b .mbr-card-title {
  color: #181818;
}
.cid-txJMWkW95b .mbr-card-subtitle {
  color: #454545;
}
.cid-txJQEMrzLS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJQEMrzLS .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJQEMrzLS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJQEMrzLS .row {
  justify-content: center;
}
.cid-txJQEMrzLS .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJQEMrzLS .row {
    padding: 0 12px;
  }
}
.cid-txJQEMrzLS .item-wrap {
  z-index: 1;
}
.cid-txJQEMrzLS .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJQEMrzLS .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJNlUnXQQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJNlUnXQQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJNlUnXQQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJNlUnXQQ .row {
  justify-content: center;
}
.cid-txJNlUnXQQ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJNlUnXQQ .row {
    padding: 0 12px;
  }
}
.cid-txJNlUnXQQ .item-wrap {
  z-index: 1;
}
.cid-txJNlUnXQQ .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJNlUnXQQ .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJNlUnXQQ .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJNlUnXQQ .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJNlUnXQQ .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJNlUnXQQ .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJNlUnXQQ .item {
  margin-bottom: 4rem;
}
.cid-txJNlUnXQQ .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJNlUnXQQ .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJNlUnXQQ .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJNlUnXQQ .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJNlUnXQQ .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJNlUnXQQ .item a:hover {
  transform: translateY(-10px);
}
.cid-txJNlUnXQQ .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJNlUnXQQ .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJNlUnXQQ .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJNlUnXQQ .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJNlUnXQQ .mbr-card-title {
  color: #181818;
}
.cid-txJNlUnXQQ .mbr-card-subtitle {
  color: #454545;
}
.cid-txJQFRz5j2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJQFRz5j2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJQFRz5j2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJQFRz5j2 .row {
  justify-content: center;
}
.cid-txJQFRz5j2 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJQFRz5j2 .row {
    padding: 0 12px;
  }
}
.cid-txJQFRz5j2 .item-wrap {
  z-index: 1;
}
.cid-txJQFRz5j2 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJQFRz5j2 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJNS5029V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJNS5029V .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJNS5029V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJNS5029V .row {
  justify-content: center;
}
.cid-txJNS5029V .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJNS5029V .row {
    padding: 0 12px;
  }
}
.cid-txJNS5029V .item-wrap {
  z-index: 1;
}
.cid-txJNS5029V .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJNS5029V .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJNS5029V .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJNS5029V .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJNS5029V .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJNS5029V .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJNS5029V .item {
  margin-bottom: 4rem;
}
.cid-txJNS5029V .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJNS5029V .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJNS5029V .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJNS5029V .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJNS5029V .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJNS5029V .item a:hover {
  transform: translateY(-10px);
}
.cid-txJNS5029V .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJNS5029V .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJNS5029V .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJNS5029V .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJNS5029V .mbr-card-title {
  color: #181818;
}
.cid-txJNS5029V .mbr-card-subtitle {
  color: #454545;
}
.cid-txJQGNPMNW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJQGNPMNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJQGNPMNW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJQGNPMNW .row {
  justify-content: center;
}
.cid-txJQGNPMNW .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJQGNPMNW .row {
    padding: 0 12px;
  }
}
.cid-txJQGNPMNW .item-wrap {
  z-index: 1;
}
.cid-txJQGNPMNW .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJQGNPMNW .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJOtMYKQs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJOtMYKQs .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJOtMYKQs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJOtMYKQs .row {
  justify-content: center;
}
.cid-txJOtMYKQs .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJOtMYKQs .row {
    padding: 0 12px;
  }
}
.cid-txJOtMYKQs .item-wrap {
  z-index: 1;
}
.cid-txJOtMYKQs .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJOtMYKQs .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJOtMYKQs .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJOtMYKQs .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJOtMYKQs .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJOtMYKQs .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJOtMYKQs .item {
  margin-bottom: 4rem;
}
.cid-txJOtMYKQs .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJOtMYKQs .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJOtMYKQs .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJOtMYKQs .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJOtMYKQs .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJOtMYKQs .item a:hover {
  transform: translateY(-10px);
}
.cid-txJOtMYKQs .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJOtMYKQs .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJOtMYKQs .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJOtMYKQs .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJOtMYKQs .mbr-card-title {
  color: #181818;
}
.cid-txJOtMYKQs .mbr-card-subtitle {
  color: #454545;
}
.cid-txJQHJ81ns {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJQHJ81ns .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJQHJ81ns .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJQHJ81ns .row {
  justify-content: center;
}
.cid-txJQHJ81ns .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJQHJ81ns .row {
    padding: 0 12px;
  }
}
.cid-txJQHJ81ns .item-wrap {
  z-index: 1;
}
.cid-txJQHJ81ns .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJQHJ81ns .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJP9prGAw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJP9prGAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJP9prGAw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJP9prGAw .row {
  justify-content: center;
}
.cid-txJP9prGAw .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJP9prGAw .row {
    padding: 0 12px;
  }
}
.cid-txJP9prGAw .item-wrap {
  z-index: 1;
}
.cid-txJP9prGAw .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJP9prGAw .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJP9prGAw .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJP9prGAw .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJP9prGAw .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJP9prGAw .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJP9prGAw .item {
  margin-bottom: 4rem;
}
.cid-txJP9prGAw .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJP9prGAw .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJP9prGAw .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJP9prGAw .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJP9prGAw .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJP9prGAw .item a:hover {
  transform: translateY(-10px);
}
.cid-txJP9prGAw .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJP9prGAw .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJP9prGAw .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJP9prGAw .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJP9prGAw .mbr-card-title {
  color: #181818;
}
.cid-txJP9prGAw .mbr-card-subtitle {
  color: #454545;
}
.cid-txJS9MhnfE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJS9MhnfE .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJS9MhnfE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJS9MhnfE .row {
  justify-content: center;
}
.cid-txJS9MhnfE .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJS9MhnfE .row {
    padding: 0 12px;
  }
}
.cid-txJS9MhnfE .item-wrap {
  z-index: 1;
}
.cid-txJS9MhnfE .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJS9MhnfE .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJSupisaD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f8f8;
}
.cid-txJSupisaD .container-fluid {
  padding-right: 0;
}
.cid-txJSupisaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJSupisaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJSupisaD .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJSupisaD .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txJSupisaD .title {
  display: flex;
  align-items: center;
}
.cid-txJSupisaD .title-wrapper {
  width: 100%;
}
.cid-txJSupisaD .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJSupisaD .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txJSupisaD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJSupisaD .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJSupisaD .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txJSupisaD .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txJSupisaD .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txJSupisaD .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txJSupisaD .mbr-section-subtitle {
  color: #181818;
}
.cid-txJSupisaD .mbr-section-title {
  color: #181818;
}
.cid-txJSupisaD .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-txreOyqSy1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-txreOyqSy1 .container-fluid {
  padding-right: 0;
}
.cid-txreOyqSy1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txreOyqSy1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txreOyqSy1 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txreOyqSy1 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txreOyqSy1 .title {
  display: flex;
  align-items: center;
}
.cid-txreOyqSy1 .title-wrapper {
  width: 100%;
}
.cid-txreOyqSy1 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txreOyqSy1 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txreOyqSy1 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txreOyqSy1 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txreOyqSy1 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txreOyqSy1 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txreOyqSy1 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txreOyqSy1 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txreOyqSy1 .mbr-section-subtitle {
  color: #181818;
}
.cid-txreOyqSy1 .mbr-section-title {
  color: #181818;
}
.cid-txreOyqSy1 .mbr-text {
  color: #454545;
}
.cid-txJUbic0BW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJUbic0BW .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJUbic0BW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJUbic0BW .row {
  justify-content: center;
}
.cid-txJUbic0BW .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJUbic0BW .row {
    padding: 0 12px;
  }
}
.cid-txJUbic0BW .item-wrap {
  z-index: 1;
}
.cid-txJUbic0BW .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJUbic0BW .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJUbUAVxp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJUbUAVxp .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJUbUAVxp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJUbUAVxp .row {
  justify-content: center;
}
.cid-txJUbUAVxp .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJUbUAVxp .row {
    padding: 0 12px;
  }
}
.cid-txJUbUAVxp .item-wrap {
  z-index: 1;
}
.cid-txJUbUAVxp .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJUbUAVxp .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJUbUAVxp .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJUbUAVxp .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJUbUAVxp .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJUbUAVxp .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJUbUAVxp .item {
  margin-bottom: 4rem;
}
.cid-txJUbUAVxp .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJUbUAVxp .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJUbUAVxp .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJUbUAVxp .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJUbUAVxp .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJUbUAVxp .item a:hover {
  transform: translateY(-10px);
}
.cid-txJUbUAVxp .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJUbUAVxp .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJUbUAVxp .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJUbUAVxp .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJUbUAVxp .mbr-card-title {
  color: #181818;
}
.cid-txJUbUAVxp .mbr-card-subtitle {
  color: #454545;
}
.cid-txJUciLCqA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJUciLCqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJUciLCqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJUciLCqA .row {
  justify-content: center;
}
.cid-txJUciLCqA .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJUciLCqA .row {
    padding: 0 12px;
  }
}
.cid-txJUciLCqA .item-wrap {
  z-index: 1;
}
.cid-txJUciLCqA .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJUciLCqA .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txK0sS9Gyt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txK0sS9Gyt .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0sS9Gyt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0sS9Gyt .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txK0sS9Gyt .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txK0sS9Gyt .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0sS9Gyt .row {
    padding: 0 12px;
  }
}
.cid-txK0sS9Gyt .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txK0sS9Gyt .item-wrap {
  z-index: 1;
}
.cid-txK0sS9Gyt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0sS9Gyt .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txK0sS9Gyt .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0sS9Gyt .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0sS9Gyt .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0sS9Gyt .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0sS9Gyt .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txK0sS9Gyt .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txK0sS9Gyt .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txK0sS9Gyt .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txK0sS9Gyt .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txK0sS9Gyt .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txK0sS9Gyt .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0sS9Gyt .mbr-section-btn {
    text-align: center;
  }
}
.cid-txK0sS9Gyt .mbr-section-title {
  color: #ffffff;
}
.cid-txK0sS9Gyt .mbr-text {
  color: #ffffff;
}
.cid-txK0sS9Gyt .mbr-price {
  color: #ffffff;
}
.cid-txK0sS9Gyt .mbr-max-price {
  color: #ffffff;
}
.cid-txJVqaZ4KA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txJVqaZ4KA .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJVqaZ4KA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJVqaZ4KA .row {
  justify-content: center;
}
.cid-txJVqaZ4KA .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJVqaZ4KA .row {
    padding: 0 12px;
  }
}
.cid-txJVqaZ4KA .item-wrap {
  z-index: 1;
}
.cid-txJVqaZ4KA .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJVqaZ4KA .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txJVqaZ4KA .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txJVqaZ4KA .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJVqaZ4KA .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txJVqaZ4KA .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txJVqaZ4KA .item {
  margin-bottom: 4rem;
}
.cid-txJVqaZ4KA .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txJVqaZ4KA .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txJVqaZ4KA .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txJVqaZ4KA .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txJVqaZ4KA .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txJVqaZ4KA .item a:hover {
  transform: translateY(-10px);
}
.cid-txJVqaZ4KA .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txJVqaZ4KA .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txJVqaZ4KA .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txJVqaZ4KA .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txJVqaZ4KA .mbr-card-title {
  color: #181818;
}
.cid-txJVqaZ4KA .mbr-card-subtitle {
  color: #454545;
}
.cid-txK0ucSxCZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txK0ucSxCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0ucSxCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0ucSxCZ .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txK0ucSxCZ .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txK0ucSxCZ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0ucSxCZ .row {
    padding: 0 12px;
  }
}
.cid-txK0ucSxCZ .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txK0ucSxCZ .item-wrap {
  z-index: 1;
}
.cid-txK0ucSxCZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0ucSxCZ .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txK0ucSxCZ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0ucSxCZ .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0ucSxCZ .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0ucSxCZ .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0ucSxCZ .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txK0ucSxCZ .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txK0ucSxCZ .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txK0ucSxCZ .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txK0ucSxCZ .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txK0ucSxCZ .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txK0ucSxCZ .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0ucSxCZ .mbr-section-btn {
    text-align: center;
  }
}
.cid-txK0ucSxCZ .mbr-section-title {
  color: #ffffff;
}
.cid-txK0ucSxCZ .mbr-text {
  color: #ffffff;
}
.cid-txK0ucSxCZ .mbr-price {
  color: #ffffff;
}
.cid-txK0ucSxCZ .mbr-max-price {
  color: #ffffff;
}
.cid-txJVrhx1PT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJVrhx1PT .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJVrhx1PT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJVrhx1PT .row {
  justify-content: center;
}
.cid-txJVrhx1PT .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJVrhx1PT .row {
    padding: 0 12px;
  }
}
.cid-txJVrhx1PT .item-wrap {
  z-index: 1;
}
.cid-txJVrhx1PT .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJVrhx1PT .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJYcki9GB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txJYcki9GB .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJYcki9GB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJYcki9GB .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txJYcki9GB .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txJYcki9GB .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJYcki9GB .row {
    padding: 0 12px;
  }
}
.cid-txJYcki9GB .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txJYcki9GB .item-wrap {
  z-index: 1;
}
.cid-txJYcki9GB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txJYcki9GB .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txJYcki9GB .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txJYcki9GB .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txJYcki9GB .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txJYcki9GB .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txJYcki9GB .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txJYcki9GB .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txJYcki9GB .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txJYcki9GB .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txJYcki9GB .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txJYcki9GB .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txJYcki9GB .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txJYcki9GB .mbr-section-btn {
    text-align: center;
  }
}
.cid-txJYcki9GB .mbr-section-title {
  color: #ffffff;
}
.cid-txJYcki9GB .mbr-text {
  color: #ffffff;
}
.cid-txJYcki9GB .mbr-price {
  color: #ffffff;
}
.cid-txJYcki9GB .mbr-max-price {
  color: #ffffff;
}
.cid-txJYd9liVy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-txJYd9liVy .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJYd9liVy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJYd9liVy .row {
  justify-content: center;
}
.cid-txJYd9liVy .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJYd9liVy .row {
    padding: 0 12px;
  }
}
.cid-txJYd9liVy .item-wrap {
  z-index: 1;
}
.cid-txJYd9liVy .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-txJYd9liVy .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txJYJC5W9S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txJYJC5W9S .container-fluid {
  padding-right: 0;
}
.cid-txJYJC5W9S .mbr-fallback-image.disabled {
  display: none;
}
.cid-txJYJC5W9S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txJYJC5W9S .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txJYJC5W9S .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txJYJC5W9S .title {
  display: flex;
  align-items: center;
}
.cid-txJYJC5W9S .title-wrapper {
  width: 100%;
}
.cid-txJYJC5W9S .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJYJC5W9S .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txJYJC5W9S .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txJYJC5W9S .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txJYJC5W9S .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txJYJC5W9S .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txJYJC5W9S .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txJYJC5W9S .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txJYJC5W9S .mbr-section-subtitle {
  color: #181818;
}
.cid-txJYJC5W9S .mbr-section-title {
  color: #181818;
}
.cid-txJYJC5W9S .mbr-text {
  color: #454545;
}
.cid-ubYdezlDg7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ubYdezlDg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubYdezlDg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubYdezlDg7 .row {
  justify-content: center;
}
.cid-ubYdezlDg7 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-ubYdezlDg7 .row {
    padding: 0 12px;
  }
}
.cid-ubYdezlDg7 .item-wrap {
  z-index: 1;
}
.cid-ubYdezlDg7 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-ubYdezlDg7 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txK02l7IQo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txK02l7IQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK02l7IQo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK02l7IQo .row {
  justify-content: center;
}
.cid-txK02l7IQo .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK02l7IQo .row {
    padding: 0 12px;
  }
}
.cid-txK02l7IQo .item-wrap {
  z-index: 1;
}
.cid-txK02l7IQo .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txK02l7IQo .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txK02l7IQo .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txK02l7IQo .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txK02l7IQo .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txK02l7IQo .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txK02l7IQo .item {
  margin-bottom: 4rem;
}
.cid-txK02l7IQo .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txK02l7IQo .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txK02l7IQo .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txK02l7IQo .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txK02l7IQo .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txK02l7IQo .item a:hover {
  transform: translateY(-10px);
}
.cid-txK02l7IQo .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txK02l7IQo .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txK02l7IQo .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txK02l7IQo .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txK02l7IQo .mbr-card-title {
  color: #181818;
}
.cid-txK02l7IQo .mbr-card-subtitle {
  color: #454545;
}
.cid-txK0erubon {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txK0erubon .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0erubon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0erubon .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txK0erubon .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txK0erubon .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0erubon .row {
    padding: 0 12px;
  }
}
.cid-txK0erubon .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txK0erubon .item-wrap {
  z-index: 1;
}
.cid-txK0erubon .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0erubon .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txK0erubon .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0erubon .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0erubon .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0erubon .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0erubon .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txK0erubon .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txK0erubon .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txK0erubon .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txK0erubon .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txK0erubon .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txK0erubon .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0erubon .mbr-section-btn {
    text-align: center;
  }
}
.cid-txK0erubon .mbr-section-title {
  color: #ffffff;
}
.cid-txK0erubon .mbr-text {
  color: #ffffff;
}
.cid-txK0erubon .mbr-price {
  color: #ffffff;
}
.cid-txK0erubon .mbr-max-price {
  color: #ffffff;
}
.cid-txK0fxnFoa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txK0fxnFoa .container-fluid {
  padding-right: 0;
}
.cid-txK0fxnFoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0fxnFoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0fxnFoa .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0fxnFoa .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txK0fxnFoa .title {
  display: flex;
  align-items: center;
}
.cid-txK0fxnFoa .title-wrapper {
  width: 100%;
}
.cid-txK0fxnFoa .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txK0fxnFoa .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txK0fxnFoa .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txK0fxnFoa .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txK0fxnFoa .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txK0fxnFoa .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txK0fxnFoa .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txK0fxnFoa .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txK0fxnFoa .mbr-section-subtitle {
  color: #181818;
}
.cid-txK0fxnFoa .mbr-section-title {
  color: #181818;
}
.cid-txK0fxnFoa .mbr-text {
  color: #454545;
}
.cid-ubYg5fbKmF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ubYg5fbKmF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubYg5fbKmF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubYg5fbKmF .row {
  justify-content: center;
}
.cid-ubYg5fbKmF .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-ubYg5fbKmF .row {
    padding: 0 12px;
  }
}
.cid-ubYg5fbKmF .item-wrap {
  z-index: 1;
}
.cid-ubYg5fbKmF .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-ubYg5fbKmF .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txK0gJ3cMT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txK0gJ3cMT .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0gJ3cMT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0gJ3cMT .row {
  justify-content: center;
}
.cid-txK0gJ3cMT .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0gJ3cMT .row {
    padding: 0 12px;
  }
}
.cid-txK0gJ3cMT .item-wrap {
  z-index: 1;
}
.cid-txK0gJ3cMT .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txK0gJ3cMT .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txK0gJ3cMT .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txK0gJ3cMT .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txK0gJ3cMT .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txK0gJ3cMT .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txK0gJ3cMT .item {
  margin-bottom: 4rem;
}
.cid-txK0gJ3cMT .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txK0gJ3cMT .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txK0gJ3cMT .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txK0gJ3cMT .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txK0gJ3cMT .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txK0gJ3cMT .item a:hover {
  transform: translateY(-10px);
}
.cid-txK0gJ3cMT .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txK0gJ3cMT .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txK0gJ3cMT .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txK0gJ3cMT .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txK0gJ3cMT .mbr-card-title {
  color: #181818;
}
.cid-txK0gJ3cMT .mbr-card-subtitle {
  color: #454545;
}
.cid-txK0jYYP4b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txK0jYYP4b .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0jYYP4b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0jYYP4b .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txK0jYYP4b .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txK0jYYP4b .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0jYYP4b .row {
    padding: 0 12px;
  }
}
.cid-txK0jYYP4b .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txK0jYYP4b .item-wrap {
  z-index: 1;
}
.cid-txK0jYYP4b .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0jYYP4b .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txK0jYYP4b .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0jYYP4b .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0jYYP4b .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0jYYP4b .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0jYYP4b .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txK0jYYP4b .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txK0jYYP4b .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txK0jYYP4b .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txK0jYYP4b .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txK0jYYP4b .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txK0jYYP4b .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0jYYP4b .mbr-section-btn {
    text-align: center;
  }
}
.cid-txK0jYYP4b .mbr-section-title {
  color: #ffffff;
}
.cid-txK0jYYP4b .mbr-text {
  color: #ffffff;
}
.cid-txK0jYYP4b .mbr-price {
  color: #ffffff;
}
.cid-txK0jYYP4b .mbr-max-price {
  color: #ffffff;
}
.cid-txK0kB8H4m {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txK0kB8H4m .container-fluid {
  padding-right: 0;
}
.cid-txK0kB8H4m .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0kB8H4m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0kB8H4m .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0kB8H4m .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txK0kB8H4m .title {
  display: flex;
  align-items: center;
}
.cid-txK0kB8H4m .title-wrapper {
  width: 100%;
}
.cid-txK0kB8H4m .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txK0kB8H4m .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txK0kB8H4m .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txK0kB8H4m .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txK0kB8H4m .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txK0kB8H4m .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txK0kB8H4m .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txK0kB8H4m .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txK0kB8H4m .mbr-section-subtitle {
  color: #181818;
}
.cid-txK0kB8H4m .mbr-section-title {
  color: #181818;
}
.cid-txK0kB8H4m .mbr-text {
  color: #454545;
}
.cid-ubYiAbOB7K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ubYiAbOB7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubYiAbOB7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubYiAbOB7K .row {
  justify-content: center;
}
.cid-ubYiAbOB7K .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-ubYiAbOB7K .row {
    padding: 0 12px;
  }
}
.cid-ubYiAbOB7K .item-wrap {
  z-index: 1;
}
.cid-ubYiAbOB7K .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-ubYiAbOB7K .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txK0lB1JTz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txK0lB1JTz .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0lB1JTz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0lB1JTz .row {
  justify-content: center;
}
.cid-txK0lB1JTz .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0lB1JTz .row {
    padding: 0 12px;
  }
}
.cid-txK0lB1JTz .item-wrap {
  z-index: 1;
}
.cid-txK0lB1JTz .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txK0lB1JTz .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txK0lB1JTz .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txK0lB1JTz .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txK0lB1JTz .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txK0lB1JTz .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txK0lB1JTz .item {
  margin-bottom: 4rem;
}
.cid-txK0lB1JTz .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txK0lB1JTz .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txK0lB1JTz .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txK0lB1JTz .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txK0lB1JTz .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txK0lB1JTz .item a:hover {
  transform: translateY(-10px);
}
.cid-txK0lB1JTz .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txK0lB1JTz .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txK0lB1JTz .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txK0lB1JTz .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txK0lB1JTz .mbr-card-title {
  color: #181818;
}
.cid-txK0lB1JTz .mbr-card-subtitle {
  color: #454545;
}
.cid-txK0mu5Nwv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txK0mu5Nwv .mbr-fallback-image.disabled {
  display: none;
}
.cid-txK0mu5Nwv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txK0mu5Nwv .row {
  justify-content: center;
  position: relative;
  flex-direction: row;
}
.cid-txK0mu5Nwv .row img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: visible;
}
.cid-txK0mu5Nwv .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txK0mu5Nwv .row {
    padding: 0 12px;
  }
}
.cid-txK0mu5Nwv .row-card {
  padding: 0 64px;
  margin: 82px 0;
}
.cid-txK0mu5Nwv .item-wrap {
  z-index: 1;
}
.cid-txK0mu5Nwv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0mu5Nwv .title-wrapper .mbr-section-title {
    margin-bottom: 13px;
    text-align: center;
  }
}
.cid-txK0mu5Nwv .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-txK0mu5Nwv .text-wrapper .mbr-text {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0mu5Nwv .price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0mu5Nwv .price-wrapper {
    margin-bottom: 25px;
    text-align: center;
  }
}
.cid-txK0mu5Nwv .price-wrapper .mbr-price {
  position: relative;
  padding-right: 14px;
}
.cid-txK0mu5Nwv .price-wrapper .mbr-price span {
  position: absolute;
  top: 12px;
  left: -12px;
  font-size: 25px;
}
.cid-txK0mu5Nwv .price-wrapper .mbr-price:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 1px;
  background: #ffffff;
  opacity: .5;
}
.cid-txK0mu5Nwv .price-wrapper .mbr-max-price {
  position: relative;
  margin-left: 20px;
  opacity: .5;
}
.cid-txK0mu5Nwv .price-wrapper .mbr-max-price span {
  position: absolute;
  top: 7px;
  left: -9px;
  font-size: 14px;
}
.cid-txK0mu5Nwv .price-wrapper .mbr-max-price:after {
  content: '';
  position: absolute;
  top: 46%;
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
}
.cid-txK0mu5Nwv .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-txK0mu5Nwv .mbr-section-btn {
    text-align: center;
  }
}
.cid-txK0mu5Nwv .mbr-section-title {
  color: #ffffff;
}
.cid-txK0mu5Nwv .mbr-text {
  color: #ffffff;
}
.cid-txK0mu5Nwv .mbr-price {
  color: #ffffff;
}
.cid-txK0mu5Nwv .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-txKh8AtsDm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-txKh8AtsDm .container-fluid {
  padding-right: 0;
}
.cid-txKh8AtsDm .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKh8AtsDm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txKh8AtsDm .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txKh8AtsDm .title-wrapper {
    padding: 0 12px;
  }
}
.cid-txKh8AtsDm .title {
  display: flex;
  align-items: center;
}
.cid-txKh8AtsDm .title-wrapper {
  width: 100%;
}
.cid-txKh8AtsDm .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txKh8AtsDm .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-txKh8AtsDm .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-txKh8AtsDm .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txKh8AtsDm .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-txKh8AtsDm .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-txKh8AtsDm .image-wrapper {
    margin-top: 39px;
  }
}
.cid-txKh8AtsDm .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txKh8AtsDm .mbr-section-subtitle {
  color: #181818;
}
.cid-txKh8AtsDm .mbr-section-title {
  color: #181818;
}
.cid-txKh8AtsDm .mbr-text {
  color: #454545;
}
.cid-ubYjVvmHu4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ubYjVvmHu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubYjVvmHu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubYjVvmHu4 .row {
  justify-content: center;
}
.cid-ubYjVvmHu4 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-ubYjVvmHu4 .row {
    padding: 0 12px;
  }
}
.cid-ubYjVvmHu4 .item-wrap {
  z-index: 1;
}
.cid-ubYjVvmHu4 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-ubYjVvmHu4 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-txKh9nAj2z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txKh9nAj2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKh9nAj2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txKh9nAj2z .row {
  justify-content: center;
}
.cid-txKh9nAj2z .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txKh9nAj2z .row {
    padding: 0 12px;
  }
}
.cid-txKh9nAj2z .item-wrap {
  z-index: 1;
}
.cid-txKh9nAj2z .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txKh9nAj2z .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txKh9nAj2z .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txKh9nAj2z .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txKh9nAj2z .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txKh9nAj2z .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txKh9nAj2z .item {
  margin-bottom: 4rem;
}
.cid-txKh9nAj2z .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txKh9nAj2z .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txKh9nAj2z .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txKh9nAj2z .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txKh9nAj2z .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txKh9nAj2z .item a:hover {
  transform: translateY(-10px);
}
.cid-txKh9nAj2z .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txKh9nAj2z .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txKh9nAj2z .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txKh9nAj2z .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txKh9nAj2z .mbr-card-title {
  color: #181818;
}
.cid-txKh9nAj2z .mbr-card-subtitle {
  color: #454545;
}
.cid-tyANbFAOx9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}
.cid-tyANbFAOx9 .container-fluid {
  padding-right: 0;
}
.cid-tyANbFAOx9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyANbFAOx9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyANbFAOx9 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tyANbFAOx9 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tyANbFAOx9 .title {
  display: flex;
  align-items: center;
}
.cid-tyANbFAOx9 .title-wrapper {
  width: 100%;
}
.cid-tyANbFAOx9 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tyANbFAOx9 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tyANbFAOx9 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tyANbFAOx9 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tyANbFAOx9 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tyANbFAOx9 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tyANbFAOx9 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tyANbFAOx9 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tyANbFAOx9 .mbr-section-subtitle {
  color: #181818;
}
.cid-tyANbFAOx9 .mbr-section-title {
  color: #181818;
}
.cid-tyANbFAOx9 .mbr-text {
  color: #454545;
}
.cid-tyAPN2qCoQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyAPN2qCoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyAPN2qCoQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyAPN2qCoQ .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tyAPN2qCoQ .row {
    padding: 0 12px;
  }
}
.cid-tyAPN2qCoQ .item-wrap {
  z-index: 1;
}
.cid-tyAPN2qCoQ .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #181818;
  margin-bottom: 48px;
}
.cid-tyAPN2qCoQ .mbr-section-subtitle {
  margin-bottom: 62px;
  color: #181818;
}
.cid-tyAPN2qCoQ .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 62px;
}
.cid-tyAPN2qCoQ .link-wrapper:hover .mbr-link {
  color: #ae856c;
}
.cid-tyAPN2qCoQ .link-wrapper:hover .mbr-link span {
  color: #ae856c;
}
.cid-tyAPN2qCoQ .link-wrapper .mbr-link {
  transition: all .3s ease;
  margin-bottom: 62px;
}
.cid-tyAPN2qCoQ .link-wrapper .mbr-link span {
  margin-left: 1px;
  font-size: 13px;
}
.cid-tyAPN2qCoQ .desc-container .desc-wrapper {
  display: inline-flex;
  margin-bottom: 18px;
}
.cid-tyAPN2qCoQ .desc-container .desc-wrapper .mbr-desc {
  margin: 0;
  transition: all .3s ease;
}
.cid-tyAPN2qCoQ .desc-container .desc-wrapper .mbr-desc:first-child:hover {
  color: #ae856c;
}
.cid-tyAPN2qCoQ .desc-container .desc-wrapper .mbr-dot {
  margin: 0 10px;
  font-size: 20px;
  opacity: .3;
}
.cid-tyAPN2qCoQ .person-container .person-wrapper {
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-tyAPN2qCoQ .person-container .person-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tyAPN2qCoQ .person-container .person-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 5px 0 0;
}
.cid-tyAPN2qCoQ .person-container .person-wrapper .person-text .mbr-person {
  margin: 0;
}
.cid-tyAPN2qCoQ .person-container .person-wrapper .person-text .mbr-person:first-child {
  margin-bottom: -4px;
  transition: all .3s ease;
}
.cid-tyAPN2qCoQ .person-container .person-wrapper .person-text .mbr-person:first-child:hover {
  opacity: .3;
}
@media (max-width: 992px) {
  .cid-tyAPN2qCoQ .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tyAPN2qCoQ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
  transition: all .3s ease;
}
.cid-tyAPN2qCoQ .title-wrapper .mbr-section-title:hover {
  color: #ae856c;
}
.cid-tyAPN2qCoQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tyAPN2qCoQ .date-wrapper .mbr-date {
  margin-bottom: 24px;
}
@media (max-width: 425px) {
  .cid-tyAPN2qCoQ .date-wrapper .mbr-date {
    text-align: left;
  }
}
.cid-tyAPN2qCoQ .image-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-tyAPN2qCoQ .image-wrapper {
    padding-left: 40%;
  }
}
@media (max-width: 425px) {
  .cid-tyAPN2qCoQ .image-wrapper {
    padding: 0;
  }
}
.cid-tyAPN2qCoQ .image-wrapper .image-link {
  display: block;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tyAPN2qCoQ .image-wrapper .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tyAPN2qCoQ .image-wrapper .image-link img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tyAPN2qCoQ .image-wrapper .image-container {
  width: 76px;
}
.cid-tyAPN2qCoQ .image-wrapper .image-container .image-link {
  display: block;
  overflow: hidden;
}
.cid-tyAPN2qCoQ .image-wrapper .image-container .image-link:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tyAPN2qCoQ .image-wrapper .image-container .image-link img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tyAPN2qCoQ .image-wrapper .image-container .image-link:first-child {
  margin-bottom: 1rem;
}
.cid-tyAPN2qCoQ .mbr-section-title {
  color: #181818;
}
.cid-tyAPN2qCoQ .mbr-text {
  color: #181818;
}
.cid-tyAPN2qCoQ .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tyAPN2qCoQ .mbr-desc,
.cid-tyAPN2qCoQ .mbr-dot {
  color: #181818;
}
.cid-tyAPN2qCoQ .mbr-person {
  color: #181818;
}
.cid-tyAPN2qCoQ .mbr-date {
  color: #181818;
  text-align: right;
}
.cid-txKha1hYgk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txKha1hYgk .mbr-fallback-image.disabled {
  display: none;
}
.cid-txKha1hYgk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txKha1hYgk .row {
  justify-content: center;
}
.cid-txKha1hYgk .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-txKha1hYgk .row {
    padding: 0 12px;
  }
}
.cid-txKha1hYgk .item-wrap {
  z-index: 1;
}
.cid-txKha1hYgk .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txKha1hYgk .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-txKha1hYgk .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-txKha1hYgk .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-txKha1hYgk .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-txKha1hYgk .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-txKha1hYgk .item {
  margin-bottom: 4rem;
}
.cid-txKha1hYgk .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-txKha1hYgk .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-txKha1hYgk .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-txKha1hYgk .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-txKha1hYgk .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-txKha1hYgk .item a:hover {
  transform: translateY(-10px);
}
.cid-txKha1hYgk .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-txKha1hYgk .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-txKha1hYgk .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-txKha1hYgk .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-txKha1hYgk .mbr-card-title {
  color: #181818;
}
.cid-txKha1hYgk .mbr-card-subtitle {
  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-tzjlSgciNt {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tzjlSgciNt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzjlSgciNt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzjlSgciNt .row {
  justify-content: center;
}
.cid-tzjlSgciNt .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tzjlSgciNt .row {
    padding: 0 12px;
  }
}
.cid-tzjlSgciNt .item {
  margin-bottom: 40px;
  padding: 0 32px !important;
}
@media (max-width: 992px) {
  .cid-tzjlSgciNt .item {
    padding: 0 12px !important;
  }
}
.cid-tzjlSgciNt .link-wrapper {
  display: block;
}
.cid-tzjlSgciNt .link-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tzjlSgciNt .link-wrapper:hover .mbr-date:last-child {
  opacity: .7;
}
.cid-tzjlSgciNt .link-wrapper:hover .mbr-section-title {
  opacity: .7;
}
.cid-tzjlSgciNt .link-wrapper .image-wrapper {
  overflow: hidden;
  margin-bottom: 32px;
}
.cid-tzjlSgciNt .link-wrapper .image-wrapper img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tzjlSgciNt .link-wrapper .date-container {
  margin-bottom: 24px;
}
.cid-tzjlSgciNt .link-wrapper .date-container .date-wrapper {
  display: inline-flex;
}
.cid-tzjlSgciNt .link-wrapper .date-container .date-wrapper .mbr-date {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-tzjlSgciNt .link-wrapper .date-container .date-wrapper .mbr-dot {
  margin: 0 10px;
  opacity: .3;
}
.cid-tzjlSgciNt .link-wrapper .mbr-section-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-tzjlSgciNt .mbr-section-title {
  color: #181818;
}
.cid-tzjlSgciNt .mbr-date,
.cid-tzjlSgciNt .mbr-dot {
  color: #181818;
}
.cid-tzj2tXS7Y4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzj2tXS7Y4 .container-fluid {
  padding-right: 0;
}
.cid-tzj2tXS7Y4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzj2tXS7Y4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzj2tXS7Y4 .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzj2tXS7Y4 .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzj2tXS7Y4 .title {
  display: flex;
  align-items: center;
}
.cid-tzj2tXS7Y4 .title-wrapper {
  width: 100%;
}
.cid-tzj2tXS7Y4 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzj2tXS7Y4 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzj2tXS7Y4 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzj2tXS7Y4 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzj2tXS7Y4 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzj2tXS7Y4 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzj2tXS7Y4 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzj2tXS7Y4 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzj2tXS7Y4 .mbr-section-subtitle {
  color: #181818;
}
.cid-tzj2tXS7Y4 .mbr-section-title {
  color: #181818;
}
.cid-tzj2tXS7Y4 .mbr-text {
  color: #454545;
}
.cid-tzj2ozc4Ed {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tzj2ozc4Ed .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzj2ozc4Ed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzj2ozc4Ed .row {
  justify-content: center;
}
.cid-tzj2ozc4Ed .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzj2ozc4Ed .row {
    padding: 0 12px;
  }
}
.cid-tzj2ozc4Ed .item-wrap {
  z-index: 1;
}
.cid-tzj2ozc4Ed .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-tzj2ozc4Ed .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tzj1UFyYel {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzj1UFyYel .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzj1UFyYel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzj1UFyYel .row {
  justify-content: center;
}
.cid-tzj1UFyYel .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzj1UFyYel .row {
    padding: 0 12px;
  }
}
.cid-tzj1UFyYel .item-wrap {
  z-index: 1;
}
.cid-tzj1UFyYel .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzj1UFyYel .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-tzj1UFyYel .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzj1UFyYel .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzj1UFyYel .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-tzj1UFyYel .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-tzj1UFyYel .item {
  margin-bottom: 4rem;
}
.cid-tzj1UFyYel .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-tzj1UFyYel .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-tzj1UFyYel .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-tzj1UFyYel .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-tzj1UFyYel .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-tzj1UFyYel .item a:hover {
  transform: translateY(-10px);
}
.cid-tzj1UFyYel .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-tzj1UFyYel .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-tzj1UFyYel .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-tzj1UFyYel .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-tzj1UFyYel .mbr-card-title {
  color: #181818;
}
.cid-tzj1UFyYel .mbr-card-subtitle {
  color: #454545;
}
.cid-tzj9pBX7nF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzj9pBX7nF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzj9pBX7nF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzj9pBX7nF .row {
  justify-content: center;
}
.cid-tzj9pBX7nF .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzj9pBX7nF .row {
    padding: 0 12px;
  }
}
.cid-tzj9pBX7nF .item-wrap {
  z-index: 1;
}
.cid-tzj9pBX7nF .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzj9pBX7nF .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-tzj9pBX7nF .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzj9pBX7nF .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzj9pBX7nF .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-tzj9pBX7nF .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-tzj9pBX7nF .item {
  margin-bottom: 4rem;
}
.cid-tzj9pBX7nF .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-tzj9pBX7nF .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-tzj9pBX7nF .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-tzj9pBX7nF .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-tzj9pBX7nF .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-tzj9pBX7nF .item a:hover {
  transform: translateY(-10px);
}
.cid-tzj9pBX7nF .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-tzj9pBX7nF .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-tzj9pBX7nF .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-tzj9pBX7nF .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-tzj9pBX7nF .mbr-card-title {
  color: #181818;
}
.cid-tzj9pBX7nF .mbr-card-subtitle {
  color: #454545;
}
.cid-tzjaQo4wIe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-tzjaQo4wIe .container-fluid {
  padding-right: 0;
}
.cid-tzjaQo4wIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzjaQo4wIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzjaQo4wIe .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzjaQo4wIe .title-wrapper {
    padding: 0 12px;
  }
}
.cid-tzjaQo4wIe .title {
  display: flex;
  align-items: center;
}
.cid-tzjaQo4wIe .title-wrapper {
  width: 100%;
}
.cid-tzjaQo4wIe .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzjaQo4wIe .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tzjaQo4wIe .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tzjaQo4wIe .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzjaQo4wIe .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tzjaQo4wIe .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tzjaQo4wIe .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tzjaQo4wIe .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzjaQo4wIe .mbr-section-subtitle {
  color: #181818;
}
.cid-tzjaQo4wIe .mbr-section-title {
  color: #181818;
}
.cid-tzjaQo4wIe .mbr-text {
  color: #454545;
}
.cid-tzjbbo1o37 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tzjbbo1o37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzjbbo1o37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzjbbo1o37 .row {
  justify-content: center;
}
.cid-tzjbbo1o37 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzjbbo1o37 .row {
    padding: 0 12px;
  }
}
.cid-tzjbbo1o37 .item-wrap {
  z-index: 1;
}
.cid-tzjbbo1o37 .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-tzjbbo1o37 .mbr-text {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tzjbWaqKSK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzjbWaqKSK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzjbWaqKSK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzjbWaqKSK .row {
  justify-content: center;
}
.cid-tzjbWaqKSK .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tzjbWaqKSK .row {
    padding: 0 12px;
  }
}
.cid-tzjbWaqKSK .item-wrap {
  z-index: 1;
}
.cid-tzjbWaqKSK .mbr-section-subtitle {
  margin-bottom: 8px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzjbWaqKSK .mbr-section-subtitle {
    margin-bottom: 6.5em;
  }
}
.cid-tzjbWaqKSK .mbr-section-title {
  margin-bottom: 54px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tzjbWaqKSK .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tzjbWaqKSK .mbr-text {
  margin-bottom: 54px;
  color: #454545;
}
@media (max-width: 992px) {
  .cid-tzjbWaqKSK .mbr-text {
    margin-bottom: 44px;
  }
}
.cid-tzjbWaqKSK .item {
  margin-bottom: 4rem;
}
.cid-tzjbWaqKSK .item:nth-child(odd) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .cid-tzjbWaqKSK .item:nth-child(odd) {
    padding: 0 12px;
  }
}
.cid-tzjbWaqKSK .item:nth-child(even) {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .cid-tzjbWaqKSK .item:nth-child(even) {
    padding: 0 12px;
  }
}
.cid-tzjbWaqKSK .item a {
  width: 100%;
  display: block;
  transition: all .3s ease;
}
.cid-tzjbWaqKSK .item a:hover {
  transform: translateY(-10px);
}
.cid-tzjbWaqKSK .item a .item-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .cid-tzjbWaqKSK .item a .item-wrapper img {
    height: 220px;
  }
}
.cid-tzjbWaqKSK .item a .item-wrapper .mbr-card-subtitle {
  margin-bottom: 4px;
}
.cid-tzjbWaqKSK .item a .item-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-tzjbWaqKSK .mbr-card-title {
  color: #181818;
}
.cid-tzjbWaqKSK .mbr-card-subtitle {
  color: #454545;
}
