.btn {
  border-width: 2px;
}
body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Figtree', sans-serif;
  font-size: 6.625rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.28125rem;
}
.display-2 {
  font-family: 'Figtree', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Figtree', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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.3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.6375rem;
    font-size: calc( 2.96875rem + (6.625 - 2.96875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.96875rem + (6.625 - 2.96875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((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: #f6f6ef !important;
}
.bg-success {
  background-color: #51d619 !important;
}
.bg-info {
  background-color: #3828ad !important;
}
.bg-warning {
  background-color: #a38000 !important;
}
.bg-danger {
  background-color: #e10000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #939353 !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: #5c5c34 !important;
  background-color: #d7d7b8 !important;
  border-color: #d7d7b8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #939353 !important;
  background-color: #d7d7b8 !important;
  border-color: #d7d7b8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #661ea8 !important;
  border-color: #661ea8 !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: #39115e !important;
  border-color: #39115e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #39115e !important;
  border-color: #39115e !important;
}
.btn-info,
.btn-info:active {
  background-color: #3828ad !important;
  border-color: #3828ad !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: #211867 !important;
  border-color: #211867 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #211867 !important;
  border-color: #211867 !important;
}
.btn-success,
.btn-success:active {
  background-color: #51d619 !important;
  border-color: #51d619 !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: #348810 !important;
  border-color: #348810 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #348810 !important;
  border-color: #348810 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a38000 !important;
  border-color: #a38000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #4c3c00 !important;
  border-color: #4c3c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #4c3c00 !important;
  border-color: #4c3c00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e10000 !important;
  border-color: #e10000 !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: #8a0000 !important;
  border-color: #8a0000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8a0000 !important;
  border-color: #8a0000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #939353 !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: #5c5c34 !important;
  background-color: #d7d7b8 !important;
  border-color: #d7d7b8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #939353 !important;
  background-color: #d7d7b8 !important;
  border-color: #d7d7b8 !important;
}
.btn-black,
.btn-black:active {
  background-color: #181817 !important;
  border-color: #181817 !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: #f6f6ef;
  color: #f6f6ef;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d7d7b8 !important;
  background-color: transparent!important;
  border-color: #d7d7b8 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #939353 !important;
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #661ea8;
  color: #661ea8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #39115e !important;
  background-color: transparent!important;
  border-color: #39115e !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #661ea8 !important;
  border-color: #661ea8 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #3828ad;
  color: #3828ad;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #211867 !important;
  background-color: transparent!important;
  border-color: #211867 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3828ad !important;
  border-color: #3828ad !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #51d619;
  color: #51d619;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #348810 !important;
  background-color: transparent!important;
  border-color: #348810 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #51d619 !important;
  border-color: #51d619 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #a38000;
  color: #a38000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #4c3c00 !important;
  background-color: transparent!important;
  border-color: #4c3c00 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a38000 !important;
  border-color: #a38000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e10000;
  color: #e10000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #8a0000 !important;
  background-color: transparent!important;
  border-color: #8a0000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e10000 !important;
  border-color: #e10000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #181817;
  color: #181817;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #181817 !important;
  border-color: #181817 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #f6f6ef;
  color: #f6f6ef;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d7d7b8 !important;
  background-color: transparent!important;
  border-color: #d7d7b8 !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #939353 !important;
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
}
.text-primary {
  color: #f6f6ef !important;
}
.text-secondary {
  color: #661ea8 !important;
}
.text-success {
  color: #51d619 !important;
}
.text-info {
  color: #3828ad !important;
}
.text-warning {
  color: #a38000 !important;
}
.text-danger {
  color: #e10000 !important;
}
.text-white {
  color: #f6f6ef !important;
}
.text-black {
  color: #181817 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #d1d1ae !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #310f51 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2e7b0e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1d155a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #3d3000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #7b0000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d1d1ae !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: #f6f6ef;
}
.nav-tabs .nav-link:not(.active) {
  color: #181817;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3828ad;
}
.alert-warning {
  background-color: #a38000;
}
.alert-danger {
  background-color: #e10000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f6f6ef;
  border-color: #f6f6ef;
  color: #a3a35c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f6f6ef;
}
.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: #d3f8c3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #8275df;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffd023;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffaeae;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #f6f6ef !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #f6f6ef;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f6f6ef;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f6f6ef;
}
.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: #f6f6ef;
  border-bottom-color: #f6f6ef;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f6f6ef !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: #661ea8 !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='%23f6f6ef' %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-duration: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1914px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 1rem;
  }
}
.row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.mbr-section-btn .btn {
  min-width: 80px;
  min-height: 60px;
  padding: 26px 42px;
  border-radius: 10em !important;
  border-width: 1px;
  font-weight: 500;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.mbr-section-btn .btn-white-outline:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.mbr-section-btn .btn-black-outline:hover {
  background-color: #181817 !important;
  border-color: #181817 !important;
  color: #f6f6ef !important;
}
.mbr-section-btn .btn-primary {
  color: #181817 !important;
}
.mbr-section-btn .btn-primary:hover {
  background-color: #181817 !important;
  border-color: #181817 !important;
  color: #f6f6ef !important;
}
b,
strong {
  font-weight: 900 !important;
}
body.scaled > .template .app-component > .app-component-content > section .mbr-fullscreen {
  min-height: 20vh !important;
  height: auto !important;
}
html:not(.is-main-interface) body[data-bs-padding-right]:not(.rounded-canvas) {
  overflow-y: visible !important;
  padding-right: 0 !important;
}
.cid-tjirhdXDP9 {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-tjirhdXDP9 .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-tjirhdXDP9 .dropdown-menu {
  padding: 0;
}
.cid-tjirhdXDP9 .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tjirhdXDP9 .dropdown-item {
    text-align: left !important;
  }
}
.cid-tjirhdXDP9 .dropdown-item:hover {
  background-position: right !important;
}
.cid-tjirhdXDP9 .dropdown-item:hover:after {
  color: #f6f6ef;
}
.cid-tjirhdXDP9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tjirhdXDP9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjirhdXDP9 .nav-link {
  position: relative;
}
.cid-tjirhdXDP9 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-tjirhdXDP9 .dropdown-menu,
.cid-tjirhdXDP9 .navbar.opened {
  background: #181817 !important;
}
.cid-tjirhdXDP9 .nav-item:focus,
.cid-tjirhdXDP9 .nav-link:focus {
  outline: none;
}
.cid-tjirhdXDP9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjirhdXDP9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjirhdXDP9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tjirhdXDP9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjirhdXDP9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-tjirhdXDP9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tjirhdXDP9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tjirhdXDP9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tjirhdXDP9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tjirhdXDP9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjirhdXDP9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjirhdXDP9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjirhdXDP9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjirhdXDP9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tjirhdXDP9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tjirhdXDP9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjirhdXDP9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjirhdXDP9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjirhdXDP9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjirhdXDP9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-tjirhdXDP9 .navbar {
    min-height: 70px;
  }
}
.cid-tjirhdXDP9 .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tjirhdXDP9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-tjirhdXDP9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjirhdXDP9 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tjirhdXDP9 .navbar-brand {
    min-height: 70px;
  }
}
.cid-tjirhdXDP9 .dropdown-item.active,
.cid-tjirhdXDP9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tjirhdXDP9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjirhdXDP9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjirhdXDP9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjirhdXDP9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tjirhdXDP9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjirhdXDP9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjirhdXDP9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjirhdXDP9 button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-tjirhdXDP9 button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tjirhdXDP9 button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tjirhdXDP9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tjirhdXDP9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tjirhdXDP9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tjirhdXDP9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tjirhdXDP9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjirhdXDP9 nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjirhdXDP9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjirhdXDP9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjirhdXDP9 nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjirhdXDP9 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tjirhdXDP9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjirhdXDP9 .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-tjirhdXDP9 .navbar {
    height: 70px;
  }
  .cid-tjirhdXDP9 .navbar.opened {
    height: auto;
  }
  .cid-tjirhdXDP9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjirhdXDP9 .navbar-short {
  min-height: 70px;
  background: #181817;
  background: rgba(24, 24, 23, 0);
}
@media (max-width: 575px) {
  .cid-tjirhdXDP9 .navbar-short {
    min-height: 70px;
  }
}
.cid-tjirhdXDP9 .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tjirhdXDP9 .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-tjirhdXDP9 .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-tjirhdXDP9 .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-tjirhdXDP9 .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tjirhdXDP9 .navbar-nav .nav-item .nav-link:hover,
.cid-tjirhdXDP9 .navbar-nav .nav-item .nav-link:focus,
.cid-tjirhdXDP9 .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #f6f6ef !important;
}
.cid-tjirhdXDP9 .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-tjirhdXDP9 .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #181817 !important;
}
.cid-tjirhdXDP9 .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tjirhdXDP9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tjirhdXDP9 button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-tjirhdXDP9 button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tjirhdXDP9 button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tjirhdXDP9 button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-tjirhdXDP9 button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tjirhdXDP9 button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tjirhdXDP9 button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-tjirhdXDP9 .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-tjirhdXDP9 .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tjirhdXDP9 .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tjirhdXDP9 .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-tjirhdXDP9 .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tjirhdXDP9 .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tjirhdXDP9 .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-tjirhdXDP9 .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-tjirhdXDP9 .offcanvas.show {
  transform: translateX(0);
}
.cid-tjirhdXDP9 .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-tjirhdXDP9 .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-tjirhdXDP9 .offcanvas {
    width: 100%;
  }
}
.cid-tjirhdXDP9 .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tjirhdXDP9 .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #181817;
  box-shadow: none;
  overflow: auto;
}
.cid-tjirhdXDP9 .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-tjirhdXDP9 .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tjirhdXDP9 .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-tjirhdXDP9 .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-tjirhdXDP9 .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-tjirhdXDP9 .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-tjirhdXDP9 .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tjirhdXDP9 .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-tjirhdXDP9 .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-tjirhdXDP9 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-tjirhdXDP9 .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-tjirhdXDP9 .list li:hover {
  color: #f6f6ef !important;
}
.cid-tjirhdXDP9 .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-tjirhdXDP9 .list a:hover {
  color: #f6f6ef !important;
  line-height: inherit !important;
}
.cid-tjirhdXDP9 .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-tjirhdXDP9 .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tjirhdXDP9 .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-tjirhdXDP9 .second-list li:hover {
  opacity: 1;
}
.cid-tjirhdXDP9 .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-tXVB51FGjR .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tXVB51FGjR .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tXVB51FGjR .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tXWEo0r9QW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #181817;
}
.cid-tXWEo0r9QW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXWEo0r9QW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXWEo0r9QW .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
.cid-tXWEo0r9QW .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .cid-tXWEo0r9QW .mbr-section-btn .btn {
    padding: 42px 56px;
  }
}
@media (max-width: 767px) {
  .cid-tXWEo0r9QW .mbr-section-btn .btn {
    font-size: 40px !important;
  }
  .cid-tXWEo0r9QW .mbr-section-btn .btn .mbr-iconfont {
    font-size: 40px!important;
  }
}
@media (max-width: 575px) {
  .cid-tXWEo0r9QW .mbr-section-btn .btn {
    font-size: 24px !important;
  }
  .cid-tXWEo0r9QW .mbr-section-btn .btn .mbr-iconfont {
    font-size: 24px!important;
  }
}
.cid-tXWEo0r9QW .mbr-section-btn .btn-black {
  color: #f6f6ef !important;
}
.cid-tXWEo0r9QW .mbr-section-btn .btn-black:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-tXWEo0r9QW .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
}
.cid-tXWEo0r9QW .mbr-text a {
  text-decoration: underline !important;
}
.cid-tXWEo0r9QW .mbr-text a:hover {
  color: inherit !important;
}
.cid-tXWEo0r9QW .mbr-section-title,
.cid-tXWEo0r9QW .mbr-section-btn {
  color: #e10000;
}
.cid-tXVJVACw75 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #181817;
}
.cid-tXVJVACw75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXVJVACw75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXVJVACw75 .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
.cid-tXVJVACw75 .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .cid-tXVJVACw75 .mbr-section-btn .btn {
    padding: 42px 56px;
  }
}
@media (max-width: 767px) {
  .cid-tXVJVACw75 .mbr-section-btn .btn {
    font-size: 40px !important;
  }
  .cid-tXVJVACw75 .mbr-section-btn .btn .mbr-iconfont {
    font-size: 40px!important;
  }
}
@media (max-width: 575px) {
  .cid-tXVJVACw75 .mbr-section-btn .btn {
    font-size: 24px !important;
  }
  .cid-tXVJVACw75 .mbr-section-btn .btn .mbr-iconfont {
    font-size: 24px!important;
  }
}
.cid-tXVJVACw75 .mbr-section-btn .btn-black {
  color: #f6f6ef !important;
}
.cid-tXVJVACw75 .mbr-section-btn .btn-black:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-tXVJVACw75 .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
}
.cid-tXVJVACw75 .mbr-text a {
  text-decoration: underline !important;
}
.cid-tXVJVACw75 .mbr-text a:hover {
  color: inherit !important;
}
.cid-tXVJVACw75 .mbr-section-title,
.cid-tXVJVACw75 .mbr-section-btn {
  color: #e10000;
}
.cid-tUjbSUcZdY {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #181817;
}
.cid-tUjbSUcZdY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUjbSUcZdY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUjbSUcZdY .mbr-section-head {
  max-width: 500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .cid-tUjbSUcZdY .mbr-section-head {
    max-width: 480px;
  }
}
.cid-tUjbSUcZdY .mbr-section-title {
  color: #e10000;
  margin-bottom: 1rem;
  text-align: center;
}
.cid-tUjbSUcZdY .mbr-section-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
}
.cid-tUjbSUcZdY .card-row {
  align-items: stretch;
}
.cid-tUjbSUcZdY .item {
  margin-bottom: 2rem;
}
.cid-tUjbSUcZdY .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #e10000;
}
.cid-tUjbSUcZdY .card-box {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2.5rem 2rem;
  margin-bottom: -2.5rem;
}
.cid-tUjbSUcZdY .card-title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cid-tUjbSUcZdY .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 0;
  margin-top: 0 !important;
}
.cid-tUjbSUcZdY .item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 2;
  margin-top: auto;
  transform: translate3d(0px, 1rem, 0px);
}
.cid-tUjbSUcZdY .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tUjbSUcZdY .img-bg {
  position: absolute;
  left: -5%;
  bottom: -25%;
  z-index: 1;
  width: 110%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #f6f6ef;
}
.cid-tXWHUwEvki {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #181817;
}
.cid-tXWHUwEvki .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXWHUwEvki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXWHUwEvki .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
.cid-tXWHUwEvki .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .cid-tXWHUwEvki .mbr-section-btn .btn {
    padding: 42px 56px;
  }
}
@media (max-width: 767px) {
  .cid-tXWHUwEvki .mbr-section-btn .btn {
    font-size: 40px !important;
  }
  .cid-tXWHUwEvki .mbr-section-btn .btn .mbr-iconfont {
    font-size: 40px!important;
  }
}
@media (max-width: 575px) {
  .cid-tXWHUwEvki .mbr-section-btn .btn {
    font-size: 24px !important;
  }
  .cid-tXWHUwEvki .mbr-section-btn .btn .mbr-iconfont {
    font-size: 24px!important;
  }
}
.cid-tXWHUwEvki .mbr-section-btn .btn-black {
  color: #f6f6ef !important;
}
.cid-tXWHUwEvki .mbr-section-btn .btn-black:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-tXWHUwEvki .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
}
.cid-tXWHUwEvki .mbr-text a {
  text-decoration: underline !important;
}
.cid-tXWHUwEvki .mbr-text a:hover {
  color: inherit !important;
}
.cid-tXWHUwEvki .mbr-section-title,
.cid-tXWHUwEvki .mbr-section-btn {
  color: #e10000;
}
.cid-tjiMsIxy48 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tjiMsIxy48 .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-tjiMsIxy48 .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-tjiMsIxy48 .mbr-section-title {
  color: #e10000;
}
.cid-tjiMsIxy48 .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tjiMsIxy48 .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-tjiMsIxy48 .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tjiMsIxy48 form {
  width: 100%;
}
.cid-tjiMsIxy48 form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tjiMsIxy48 form p {
  color: #f6f6ef;
}
.cid-tjiMsIxy48 form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-tjiMsIxy48 form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-tjiMsIxy48 form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-tjiMsIxy48 form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-tjiMsIxy48 form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form select {
  color: #bbbbbb !important;
}
.cid-tjiMsIxy48 form textarea {
  height: 200px !important;
  resize: none;
}
.cid-tjiMsIxy48 form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tjiMsIxy48 form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tjiMsIxy48 form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tjiMsIxy48 form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tjiMsIxy48 form input,
.cid-tjiMsIxy48 form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-tjiMsIxy48 form input:active,
.cid-tjiMsIxy48 form textarea:active,
.cid-tjiMsIxy48 form input:focus,
.cid-tjiMsIxy48 form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-tjiMsIxy48 form input:active::-webkit-input-placeholder,
.cid-tjiMsIxy48 form textarea:active::-webkit-input-placeholder,
.cid-tjiMsIxy48 form input:focus::-webkit-input-placeholder,
.cid-tjiMsIxy48 form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form input:active::-moz-placeholder,
.cid-tjiMsIxy48 form textarea:active::-moz-placeholder,
.cid-tjiMsIxy48 form input:focus::-moz-placeholder,
.cid-tjiMsIxy48 form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form input:active:-moz-placeholder,
.cid-tjiMsIxy48 form textarea:active:-moz-placeholder,
.cid-tjiMsIxy48 form input:focus:-moz-placeholder,
.cid-tjiMsIxy48 form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form input:active:-ms-input-placeholder,
.cid-tjiMsIxy48 form textarea:active:-ms-input-placeholder,
.cid-tjiMsIxy48 form input:focus:-ms-input-placeholder,
.cid-tjiMsIxy48 form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tjiMsIxy48 form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tjiMsIxy48 form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tjiMsIxy48 form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-tjiMsIxy48 form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tjiMsIxy48 form .form-check-input:focus,
.cid-tjiMsIxy48 form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-tjiMsIxy48 form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-tXWTShv8zG {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #181817;
}
.cid-tXWTShv8zG .container-fluid,
.cid-tXWTShv8zG .container {
  position: relative;
}
.cid-tXWTShv8zG .container-fluid::before,
.cid-tXWTShv8zG .container::before {
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 140%;
  right: 0;
  bottom: 0;
  background-color: #e10000;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tXWTShv8zG .container-fluid::before,
  .cid-tXWTShv8zG .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .container-fluid::before,
  .cid-tXWTShv8zG .container::before {
    display: none;
  }
}
.cid-tXWTShv8zG .media-wrap {
  height: 300px;
}
.cid-tXWTShv8zG .media-wrap a img {
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tXWTShv8zG .media-wrap a img {
    margin: 0 auto;
  }
}
.cid-tXWTShv8zG .text-wrapper {
  padding: 0 148px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tXWTShv8zG .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper {
    background-color: #e10000;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-tXWTShv8zG .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-tXWTShv8zG .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #f6f6ef;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-tXWTShv8zG .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-tXWTShv8zG .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-tXWTShv8zG .text-wrapper .mbr-desc {
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-tXWTShv8zG .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .list {
    background-color: #e10000;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-tXWTShv8zG .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-tXWTShv8zG .list .item-wrap:hover {
  opacity: .7;
}
.cid-tXWTShv8zG .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .copyright {
    background-color: #e10000;
  }
}
.cid-tXWTShv8zG .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-tXWTShv8zG .mbr-text {
  color: #bcbfca;
}
.cid-tXWTShv8zG .mbr-desc {
  color: #ffffff;
}
.cid-tXWTShv8zG .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-tXWTShv8zG .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-tUrpYAktUG {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-tUrpYAktUG .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-tUrpYAktUG .dropdown-menu {
  padding: 0;
}
.cid-tUrpYAktUG .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tUrpYAktUG .dropdown-item {
    text-align: left !important;
  }
}
.cid-tUrpYAktUG .dropdown-item:hover {
  background-position: right !important;
}
.cid-tUrpYAktUG .dropdown-item:hover:after {
  color: #f6f6ef;
}
.cid-tUrpYAktUG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUrpYAktUG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUrpYAktUG .nav-link {
  position: relative;
}
.cid-tUrpYAktUG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-tUrpYAktUG .dropdown-menu,
.cid-tUrpYAktUG .navbar.opened {
  background: #181817 !important;
}
.cid-tUrpYAktUG .nav-item:focus,
.cid-tUrpYAktUG .nav-link:focus {
  outline: none;
}
.cid-tUrpYAktUG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUrpYAktUG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUrpYAktUG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUrpYAktUG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUrpYAktUG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-tUrpYAktUG .navbar.opened {
  transition: all 0.3s;
}
.cid-tUrpYAktUG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUrpYAktUG .navbar .navbar-logo img {
  width: auto;
}
.cid-tUrpYAktUG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tUrpYAktUG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUrpYAktUG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUrpYAktUG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUrpYAktUG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUrpYAktUG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tUrpYAktUG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUrpYAktUG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUrpYAktUG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUrpYAktUG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUrpYAktUG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUrpYAktUG .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-tUrpYAktUG .navbar {
    min-height: 70px;
  }
}
.cid-tUrpYAktUG .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tUrpYAktUG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-tUrpYAktUG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUrpYAktUG .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tUrpYAktUG .navbar-brand {
    min-height: 70px;
  }
}
.cid-tUrpYAktUG .dropdown-item.active,
.cid-tUrpYAktUG .dropdown-item:active {
  background-color: transparent;
}
.cid-tUrpYAktUG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUrpYAktUG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUrpYAktUG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUrpYAktUG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tUrpYAktUG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUrpYAktUG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUrpYAktUG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUrpYAktUG button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-tUrpYAktUG button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tUrpYAktUG button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tUrpYAktUG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tUrpYAktUG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tUrpYAktUG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tUrpYAktUG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tUrpYAktUG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUrpYAktUG nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUrpYAktUG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUrpYAktUG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUrpYAktUG nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUrpYAktUG .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tUrpYAktUG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUrpYAktUG .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-tUrpYAktUG .navbar {
    height: 70px;
  }
  .cid-tUrpYAktUG .navbar.opened {
    height: auto;
  }
  .cid-tUrpYAktUG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUrpYAktUG .navbar-short {
  min-height: 70px;
  background: #181817;
  background: rgba(24, 24, 23, 0);
}
@media (max-width: 575px) {
  .cid-tUrpYAktUG .navbar-short {
    min-height: 70px;
  }
}
.cid-tUrpYAktUG .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tUrpYAktUG .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-tUrpYAktUG .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-tUrpYAktUG .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-tUrpYAktUG .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tUrpYAktUG .navbar-nav .nav-item .nav-link:hover,
.cid-tUrpYAktUG .navbar-nav .nav-item .nav-link:focus,
.cid-tUrpYAktUG .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #f6f6ef !important;
}
.cid-tUrpYAktUG .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-tUrpYAktUG .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #181817 !important;
}
.cid-tUrpYAktUG .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tUrpYAktUG .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tUrpYAktUG button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-tUrpYAktUG button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tUrpYAktUG button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tUrpYAktUG button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-tUrpYAktUG button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tUrpYAktUG button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tUrpYAktUG button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-tUrpYAktUG .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-tUrpYAktUG .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tUrpYAktUG .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tUrpYAktUG .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-tUrpYAktUG .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tUrpYAktUG .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tUrpYAktUG .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-tUrpYAktUG .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-tUrpYAktUG .offcanvas.show {
  transform: translateX(0);
}
.cid-tUrpYAktUG .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-tUrpYAktUG .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-tUrpYAktUG .offcanvas {
    width: 100%;
  }
}
.cid-tUrpYAktUG .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tUrpYAktUG .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #181817;
  box-shadow: none;
  overflow: auto;
}
.cid-tUrpYAktUG .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-tUrpYAktUG .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tUrpYAktUG .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-tUrpYAktUG .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-tUrpYAktUG .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-tUrpYAktUG .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-tUrpYAktUG .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tUrpYAktUG .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-tUrpYAktUG .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-tUrpYAktUG .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-tUrpYAktUG .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-tUrpYAktUG .list li:hover {
  color: #f6f6ef !important;
}
.cid-tUrpYAktUG .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-tUrpYAktUG .list a:hover {
  color: #f6f6ef !important;
  line-height: inherit !important;
}
.cid-tUrpYAktUG .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-tUrpYAktUG .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tUrpYAktUG .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-tUrpYAktUG .second-list li:hover {
  opacity: 1;
}
.cid-tUrpYAktUG .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-tUrpYAElY2 {
  position: relative;
  overflow: hidden;
}
.cid-tUrpYAElY2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUrpYAElY2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/96ace098-5800-48f8-b61c-b17af2365162-1-105-c-1024x768.jpg");
}
.cid-tUrpYAElY2 .text-wrapper {
  position: relative;
  z-index: 4;
  padding-top: 5rem;
}
@media (max-width: 991px) {
  .cid-tUrpYAElY2 .text-wrapper {
    padding-top: 0;
    padding-bottom: 5rem;
  }
}
.cid-tUrpYAElY2 .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-tUrpYAElY2 .mbr-section-title.display-1 {
    font-size: 13rem !important;
  }
}
.cid-tUrpYAElY2 .mbr-text {
  color: #f6f6ef;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-right: auto;
  opacity: 0.8;
}
.cid-tUrpYAElY2 .mbr-section-btn {
  margin-top: 1rem;
}
.cid-tUrpYAElY2 .img-bg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(40%, -50%);
  background: #e10000;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-tUrpYAElY2 .img-bg {
    top: auto;
    bottom: 0;
    right: 0;
    width: 70vw;
    transform: translate(30%, 40%);
  }
}
.cid-tUrpYAElY2 .mbr-section-title,
.cid-tUrpYAElY2 .mbr-section-btn {
  color: #f6f6ef;
}
.cid-tY1UZeNQlL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY1UZeNQlL img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY1UZeNQlL .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY1UZeNQlL .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY1UZeNQlL .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY1UZeNQlL .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY1UZeNQlL .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY1UZeNQlL .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY1UZeNQlL .first {
    max-height: 250px;
  }
  .cid-tY1UZeNQlL .second {
    max-height: 323px;
  }
  .cid-tY1UZeNQlL .third {
    max-height: 408px;
  }
  .cid-tY1UZeNQlL .fourth {
    max-height: 323px;
  }
  .cid-tY1UZeNQlL .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY1UZeNQlL .first {
    max-height: 200px;
  }
  .cid-tY1UZeNQlL .second {
    max-height: 270px;
  }
  .cid-tY1UZeNQlL .third {
    max-height: 350px;
  }
  .cid-tY1UZeNQlL .fourth {
    max-height: 270px;
  }
  .cid-tY1UZeNQlL .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY1UZeNQlL .first {
    display: none;
  }
  .cid-tY1UZeNQlL .second {
    max-height: 323px;
  }
  .cid-tY1UZeNQlL .third {
    max-height: 408px;
  }
  .cid-tY1UZeNQlL .fourth {
    max-height: 323px;
  }
  .cid-tY1UZeNQlL .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY1UZeNQlL .second {
    max-height: 250px;
  }
  .cid-tY1UZeNQlL .third {
    max-height: 340px;
  }
  .cid-tY1UZeNQlL .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY1UZeNQlL .second {
    max-height: 180px;
  }
  .cid-tY1UZeNQlL .third {
    max-height: 270px;
  }
  .cid-tY1UZeNQlL .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY1UZeNQlL .second {
    display: none;
  }
  .cid-tY1UZeNQlL .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY1UZeNQlL .fourth {
    display: none;
  }
}
.cid-tY2y5WI5TZ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2y5WI5TZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY2y5WI5TZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY2y5WI5TZ .mbr-section-head {
  max-width: 500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .cid-tY2y5WI5TZ .mbr-section-head {
    max-width: 480px;
  }
}
.cid-tY2y5WI5TZ .mbr-section-title {
  color: #e10000;
  margin-bottom: 1rem;
}
.cid-tY2y5WI5TZ .mbr-section-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
}
.cid-tY2y5WI5TZ .card-row {
  align-items: stretch;
}
.cid-tY2y5WI5TZ .item {
  margin-bottom: 2rem;
}
.cid-tY2y5WI5TZ .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #e10000;
}
.cid-tY2y5WI5TZ .card-box {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2.5rem 2rem;
  margin-bottom: -2.5rem;
}
.cid-tY2y5WI5TZ .card-title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cid-tY2y5WI5TZ .card-subtitle {
  color: #181817;
  margin-bottom: 0;
  margin-top: 0 !important;
}
.cid-tY2y5WI5TZ .item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 2;
  margin-top: auto;
  transform: translate3d(0px, 1rem, 0px);
}
.cid-tY2y5WI5TZ .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tY2y5WI5TZ .img-bg {
  position: absolute;
  left: -5%;
  bottom: -25%;
  z-index: 1;
  width: 110%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #f6f6ef;
}
.cid-tY2Mgf70Xv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2Mgf70Xv .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-tY2Mgf70Xv .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-tY2Mgf70Xv .mbr-section-title {
  color: #e10000;
}
.cid-tY2Mgf70Xv .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tY2Mgf70Xv .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-tY2Mgf70Xv .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tY2Mgf70Xv form {
  width: 100%;
}
.cid-tY2Mgf70Xv form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tY2Mgf70Xv form p {
  color: #f6f6ef;
}
.cid-tY2Mgf70Xv form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-tY2Mgf70Xv form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-tY2Mgf70Xv form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-tY2Mgf70Xv form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-tY2Mgf70Xv form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form select {
  color: #bbbbbb !important;
}
.cid-tY2Mgf70Xv form textarea {
  height: 200px !important;
  resize: none;
}
.cid-tY2Mgf70Xv form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2Mgf70Xv form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2Mgf70Xv form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2Mgf70Xv form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2Mgf70Xv form input,
.cid-tY2Mgf70Xv form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-tY2Mgf70Xv form input:active,
.cid-tY2Mgf70Xv form textarea:active,
.cid-tY2Mgf70Xv form input:focus,
.cid-tY2Mgf70Xv form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-tY2Mgf70Xv form input:active::-webkit-input-placeholder,
.cid-tY2Mgf70Xv form textarea:active::-webkit-input-placeholder,
.cid-tY2Mgf70Xv form input:focus::-webkit-input-placeholder,
.cid-tY2Mgf70Xv form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form input:active::-moz-placeholder,
.cid-tY2Mgf70Xv form textarea:active::-moz-placeholder,
.cid-tY2Mgf70Xv form input:focus::-moz-placeholder,
.cid-tY2Mgf70Xv form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form input:active:-moz-placeholder,
.cid-tY2Mgf70Xv form textarea:active:-moz-placeholder,
.cid-tY2Mgf70Xv form input:focus:-moz-placeholder,
.cid-tY2Mgf70Xv form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form input:active:-ms-input-placeholder,
.cid-tY2Mgf70Xv form textarea:active:-ms-input-placeholder,
.cid-tY2Mgf70Xv form input:focus:-ms-input-placeholder,
.cid-tY2Mgf70Xv form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2Mgf70Xv form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tY2Mgf70Xv form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tY2Mgf70Xv form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-tY2Mgf70Xv form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tY2Mgf70Xv form .form-check-input:focus,
.cid-tY2Mgf70Xv form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-tY2Mgf70Xv form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-tY2rTVxqtt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2rTVxqtt img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2rTVxqtt .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2rTVxqtt .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2rTVxqtt .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2rTVxqtt .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2rTVxqtt .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2rTVxqtt .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2rTVxqtt .first {
    max-height: 250px;
  }
  .cid-tY2rTVxqtt .second {
    max-height: 323px;
  }
  .cid-tY2rTVxqtt .third {
    max-height: 408px;
  }
  .cid-tY2rTVxqtt .fourth {
    max-height: 323px;
  }
  .cid-tY2rTVxqtt .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2rTVxqtt .first {
    max-height: 200px;
  }
  .cid-tY2rTVxqtt .second {
    max-height: 270px;
  }
  .cid-tY2rTVxqtt .third {
    max-height: 350px;
  }
  .cid-tY2rTVxqtt .fourth {
    max-height: 270px;
  }
  .cid-tY2rTVxqtt .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2rTVxqtt .first {
    display: none;
  }
  .cid-tY2rTVxqtt .second {
    max-height: 323px;
  }
  .cid-tY2rTVxqtt .third {
    max-height: 408px;
  }
  .cid-tY2rTVxqtt .fourth {
    max-height: 323px;
  }
  .cid-tY2rTVxqtt .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2rTVxqtt .second {
    max-height: 250px;
  }
  .cid-tY2rTVxqtt .third {
    max-height: 340px;
  }
  .cid-tY2rTVxqtt .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2rTVxqtt .second {
    max-height: 180px;
  }
  .cid-tY2rTVxqtt .third {
    max-height: 270px;
  }
  .cid-tY2rTVxqtt .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2rTVxqtt .second {
    display: none;
  }
  .cid-tY2rTVxqtt .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2rTVxqtt .fourth {
    display: none;
  }
}
.cid-tXWTShv8zG {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #181817;
}
.cid-tXWTShv8zG .container-fluid,
.cid-tXWTShv8zG .container {
  position: relative;
}
.cid-tXWTShv8zG .container-fluid::before,
.cid-tXWTShv8zG .container::before {
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 140%;
  right: 0;
  bottom: 0;
  background-color: #e10000;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tXWTShv8zG .container-fluid::before,
  .cid-tXWTShv8zG .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .container-fluid::before,
  .cid-tXWTShv8zG .container::before {
    display: none;
  }
}
.cid-tXWTShv8zG .media-wrap {
  height: 300px;
}
.cid-tXWTShv8zG .media-wrap a img {
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tXWTShv8zG .media-wrap a img {
    margin: 0 auto;
  }
}
.cid-tXWTShv8zG .text-wrapper {
  padding: 0 148px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tXWTShv8zG .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper {
    background-color: #e10000;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-tXWTShv8zG .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-tXWTShv8zG .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #f6f6ef;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-tXWTShv8zG .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-tXWTShv8zG .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-tXWTShv8zG .text-wrapper .mbr-desc {
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-tXWTShv8zG .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .list {
    background-color: #e10000;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-tXWTShv8zG .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-tXWTShv8zG .list .item-wrap:hover {
  opacity: .7;
}
.cid-tXWTShv8zG .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .copyright {
    background-color: #e10000;
  }
}
.cid-tXWTShv8zG .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tXWTShv8zG .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-tXWTShv8zG .mbr-text {
  color: #bcbfca;
}
.cid-tXWTShv8zG .mbr-desc {
  color: #ffffff;
}
.cid-tXWTShv8zG .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-tXWTShv8zG .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-tY1M8zbRVi {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-tY1M8zbRVi .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-tY1M8zbRVi .dropdown-menu {
  padding: 0;
}
.cid-tY1M8zbRVi .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tY1M8zbRVi .dropdown-item {
    text-align: left !important;
  }
}
.cid-tY1M8zbRVi .dropdown-item:hover {
  background-position: right !important;
}
.cid-tY1M8zbRVi .dropdown-item:hover:after {
  color: #f6f6ef;
}
.cid-tY1M8zbRVi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tY1M8zbRVi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tY1M8zbRVi .nav-link {
  position: relative;
}
.cid-tY1M8zbRVi .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-tY1M8zbRVi .dropdown-menu,
.cid-tY1M8zbRVi .navbar.opened {
  background: #181817 !important;
}
.cid-tY1M8zbRVi .nav-item:focus,
.cid-tY1M8zbRVi .nav-link:focus {
  outline: none;
}
.cid-tY1M8zbRVi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tY1M8zbRVi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tY1M8zbRVi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tY1M8zbRVi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tY1M8zbRVi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-tY1M8zbRVi .navbar.opened {
  transition: all 0.3s;
}
.cid-tY1M8zbRVi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tY1M8zbRVi .navbar .navbar-logo img {
  width: auto;
}
.cid-tY1M8zbRVi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tY1M8zbRVi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tY1M8zbRVi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tY1M8zbRVi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tY1M8zbRVi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tY1M8zbRVi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tY1M8zbRVi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tY1M8zbRVi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tY1M8zbRVi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tY1M8zbRVi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tY1M8zbRVi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tY1M8zbRVi .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-tY1M8zbRVi .navbar {
    min-height: 70px;
  }
}
.cid-tY1M8zbRVi .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tY1M8zbRVi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-tY1M8zbRVi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tY1M8zbRVi .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tY1M8zbRVi .navbar-brand {
    min-height: 70px;
  }
}
.cid-tY1M8zbRVi .dropdown-item.active,
.cid-tY1M8zbRVi .dropdown-item:active {
  background-color: transparent;
}
.cid-tY1M8zbRVi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tY1M8zbRVi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tY1M8zbRVi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tY1M8zbRVi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tY1M8zbRVi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tY1M8zbRVi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tY1M8zbRVi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tY1M8zbRVi button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-tY1M8zbRVi button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tY1M8zbRVi button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tY1M8zbRVi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY1M8zbRVi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tY1M8zbRVi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY1M8zbRVi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY1M8zbRVi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tY1M8zbRVi nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY1M8zbRVi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tY1M8zbRVi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tY1M8zbRVi nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY1M8zbRVi .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tY1M8zbRVi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tY1M8zbRVi .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-tY1M8zbRVi .navbar {
    height: 70px;
  }
  .cid-tY1M8zbRVi .navbar.opened {
    height: auto;
  }
  .cid-tY1M8zbRVi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tY1M8zbRVi .navbar-short {
  min-height: 70px;
  background: #181817;
  background: rgba(24, 24, 23, 0);
}
@media (max-width: 575px) {
  .cid-tY1M8zbRVi .navbar-short {
    min-height: 70px;
  }
}
.cid-tY1M8zbRVi .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tY1M8zbRVi .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-tY1M8zbRVi .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-tY1M8zbRVi .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-tY1M8zbRVi .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tY1M8zbRVi .navbar-nav .nav-item .nav-link:hover,
.cid-tY1M8zbRVi .navbar-nav .nav-item .nav-link:focus,
.cid-tY1M8zbRVi .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #f6f6ef !important;
}
.cid-tY1M8zbRVi .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-tY1M8zbRVi .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #181817 !important;
}
.cid-tY1M8zbRVi .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tY1M8zbRVi .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tY1M8zbRVi button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-tY1M8zbRVi button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY1M8zbRVi button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY1M8zbRVi button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-tY1M8zbRVi button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY1M8zbRVi button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY1M8zbRVi button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-tY1M8zbRVi .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-tY1M8zbRVi .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY1M8zbRVi .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY1M8zbRVi .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-tY1M8zbRVi .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY1M8zbRVi .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY1M8zbRVi .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-tY1M8zbRVi .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-tY1M8zbRVi .offcanvas.show {
  transform: translateX(0);
}
.cid-tY1M8zbRVi .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-tY1M8zbRVi .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-tY1M8zbRVi .offcanvas {
    width: 100%;
  }
}
.cid-tY1M8zbRVi .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tY1M8zbRVi .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #181817;
  box-shadow: none;
  overflow: auto;
}
.cid-tY1M8zbRVi .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-tY1M8zbRVi .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tY1M8zbRVi .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-tY1M8zbRVi .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-tY1M8zbRVi .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-tY1M8zbRVi .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-tY1M8zbRVi .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tY1M8zbRVi .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-tY1M8zbRVi .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-tY1M8zbRVi .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-tY1M8zbRVi .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-tY1M8zbRVi .list li:hover {
  color: #f6f6ef !important;
}
.cid-tY1M8zbRVi .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-tY1M8zbRVi .list a:hover {
  color: #f6f6ef !important;
  line-height: inherit !important;
}
.cid-tY1M8zbRVi .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-tY1M8zbRVi .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tY1M8zbRVi .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-tY1M8zbRVi .second-list li:hover {
  opacity: 1;
}
.cid-tY1M8zbRVi .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-tY1M8zPj8h {
  position: relative;
  overflow: hidden;
}
.cid-tY1M8zPj8h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY1M8zPj8h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/984cf0a7-15fc-4c51-9820-6633a932fc32-1-105-c-690x518.jpg");
}
.cid-tY1M8zPj8h .text-wrapper {
  position: relative;
  z-index: 4;
  padding-top: 5rem;
}
@media (max-width: 991px) {
  .cid-tY1M8zPj8h .text-wrapper {
    padding-top: 0;
    padding-bottom: 5rem;
  }
}
.cid-tY1M8zPj8h .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-tY1M8zPj8h .mbr-section-title.display-1 {
    font-size: 13rem !important;
  }
}
.cid-tY1M8zPj8h .mbr-text {
  color: #f6f6ef;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-right: auto;
  opacity: 0.8;
}
.cid-tY1M8zPj8h .mbr-section-btn {
  margin-top: 1rem;
}
.cid-tY1M8zPj8h .img-bg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(40%, -50%);
  background: #e10000;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-tY1M8zPj8h .img-bg {
    top: auto;
    bottom: 0;
    right: 0;
    width: 70vw;
    transform: translate(30%, 40%);
  }
}
.cid-tY1M8zPj8h .mbr-section-title,
.cid-tY1M8zPj8h .mbr-section-btn {
  color: #f6f6ef;
}
.cid-tY1W06cqZt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY1W06cqZt img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY1W06cqZt .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY1W06cqZt .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY1W06cqZt .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY1W06cqZt .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY1W06cqZt .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY1W06cqZt .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY1W06cqZt .first {
    max-height: 250px;
  }
  .cid-tY1W06cqZt .second {
    max-height: 323px;
  }
  .cid-tY1W06cqZt .third {
    max-height: 408px;
  }
  .cid-tY1W06cqZt .fourth {
    max-height: 323px;
  }
  .cid-tY1W06cqZt .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY1W06cqZt .first {
    max-height: 200px;
  }
  .cid-tY1W06cqZt .second {
    max-height: 270px;
  }
  .cid-tY1W06cqZt .third {
    max-height: 350px;
  }
  .cid-tY1W06cqZt .fourth {
    max-height: 270px;
  }
  .cid-tY1W06cqZt .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY1W06cqZt .first {
    display: none;
  }
  .cid-tY1W06cqZt .second {
    max-height: 323px;
  }
  .cid-tY1W06cqZt .third {
    max-height: 408px;
  }
  .cid-tY1W06cqZt .fourth {
    max-height: 323px;
  }
  .cid-tY1W06cqZt .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY1W06cqZt .second {
    max-height: 250px;
  }
  .cid-tY1W06cqZt .third {
    max-height: 340px;
  }
  .cid-tY1W06cqZt .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY1W06cqZt .second {
    max-height: 180px;
  }
  .cid-tY1W06cqZt .third {
    max-height: 270px;
  }
  .cid-tY1W06cqZt .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY1W06cqZt .second {
    display: none;
  }
  .cid-tY1W06cqZt .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY1W06cqZt .fourth {
    display: none;
  }
}
.cid-tY2xhvv0Pe {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2xhvv0Pe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY2xhvv0Pe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY2xhvv0Pe .mbr-section-head {
  max-width: 500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .cid-tY2xhvv0Pe .mbr-section-head {
    max-width: 480px;
  }
}
.cid-tY2xhvv0Pe .mbr-section-title {
  color: #e10000;
  margin-bottom: 1rem;
}
.cid-tY2xhvv0Pe .mbr-section-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
}
.cid-tY2xhvv0Pe .card-row {
  align-items: stretch;
}
.cid-tY2xhvv0Pe .item {
  margin-bottom: 2rem;
}
.cid-tY2xhvv0Pe .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #e10000;
}
.cid-tY2xhvv0Pe .card-box {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2.5rem 2rem;
  margin-bottom: -2.5rem;
}
.cid-tY2xhvv0Pe .card-title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cid-tY2xhvv0Pe .card-subtitle {
  color: #181817;
  margin-bottom: 0;
  margin-top: 0 !important;
}
.cid-tY2xhvv0Pe .item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 2;
  margin-top: auto;
  transform: translate3d(0px, 1rem, 0px);
}
.cid-tY2xhvv0Pe .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tY2xhvv0Pe .img-bg {
  position: absolute;
  left: -5%;
  bottom: -25%;
  z-index: 1;
  width: 110%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #f6f6ef;
}
.cid-tY2MvpNThu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2MvpNThu .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-tY2MvpNThu .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-tY2MvpNThu .mbr-section-title {
  color: #e10000;
}
.cid-tY2MvpNThu .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tY2MvpNThu .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-tY2MvpNThu .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tY2MvpNThu form {
  width: 100%;
}
.cid-tY2MvpNThu form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tY2MvpNThu form p {
  color: #f6f6ef;
}
.cid-tY2MvpNThu form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-tY2MvpNThu form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-tY2MvpNThu form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-tY2MvpNThu form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-tY2MvpNThu form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form select {
  color: #bbbbbb !important;
}
.cid-tY2MvpNThu form textarea {
  height: 200px !important;
  resize: none;
}
.cid-tY2MvpNThu form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MvpNThu form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MvpNThu form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MvpNThu form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MvpNThu form input,
.cid-tY2MvpNThu form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-tY2MvpNThu form input:active,
.cid-tY2MvpNThu form textarea:active,
.cid-tY2MvpNThu form input:focus,
.cid-tY2MvpNThu form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-tY2MvpNThu form input:active::-webkit-input-placeholder,
.cid-tY2MvpNThu form textarea:active::-webkit-input-placeholder,
.cid-tY2MvpNThu form input:focus::-webkit-input-placeholder,
.cid-tY2MvpNThu form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form input:active::-moz-placeholder,
.cid-tY2MvpNThu form textarea:active::-moz-placeholder,
.cid-tY2MvpNThu form input:focus::-moz-placeholder,
.cid-tY2MvpNThu form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form input:active:-moz-placeholder,
.cid-tY2MvpNThu form textarea:active:-moz-placeholder,
.cid-tY2MvpNThu form input:focus:-moz-placeholder,
.cid-tY2MvpNThu form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form input:active:-ms-input-placeholder,
.cid-tY2MvpNThu form textarea:active:-ms-input-placeholder,
.cid-tY2MvpNThu form input:focus:-ms-input-placeholder,
.cid-tY2MvpNThu form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MvpNThu form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tY2MvpNThu form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tY2MvpNThu form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-tY2MvpNThu form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tY2MvpNThu form .form-check-input:focus,
.cid-tY2MvpNThu form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-tY2MvpNThu form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-tY2uEjCv8v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2uEjCv8v img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2uEjCv8v .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2uEjCv8v .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2uEjCv8v .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2uEjCv8v .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2uEjCv8v .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2uEjCv8v .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2uEjCv8v .first {
    max-height: 250px;
  }
  .cid-tY2uEjCv8v .second {
    max-height: 323px;
  }
  .cid-tY2uEjCv8v .third {
    max-height: 408px;
  }
  .cid-tY2uEjCv8v .fourth {
    max-height: 323px;
  }
  .cid-tY2uEjCv8v .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2uEjCv8v .first {
    max-height: 200px;
  }
  .cid-tY2uEjCv8v .second {
    max-height: 270px;
  }
  .cid-tY2uEjCv8v .third {
    max-height: 350px;
  }
  .cid-tY2uEjCv8v .fourth {
    max-height: 270px;
  }
  .cid-tY2uEjCv8v .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2uEjCv8v .first {
    display: none;
  }
  .cid-tY2uEjCv8v .second {
    max-height: 323px;
  }
  .cid-tY2uEjCv8v .third {
    max-height: 408px;
  }
  .cid-tY2uEjCv8v .fourth {
    max-height: 323px;
  }
  .cid-tY2uEjCv8v .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2uEjCv8v .second {
    max-height: 250px;
  }
  .cid-tY2uEjCv8v .third {
    max-height: 340px;
  }
  .cid-tY2uEjCv8v .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2uEjCv8v .second {
    max-height: 180px;
  }
  .cid-tY2uEjCv8v .third {
    max-height: 270px;
  }
  .cid-tY2uEjCv8v .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2uEjCv8v .second {
    display: none;
  }
  .cid-tY2uEjCv8v .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2uEjCv8v .fourth {
    display: none;
  }
}
.cid-tY1M8AaZHQ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #181817;
}
.cid-tY1M8AaZHQ .container-fluid,
.cid-tY1M8AaZHQ .container {
  position: relative;
}
.cid-tY1M8AaZHQ .container-fluid::before,
.cid-tY1M8AaZHQ .container::before {
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 140%;
  right: 0;
  bottom: 0;
  background-color: #e10000;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tY1M8AaZHQ .container-fluid::before,
  .cid-tY1M8AaZHQ .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .container-fluid::before,
  .cid-tY1M8AaZHQ .container::before {
    display: none;
  }
}
.cid-tY1M8AaZHQ .media-wrap {
  height: 300px;
}
.cid-tY1M8AaZHQ .media-wrap a img {
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tY1M8AaZHQ .media-wrap a img {
    margin: 0 auto;
  }
}
.cid-tY1M8AaZHQ .text-wrapper {
  padding: 0 148px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tY1M8AaZHQ .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .text-wrapper {
    background-color: #e10000;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-tY1M8AaZHQ .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-tY1M8AaZHQ .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #f6f6ef;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-tY1M8AaZHQ .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-tY1M8AaZHQ .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-tY1M8AaZHQ .text-wrapper .mbr-desc {
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-tY1M8AaZHQ .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .list {
    background-color: #e10000;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-tY1M8AaZHQ .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-tY1M8AaZHQ .list .item-wrap:hover {
  opacity: .7;
}
.cid-tY1M8AaZHQ .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .copyright {
    background-color: #e10000;
  }
}
.cid-tY1M8AaZHQ .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY1M8AaZHQ .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-tY1M8AaZHQ .mbr-text {
  color: #bcbfca;
}
.cid-tY1M8AaZHQ .mbr-desc {
  color: #ffffff;
}
.cid-tY1M8AaZHQ .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-tY1M8AaZHQ .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-tY1N1Ym7iZ {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-tY1N1Ym7iZ .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-tY1N1Ym7iZ .dropdown-menu {
  padding: 0;
}
.cid-tY1N1Ym7iZ .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tY1N1Ym7iZ .dropdown-item {
    text-align: left !important;
  }
}
.cid-tY1N1Ym7iZ .dropdown-item:hover {
  background-position: right !important;
}
.cid-tY1N1Ym7iZ .dropdown-item:hover:after {
  color: #f6f6ef;
}
.cid-tY1N1Ym7iZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tY1N1Ym7iZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tY1N1Ym7iZ .nav-link {
  position: relative;
}
.cid-tY1N1Ym7iZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-tY1N1Ym7iZ .dropdown-menu,
.cid-tY1N1Ym7iZ .navbar.opened {
  background: #181817 !important;
}
.cid-tY1N1Ym7iZ .nav-item:focus,
.cid-tY1N1Ym7iZ .nav-link:focus {
  outline: none;
}
.cid-tY1N1Ym7iZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tY1N1Ym7iZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tY1N1Ym7iZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tY1N1Ym7iZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tY1N1Ym7iZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-tY1N1Ym7iZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tY1N1Ym7iZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tY1N1Ym7iZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tY1N1Ym7iZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tY1N1Ym7iZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tY1N1Ym7iZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tY1N1Ym7iZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tY1N1Ym7iZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tY1N1Ym7iZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tY1N1Ym7iZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tY1N1Ym7iZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tY1N1Ym7iZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tY1N1Ym7iZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tY1N1Ym7iZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tY1N1Ym7iZ .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-tY1N1Ym7iZ .navbar {
    min-height: 70px;
  }
}
.cid-tY1N1Ym7iZ .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tY1N1Ym7iZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-tY1N1Ym7iZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tY1N1Ym7iZ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tY1N1Ym7iZ .navbar-brand {
    min-height: 70px;
  }
}
.cid-tY1N1Ym7iZ .dropdown-item.active,
.cid-tY1N1Ym7iZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tY1N1Ym7iZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tY1N1Ym7iZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tY1N1Ym7iZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tY1N1Ym7iZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tY1N1Ym7iZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tY1N1Ym7iZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tY1N1Ym7iZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tY1N1Ym7iZ button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-tY1N1Ym7iZ button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tY1N1Ym7iZ button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tY1N1Ym7iZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY1N1Ym7iZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tY1N1Ym7iZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY1N1Ym7iZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY1N1Ym7iZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tY1N1Ym7iZ nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY1N1Ym7iZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tY1N1Ym7iZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tY1N1Ym7iZ nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY1N1Ym7iZ .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tY1N1Ym7iZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tY1N1Ym7iZ .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-tY1N1Ym7iZ .navbar {
    height: 70px;
  }
  .cid-tY1N1Ym7iZ .navbar.opened {
    height: auto;
  }
  .cid-tY1N1Ym7iZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tY1N1Ym7iZ .navbar-short {
  min-height: 70px;
  background: #181817;
  background: rgba(24, 24, 23, 0);
}
@media (max-width: 575px) {
  .cid-tY1N1Ym7iZ .navbar-short {
    min-height: 70px;
  }
}
.cid-tY1N1Ym7iZ .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tY1N1Ym7iZ .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-tY1N1Ym7iZ .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-tY1N1Ym7iZ .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-tY1N1Ym7iZ .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tY1N1Ym7iZ .navbar-nav .nav-item .nav-link:hover,
.cid-tY1N1Ym7iZ .navbar-nav .nav-item .nav-link:focus,
.cid-tY1N1Ym7iZ .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #f6f6ef !important;
}
.cid-tY1N1Ym7iZ .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-tY1N1Ym7iZ .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #181817 !important;
}
.cid-tY1N1Ym7iZ .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tY1N1Ym7iZ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tY1N1Ym7iZ button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-tY1N1Ym7iZ button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY1N1Ym7iZ button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY1N1Ym7iZ button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-tY1N1Ym7iZ button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY1N1Ym7iZ button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY1N1Ym7iZ button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-tY1N1Ym7iZ .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-tY1N1Ym7iZ .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY1N1Ym7iZ .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY1N1Ym7iZ .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-tY1N1Ym7iZ .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY1N1Ym7iZ .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY1N1Ym7iZ .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-tY1N1Ym7iZ .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-tY1N1Ym7iZ .offcanvas.show {
  transform: translateX(0);
}
.cid-tY1N1Ym7iZ .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-tY1N1Ym7iZ .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-tY1N1Ym7iZ .offcanvas {
    width: 100%;
  }
}
.cid-tY1N1Ym7iZ .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tY1N1Ym7iZ .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #181817;
  box-shadow: none;
  overflow: auto;
}
.cid-tY1N1Ym7iZ .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-tY1N1Ym7iZ .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tY1N1Ym7iZ .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-tY1N1Ym7iZ .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-tY1N1Ym7iZ .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-tY1N1Ym7iZ .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-tY1N1Ym7iZ .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tY1N1Ym7iZ .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-tY1N1Ym7iZ .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-tY1N1Ym7iZ .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-tY1N1Ym7iZ .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-tY1N1Ym7iZ .list li:hover {
  color: #f6f6ef !important;
}
.cid-tY1N1Ym7iZ .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-tY1N1Ym7iZ .list a:hover {
  color: #f6f6ef !important;
  line-height: inherit !important;
}
.cid-tY1N1Ym7iZ .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-tY1N1Ym7iZ .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tY1N1Ym7iZ .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-tY1N1Ym7iZ .second-list li:hover {
  opacity: 1;
}
.cid-tY1N1Ym7iZ .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-tY1N1YDYdQ {
  position: relative;
  overflow: hidden;
}
.cid-tY1N1YDYdQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY1N1YDYdQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/9df76119-a5ef-419b-81dd-69dc66272037-1-105-c-602x452.jpg");
}
.cid-tY1N1YDYdQ .text-wrapper {
  position: relative;
  z-index: 4;
  padding-top: 5rem;
}
@media (max-width: 991px) {
  .cid-tY1N1YDYdQ .text-wrapper {
    padding-top: 0;
    padding-bottom: 5rem;
  }
}
.cid-tY1N1YDYdQ .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-tY1N1YDYdQ .mbr-section-title.display-1 {
    font-size: 13rem !important;
  }
}
.cid-tY1N1YDYdQ .mbr-text {
  color: #f6f6ef;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-right: auto;
  opacity: 0.8;
}
.cid-tY1N1YDYdQ .mbr-section-btn {
  margin-top: 1rem;
}
.cid-tY1N1YDYdQ .img-bg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(40%, -50%);
  background: #e10000;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-tY1N1YDYdQ .img-bg {
    top: auto;
    bottom: 0;
    right: 0;
    width: 70vw;
    transform: translate(30%, 40%);
  }
}
.cid-tY1N1YDYdQ .mbr-section-title,
.cid-tY1N1YDYdQ .mbr-section-btn {
  color: #f6f6ef;
}
.cid-tY1S9PdrBS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY1S9PdrBS img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY1S9PdrBS .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY1S9PdrBS .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY1S9PdrBS .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY1S9PdrBS .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY1S9PdrBS .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY1S9PdrBS .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY1S9PdrBS .first {
    max-height: 250px;
  }
  .cid-tY1S9PdrBS .second {
    max-height: 323px;
  }
  .cid-tY1S9PdrBS .third {
    max-height: 408px;
  }
  .cid-tY1S9PdrBS .fourth {
    max-height: 323px;
  }
  .cid-tY1S9PdrBS .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY1S9PdrBS .first {
    max-height: 200px;
  }
  .cid-tY1S9PdrBS .second {
    max-height: 270px;
  }
  .cid-tY1S9PdrBS .third {
    max-height: 350px;
  }
  .cid-tY1S9PdrBS .fourth {
    max-height: 270px;
  }
  .cid-tY1S9PdrBS .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY1S9PdrBS .first {
    display: none;
  }
  .cid-tY1S9PdrBS .second {
    max-height: 323px;
  }
  .cid-tY1S9PdrBS .third {
    max-height: 408px;
  }
  .cid-tY1S9PdrBS .fourth {
    max-height: 323px;
  }
  .cid-tY1S9PdrBS .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY1S9PdrBS .second {
    max-height: 250px;
  }
  .cid-tY1S9PdrBS .third {
    max-height: 340px;
  }
  .cid-tY1S9PdrBS .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY1S9PdrBS .second {
    max-height: 180px;
  }
  .cid-tY1S9PdrBS .third {
    max-height: 270px;
  }
  .cid-tY1S9PdrBS .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY1S9PdrBS .second {
    display: none;
  }
  .cid-tY1S9PdrBS .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY1S9PdrBS .fourth {
    display: none;
  }
}
.cid-tY2ytmmGCc {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2ytmmGCc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY2ytmmGCc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY2ytmmGCc .mbr-section-head {
  max-width: 500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .cid-tY2ytmmGCc .mbr-section-head {
    max-width: 480px;
  }
}
.cid-tY2ytmmGCc .mbr-section-title {
  color: #e10000;
  margin-bottom: 1rem;
}
.cid-tY2ytmmGCc .mbr-section-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
}
.cid-tY2ytmmGCc .card-row {
  align-items: stretch;
}
.cid-tY2ytmmGCc .item {
  margin-bottom: 2rem;
}
.cid-tY2ytmmGCc .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #e10000;
}
.cid-tY2ytmmGCc .card-box {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2.5rem 2rem;
  margin-bottom: -2.5rem;
}
.cid-tY2ytmmGCc .card-title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cid-tY2ytmmGCc .card-subtitle {
  color: #181817;
  margin-bottom: 0;
  margin-top: 0 !important;
}
.cid-tY2ytmmGCc .item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 2;
  margin-top: auto;
  transform: translate3d(0px, 1rem, 0px);
}
.cid-tY2ytmmGCc .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tY2ytmmGCc .img-bg {
  position: absolute;
  left: -5%;
  bottom: -25%;
  z-index: 1;
  width: 110%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #f6f6ef;
}
.cid-tY2My6XhSr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2My6XhSr .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-tY2My6XhSr .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-tY2My6XhSr .mbr-section-title {
  color: #e10000;
}
.cid-tY2My6XhSr .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tY2My6XhSr .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-tY2My6XhSr .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tY2My6XhSr form {
  width: 100%;
}
.cid-tY2My6XhSr form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tY2My6XhSr form p {
  color: #f6f6ef;
}
.cid-tY2My6XhSr form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-tY2My6XhSr form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-tY2My6XhSr form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-tY2My6XhSr form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-tY2My6XhSr form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form select {
  color: #bbbbbb !important;
}
.cid-tY2My6XhSr form textarea {
  height: 200px !important;
  resize: none;
}
.cid-tY2My6XhSr form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2My6XhSr form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2My6XhSr form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2My6XhSr form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2My6XhSr form input,
.cid-tY2My6XhSr form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-tY2My6XhSr form input:active,
.cid-tY2My6XhSr form textarea:active,
.cid-tY2My6XhSr form input:focus,
.cid-tY2My6XhSr form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-tY2My6XhSr form input:active::-webkit-input-placeholder,
.cid-tY2My6XhSr form textarea:active::-webkit-input-placeholder,
.cid-tY2My6XhSr form input:focus::-webkit-input-placeholder,
.cid-tY2My6XhSr form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form input:active::-moz-placeholder,
.cid-tY2My6XhSr form textarea:active::-moz-placeholder,
.cid-tY2My6XhSr form input:focus::-moz-placeholder,
.cid-tY2My6XhSr form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form input:active:-moz-placeholder,
.cid-tY2My6XhSr form textarea:active:-moz-placeholder,
.cid-tY2My6XhSr form input:focus:-moz-placeholder,
.cid-tY2My6XhSr form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form input:active:-ms-input-placeholder,
.cid-tY2My6XhSr form textarea:active:-ms-input-placeholder,
.cid-tY2My6XhSr form input:focus:-ms-input-placeholder,
.cid-tY2My6XhSr form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2My6XhSr form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tY2My6XhSr form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tY2My6XhSr form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-tY2My6XhSr form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tY2My6XhSr form .form-check-input:focus,
.cid-tY2My6XhSr form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-tY2My6XhSr form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-tY2uGoSuYD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2uGoSuYD img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2uGoSuYD .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2uGoSuYD .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2uGoSuYD .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2uGoSuYD .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2uGoSuYD .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2uGoSuYD .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2uGoSuYD .first {
    max-height: 250px;
  }
  .cid-tY2uGoSuYD .second {
    max-height: 323px;
  }
  .cid-tY2uGoSuYD .third {
    max-height: 408px;
  }
  .cid-tY2uGoSuYD .fourth {
    max-height: 323px;
  }
  .cid-tY2uGoSuYD .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2uGoSuYD .first {
    max-height: 200px;
  }
  .cid-tY2uGoSuYD .second {
    max-height: 270px;
  }
  .cid-tY2uGoSuYD .third {
    max-height: 350px;
  }
  .cid-tY2uGoSuYD .fourth {
    max-height: 270px;
  }
  .cid-tY2uGoSuYD .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2uGoSuYD .first {
    display: none;
  }
  .cid-tY2uGoSuYD .second {
    max-height: 323px;
  }
  .cid-tY2uGoSuYD .third {
    max-height: 408px;
  }
  .cid-tY2uGoSuYD .fourth {
    max-height: 323px;
  }
  .cid-tY2uGoSuYD .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2uGoSuYD .second {
    max-height: 250px;
  }
  .cid-tY2uGoSuYD .third {
    max-height: 340px;
  }
  .cid-tY2uGoSuYD .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2uGoSuYD .second {
    max-height: 180px;
  }
  .cid-tY2uGoSuYD .third {
    max-height: 270px;
  }
  .cid-tY2uGoSuYD .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2uGoSuYD .second {
    display: none;
  }
  .cid-tY2uGoSuYD .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2uGoSuYD .fourth {
    display: none;
  }
}
.cid-tY1N1YU6Rc {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #181817;
}
.cid-tY1N1YU6Rc .container-fluid,
.cid-tY1N1YU6Rc .container {
  position: relative;
}
.cid-tY1N1YU6Rc .container-fluid::before,
.cid-tY1N1YU6Rc .container::before {
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 140%;
  right: 0;
  bottom: 0;
  background-color: #e10000;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tY1N1YU6Rc .container-fluid::before,
  .cid-tY1N1YU6Rc .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .container-fluid::before,
  .cid-tY1N1YU6Rc .container::before {
    display: none;
  }
}
.cid-tY1N1YU6Rc .media-wrap {
  height: 300px;
}
.cid-tY1N1YU6Rc .media-wrap a img {
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tY1N1YU6Rc .media-wrap a img {
    margin: 0 auto;
  }
}
.cid-tY1N1YU6Rc .text-wrapper {
  padding: 0 148px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tY1N1YU6Rc .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .text-wrapper {
    background-color: #e10000;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-tY1N1YU6Rc .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-tY1N1YU6Rc .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #f6f6ef;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-tY1N1YU6Rc .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-tY1N1YU6Rc .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-tY1N1YU6Rc .text-wrapper .mbr-desc {
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-tY1N1YU6Rc .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .list {
    background-color: #e10000;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-tY1N1YU6Rc .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-tY1N1YU6Rc .list .item-wrap:hover {
  opacity: .7;
}
.cid-tY1N1YU6Rc .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .copyright {
    background-color: #e10000;
  }
}
.cid-tY1N1YU6Rc .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY1N1YU6Rc .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-tY1N1YU6Rc .mbr-text {
  color: #bcbfca;
}
.cid-tY1N1YU6Rc .mbr-desc {
  color: #ffffff;
}
.cid-tY1N1YU6Rc .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-tY1N1YU6Rc .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-tY2ABKBq7t {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-tY2ABKBq7t .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-tY2ABKBq7t .dropdown-menu {
  padding: 0;
}
.cid-tY2ABKBq7t .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tY2ABKBq7t .dropdown-item {
    text-align: left !important;
  }
}
.cid-tY2ABKBq7t .dropdown-item:hover {
  background-position: right !important;
}
.cid-tY2ABKBq7t .dropdown-item:hover:after {
  color: #f6f6ef;
}
.cid-tY2ABKBq7t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tY2ABKBq7t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tY2ABKBq7t .nav-link {
  position: relative;
}
.cid-tY2ABKBq7t .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-tY2ABKBq7t .dropdown-menu,
.cid-tY2ABKBq7t .navbar.opened {
  background: #181817 !important;
}
.cid-tY2ABKBq7t .nav-item:focus,
.cid-tY2ABKBq7t .nav-link:focus {
  outline: none;
}
.cid-tY2ABKBq7t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tY2ABKBq7t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tY2ABKBq7t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tY2ABKBq7t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tY2ABKBq7t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-tY2ABKBq7t .navbar.opened {
  transition: all 0.3s;
}
.cid-tY2ABKBq7t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tY2ABKBq7t .navbar .navbar-logo img {
  width: auto;
}
.cid-tY2ABKBq7t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tY2ABKBq7t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tY2ABKBq7t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tY2ABKBq7t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tY2ABKBq7t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tY2ABKBq7t .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tY2ABKBq7t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tY2ABKBq7t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tY2ABKBq7t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tY2ABKBq7t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tY2ABKBq7t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tY2ABKBq7t .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-tY2ABKBq7t .navbar {
    min-height: 70px;
  }
}
.cid-tY2ABKBq7t .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tY2ABKBq7t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-tY2ABKBq7t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tY2ABKBq7t .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tY2ABKBq7t .navbar-brand {
    min-height: 70px;
  }
}
.cid-tY2ABKBq7t .dropdown-item.active,
.cid-tY2ABKBq7t .dropdown-item:active {
  background-color: transparent;
}
.cid-tY2ABKBq7t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tY2ABKBq7t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tY2ABKBq7t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tY2ABKBq7t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tY2ABKBq7t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tY2ABKBq7t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tY2ABKBq7t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tY2ABKBq7t button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-tY2ABKBq7t button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tY2ABKBq7t button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tY2ABKBq7t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY2ABKBq7t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tY2ABKBq7t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY2ABKBq7t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY2ABKBq7t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tY2ABKBq7t nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY2ABKBq7t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tY2ABKBq7t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tY2ABKBq7t nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY2ABKBq7t .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tY2ABKBq7t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tY2ABKBq7t .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-tY2ABKBq7t .navbar {
    height: 70px;
  }
  .cid-tY2ABKBq7t .navbar.opened {
    height: auto;
  }
  .cid-tY2ABKBq7t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tY2ABKBq7t .navbar-short {
  min-height: 70px;
  background: #181817;
  background: rgba(24, 24, 23, 0);
}
@media (max-width: 575px) {
  .cid-tY2ABKBq7t .navbar-short {
    min-height: 70px;
  }
}
.cid-tY2ABKBq7t .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tY2ABKBq7t .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-tY2ABKBq7t .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-tY2ABKBq7t .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-tY2ABKBq7t .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tY2ABKBq7t .navbar-nav .nav-item .nav-link:hover,
.cid-tY2ABKBq7t .navbar-nav .nav-item .nav-link:focus,
.cid-tY2ABKBq7t .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #f6f6ef !important;
}
.cid-tY2ABKBq7t .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-tY2ABKBq7t .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #181817 !important;
}
.cid-tY2ABKBq7t .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tY2ABKBq7t .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tY2ABKBq7t button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-tY2ABKBq7t button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY2ABKBq7t button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY2ABKBq7t button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-tY2ABKBq7t button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY2ABKBq7t button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY2ABKBq7t button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-tY2ABKBq7t .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-tY2ABKBq7t .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY2ABKBq7t .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY2ABKBq7t .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-tY2ABKBq7t .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY2ABKBq7t .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY2ABKBq7t .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-tY2ABKBq7t .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-tY2ABKBq7t .offcanvas.show {
  transform: translateX(0);
}
.cid-tY2ABKBq7t .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-tY2ABKBq7t .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-tY2ABKBq7t .offcanvas {
    width: 100%;
  }
}
.cid-tY2ABKBq7t .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tY2ABKBq7t .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #181817;
  box-shadow: none;
  overflow: auto;
}
.cid-tY2ABKBq7t .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-tY2ABKBq7t .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tY2ABKBq7t .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-tY2ABKBq7t .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-tY2ABKBq7t .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-tY2ABKBq7t .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-tY2ABKBq7t .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tY2ABKBq7t .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-tY2ABKBq7t .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-tY2ABKBq7t .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-tY2ABKBq7t .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-tY2ABKBq7t .list li:hover {
  color: #f6f6ef !important;
}
.cid-tY2ABKBq7t .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-tY2ABKBq7t .list a:hover {
  color: #f6f6ef !important;
  line-height: inherit !important;
}
.cid-tY2ABKBq7t .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-tY2ABKBq7t .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tY2ABKBq7t .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-tY2ABKBq7t .second-list li:hover {
  opacity: 1;
}
.cid-tY2ABKBq7t .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-tY2ABKR6nf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
}
.cid-tY2ABKR6nf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY2ABKR6nf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/96ace098-5800-48f8-b61c-b17af2365162-1-105-c-1024x768.jpg");
}
.cid-tY2ABKR6nf .text-wrapper {
  position: relative;
  z-index: 4;
  padding-top: 5rem;
}
@media (max-width: 991px) {
  .cid-tY2ABKR6nf .text-wrapper {
    padding-top: 0;
    padding-bottom: 5rem;
  }
}
.cid-tY2ABKR6nf .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-tY2ABKR6nf .mbr-section-title.display-1 {
    font-size: 13rem !important;
  }
}
.cid-tY2ABKR6nf .mbr-text {
  color: #f6f6ef;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-right: auto;
  opacity: 0.8;
}
.cid-tY2ABKR6nf .mbr-section-btn {
  margin-top: 1rem;
}
.cid-tY2ABKR6nf .img-bg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(40%, -50%);
  background: #e10000;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-tY2ABKR6nf .img-bg {
    top: auto;
    bottom: 0;
    right: 0;
    width: 70vw;
    transform: translate(30%, 40%);
  }
}
.cid-tY2ABKR6nf .mbr-section-title,
.cid-tY2ABKR6nf .mbr-section-btn {
  color: #f6f6ef;
}
.cid-tY2MD0juOx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2MD0juOx .mbr-overlay {
  background-color: #2c2c2c;
  opacity: 0.4;
}
.cid-tY2MD0juOx .mbr-section-head {
  margin-bottom: 3rem;
}
.cid-tY2MD0juOx .mbr-section-title {
  color: #e10000;
}
.cid-tY2MD0juOx .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tY2MD0juOx .mbr-section-subtitle {
  color: #f6f6ef;
  margin-top: 1rem;
}
.cid-tY2MD0juOx .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tY2MD0juOx form {
  width: 100%;
}
.cid-tY2MD0juOx form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tY2MD0juOx form p {
  color: #f6f6ef;
}
.cid-tY2MD0juOx form .mbr-section-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
.cid-tY2MD0juOx form .mbr-section-btn .btn {
  min-width: 150px;
  min-height: 40px;
  padding: 6px 12px;
}
.cid-tY2MD0juOx form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.cid-tY2MD0juOx form .form-control {
  height: 40px;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFF;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #181817;
  font-weight: 400;
}
.cid-tY2MD0juOx form .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form select {
  color: #bbbbbb !important;
}
.cid-tY2MD0juOx form textarea {
  height: 200px !important;
  resize: none;
}
.cid-tY2MD0juOx form textarea::-webkit-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MD0juOx form textarea::-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MD0juOx form textarea:-moz-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MD0juOx form textarea:-ms-input-placeholder {
  color: #bbbbbb !important;
}
.cid-tY2MD0juOx form input,
.cid-tY2MD0juOx form textarea {
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
.cid-tY2MD0juOx form input:active,
.cid-tY2MD0juOx form textarea:active,
.cid-tY2MD0juOx form input:focus,
.cid-tY2MD0juOx form textarea:focus {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  outline: none !important;
  outline-offset: -1px;
  box-shadow: 0 0 5px #cacaca !important;
}
.cid-tY2MD0juOx form input:active::-webkit-input-placeholder,
.cid-tY2MD0juOx form textarea:active::-webkit-input-placeholder,
.cid-tY2MD0juOx form input:focus::-webkit-input-placeholder,
.cid-tY2MD0juOx form textarea:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form input:active::-moz-placeholder,
.cid-tY2MD0juOx form textarea:active::-moz-placeholder,
.cid-tY2MD0juOx form input:focus::-moz-placeholder,
.cid-tY2MD0juOx form textarea:focus::-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form input:active:-moz-placeholder,
.cid-tY2MD0juOx form textarea:active:-moz-placeholder,
.cid-tY2MD0juOx form input:focus:-moz-placeholder,
.cid-tY2MD0juOx form textarea:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form input:active:-ms-input-placeholder,
.cid-tY2MD0juOx form textarea:active:-ms-input-placeholder,
.cid-tY2MD0juOx form input:focus:-ms-input-placeholder,
.cid-tY2MD0juOx form textarea:focus:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-tY2MD0juOx form .row {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.cid-tY2MD0juOx form .row [class*=col] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-tY2MD0juOx form label {
  width: 100%;
  color: #f6f6ef;
  margin-bottom: 0.4rem;
}
.cid-tY2MD0juOx form .form-check-input {
  border-color: #bbbbbb !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tY2MD0juOx form .form-check-input:focus,
.cid-tY2MD0juOx form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #181817 !important;
}
.cid-tY2MD0juOx form .form-check-input:checked {
  border-color: #181817 !important;
  background-color: #FACB1D !important;
}
.cid-tY2MSV5Ugc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2MSV5Ugc img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2MSV5Ugc .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2MSV5Ugc .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2MSV5Ugc .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2MSV5Ugc .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2MSV5Ugc .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2MSV5Ugc .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2MSV5Ugc .first {
    max-height: 250px;
  }
  .cid-tY2MSV5Ugc .second {
    max-height: 323px;
  }
  .cid-tY2MSV5Ugc .third {
    max-height: 408px;
  }
  .cid-tY2MSV5Ugc .fourth {
    max-height: 323px;
  }
  .cid-tY2MSV5Ugc .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2MSV5Ugc .first {
    max-height: 200px;
  }
  .cid-tY2MSV5Ugc .second {
    max-height: 270px;
  }
  .cid-tY2MSV5Ugc .third {
    max-height: 350px;
  }
  .cid-tY2MSV5Ugc .fourth {
    max-height: 270px;
  }
  .cid-tY2MSV5Ugc .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2MSV5Ugc .first {
    display: none;
  }
  .cid-tY2MSV5Ugc .second {
    max-height: 323px;
  }
  .cid-tY2MSV5Ugc .third {
    max-height: 408px;
  }
  .cid-tY2MSV5Ugc .fourth {
    max-height: 323px;
  }
  .cid-tY2MSV5Ugc .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2MSV5Ugc .second {
    max-height: 250px;
  }
  .cid-tY2MSV5Ugc .third {
    max-height: 340px;
  }
  .cid-tY2MSV5Ugc .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2MSV5Ugc .second {
    max-height: 180px;
  }
  .cid-tY2MSV5Ugc .third {
    max-height: 270px;
  }
  .cid-tY2MSV5Ugc .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2MSV5Ugc .second {
    display: none;
  }
  .cid-tY2MSV5Ugc .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2MSV5Ugc .fourth {
    display: none;
  }
}
.cid-tY2ABLboJy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2ABLboJy img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2ABLboJy .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2ABLboJy .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2ABLboJy .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2ABLboJy .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2ABLboJy .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2ABLboJy .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2ABLboJy .first {
    max-height: 250px;
  }
  .cid-tY2ABLboJy .second {
    max-height: 323px;
  }
  .cid-tY2ABLboJy .third {
    max-height: 408px;
  }
  .cid-tY2ABLboJy .fourth {
    max-height: 323px;
  }
  .cid-tY2ABLboJy .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2ABLboJy .first {
    max-height: 200px;
  }
  .cid-tY2ABLboJy .second {
    max-height: 270px;
  }
  .cid-tY2ABLboJy .third {
    max-height: 350px;
  }
  .cid-tY2ABLboJy .fourth {
    max-height: 270px;
  }
  .cid-tY2ABLboJy .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2ABLboJy .first {
    display: none;
  }
  .cid-tY2ABLboJy .second {
    max-height: 323px;
  }
  .cid-tY2ABLboJy .third {
    max-height: 408px;
  }
  .cid-tY2ABLboJy .fourth {
    max-height: 323px;
  }
  .cid-tY2ABLboJy .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2ABLboJy .second {
    max-height: 250px;
  }
  .cid-tY2ABLboJy .third {
    max-height: 340px;
  }
  .cid-tY2ABLboJy .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2ABLboJy .second {
    max-height: 180px;
  }
  .cid-tY2ABLboJy .third {
    max-height: 270px;
  }
  .cid-tY2ABLboJy .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2ABLboJy .second {
    display: none;
  }
  .cid-tY2ABLboJy .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2ABLboJy .fourth {
    display: none;
  }
}
.cid-tY2MRrUZyG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2MRrUZyG img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2MRrUZyG .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2MRrUZyG .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2MRrUZyG .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2MRrUZyG .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2MRrUZyG .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2MRrUZyG .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2MRrUZyG .first {
    max-height: 250px;
  }
  .cid-tY2MRrUZyG .second {
    max-height: 323px;
  }
  .cid-tY2MRrUZyG .third {
    max-height: 408px;
  }
  .cid-tY2MRrUZyG .fourth {
    max-height: 323px;
  }
  .cid-tY2MRrUZyG .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2MRrUZyG .first {
    max-height: 200px;
  }
  .cid-tY2MRrUZyG .second {
    max-height: 270px;
  }
  .cid-tY2MRrUZyG .third {
    max-height: 350px;
  }
  .cid-tY2MRrUZyG .fourth {
    max-height: 270px;
  }
  .cid-tY2MRrUZyG .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2MRrUZyG .first {
    display: none;
  }
  .cid-tY2MRrUZyG .second {
    max-height: 323px;
  }
  .cid-tY2MRrUZyG .third {
    max-height: 408px;
  }
  .cid-tY2MRrUZyG .fourth {
    max-height: 323px;
  }
  .cid-tY2MRrUZyG .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2MRrUZyG .second {
    max-height: 250px;
  }
  .cid-tY2MRrUZyG .third {
    max-height: 340px;
  }
  .cid-tY2MRrUZyG .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2MRrUZyG .second {
    max-height: 180px;
  }
  .cid-tY2MRrUZyG .third {
    max-height: 270px;
  }
  .cid-tY2MRrUZyG .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2MRrUZyG .second {
    display: none;
  }
  .cid-tY2MRrUZyG .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2MRrUZyG .fourth {
    display: none;
  }
}
.cid-tY2ABLJiDI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2ABLJiDI img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2ABLJiDI .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2ABLJiDI .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2ABLJiDI .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2ABLJiDI .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2ABLJiDI .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2ABLJiDI .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2ABLJiDI .first {
    max-height: 250px;
  }
  .cid-tY2ABLJiDI .second {
    max-height: 323px;
  }
  .cid-tY2ABLJiDI .third {
    max-height: 408px;
  }
  .cid-tY2ABLJiDI .fourth {
    max-height: 323px;
  }
  .cid-tY2ABLJiDI .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2ABLJiDI .first {
    max-height: 200px;
  }
  .cid-tY2ABLJiDI .second {
    max-height: 270px;
  }
  .cid-tY2ABLJiDI .third {
    max-height: 350px;
  }
  .cid-tY2ABLJiDI .fourth {
    max-height: 270px;
  }
  .cid-tY2ABLJiDI .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2ABLJiDI .first {
    display: none;
  }
  .cid-tY2ABLJiDI .second {
    max-height: 323px;
  }
  .cid-tY2ABLJiDI .third {
    max-height: 408px;
  }
  .cid-tY2ABLJiDI .fourth {
    max-height: 323px;
  }
  .cid-tY2ABLJiDI .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2ABLJiDI .second {
    max-height: 250px;
  }
  .cid-tY2ABLJiDI .third {
    max-height: 340px;
  }
  .cid-tY2ABLJiDI .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2ABLJiDI .second {
    max-height: 180px;
  }
  .cid-tY2ABLJiDI .third {
    max-height: 270px;
  }
  .cid-tY2ABLJiDI .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2ABLJiDI .second {
    display: none;
  }
  .cid-tY2ABLJiDI .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2ABLJiDI .fourth {
    display: none;
  }
}
.cid-tY2ABLY1la {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #181817;
}
.cid-tY2ABLY1la .container-fluid,
.cid-tY2ABLY1la .container {
  position: relative;
}
.cid-tY2ABLY1la .container-fluid::before,
.cid-tY2ABLY1la .container::before {
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 140%;
  right: 0;
  bottom: 0;
  background-color: #e10000;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tY2ABLY1la .container-fluid::before,
  .cid-tY2ABLY1la .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .container-fluid::before,
  .cid-tY2ABLY1la .container::before {
    display: none;
  }
}
.cid-tY2ABLY1la .media-wrap {
  height: 300px;
}
.cid-tY2ABLY1la .media-wrap a img {
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tY2ABLY1la .media-wrap a img {
    margin: 0 auto;
  }
}
.cid-tY2ABLY1la .text-wrapper {
  padding: 0 148px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tY2ABLY1la .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .text-wrapper {
    background-color: #e10000;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-tY2ABLY1la .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-tY2ABLY1la .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #f6f6ef;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-tY2ABLY1la .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-tY2ABLY1la .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-tY2ABLY1la .text-wrapper .mbr-desc {
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-tY2ABLY1la .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .list {
    background-color: #e10000;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-tY2ABLY1la .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-tY2ABLY1la .list .item-wrap:hover {
  opacity: .7;
}
.cid-tY2ABLY1la .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .copyright {
    background-color: #e10000;
  }
}
.cid-tY2ABLY1la .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY2ABLY1la .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-tY2ABLY1la .mbr-text {
  color: #bcbfca;
}
.cid-tY2ABLY1la .mbr-desc {
  color: #ffffff;
}
.cid-tY2ABLY1la .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-tY2ABLY1la .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-tY2BkuuUIt {
  z-index: 1000;
  width: 100%;
  height: 0 !important;
}
.cid-tY2BkuuUIt .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-tY2BkuuUIt .dropdown-menu {
  padding: 0;
}
.cid-tY2BkuuUIt .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tY2BkuuUIt .dropdown-item {
    text-align: left !important;
  }
}
.cid-tY2BkuuUIt .dropdown-item:hover {
  background-position: right !important;
}
.cid-tY2BkuuUIt .dropdown-item:hover:after {
  color: #f6f6ef;
}
.cid-tY2BkuuUIt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tY2BkuuUIt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tY2BkuuUIt .nav-link {
  position: relative;
}
.cid-tY2BkuuUIt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
.cid-tY2BkuuUIt .dropdown-menu,
.cid-tY2BkuuUIt .navbar.opened {
  background: #181817 !important;
}
.cid-tY2BkuuUIt .nav-item:focus,
.cid-tY2BkuuUIt .nav-link:focus {
  outline: none;
}
.cid-tY2BkuuUIt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tY2BkuuUIt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tY2BkuuUIt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tY2BkuuUIt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tY2BkuuUIt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
  position: absolute ;
}
.cid-tY2BkuuUIt .navbar.opened {
  transition: all 0.3s;
}
.cid-tY2BkuuUIt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tY2BkuuUIt .navbar .navbar-logo img {
  width: auto;
}
.cid-tY2BkuuUIt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tY2BkuuUIt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tY2BkuuUIt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tY2BkuuUIt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tY2BkuuUIt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tY2BkuuUIt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tY2BkuuUIt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tY2BkuuUIt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tY2BkuuUIt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tY2BkuuUIt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tY2BkuuUIt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tY2BkuuUIt .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-tY2BkuuUIt .navbar {
    min-height: 70px;
  }
}
.cid-tY2BkuuUIt .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tY2BkuuUIt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding: 10px 15px 10px 0 !important;
}
.cid-tY2BkuuUIt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tY2BkuuUIt .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tY2BkuuUIt .navbar-brand {
    min-height: 70px;
  }
}
.cid-tY2BkuuUIt .dropdown-item.active,
.cid-tY2BkuuUIt .dropdown-item:active {
  background-color: transparent;
}
.cid-tY2BkuuUIt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tY2BkuuUIt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tY2BkuuUIt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tY2BkuuUIt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tY2BkuuUIt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tY2BkuuUIt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tY2BkuuUIt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tY2BkuuUIt button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-tY2BkuuUIt button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tY2BkuuUIt button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tY2BkuuUIt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY2BkuuUIt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tY2BkuuUIt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY2BkuuUIt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tY2BkuuUIt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tY2BkuuUIt nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY2BkuuUIt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tY2BkuuUIt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tY2BkuuUIt nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY2BkuuUIt .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-tY2BkuuUIt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tY2BkuuUIt .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-tY2BkuuUIt .navbar {
    height: 70px;
  }
  .cid-tY2BkuuUIt .navbar.opened {
    height: auto;
  }
  .cid-tY2BkuuUIt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tY2BkuuUIt .navbar-short {
  min-height: 70px;
  background: #181817;
  background: rgba(24, 24, 23, 0);
}
@media (max-width: 575px) {
  .cid-tY2BkuuUIt .navbar-short {
    min-height: 70px;
  }
}
.cid-tY2BkuuUIt .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tY2BkuuUIt .navbar-nav {
  display: flex !important;
  padding-bottom: 10px;
}
.cid-tY2BkuuUIt .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
  font-weight: 900;
  transition: 0.3s all;
}
.cid-tY2BkuuUIt .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-weight: inherit !important;
  justify-content: flex-start;
}
.cid-tY2BkuuUIt .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tY2BkuuUIt .navbar-nav .nav-item .nav-link:hover,
.cid-tY2BkuuUIt .navbar-nav .nav-item .nav-link:focus,
.cid-tY2BkuuUIt .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #f6f6ef !important;
}
.cid-tY2BkuuUIt .navbar-nav .nav-item:not(:first-child) {
  margin-top: 1.5rem !important;
}
.cid-tY2BkuuUIt .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #181817 !important;
}
.cid-tY2BkuuUIt .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tY2BkuuUIt .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tY2BkuuUIt button.btn_offcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  padding: 0;
}
.cid-tY2BkuuUIt button.btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY2BkuuUIt button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY2BkuuUIt button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 9px;
  transition: all 0.2s;
}
.cid-tY2BkuuUIt button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY2BkuuUIt button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 17px;
  width: 27px;
  height: 3px;
  transition: all 0.15s;
}
.cid-tY2BkuuUIt button.btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 26px;
  transition: all 0.2s;
}
.cid-tY2BkuuUIt .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
  opacity: 1 !important;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 20;
  align-self: center;
  padding: 0;
}
.cid-tY2BkuuUIt .btn-close .hamburger-offcanvas {
  position: relative;
  width: 37px;
  height: 37px;
  transition: all 0.3s;
}
.cid-tY2BkuuUIt .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 0;
  width: 37px;
  height: 2px;
  background-color: #f6f6ef;
}
.cid-tY2BkuuUIt .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-tY2BkuuUIt .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY2BkuuUIt .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-tY2BkuuUIt .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-tY2BkuuUIt .offcanvas-end {
  right: 0 !important;
  transform: translateX(100%);
}
.cid-tY2BkuuUIt .offcanvas.show {
  transform: translateX(0);
}
.cid-tY2BkuuUIt .offcanvas {
  width: 36%;
  padding: 10px;
  border-left: none !important;
  background-color: transparent !important;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .cid-tY2BkuuUIt .offcanvas {
    width: 512px;
  }
}
@media (max-width: 767px) {
  .cid-tY2BkuuUIt .offcanvas {
    width: 100%;
  }
}
.cid-tY2BkuuUIt .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tY2BkuuUIt .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #181817;
  box-shadow: none;
  overflow: auto;
}
.cid-tY2BkuuUIt .offcanvas-body .offcanvas_head {
  width: 100%;
  padding-bottom: 20px;
}
.cid-tY2BkuuUIt .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tY2BkuuUIt .modal-backdrop.show {
  opacity: 0 !important;
}
.cid-tY2BkuuUIt .offcanvas_link {
  width: 100%;
  padding: 0;
  margin-top: 0;
}
.cid-tY2BkuuUIt .offcanvas_foot {
  width: 100%;
  margin-top: auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding-top: 10px;
}
.cid-tY2BkuuUIt .offcanvas_btn {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.cid-tY2BkuuUIt .offcanvas_btn .mbr-section-btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tY2BkuuUIt .offcanvas_btn .mbr-section-btn .btn {
    width: auto !important;
  }
}
.cid-tY2BkuuUIt .second-links {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}
.cid-tY2BkuuUIt .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #f6f6ef;
  transition: 0.3s all;
}
.cid-tY2BkuuUIt .list li {
  width: 100%;
  color: inherit !important;
  transition: 0.3s all;
}
.cid-tY2BkuuUIt .list li:hover {
  color: #f6f6ef !important;
}
.cid-tY2BkuuUIt .list a {
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  transition: 0.3s all;
}
.cid-tY2BkuuUIt .list a:hover {
  color: #f6f6ef !important;
  line-height: inherit !important;
}
.cid-tY2BkuuUIt .second-list {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0.5rem;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 991px) {
  .cid-tY2BkuuUIt .second-list {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tY2BkuuUIt .second-list li {
  line-height: 1.5;
  opacity: 0.8;
}
.cid-tY2BkuuUIt .second-list li:hover {
  opacity: 1;
}
.cid-tY2BkuuUIt .footer-text {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #f6f6ef;
  margin-bottom: 0;
  opacity: 0.8;
  align-self: end;
}
.cid-tY2BkuMIro {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
}
.cid-tY2BkuMIro .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY2BkuMIro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/96ace098-5800-48f8-b61c-b17af2365162-1-105-c-1024x768.jpg");
}
.cid-tY2BkuMIro .text-wrapper {
  position: relative;
  z-index: 4;
  padding-top: 5rem;
}
@media (max-width: 991px) {
  .cid-tY2BkuMIro .text-wrapper {
    padding-top: 0;
    padding-bottom: 5rem;
  }
}
.cid-tY2BkuMIro .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-tY2BkuMIro .mbr-section-title.display-1 {
    font-size: 13rem !important;
  }
}
.cid-tY2BkuMIro .mbr-text {
  color: #f6f6ef;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-right: auto;
  opacity: 0.8;
}
.cid-tY2BkuMIro .mbr-section-btn {
  margin-top: 1rem;
}
.cid-tY2BkuMIro .img-bg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50vw;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(40%, -50%);
  background: #e10000;
  z-index: 2;
}
@media (max-width: 991px) {
  .cid-tY2BkuMIro .img-bg {
    top: auto;
    bottom: 0;
    right: 0;
    width: 70vw;
    transform: translate(30%, 40%);
  }
}
.cid-tY2BkuMIro .mbr-section-title,
.cid-tY2BkuMIro .mbr-section-btn {
  color: #f6f6ef;
}
.cid-tY2N4wZE6H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2N4wZE6H img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2N4wZE6H .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2N4wZE6H .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2N4wZE6H .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2N4wZE6H .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2N4wZE6H .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2N4wZE6H .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2N4wZE6H .first {
    max-height: 250px;
  }
  .cid-tY2N4wZE6H .second {
    max-height: 323px;
  }
  .cid-tY2N4wZE6H .third {
    max-height: 408px;
  }
  .cid-tY2N4wZE6H .fourth {
    max-height: 323px;
  }
  .cid-tY2N4wZE6H .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2N4wZE6H .first {
    max-height: 200px;
  }
  .cid-tY2N4wZE6H .second {
    max-height: 270px;
  }
  .cid-tY2N4wZE6H .third {
    max-height: 350px;
  }
  .cid-tY2N4wZE6H .fourth {
    max-height: 270px;
  }
  .cid-tY2N4wZE6H .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2N4wZE6H .first {
    display: none;
  }
  .cid-tY2N4wZE6H .second {
    max-height: 323px;
  }
  .cid-tY2N4wZE6H .third {
    max-height: 408px;
  }
  .cid-tY2N4wZE6H .fourth {
    max-height: 323px;
  }
  .cid-tY2N4wZE6H .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2N4wZE6H .second {
    max-height: 250px;
  }
  .cid-tY2N4wZE6H .third {
    max-height: 340px;
  }
  .cid-tY2N4wZE6H .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2N4wZE6H .second {
    max-height: 180px;
  }
  .cid-tY2N4wZE6H .third {
    max-height: 270px;
  }
  .cid-tY2N4wZE6H .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2N4wZE6H .second {
    display: none;
  }
  .cid-tY2N4wZE6H .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2N4wZE6H .fourth {
    display: none;
  }
}
.cid-tY2LvtfHDn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #181817;
}
.cid-tY2LvtfHDn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY2LvtfHDn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY2LvtfHDn .mbr-section-title {
  color: #181817;
  margin-bottom: 1rem;
}
.cid-tY2LvtfHDn .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .cid-tY2LvtfHDn .mbr-section-btn .btn {
    padding: 42px 56px;
  }
}
@media (max-width: 767px) {
  .cid-tY2LvtfHDn .mbr-section-btn .btn {
    font-size: 40px !important;
  }
  .cid-tY2LvtfHDn .mbr-section-btn .btn .mbr-iconfont {
    font-size: 40px!important;
  }
}
@media (max-width: 575px) {
  .cid-tY2LvtfHDn .mbr-section-btn .btn {
    font-size: 24px !important;
  }
  .cid-tY2LvtfHDn .mbr-section-btn .btn .mbr-iconfont {
    font-size: 24px!important;
  }
}
.cid-tY2LvtfHDn .mbr-section-btn .btn-black {
  color: #f6f6ef !important;
}
.cid-tY2LvtfHDn .mbr-section-btn .btn-black:hover {
  background-color: #f6f6ef !important;
  border-color: #f6f6ef !important;
  color: #181817 !important;
}
.cid-tY2LvtfHDn .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
}
.cid-tY2LvtfHDn .mbr-text a {
  text-decoration: underline !important;
}
.cid-tY2LvtfHDn .mbr-text a:hover {
  color: inherit !important;
}
.cid-tY2LvtfHDn .mbr-section-title,
.cid-tY2LvtfHDn .mbr-section-btn {
  color: #e10000;
}
.cid-tY2Bkv6EQP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2Bkv6EQP img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2Bkv6EQP .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2Bkv6EQP .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2Bkv6EQP .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2Bkv6EQP .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2Bkv6EQP .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2Bkv6EQP .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2Bkv6EQP .first {
    max-height: 250px;
  }
  .cid-tY2Bkv6EQP .second {
    max-height: 323px;
  }
  .cid-tY2Bkv6EQP .third {
    max-height: 408px;
  }
  .cid-tY2Bkv6EQP .fourth {
    max-height: 323px;
  }
  .cid-tY2Bkv6EQP .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2Bkv6EQP .first {
    max-height: 200px;
  }
  .cid-tY2Bkv6EQP .second {
    max-height: 270px;
  }
  .cid-tY2Bkv6EQP .third {
    max-height: 350px;
  }
  .cid-tY2Bkv6EQP .fourth {
    max-height: 270px;
  }
  .cid-tY2Bkv6EQP .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2Bkv6EQP .first {
    display: none;
  }
  .cid-tY2Bkv6EQP .second {
    max-height: 323px;
  }
  .cid-tY2Bkv6EQP .third {
    max-height: 408px;
  }
  .cid-tY2Bkv6EQP .fourth {
    max-height: 323px;
  }
  .cid-tY2Bkv6EQP .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2Bkv6EQP .second {
    max-height: 250px;
  }
  .cid-tY2Bkv6EQP .third {
    max-height: 340px;
  }
  .cid-tY2Bkv6EQP .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2Bkv6EQP .second {
    max-height: 180px;
  }
  .cid-tY2Bkv6EQP .third {
    max-height: 270px;
  }
  .cid-tY2Bkv6EQP .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2Bkv6EQP .second {
    display: none;
  }
  .cid-tY2Bkv6EQP .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2Bkv6EQP .fourth {
    display: none;
  }
}
.cid-tY2LCdmQsV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2LCdmQsV img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2LCdmQsV .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2LCdmQsV .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2LCdmQsV .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2LCdmQsV .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2LCdmQsV .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2LCdmQsV .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2LCdmQsV .first {
    max-height: 250px;
  }
  .cid-tY2LCdmQsV .second {
    max-height: 323px;
  }
  .cid-tY2LCdmQsV .third {
    max-height: 408px;
  }
  .cid-tY2LCdmQsV .fourth {
    max-height: 323px;
  }
  .cid-tY2LCdmQsV .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2LCdmQsV .first {
    max-height: 200px;
  }
  .cid-tY2LCdmQsV .second {
    max-height: 270px;
  }
  .cid-tY2LCdmQsV .third {
    max-height: 350px;
  }
  .cid-tY2LCdmQsV .fourth {
    max-height: 270px;
  }
  .cid-tY2LCdmQsV .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2LCdmQsV .first {
    display: none;
  }
  .cid-tY2LCdmQsV .second {
    max-height: 323px;
  }
  .cid-tY2LCdmQsV .third {
    max-height: 408px;
  }
  .cid-tY2LCdmQsV .fourth {
    max-height: 323px;
  }
  .cid-tY2LCdmQsV .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2LCdmQsV .second {
    max-height: 250px;
  }
  .cid-tY2LCdmQsV .third {
    max-height: 340px;
  }
  .cid-tY2LCdmQsV .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2LCdmQsV .second {
    max-height: 180px;
  }
  .cid-tY2LCdmQsV .third {
    max-height: 270px;
  }
  .cid-tY2LCdmQsV .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2LCdmQsV .second {
    display: none;
  }
  .cid-tY2LCdmQsV .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2LCdmQsV .fourth {
    display: none;
  }
}
.cid-tY2BkvHhSd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181817;
}
.cid-tY2BkvHhSd img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
}
.cid-tY2BkvHhSd .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tY2BkvHhSd .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tY2BkvHhSd .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2BkvHhSd .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tY2BkvHhSd .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tY2BkvHhSd .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tY2BkvHhSd .first {
    max-height: 250px;
  }
  .cid-tY2BkvHhSd .second {
    max-height: 323px;
  }
  .cid-tY2BkvHhSd .third {
    max-height: 408px;
  }
  .cid-tY2BkvHhSd .fourth {
    max-height: 323px;
  }
  .cid-tY2BkvHhSd .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tY2BkvHhSd .first {
    max-height: 200px;
  }
  .cid-tY2BkvHhSd .second {
    max-height: 270px;
  }
  .cid-tY2BkvHhSd .third {
    max-height: 350px;
  }
  .cid-tY2BkvHhSd .fourth {
    max-height: 270px;
  }
  .cid-tY2BkvHhSd .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tY2BkvHhSd .first {
    display: none;
  }
  .cid-tY2BkvHhSd .second {
    max-height: 323px;
  }
  .cid-tY2BkvHhSd .third {
    max-height: 408px;
  }
  .cid-tY2BkvHhSd .fourth {
    max-height: 323px;
  }
  .cid-tY2BkvHhSd .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tY2BkvHhSd .second {
    max-height: 250px;
  }
  .cid-tY2BkvHhSd .third {
    max-height: 340px;
  }
  .cid-tY2BkvHhSd .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tY2BkvHhSd .second {
    max-height: 180px;
  }
  .cid-tY2BkvHhSd .third {
    max-height: 270px;
  }
  .cid-tY2BkvHhSd .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tY2BkvHhSd .second {
    display: none;
  }
  .cid-tY2BkvHhSd .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tY2BkvHhSd .fourth {
    display: none;
  }
}
.cid-tY2BkvWaOg {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #181817;
}
.cid-tY2BkvWaOg .container-fluid,
.cid-tY2BkvWaOg .container {
  position: relative;
}
.cid-tY2BkvWaOg .container-fluid::before,
.cid-tY2BkvWaOg .container::before {
  content: '';
  display: block;
  position: absolute;
  width: 55%;
  height: 140%;
  right: 0;
  bottom: 0;
  background-color: #e10000;
  border-radius: 500px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tY2BkvWaOg .container-fluid::before,
  .cid-tY2BkvWaOg .container::before {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .container-fluid::before,
  .cid-tY2BkvWaOg .container::before {
    display: none;
  }
}
.cid-tY2BkvWaOg .media-wrap {
  height: 300px;
}
.cid-tY2BkvWaOg .media-wrap a img {
  max-width: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tY2BkvWaOg .media-wrap a img {
    margin: 0 auto;
  }
}
.cid-tY2BkvWaOg .text-wrapper {
  padding: 0 148px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tY2BkvWaOg .text-wrapper {
    padding: 0 58px;
  }
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .text-wrapper {
    background-color: #e10000;
    border-radius: 150px 0 0 0;
    padding: 80px 0 0 0;
  }
}
.cid-tY2BkvWaOg .text-wrapper .icon-wrapper {
  width: 100%;
}
.cid-tY2BkvWaOg .text-wrapper .icon-wrapper span {
  font-size: 85px;
  color: #f6f6ef;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cid-tY2BkvWaOg .text-wrapper .icon-wrapper span {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .text-wrapper .icon-wrapper {
    text-align: center;
  }
}
.cid-tY2BkvWaOg .text-wrapper .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .text-wrapper .mbr-text {
    text-align: center;
  }
}
.cid-tY2BkvWaOg .text-wrapper .mbr-desc {
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .text-wrapper .mbr-desc {
    text-align: center;
  }
}
.cid-tY2BkvWaOg .list {
  max-width: 840px;
  margin: 40px auto 40px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .list {
    background-color: #e10000;
    padding: 40px 0 40px;
    margin: 0;
  }
}
.cid-tY2BkvWaOg .list .item-wrap {
  margin: 0 10px 10px;
  transition: all .3s ease;
}
.cid-tY2BkvWaOg .list .item-wrap:hover {
  opacity: .7;
}
.cid-tY2BkvWaOg .copyright {
  z-index: 1;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .copyright {
    background-color: #e10000;
  }
}
.cid-tY2BkvWaOg .copyright .mbr-copy {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tY2BkvWaOg .copyright .mbr-copy {
    text-align: center;
  }
}
.cid-tY2BkvWaOg .mbr-text {
  color: #bcbfca;
}
.cid-tY2BkvWaOg .mbr-desc {
  color: #ffffff;
}
.cid-tY2BkvWaOg .mbr-link {
  color: #ffffff;
  text-align: center;
}
.cid-tY2BkvWaOg .mbr-copy {
  color: #ffffff;
  text-align: right;
}
