body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.8125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((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.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1rem + (1 - 1) * ((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: #c1272e !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #fcff1e !important;
}
.btn-primary .btn-overlay {
  background-color: #783d40 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c1272e !important;
  border-color: #c1272e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #783d40 !important;
  border-color: #783d40 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #c0c228 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
  color: #1e1e00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #1e1e00 !important;
  background-color: #c0c228 !important;
  border-color: #c0c228 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 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 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c1272e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #79181d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c1272e !important;
  border-color: #c1272e !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fcff1e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c4c600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #1e1e00 !important;
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #c1272e !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #fcff1e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6c161a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b5b700 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #c1272e;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #fcff1e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c1272e;
  border-color: #c1272e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c1272e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e68286;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.5rem;
}
.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: #c1272e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.5rem;
}
blockquote {
  border-color: #c1272e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c1272e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c1272e;
}
.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: #c1272e;
  border-bottom-color: #c1272e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #c1272e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #bcd948 !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='%23c1272e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-t2Yqo54WUQ {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t2Yqo54WUQ .row {
  justify-content: center;
  align-items: flex-start;
}
.cid-t2Yqo54WUQ .mbr-section-title {
  color: #f3f4ef;
}
.cid-t2Yqo54WUQ .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-t2Yqo54WUQ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  text-align: center;
}
.cid-t2Yqo54WUQ .mbr-section-btn {
  margin-top: 50px;
  width: 100%;
}
.cid-t2Yqo54WUQ .mbr-section-title,
.cid-t2Yqo54WUQ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t2YqhWHWmn {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-t2YqhWHWmn nav.navbar {
  position: absolute !important;
}
.cid-t2YqhWHWmn .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-t2YqhWHWmn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-t2YqhWHWmn .nav-link {
  position: relative;
}
.cid-t2YqhWHWmn .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-t2YqhWHWmn .container {
    flex-wrap: nowrap;
  }
}
.cid-t2YqhWHWmn .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2YqhWHWmn .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #000000 !important;
}
.cid-t2YqhWHWmn .nav-item:focus,
.cid-t2YqhWHWmn .nav-link:focus {
  outline: none;
}
.cid-t2YqhWHWmn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2YqhWHWmn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2YqhWHWmn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2YqhWHWmn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YqhWHWmn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2YqhWHWmn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2YqhWHWmn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-t2YqhWHWmn .navbar.opened {
  transition: all 0.3s;
}
.cid-t2YqhWHWmn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2YqhWHWmn .navbar .navbar-logo img {
  width: auto;
}
.cid-t2YqhWHWmn .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t2YqhWHWmn .navbar.collapsed {
  justify-content: center;
}
.cid-t2YqhWHWmn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2YqhWHWmn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2YqhWHWmn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t2YqhWHWmn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2YqhWHWmn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2YqhWHWmn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t2YqhWHWmn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2YqhWHWmn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2YqhWHWmn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2YqhWHWmn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2YqhWHWmn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2YqhWHWmn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2YqhWHWmn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2YqhWHWmn .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-t2YqhWHWmn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2YqhWHWmn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2YqhWHWmn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2YqhWHWmn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2YqhWHWmn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2YqhWHWmn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2YqhWHWmn .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2YqhWHWmn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2YqhWHWmn .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t2YqhWHWmn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2YqhWHWmn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2YqhWHWmn .dropdown-item.active,
.cid-t2YqhWHWmn .dropdown-item:active {
  background-color: transparent;
}
.cid-t2YqhWHWmn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2YqhWHWmn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2YqhWHWmn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2YqhWHWmn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t2YqhWHWmn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2YqhWHWmn .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-t2YqhWHWmn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2YqhWHWmn .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-t2YqhWHWmn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2YqhWHWmn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3f4ef;
}
.cid-t2YqhWHWmn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2YqhWHWmn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YqhWHWmn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YqhWHWmn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2YqhWHWmn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YqhWHWmn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2YqhWHWmn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2YqhWHWmn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YqhWHWmn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t2YqhWHWmn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2YqhWHWmn .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-t2YqhWHWmn .navbar {
    height: 70px;
  }
  .cid-t2YqhWHWmn .navbar.opened {
    height: auto;
  }
  .cid-t2YqhWHWmn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2YqhWHWmn .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-t2YqhWHWmn .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-t2YqhWHWmn .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YqhWHWmn .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-t2YqhWHWmn .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YqhWHWmn .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-t2YqhWHWmn .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-t2YqhWHWmn .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-t2YqhWHWmn .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YqhWHWmn .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-t2YqhWHWmn .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-t2YqhWHWmn .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-t2YqhWHWmn .container {
    position: relative;
  }
  .cid-t2YqhWHWmn .navbar-brand {
    margin-right: auto;
  }
  .cid-t2YqhWHWmn .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #000000;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-t2YqhWHWmn .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-t2YqhWHWmn .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-t2YqhWHWmn .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-t2YqhWHWmn .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YqhWHWmn .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-t2YqhWHWmn .navbar-fixed-top {
  position: absolute !important;
}
.cid-tLHBamkSmY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLHBamkSmY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLHBamkSmY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLHBamkSmY .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tLHBamkSmY .row {
    flex-wrap: wrap;
  }
}
.cid-tLHBamkSmY .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tLHBamkSmY .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tLHBamkSmY .img-container {
  display: flex;
  padding: 7rem 0 7rem 4rem;
}
@media (max-width: 991px) {
  .cid-tLHBamkSmY .img-container {
    padding: 5rem 0 5rem 4rem;
  }
}
.cid-tLHBamkSmY .img-container img {
  max-width: 100%;
}
.cid-tLHBamkSmY .col-toggle {
  width: 50%;
  padding-right: 0 !important;
  padding-left: 4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tLHBamkSmY .col-toggle {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-tLHBamkSmY .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tLHBamkSmY .section-head {
  margin-bottom: 0;
}
.cid-tLHBamkSmY .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tLHBamkSmY .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-tLHBamkSmY .toggle-panel {
  margin-top: 40px;
}
.cid-tLHBamkSmY .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-tLHBamkSmY .card:hover {
  margin-left: 1rem;
}
.cid-tLHBamkSmY .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-tLHBamkSmY .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-tLHBamkSmY .card-header .iconfont-wrapper .mbr-iconfont {
  color: #c1272e;
  font-size: 32px;
}
.cid-tLHBamkSmY .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #c1272e;
  transition: .3s all;
}
.cid-tLHBamkSmY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-tLHBamkSmY .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-tLHBamkSmY .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-tLHBamkSmY .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-tLHBamkSmY .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-t2Yw5Poxqr {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fb-pic-ev2-1420x640.png");
}
.cid-t2Yw5Poxqr .row {
  align-items: center;
  width: 100%;
}
.cid-t2Yw5Poxqr .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2Yw5Poxqr .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2Yw5Poxqr .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2Yw5Poxqr .content-container {
  display: flex;
  padding: 60px !important;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2Yw5Poxqr .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2Yw5Poxqr .content-container {
    padding: 2rem !important;
  }
}
.cid-t2Yw5Poxqr .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2Yw5Poxqr .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .img-container {
    padding-left: 0;
  }
}
.cid-t2Yw5Poxqr .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2Yw5Poxqr .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2Yw5Poxqr .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t2Yw5Poxqr .text-container {
    padding-right: 0;
  }
}
.cid-t2Yw5Poxqr .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2Yw5Poxqr .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2Yw5Poxqr .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2Yw5Poxqr .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 4px;
}
.cid-t2Yw5Poxqr .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tNZA2VRfcg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNZA2VRfcg .row {
  align-items: center;
}
.cid-tNZA2VRfcg .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tNZA2VRfcg .mbr-text,
.cid-tNZA2VRfcg .mbr-section-btn {
  color: #000000;
}
.cid-tNZA2VRfcg .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tNZA2VRfcg .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-tNZA2VRfcg .social-list .mbr-iconfont-social:hover {
  background: #c1272e;
  color: white;
}
.cid-tNZA2VRfcg .social-list .soc-item {
  margin-right: 1rem;
}
.cid-tNZA2VRfcg .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-tNZA2VRfcg .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNZA2VRfcg .mbr-text-title {
  color: #bbbbbb;
}
.cid-tNZA2VRfcg .mbr-section-title {
  color: #c1272e;
}
.cid-tLHBHByOUJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tLHBHByOUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLHBHByOUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLHBHByOUJ .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tLHBHByOUJ .mbr-section-title {
  color: #c1272e;
}
.cid-tLHBHByOUJ .mbr-section-subtitle {
  color: #24262b;
}
.cid-tLHBHByOUJ .items-row {
  row-gap: 32px;
}
.cid-tLHBHByOUJ .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tLHBHByOUJ .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tLHBHByOUJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tLHBHByOUJ .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tLHBHByOUJ .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tLHBHByOUJ .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tLHBHByOUJ .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tLHBHByOUJ .mbr-item-subtitle {
  color: #24262b;
}
.cid-tLHBHByOUJ .carousel-control,
.cid-tLHBHByOUJ .close {
  background: #1b1b1b;
}
.cid-tLHBHByOUJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tLHBHByOUJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tLHBHByOUJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tLHBHByOUJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tLHBHByOUJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tLHBHByOUJ .close::before {
  content: '\e91a';
}
.cid-tLHBHByOUJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tLHBHByOUJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tLHBHByOUJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLHBHByOUJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tLHBHByOUJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLHBHByOUJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tLHBHByOUJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tLHBHByOUJ .carousel-indicators li.active,
.cid-tLHBHByOUJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tLHBHByOUJ .carousel-indicators li::after,
.cid-tLHBHByOUJ .carousel-indicators li::before {
  content: none;
}
.cid-tLHBHByOUJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tLHBHByOUJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tLHBHByOUJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tLHBHByOUJ .carousel-indicators {
    display: none;
  }
}
.cid-tLHBHByOUJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tLHBHByOUJ .carousel-inner > .active {
  display: block;
}
.cid-tLHBHByOUJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLHBHByOUJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLHBHByOUJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tLHBHByOUJ .carousel-control,
  .cid-tLHBHByOUJ .carousel-indicators,
  .cid-tLHBHByOUJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tLHBHByOUJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tLHBHByOUJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLHBHByOUJ .carousel-indicators .active,
.cid-tLHBHByOUJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tLHBHByOUJ .carousel-indicators .active {
  background: #fff;
}
.cid-tLHBHByOUJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tLHBHByOUJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tLHBHByOUJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tLHBHByOUJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tLHBHByOUJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tLHBHByOUJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tLHBHByOUJ .carousel {
  width: 100%;
}
.cid-tLHBHByOUJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tLHBHByOUJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tLHBHByOUJ .modal.fade .modal-dialog,
.cid-tLHBHByOUJ .modal.in .modal-dialog {
  transform: none;
}
.cid-tLHBHByOUJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tLHBHByOUJ H6 {
  text-align: center;
}
.cid-tLJprwknhA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bg-helmet-2-2000x462.png");
}
.cid-tLJprwknhA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLJprwknhA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLJprwknhA .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tLJprwknhA .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-tLJprwknhA .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tLJprwknhA .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tLJprwknhA .img-container {
  display: flex;
  padding: 4.75rem 4rem;
}
.cid-tLJprwknhA .img-container img {
  max-width: 100%;
}
.cid-tLJprwknhA .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tLJprwknhA .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-tLJprwknhA .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tLJprwknhA .section-head {
  margin-bottom: 0;
}
.cid-tLJprwknhA .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tLJprwknhA .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-tLJprwknhA .toggle-panel {
  margin-top: 40px;
}
.cid-tLJprwknhA .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-tLJprwknhA .card:hover {
  margin-left: 1rem;
}
.cid-tLJprwknhA .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-tLJprwknhA .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-tLJprwknhA .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-tLJprwknhA .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #f3f4ef;
  transition: .3s all;
}
.cid-tLJprwknhA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-tLJprwknhA .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-tLJprwknhA .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-tLJprwknhA .panel-title-edit {
  color: #c1272e;
  margin-bottom: 0;
}
.cid-tLJprwknhA .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-t2YHUx8En1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-t2YHUx8En1 .container {
  max-width: 56rem;
}
.cid-t2YHUx8En1 .main-row {
  align-items: flex-start;
  width: 100%;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .cid-t2YHUx8En1 .main-row {
    flex-wrap: wrap;
  }
}
.cid-t2YHUx8En1 .title-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 0;
  position: sticky;
  top: 0;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .cid-t2YHUx8En1 .title-container {
    padding-right: 1.5rem !important;
    margin-bottom: 0;
  }
}
.cid-t2YHUx8En1 .mbr-section-head {
  margin-bottom: 0;
  padding: 0 !important;
}
.cid-t2YHUx8En1 .mbr-section-title {
  color: #DDFF55;
  margin-bottom: 0;
}
.cid-t2YHUx8En1 .mbr-section-subtitle {
  color: #DDFF55;
}
.cid-t2YHUx8En1 .opinion-container {
  display: flex;
  max-width: 17rem;
  flex-direction: column;
  width: max-content;
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid #ddff55;
}
.cid-t2YHUx8En1 .opinion-container .iconfont-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #DDFF55;
}
@media (max-width: 767px) {
  .cid-t2YHUx8En1 .opinion-container {
    display: none;
  }
}
.cid-t2YHUx8En1 .opinion-stars {
  display: flex;
  margin-bottom: 0.5rem;
}
.cid-t2YHUx8En1 .opinion-comment {
  color: #DDFF55;
  margin-bottom: 0;
}
.cid-t2YHUx8En1 .card-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YHUx8En1 .card-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 4px;
}
.cid-t2YHUx8En1 .comment-text {
  color: #f3f4ef;
  width: 100%;
  margin-top: 4px;
  opacity: 0.8;
}
.cid-t2YHUx8En1 .card-link-text {
  width: 100%;
}
.cid-t2YHUx8En1 .border-text {
  margin-top: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  width: 100%;
  border-left: 1px solid #c1272e;
}
.cid-t2YHUx8En1 .card-border {
  padding: 2.5rem;
  border-style: solid;
  border-width: 1px;
  border-color: #c1272e;
}
@media (max-width: 575px) {
  .cid-t2YHUx8En1 .card-border {
    padding: 2rem;
  }
}
.cid-t2YHUx8En1 .content-container {
  flex-grow: 1;
}
.cid-t2YHUx8En1 form .dragArea.row {
  justify-content: flex-start;
  margin-top: 40px;
}
.cid-t2YHUx8En1 form .mbr-section-btn {
  margin-top: 20px;
}
.cid-t2YHUx8En1 form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}
.cid-t2YHUx8En1 form .form-group {
  margin-bottom: 20px !important;
}
.cid-t2YHUx8En1 form .form-control {
  border: none !important;
  border-bottom: 1px solid #f3f4ef !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #f3f4ef;
  font-weight: 400;
}
.cid-t2YHUx8En1 form .form-control::-webkit-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form .form-control::-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form .form-control:-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form .form-control:-ms-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form textarea {
  height: 96px;
}
.cid-t2YHUx8En1 form input,
.cid-t2YHUx8En1 form textarea {
  background-color: transparent !important;
}
.cid-t2YHUx8En1 form input:active,
.cid-t2YHUx8En1 form textarea:active,
.cid-t2YHUx8En1 form input:focus,
.cid-t2YHUx8En1 form textarea:focus,
.cid-t2YHUx8En1 form input:hover,
.cid-t2YHUx8En1 form textarea:hover {
  border-bottom-color: #c1272e !important;
}
.cid-t2YHUx8En1 form input:active::-webkit-input-placeholder,
.cid-t2YHUx8En1 form textarea:active::-webkit-input-placeholder,
.cid-t2YHUx8En1 form input:focus::-webkit-input-placeholder,
.cid-t2YHUx8En1 form textarea:focus::-webkit-input-placeholder,
.cid-t2YHUx8En1 form input:hover::-webkit-input-placeholder,
.cid-t2YHUx8En1 form textarea:hover::-webkit-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form input:active::-moz-placeholder,
.cid-t2YHUx8En1 form textarea:active::-moz-placeholder,
.cid-t2YHUx8En1 form input:focus::-moz-placeholder,
.cid-t2YHUx8En1 form textarea:focus::-moz-placeholder,
.cid-t2YHUx8En1 form input:hover::-moz-placeholder,
.cid-t2YHUx8En1 form textarea:hover::-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form input:active:-moz-placeholder,
.cid-t2YHUx8En1 form textarea:active:-moz-placeholder,
.cid-t2YHUx8En1 form input:focus:-moz-placeholder,
.cid-t2YHUx8En1 form textarea:focus:-moz-placeholder,
.cid-t2YHUx8En1 form input:hover:-moz-placeholder,
.cid-t2YHUx8En1 form textarea:hover:-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form input:active:-ms-input-placeholder,
.cid-t2YHUx8En1 form textarea:active:-ms-input-placeholder,
.cid-t2YHUx8En1 form input:focus:-ms-input-placeholder,
.cid-t2YHUx8En1 form textarea:focus:-ms-input-placeholder,
.cid-t2YHUx8En1 form input:hover:-ms-input-placeholder,
.cid-t2YHUx8En1 form textarea:hover:-ms-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-t2YHUx8En1 form .row {
  margin-left: -20px !important;
  margin-right: -20px !important;
}
.cid-t2YHUx8En1 form .row [class*=col] {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t2YHUx8En1 form label {
  color: #f3f4ef;
}
.cid-t2YHUx8En1 form .form-check-input {
  border-color: #f3f4ef;
  outline: none !important;
  box-shadow: none !important;
}
.cid-t2YHUx8En1 form .form-check-input:focus,
.cid-t2YHUx8En1 form .form-check-input:hover {
  border-color: #c1272e !important;
}
.cid-t2YHUx8En1 form .form-check-input:checked {
  border-color: #c1272e !important;
}
.cid-t2YHUx8En1 .phone-container,
.cid-t2YHUx8En1 .address-container {
  margin-top: 1.5rem;
}
.cid-t2YICRBbFN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-t2YICRBbFN .mbr-text {
  color: #1B1F0A;
}
.cid-t2YICRBbFN .media-container-row .mbr-text {
  color: #f3f4ef;
}
