body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !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: #6592e6 !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #e43f3f !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tCqwgMSzzB {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fon1-1600x1064.jpg");
}
.cid-tCqwgMSzzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCqwgMSzzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCqwgMSzzB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tCqwgMSzzB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tCqwgMSzzB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tCqwgMSzzB .mbr-section-title {
  color: #fafafa;
}
.cid-tCqwgMSzzB .mbr-text,
.cid-tCqwgMSzzB .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-tBXJ2rxcs4 {
  padding-top: 4rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/tlm2-1899x857.jpg");
}
.cid-tBXJ2rxcs4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBXJ2rxcs4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBXJ2rxcs4 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tBXJ2rxcs4 .card {
    margin-bottom: 2rem!important;
  }
  .cid-tBXJ2rxcs4 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tBXJ2rxcs4 .link-wrap {
    align-items: center;
  }
}
.cid-tBXJ2rxcs4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBXJ2rxcs4 .card-title,
.cid-tBXJ2rxcs4 .card-box {
  color: #000000;
}
.cid-tBXJ2rxcs4 .mbr-text {
  color: #97467f;
}
.cid-tBXQ2s4oyk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/vn1-640x480.jpg");
}
.cid-tBXQ2s4oyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBXQ2s4oyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBXQ2s4oyk .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tBXQ2s4oyk .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tBXQ2s4oyk .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tBXQ2s4oyk .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tBXQ2s4oyk .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tBXQ2s4oyk .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tBXQ2s4oyk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBXSdaOKeG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/solar5-1390x911.jpg");
}
.cid-tBXSdaOKeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBXSdaOKeG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBXSdaOKeG .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tBXSdaOKeG .card {
    margin-bottom: 2rem!important;
  }
  .cid-tBXSdaOKeG .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tBXSdaOKeG .link-wrap {
    align-items: center;
  }
}
.cid-tBXSdaOKeG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #fff8db !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBXBCn3RvB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #fff8db !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBOWhXkIAA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tBOWhXkIAA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBOWhXkIAA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBOWhXkIAA ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tBOWhXkIAA li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tBOWhXkIAA ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tBXBCn3RvB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBOWwiPNk2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tlm2-1899x857.jpg");
}
.cid-tBOWwiPNk2 .mbr-section-title {
  text-align: center;
  color: #700f0f;
}
.cid-tBOWwiPNk2 .mbr-text,
.cid-tBOWwiPNk2 .mbr-section-btn {
  color: #194087;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tBOWwiPNk2 .mbr-section-title,
  .cid-tBOWwiPNk2 .mbr-section-btn,
  .cid-tBOWwiPNk2 .mbr-text {
    text-align: center;
  }
}
.cid-tBXZdmKmn6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/tlmfon1-780x1040.jpeg");
}
.cid-tBXZdmKmn6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBXZdmKmn6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tBXZdmKmn6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBXZdmKmn6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBXZdmKmn6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tBXZaiCZuN {
  background-image: url("../../../assets/images/tm-fon2-1-780x1040.jpeg");
}
.cid-tBXZaiCZuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBXZaiCZuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBXZaiCZuN .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tBXZaiCZuN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBXZaiCZuN .row {
  flex-direction: row-reverse;
}
.cid-tBXZaiCZuN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBXZaiCZuN .text-wrapper {
    padding: 2rem;
  }
}
.cid-tBXZaiCZuN .mbr-text {
  color: #232323;
}
.cid-tBYhsJ7aoj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/tlm1-1815x823.jpg");
}
.cid-tBYhsJ7aoj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBYhsJ7aoj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tBYhsJ7aoj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBYhsJ7aoj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBYhsJ7aoj .text-wrapper {
    padding: 2rem;
  }
}
.cid-tBYjLz0sCc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/11-1200x630.jpg");
}
.cid-tBYjLz0sCc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBYjLz0sCc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBYjLz0sCc .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tBYjLz0sCc .row {
    flex-direction: column-reverse;
  }
  .cid-tBYjLz0sCc .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tBYjLz0sCc .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tBYjLz0sCc .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tBYjLz0sCc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBYpwBve3H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tlm4-fon-1920x1040.jpg");
}
.cid-tBYpwBve3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBYpwBve3H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBYpwBve3H .mbr-section-subtitle {
  text-align: left;
}
.cid-tBOWwkTLYU {
  z-index: 1000;
  width: 100%;
}
.cid-tBOWwkTLYU nav.navbar {
  position: fixed;
}
.cid-tBOWwkTLYU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBOWwkTLYU .dropdown-menu {
  padding: 0;
}
.cid-tBOWwkTLYU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBOWwkTLYU .dropdown-item:hover,
.cid-tBOWwkTLYU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBOWwkTLYU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tBOWwkTLYU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBOWwkTLYU .nav-link {
  position: relative;
}
.cid-tBOWwkTLYU .container {
  display: flex;
  margin: auto;
}
.cid-tBOWwkTLYU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tBOWwkTLYU .navbar-caption {
  padding-right: 4rem;
}
.cid-tBOWwkTLYU .dropdown-menu,
.cid-tBOWwkTLYU .navbar.opened {
  background: #fff8db !important;
}
.cid-tBOWwkTLYU .nav-item:focus,
.cid-tBOWwkTLYU .nav-link:focus {
  outline: none;
}
.cid-tBOWwkTLYU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBOWwkTLYU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBOWwkTLYU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBOWwkTLYU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBOWwkTLYU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBOWwkTLYU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBOWwkTLYU .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tBOWwkTLYU .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBOWwkTLYU .navbar.opened {
  transition: all .3s;
}
.cid-tBOWwkTLYU .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tBOWwkTLYU .navbar .navbar-logo img {
  width: auto;
}
.cid-tBOWwkTLYU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBOWwkTLYU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBOWwkTLYU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBOWwkTLYU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBOWwkTLYU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBOWwkTLYU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBOWwkTLYU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBOWwkTLYU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBOWwkTLYU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tBOWwkTLYU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tBOWwkTLYU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBOWwkTLYU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBOWwkTLYU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBOWwkTLYU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBOWwkTLYU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tBOWwkTLYU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tBOWwkTLYU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBOWwkTLYU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBOWwkTLYU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBOWwkTLYU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBOWwkTLYU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tBOWwkTLYU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBOWwkTLYU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBOWwkTLYU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBOWwkTLYU .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBOWwkTLYU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBOWwkTLYU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBOWwkTLYU .dropdown-item.active,
.cid-tBOWwkTLYU .dropdown-item:active {
  background-color: transparent;
}
.cid-tBOWwkTLYU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBOWwkTLYU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBOWwkTLYU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBOWwkTLYU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tBOWwkTLYU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBOWwkTLYU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBOWwkTLYU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBOWwkTLYU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBOWwkTLYU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBOWwkTLYU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tBOWwkTLYU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBOWwkTLYU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBOWwkTLYU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBOWwkTLYU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBOWwkTLYU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBOWwkTLYU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBOWwkTLYU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBOWwkTLYU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBOWwkTLYU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tBOWwkTLYU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBOWwkTLYU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBOWwkTLYU .navbar {
    height: 77px;
  }
  .cid-tBOWwkTLYU .navbar.opened {
    height: auto;
  }
  .cid-tBOWwkTLYU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBXBCn3RvB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBPViLe1XU {
  background-image: url("../../../assets/images/solar1-757x475.jpg");
}
.cid-tBPViLe1XU .mbr-section-title {
  text-align: center;
}
.cid-tBPViLe1XU .mbr-text,
.cid-tBPViLe1XU .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tBPViLe1XU .mbr-section-title,
  .cid-tBPViLe1XU .mbr-section-btn,
  .cid-tBPViLe1XU .mbr-text {
    text-align: center;
  }
}
.cid-tBPZIg3wQI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/solar4-1920x1080.jpeg");
}
.cid-tBPZIg3wQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBPZIg3wQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tBPZIg3wQI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBPZIg3wQI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBPZIg3wQI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tBQ5CtbYZl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1282.jpg");
}
.cid-tBQ5CtbYZl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBQ5CtbYZl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBQ5CtbYZl .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tBQ5CtbYZl .mbr-section-title,
.cid-tBQ5CtbYZl .mbr-section-subtitle {
  text-align: center;
}
.cid-tBQ5CtbYZl .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tBQ5CtbYZl .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tBQ5CtbYZl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tBQ5CtbYZl .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tBQ5CtbYZl .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tBQ5CtbYZl .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tBPViMLoLj {
  z-index: 1000;
  width: 100%;
}
.cid-tBPViMLoLj nav.navbar {
  position: fixed;
}
.cid-tBPViMLoLj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPViMLoLj .dropdown-menu {
  padding: 0;
}
.cid-tBPViMLoLj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBPViMLoLj .dropdown-item:hover,
.cid-tBPViMLoLj .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBPViMLoLj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tBPViMLoLj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBPViMLoLj .nav-link {
  position: relative;
}
.cid-tBPViMLoLj .container {
  display: flex;
  margin: auto;
}
.cid-tBPViMLoLj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tBPViMLoLj .navbar-caption {
  padding-right: 4rem;
}
.cid-tBPViMLoLj .dropdown-menu,
.cid-tBPViMLoLj .navbar.opened {
  background: #fff8db !important;
}
.cid-tBPViMLoLj .nav-item:focus,
.cid-tBPViMLoLj .nav-link:focus {
  outline: none;
}
.cid-tBPViMLoLj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBPViMLoLj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBPViMLoLj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBPViMLoLj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPViMLoLj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBPViMLoLj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBPViMLoLj .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tBPViMLoLj .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBPViMLoLj .navbar.opened {
  transition: all .3s;
}
.cid-tBPViMLoLj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tBPViMLoLj .navbar .navbar-logo img {
  width: auto;
}
.cid-tBPViMLoLj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBPViMLoLj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBPViMLoLj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBPViMLoLj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBPViMLoLj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBPViMLoLj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBPViMLoLj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBPViMLoLj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBPViMLoLj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tBPViMLoLj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tBPViMLoLj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBPViMLoLj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBPViMLoLj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBPViMLoLj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBPViMLoLj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tBPViMLoLj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tBPViMLoLj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBPViMLoLj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBPViMLoLj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBPViMLoLj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBPViMLoLj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tBPViMLoLj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBPViMLoLj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBPViMLoLj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBPViMLoLj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBPViMLoLj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBPViMLoLj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBPViMLoLj .dropdown-item.active,
.cid-tBPViMLoLj .dropdown-item:active {
  background-color: transparent;
}
.cid-tBPViMLoLj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBPViMLoLj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBPViMLoLj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBPViMLoLj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tBPViMLoLj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBPViMLoLj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBPViMLoLj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBPViMLoLj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBPViMLoLj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBPViMLoLj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tBPViMLoLj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBPViMLoLj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBPViMLoLj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBPViMLoLj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBPViMLoLj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBPViMLoLj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBPViMLoLj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBPViMLoLj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBPViMLoLj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tBPViMLoLj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBPViMLoLj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBPViMLoLj .navbar {
    height: 77px;
  }
  .cid-tBPViMLoLj .navbar.opened {
    height: auto;
  }
  .cid-tBPViMLoLj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBXBCn3RvB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBYt9qvqJt {
  background-image: url("../../../assets/images/dvr1fon-1906x907.jpeg");
}
.cid-tBYt9qvqJt .mbr-section-title {
  text-align: center;
}
.cid-tBYt9qvqJt .mbr-text,
.cid-tBYt9qvqJt .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tBYt9qvqJt .mbr-section-title,
  .cid-tBYt9qvqJt .mbr-section-btn,
  .cid-tBYt9qvqJt .mbr-text {
    text-align: center;
  }
}
.cid-tBYN6d4cyU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-tBYN6d4cyU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBYN6d4cyU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBYLnzxACp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dvr1fon-1-1906x907.jpeg");
}
.cid-tBYLnzxACp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBYLnzxACp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tBYLnzxACp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBYLnzxACp .row {
  flex-direction: row-reverse;
}
.cid-tBYLnzxACp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBYLnzxACp .text-wrapper {
    padding: 2rem;
  }
}
.cid-tBYNOH4jI6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-tBYNOH4jI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBYNOH4jI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tBYNOH4jI6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBYNOH4jI6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBYNOH4jI6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tBYNOH4jI6 .mbr-text {
  color: #700f0f;
}
.cid-tBYNOH4jI6 .mbr-section-title {
  color: #8c0606;
}
.cid-tBYt9rwwHC {
  z-index: 1000;
  width: 100%;
}
.cid-tBYt9rwwHC nav.navbar {
  position: fixed;
}
.cid-tBYt9rwwHC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBYt9rwwHC .dropdown-menu {
  padding: 0;
}
.cid-tBYt9rwwHC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBYt9rwwHC .dropdown-item:hover,
.cid-tBYt9rwwHC .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBYt9rwwHC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tBYt9rwwHC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBYt9rwwHC .nav-link {
  position: relative;
}
.cid-tBYt9rwwHC .container {
  display: flex;
  margin: auto;
}
.cid-tBYt9rwwHC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tBYt9rwwHC .navbar-caption {
  padding-right: 4rem;
}
.cid-tBYt9rwwHC .dropdown-menu,
.cid-tBYt9rwwHC .navbar.opened {
  background: #fff8db !important;
}
.cid-tBYt9rwwHC .nav-item:focus,
.cid-tBYt9rwwHC .nav-link:focus {
  outline: none;
}
.cid-tBYt9rwwHC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBYt9rwwHC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBYt9rwwHC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBYt9rwwHC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBYt9rwwHC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBYt9rwwHC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBYt9rwwHC .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tBYt9rwwHC .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBYt9rwwHC .navbar.opened {
  transition: all .3s;
}
.cid-tBYt9rwwHC .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tBYt9rwwHC .navbar .navbar-logo img {
  width: auto;
}
.cid-tBYt9rwwHC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBYt9rwwHC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBYt9rwwHC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBYt9rwwHC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBYt9rwwHC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBYt9rwwHC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBYt9rwwHC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBYt9rwwHC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBYt9rwwHC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tBYt9rwwHC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tBYt9rwwHC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBYt9rwwHC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBYt9rwwHC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBYt9rwwHC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBYt9rwwHC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tBYt9rwwHC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tBYt9rwwHC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBYt9rwwHC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBYt9rwwHC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBYt9rwwHC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBYt9rwwHC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tBYt9rwwHC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBYt9rwwHC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBYt9rwwHC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBYt9rwwHC .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBYt9rwwHC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBYt9rwwHC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBYt9rwwHC .dropdown-item.active,
.cid-tBYt9rwwHC .dropdown-item:active {
  background-color: transparent;
}
.cid-tBYt9rwwHC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBYt9rwwHC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBYt9rwwHC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBYt9rwwHC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tBYt9rwwHC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBYt9rwwHC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBYt9rwwHC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBYt9rwwHC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBYt9rwwHC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBYt9rwwHC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tBYt9rwwHC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBYt9rwwHC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBYt9rwwHC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBYt9rwwHC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBYt9rwwHC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBYt9rwwHC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBYt9rwwHC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBYt9rwwHC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBYt9rwwHC .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tBYt9rwwHC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBYt9rwwHC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBYt9rwwHC .navbar {
    height: 77px;
  }
  .cid-tBYt9rwwHC .navbar.opened {
    height: auto;
  }
  .cid-tBYt9rwwHC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBYt9rQfsa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBYOEIg1mk {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tBYOEIg1mk .mbr-section-title {
  text-align: center;
}
.cid-tBYOEIg1mk .mbr-text,
.cid-tBYOEIg1mk .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tBYOEIg1mk .mbr-section-title,
  .cid-tBYOEIg1mk .mbr-section-btn,
  .cid-tBYOEIg1mk .mbr-text {
    text-align: center;
  }
}
.cid-tBYOEJS4FQ {
  z-index: 1000;
  width: 100%;
}
.cid-tBYOEJS4FQ nav.navbar {
  position: fixed;
}
.cid-tBYOEJS4FQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBYOEJS4FQ .dropdown-menu {
  padding: 0;
}
.cid-tBYOEJS4FQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBYOEJS4FQ .dropdown-item:hover,
.cid-tBYOEJS4FQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBYOEJS4FQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tBYOEJS4FQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBYOEJS4FQ .nav-link {
  position: relative;
}
.cid-tBYOEJS4FQ .container {
  display: flex;
  margin: auto;
}
.cid-tBYOEJS4FQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tBYOEJS4FQ .navbar-caption {
  padding-right: 4rem;
}
.cid-tBYOEJS4FQ .dropdown-menu,
.cid-tBYOEJS4FQ .navbar.opened {
  background: #fff8db !important;
}
.cid-tBYOEJS4FQ .nav-item:focus,
.cid-tBYOEJS4FQ .nav-link:focus {
  outline: none;
}
.cid-tBYOEJS4FQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBYOEJS4FQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBYOEJS4FQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBYOEJS4FQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBYOEJS4FQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBYOEJS4FQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBYOEJS4FQ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tBYOEJS4FQ .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBYOEJS4FQ .navbar.opened {
  transition: all .3s;
}
.cid-tBYOEJS4FQ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tBYOEJS4FQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tBYOEJS4FQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBYOEJS4FQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBYOEJS4FQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBYOEJS4FQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBYOEJS4FQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBYOEJS4FQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBYOEJS4FQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBYOEJS4FQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBYOEJS4FQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tBYOEJS4FQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tBYOEJS4FQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBYOEJS4FQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBYOEJS4FQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBYOEJS4FQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBYOEJS4FQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tBYOEJS4FQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tBYOEJS4FQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBYOEJS4FQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBYOEJS4FQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBYOEJS4FQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBYOEJS4FQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tBYOEJS4FQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBYOEJS4FQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBYOEJS4FQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBYOEJS4FQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBYOEJS4FQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBYOEJS4FQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBYOEJS4FQ .dropdown-item.active,
.cid-tBYOEJS4FQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tBYOEJS4FQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBYOEJS4FQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBYOEJS4FQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBYOEJS4FQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tBYOEJS4FQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBYOEJS4FQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBYOEJS4FQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBYOEJS4FQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBYOEJS4FQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBYOEJS4FQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tBYOEJS4FQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBYOEJS4FQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBYOEJS4FQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBYOEJS4FQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBYOEJS4FQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBYOEJS4FQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBYOEJS4FQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBYOEJS4FQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBYOEJS4FQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tBYOEJS4FQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBYOEJS4FQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBYOEJS4FQ .navbar {
    height: 77px;
  }
  .cid-tBYOEJS4FQ .navbar.opened {
    height: auto;
  }
  .cid-tBYOEJS4FQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBYOEKe4kT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBZ20pfXVc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dvr1fon-3-1906x907.jpeg");
}
.cid-tBZ20pfXVc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBZ20pfXVc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBZ20pfXVc .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tBZ20pfXVc .mbr-section-title,
.cid-tBZ20pfXVc .mbr-section-subtitle {
  text-align: center;
}
.cid-tBZ20pfXVc .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tBZ20pfXVc .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tBZ20pfXVc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tBZ20pfXVc .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tBZ20pfXVc .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tBZ20pfXVc .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tBZ1PcTtdI {
  z-index: 1000;
  width: 100%;
}
.cid-tBZ1PcTtdI nav.navbar {
  position: fixed;
}
.cid-tBZ1PcTtdI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBZ1PcTtdI .dropdown-menu {
  padding: 0;
}
.cid-tBZ1PcTtdI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBZ1PcTtdI .dropdown-item:hover,
.cid-tBZ1PcTtdI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBZ1PcTtdI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tBZ1PcTtdI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBZ1PcTtdI .nav-link {
  position: relative;
}
.cid-tBZ1PcTtdI .container {
  display: flex;
  margin: auto;
}
.cid-tBZ1PcTtdI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tBZ1PcTtdI .navbar-caption {
  padding-right: 4rem;
}
.cid-tBZ1PcTtdI .dropdown-menu,
.cid-tBZ1PcTtdI .navbar.opened {
  background: #fff8db !important;
}
.cid-tBZ1PcTtdI .nav-item:focus,
.cid-tBZ1PcTtdI .nav-link:focus {
  outline: none;
}
.cid-tBZ1PcTtdI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBZ1PcTtdI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBZ1PcTtdI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBZ1PcTtdI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBZ1PcTtdI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBZ1PcTtdI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBZ1PcTtdI .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tBZ1PcTtdI .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBZ1PcTtdI .navbar.opened {
  transition: all .3s;
}
.cid-tBZ1PcTtdI .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tBZ1PcTtdI .navbar .navbar-logo img {
  width: auto;
}
.cid-tBZ1PcTtdI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBZ1PcTtdI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBZ1PcTtdI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBZ1PcTtdI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBZ1PcTtdI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBZ1PcTtdI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBZ1PcTtdI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBZ1PcTtdI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBZ1PcTtdI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tBZ1PcTtdI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tBZ1PcTtdI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBZ1PcTtdI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBZ1PcTtdI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBZ1PcTtdI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBZ1PcTtdI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tBZ1PcTtdI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tBZ1PcTtdI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBZ1PcTtdI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBZ1PcTtdI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBZ1PcTtdI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBZ1PcTtdI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tBZ1PcTtdI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBZ1PcTtdI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBZ1PcTtdI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBZ1PcTtdI .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBZ1PcTtdI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBZ1PcTtdI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBZ1PcTtdI .dropdown-item.active,
.cid-tBZ1PcTtdI .dropdown-item:active {
  background-color: transparent;
}
.cid-tBZ1PcTtdI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBZ1PcTtdI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBZ1PcTtdI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBZ1PcTtdI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tBZ1PcTtdI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBZ1PcTtdI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBZ1PcTtdI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBZ1PcTtdI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBZ1PcTtdI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBZ1PcTtdI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tBZ1PcTtdI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBZ1PcTtdI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBZ1PcTtdI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBZ1PcTtdI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBZ1PcTtdI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBZ1PcTtdI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBZ1PcTtdI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBZ1PcTtdI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBZ1PcTtdI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tBZ1PcTtdI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBZ1PcTtdI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBZ1PcTtdI .navbar {
    height: 77px;
  }
  .cid-tBZ1PcTtdI .navbar.opened {
    height: auto;
  }
  .cid-tBZ1PcTtdI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBZ1Pdu25g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBZcwrYo9z {
  background-image: url("../../../assets/images/fon1-1600x1064.jpg");
}
.cid-tBZcwrYo9z .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tBZcwrYo9z .mbr-text,
.cid-tBZcwrYo9z .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tBZcwrYo9z .mbr-section-title,
  .cid-tBZcwrYo9z .mbr-section-btn,
  .cid-tBZcwrYo9z .mbr-text {
    text-align: center;
  }
}
.cid-tBZcwskaxf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tBZcwskaxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBZcwskaxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBZcwskaxf .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tBZcwskaxf .card {
    margin-bottom: 2rem!important;
  }
  .cid-tBZcwskaxf .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tBZcwskaxf .link-wrap {
    align-items: center;
  }
}
.cid-tBZcwskaxf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBZcwskaxf .card-title,
.cid-tBZcwskaxf .card-box {
  color: #fafafa;
}
.cid-tBZcwskaxf .mbr-text {
  color: #bbbbbb;
}
.cid-tBZkUwPAni {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tBZkUwPAni .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBZkUwPAni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBZkUwPAni .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tBZkUwPAni .currentcost {
  color: #232323;
}
.cid-tBZkUwPAni .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tBZkUwPAni .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tBZkUwPAni .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tBZkUwPAni .text-box {
    padding: 1rem;
  }
}
.cid-tBZkUwPAni .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBZcwt074Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tBZcwt074Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBZcwt074Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBZcwt074Z .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tBZcwt074Z .card {
    margin-bottom: 2rem!important;
  }
  .cid-tBZcwt074Z .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tBZcwt074Z .link-wrap {
    align-items: center;
  }
}
.cid-tBZcwt074Z .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBZcwtioHj {
  z-index: 1000;
  width: 100%;
}
.cid-tBZcwtioHj nav.navbar {
  position: fixed;
}
.cid-tBZcwtioHj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBZcwtioHj .dropdown-menu {
  padding: 0;
}
.cid-tBZcwtioHj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBZcwtioHj .dropdown-item:hover,
.cid-tBZcwtioHj .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBZcwtioHj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tBZcwtioHj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBZcwtioHj .nav-link {
  position: relative;
}
.cid-tBZcwtioHj .container {
  display: flex;
  margin: auto;
}
.cid-tBZcwtioHj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tBZcwtioHj .navbar-caption {
  padding-right: 4rem;
}
.cid-tBZcwtioHj .dropdown-menu,
.cid-tBZcwtioHj .navbar.opened {
  background: #fff8db !important;
}
.cid-tBZcwtioHj .nav-item:focus,
.cid-tBZcwtioHj .nav-link:focus {
  outline: none;
}
.cid-tBZcwtioHj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBZcwtioHj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBZcwtioHj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBZcwtioHj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBZcwtioHj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBZcwtioHj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBZcwtioHj .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tBZcwtioHj .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBZcwtioHj .navbar.opened {
  transition: all .3s;
}
.cid-tBZcwtioHj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tBZcwtioHj .navbar .navbar-logo img {
  width: auto;
}
.cid-tBZcwtioHj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBZcwtioHj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBZcwtioHj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBZcwtioHj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBZcwtioHj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBZcwtioHj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBZcwtioHj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBZcwtioHj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBZcwtioHj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tBZcwtioHj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tBZcwtioHj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBZcwtioHj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBZcwtioHj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBZcwtioHj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBZcwtioHj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tBZcwtioHj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tBZcwtioHj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBZcwtioHj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBZcwtioHj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBZcwtioHj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBZcwtioHj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tBZcwtioHj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBZcwtioHj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBZcwtioHj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBZcwtioHj .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBZcwtioHj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBZcwtioHj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBZcwtioHj .dropdown-item.active,
.cid-tBZcwtioHj .dropdown-item:active {
  background-color: transparent;
}
.cid-tBZcwtioHj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBZcwtioHj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBZcwtioHj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBZcwtioHj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tBZcwtioHj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBZcwtioHj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBZcwtioHj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBZcwtioHj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBZcwtioHj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBZcwtioHj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tBZcwtioHj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBZcwtioHj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBZcwtioHj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBZcwtioHj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBZcwtioHj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBZcwtioHj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBZcwtioHj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBZcwtioHj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBZcwtioHj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tBZcwtioHj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBZcwtioHj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBZcwtioHj .navbar {
    height: 77px;
  }
  .cid-tBZcwtioHj .navbar.opened {
    height: auto;
  }
  .cid-tBZcwtioHj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBZcwtK3za {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tBZvxWHcMO {
  background-image: url("../../../assets/images/fon1-1600x1064.jpg");
}
.cid-tBZvxWHcMO .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tBZvxWHcMO .mbr-text,
.cid-tBZvxWHcMO .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tBZvxWHcMO .mbr-section-title,
  .cid-tBZvxWHcMO .mbr-section-btn,
  .cid-tBZvxWHcMO .mbr-text {
    text-align: center;
  }
}
.cid-tBZvxX5oCB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tBZvxX5oCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBZvxX5oCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBZvxX5oCB .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tBZvxX5oCB .card {
    margin-bottom: 2rem!important;
  }
  .cid-tBZvxX5oCB .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tBZvxX5oCB .link-wrap {
    align-items: center;
  }
}
.cid-tBZvxX5oCB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBZvxX5oCB .card-title,
.cid-tBZvxX5oCB .card-box {
  color: #fafafa;
}
.cid-tBZvxX5oCB .mbr-text {
  color: #bbbbbb;
}
.cid-tBZvxXtFo9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tBZvxXtFo9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBZvxXtFo9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBZvxXtFo9 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tBZvxXtFo9 .currentcost {
  color: #232323;
}
.cid-tBZvxXtFo9 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tBZvxXtFo9 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tBZvxXtFo9 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tBZvxXtFo9 .text-box {
    padding: 1rem;
  }
}
.cid-tBZvxXtFo9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBZvxXRZUG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tBZvxXRZUG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBZvxXRZUG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBZvxXRZUG .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tBZvxXRZUG .card {
    margin-bottom: 2rem!important;
  }
  .cid-tBZvxXRZUG .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tBZvxXRZUG .link-wrap {
    align-items: center;
  }
}
.cid-tBZvxXRZUG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBZvxYgynU {
  z-index: 1000;
  width: 100%;
}
.cid-tBZvxYgynU nav.navbar {
  position: fixed;
}
.cid-tBZvxYgynU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBZvxYgynU .dropdown-menu {
  padding: 0;
}
.cid-tBZvxYgynU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBZvxYgynU .dropdown-item:hover,
.cid-tBZvxYgynU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tBZvxYgynU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tBZvxYgynU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBZvxYgynU .nav-link {
  position: relative;
}
.cid-tBZvxYgynU .container {
  display: flex;
  margin: auto;
}
.cid-tBZvxYgynU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tBZvxYgynU .navbar-caption {
  padding-right: 4rem;
}
.cid-tBZvxYgynU .dropdown-menu,
.cid-tBZvxYgynU .navbar.opened {
  background: #fff8db !important;
}
.cid-tBZvxYgynU .nav-item:focus,
.cid-tBZvxYgynU .nav-link:focus {
  outline: none;
}
.cid-tBZvxYgynU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBZvxYgynU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBZvxYgynU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBZvxYgynU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBZvxYgynU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBZvxYgynU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBZvxYgynU .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tBZvxYgynU .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBZvxYgynU .navbar.opened {
  transition: all .3s;
}
.cid-tBZvxYgynU .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tBZvxYgynU .navbar .navbar-logo img {
  width: auto;
}
.cid-tBZvxYgynU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBZvxYgynU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBZvxYgynU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBZvxYgynU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBZvxYgynU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBZvxYgynU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBZvxYgynU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBZvxYgynU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBZvxYgynU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tBZvxYgynU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tBZvxYgynU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBZvxYgynU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBZvxYgynU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBZvxYgynU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBZvxYgynU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tBZvxYgynU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tBZvxYgynU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBZvxYgynU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBZvxYgynU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBZvxYgynU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBZvxYgynU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tBZvxYgynU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBZvxYgynU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBZvxYgynU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBZvxYgynU .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBZvxYgynU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBZvxYgynU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBZvxYgynU .dropdown-item.active,
.cid-tBZvxYgynU .dropdown-item:active {
  background-color: transparent;
}
.cid-tBZvxYgynU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBZvxYgynU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBZvxYgynU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBZvxYgynU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tBZvxYgynU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBZvxYgynU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBZvxYgynU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBZvxYgynU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBZvxYgynU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBZvxYgynU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tBZvxYgynU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBZvxYgynU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBZvxYgynU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBZvxYgynU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBZvxYgynU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBZvxYgynU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBZvxYgynU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBZvxYgynU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBZvxYgynU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tBZvxYgynU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBZvxYgynU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBZvxYgynU .navbar {
    height: 77px;
  }
  .cid-tBZvxYgynU .navbar.opened {
    height: auto;
  }
  .cid-tBZvxYgynU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBZvxYN6aD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tCbXvh6kWf {
  background-image: url("../../../assets/images/fon1-1600x1064.jpg");
}
.cid-tCbXvh6kWf .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tCbXvh6kWf .mbr-text,
.cid-tCbXvh6kWf .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tCbXvh6kWf .mbr-section-title,
  .cid-tCbXvh6kWf .mbr-section-btn,
  .cid-tCbXvh6kWf .mbr-text {
    text-align: center;
  }
}
.cid-tCbXvhvB0P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tCbXvhvB0P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbXvhvB0P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbXvhvB0P .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tCbXvhvB0P .card {
    margin-bottom: 2rem!important;
  }
  .cid-tCbXvhvB0P .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tCbXvhvB0P .link-wrap {
    align-items: center;
  }
}
.cid-tCbXvhvB0P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCbXvhvB0P .card-title,
.cid-tCbXvhvB0P .card-box {
  color: #fafafa;
}
.cid-tCbXvhvB0P .mbr-text {
  color: #bbbbbb;
}
.cid-tCbXvhXTYt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tCbXvhXTYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbXvhXTYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbXvhXTYt .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tCbXvhXTYt .currentcost {
  color: #232323;
}
.cid-tCbXvhXTYt .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tCbXvhXTYt .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tCbXvhXTYt .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tCbXvhXTYt .text-box {
    padding: 1rem;
  }
}
.cid-tCbXvhXTYt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCbXviA5GW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tCbXviA5GW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbXviA5GW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbXviA5GW .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tCbXviA5GW .card {
    margin-bottom: 2rem!important;
  }
  .cid-tCbXviA5GW .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tCbXviA5GW .link-wrap {
    align-items: center;
  }
}
.cid-tCbXviA5GW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCbXviUwyP {
  z-index: 1000;
  width: 100%;
}
.cid-tCbXviUwyP nav.navbar {
  position: fixed;
}
.cid-tCbXviUwyP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCbXviUwyP .dropdown-menu {
  padding: 0;
}
.cid-tCbXviUwyP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCbXviUwyP .dropdown-item:hover,
.cid-tCbXviUwyP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCbXviUwyP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tCbXviUwyP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCbXviUwyP .nav-link {
  position: relative;
}
.cid-tCbXviUwyP .container {
  display: flex;
  margin: auto;
}
.cid-tCbXviUwyP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tCbXviUwyP .navbar-caption {
  padding-right: 4rem;
}
.cid-tCbXviUwyP .dropdown-menu,
.cid-tCbXviUwyP .navbar.opened {
  background: #fff8db !important;
}
.cid-tCbXviUwyP .nav-item:focus,
.cid-tCbXviUwyP .nav-link:focus {
  outline: none;
}
.cid-tCbXviUwyP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCbXviUwyP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCbXviUwyP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tCbXviUwyP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCbXviUwyP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCbXviUwyP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCbXviUwyP .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tCbXviUwyP .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCbXviUwyP .navbar.opened {
  transition: all .3s;
}
.cid-tCbXviUwyP .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tCbXviUwyP .navbar .navbar-logo img {
  width: auto;
}
.cid-tCbXviUwyP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCbXviUwyP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCbXviUwyP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCbXviUwyP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCbXviUwyP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCbXviUwyP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCbXviUwyP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tCbXviUwyP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCbXviUwyP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tCbXviUwyP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tCbXviUwyP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCbXviUwyP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCbXviUwyP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCbXviUwyP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCbXviUwyP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tCbXviUwyP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tCbXviUwyP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCbXviUwyP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCbXviUwyP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCbXviUwyP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCbXviUwyP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tCbXviUwyP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCbXviUwyP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCbXviUwyP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCbXviUwyP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCbXviUwyP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCbXviUwyP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCbXviUwyP .dropdown-item.active,
.cid-tCbXviUwyP .dropdown-item:active {
  background-color: transparent;
}
.cid-tCbXviUwyP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCbXviUwyP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCbXviUwyP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCbXviUwyP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tCbXviUwyP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCbXviUwyP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCbXviUwyP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCbXviUwyP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCbXviUwyP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tCbXviUwyP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tCbXviUwyP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCbXviUwyP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCbXviUwyP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCbXviUwyP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCbXviUwyP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCbXviUwyP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCbXviUwyP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCbXviUwyP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCbXviUwyP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tCbXviUwyP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCbXviUwyP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCbXviUwyP .navbar {
    height: 77px;
  }
  .cid-tCbXviUwyP .navbar.opened {
    height: auto;
  }
  .cid-tCbXviUwyP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCbXvjgB08 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tCc5c5ZHsU {
  background-image: url("../../../assets/images/fon1-1600x1064.jpg");
}
.cid-tCc5c5ZHsU .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tCc5c5ZHsU .mbr-text,
.cid-tCc5c5ZHsU .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tCc5c5ZHsU .mbr-section-title,
  .cid-tCc5c5ZHsU .mbr-section-btn,
  .cid-tCc5c5ZHsU .mbr-text {
    text-align: center;
  }
}
.cid-tCqlKV60b4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tCqlKV60b4 img,
.cid-tCqlKV60b4 .item-img {
  width: 100%;
}
.cid-tCqlKV60b4 .item:focus,
.cid-tCqlKV60b4 span:focus {
  outline: none;
}
.cid-tCqlKV60b4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tCqlKV60b4 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCqlKV60b4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCqlKV60b4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCqlKV60b4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCqlKV60b4 .mbr-section-title {
  color: #232323;
}
.cid-tCqlKV60b4 .mbr-text,
.cid-tCqlKV60b4 .mbr-section-btn {
  text-align: center;
}
.cid-tCqlKV60b4 .item-title {
  text-align: center;
}
.cid-tCqlKV60b4 .item-subtitle {
  text-align: left;
}
.cid-tCqtxxmABA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tCqtxxmABA img,
.cid-tCqtxxmABA .item-img {
  width: 100%;
}
.cid-tCqtxxmABA .item:focus,
.cid-tCqtxxmABA span:focus {
  outline: none;
}
.cid-tCqtxxmABA .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tCqtxxmABA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tCqtxxmABA .item {
  padding: 0;
  margin: 0;
}
.cid-tCqtxxmABA .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCqtxxmABA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCqtxxmABA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCqtxxmABA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCqtxxmABA .mbr-section-title {
  color: #232323;
}
.cid-tCc7I5SRUs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tCc7I5SRUs img,
.cid-tCc7I5SRUs .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCc7I5SRUs .item:focus,
.cid-tCc7I5SRUs span:focus {
  outline: none;
}
.cid-tCc7I5SRUs .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tCc7I5SRUs .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tCc7I5SRUs .item {
  padding: 0;
  margin: 0;
}
.cid-tCc7I5SRUs .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCc7I5SRUs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCc7I5SRUs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCc7I5SRUs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCc7I5SRUs .mbr-section-title {
  color: #232323;
}
.cid-tCc6LazDyh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tCc6LazDyh img,
.cid-tCc6LazDyh .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCc6LazDyh .item:focus,
.cid-tCc6LazDyh span:focus {
  outline: none;
}
.cid-tCc6LazDyh .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tCc6LazDyh .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tCc6LazDyh .item {
  padding: 0;
  margin: 0;
}
.cid-tCc6LazDyh .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCc6LazDyh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCc6LazDyh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCc6LazDyh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCc6LazDyh .mbr-section-title {
  color: #232323;
}
.cid-tCc5s1eJ29 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff0b0;
}
.cid-tCc5s1eJ29 img,
.cid-tCc5s1eJ29 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCc5s1eJ29 .item:focus,
.cid-tCc5s1eJ29 span:focus {
  outline: none;
}
.cid-tCc5s1eJ29 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tCc5s1eJ29 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tCc5s1eJ29 .item {
  padding: 0;
  margin: 0;
}
.cid-tCc5s1eJ29 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCc5s1eJ29 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCc5s1eJ29 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCc5s1eJ29 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCc5s1eJ29 .mbr-section-title {
  color: #232323;
}
.cid-tCc5c83KI9 {
  z-index: 1000;
  width: 100%;
}
.cid-tCc5c83KI9 nav.navbar {
  position: fixed;
}
.cid-tCc5c83KI9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCc5c83KI9 .dropdown-menu {
  padding: 0;
}
.cid-tCc5c83KI9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCc5c83KI9 .dropdown-item:hover,
.cid-tCc5c83KI9 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tCc5c83KI9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tCc5c83KI9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCc5c83KI9 .nav-link {
  position: relative;
}
.cid-tCc5c83KI9 .container {
  display: flex;
  margin: auto;
}
.cid-tCc5c83KI9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tCc5c83KI9 .navbar-caption {
  padding-right: 4rem;
}
.cid-tCc5c83KI9 .dropdown-menu,
.cid-tCc5c83KI9 .navbar.opened {
  background: #fff8db !important;
}
.cid-tCc5c83KI9 .nav-item:focus,
.cid-tCc5c83KI9 .nav-link:focus {
  outline: none;
}
.cid-tCc5c83KI9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCc5c83KI9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCc5c83KI9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tCc5c83KI9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCc5c83KI9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCc5c83KI9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCc5c83KI9 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 219, 0.2);
}
.cid-tCc5c83KI9 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCc5c83KI9 .navbar.opened {
  transition: all .3s;
}
.cid-tCc5c83KI9 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tCc5c83KI9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tCc5c83KI9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCc5c83KI9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCc5c83KI9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCc5c83KI9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCc5c83KI9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCc5c83KI9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCc5c83KI9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tCc5c83KI9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCc5c83KI9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tCc5c83KI9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tCc5c83KI9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCc5c83KI9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCc5c83KI9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCc5c83KI9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCc5c83KI9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tCc5c83KI9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tCc5c83KI9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCc5c83KI9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCc5c83KI9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCc5c83KI9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCc5c83KI9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tCc5c83KI9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCc5c83KI9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCc5c83KI9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCc5c83KI9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCc5c83KI9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCc5c83KI9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCc5c83KI9 .dropdown-item.active,
.cid-tCc5c83KI9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tCc5c83KI9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCc5c83KI9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCc5c83KI9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCc5c83KI9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff8db;
}
.cid-tCc5c83KI9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCc5c83KI9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCc5c83KI9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCc5c83KI9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCc5c83KI9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tCc5c83KI9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tCc5c83KI9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCc5c83KI9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCc5c83KI9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCc5c83KI9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCc5c83KI9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCc5c83KI9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCc5c83KI9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCc5c83KI9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCc5c83KI9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tCc5c83KI9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCc5c83KI9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCc5c83KI9 .navbar {
    height: 77px;
  }
  .cid-tCc5c83KI9 .navbar.opened {
    height: auto;
  }
  .cid-tCc5c83KI9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCc5c8seQL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
