body {
  font-family: Finlandica;
}
.display-1 {
  font-family: 'Finlandica', sans-serif;
  font-size: 7.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.375rem;
}
.display-2 {
  font-family: 'Finlandica', sans-serif;
  font-size: 4.375rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-4 {
  font-family: 'Finlandica', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-5 {
  font-family: 'Finlandica', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Finlandica', 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: 6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.25rem;
    font-size: calc( 3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.5rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((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: #ff014e !important;
}
.bg-success {
  background-color: #8fff32 !important;
}
.bg-info {
  background-color: #312ca8 !important;
}
.bg-warning {
  background-color: #f18716 !important;
}
.bg-danger {
  background-color: #dda11f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff014e !important;
  border-color: #ff014e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a90033 !important;
  border-color: #a90033 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a90033 !important;
  border-color: #a90033 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6b67ce !important;
  border-color: #6b67ce !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: #3b36a8 !important;
  border-color: #3b36a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3b36a8 !important;
  border-color: #3b36a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #312ca8 !important;
  border-color: #312ca8 !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: #1d1a63 !important;
  border-color: #1d1a63 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1d1a63 !important;
  border-color: #1d1a63 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
  color: #173200 !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: #63da00 !important;
  border-color: #63da00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #173200 !important;
  background-color: #63da00 !important;
  border-color: #63da00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f18716 !important;
  border-color: #f18716 !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: #a65b0a !important;
  border-color: #a65b0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a65b0a !important;
  border-color: #a65b0a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dda11f !important;
  border-color: #dda11f !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: #916a14 !important;
  border-color: #916a14 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #916a14 !important;
  border-color: #916a14 !important;
}
.btn-white,
.btn-white:active {
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
  color: #3a4e69 !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: #ffffff !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #3a4e69 !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
}
.btn-black,
.btn-black:active {
  background-color: #212428 !important;
  border-color: #212428 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff014e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a90033 !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: #ff014e !important;
  border-color: #ff014e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b67ce;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3b36a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6b67ce !important;
  border-color: #6b67ce !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #312ca8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1d1a63 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #312ca8 !important;
  border-color: #312ca8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8fff32;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #63da00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #173200 !important;
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f18716;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a65b0a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f18716 !important;
  border-color: #f18716 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dda11f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #916a14 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #dda11f !important;
  border-color: #dda11f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212428;
}
.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: #212428 !important;
  border-color: #212428 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c4cfde;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #8ca2bf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #3a4e69 !important;
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
}
.text-primary {
  color: #ff014e !important;
}
.text-secondary {
  color: #6b67ce !important;
}
.text-success {
  color: #8fff32 !important;
}
.text-info {
  color: #312ca8 !important;
}
.text-warning {
  color: #f18716 !important;
}
.text-danger {
  color: #dda11f !important;
}
.text-white {
  color: #C4CFDE !important;
}
.text-black {
  color: #212428 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #9a002f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #37329d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5ccb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #191757 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #985309 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #846012 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #839ab9 !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: #ff014e;
}
.nav-tabs .nav-link:not(.active) {
  color: #212428;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #312ca8;
}
.alert-warning {
  background-color: #f18716;
}
.alert-danger {
  background-color: #dda11f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff014e;
  border-color: #ff014e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff014e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffcddc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fefffe;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #7c78dc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fdead6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f8ebd0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Finlandica', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.125rem;
}
.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: #ff014e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Finlandica', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.125rem;
}
blockquote {
  border-color: #ff014e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff014e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff014e;
}
.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: #ff014e;
  border-bottom-color: #ff014e;
}
.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: #ff014e !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: #6b67ce !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='%23ff014e' %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-fluid {
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e !important;
  transform-style: preserve-3d;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-section-btn .btn {
  position: relative;
  transition: 0.4s all !important;
  border: none !important;
  align-items: baseline;
}
.custom-section-btn .btn-black {
  color: #ff014e !important;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
}
.custom-section-btn .btn-black:hover {
  color: #ff014e !important;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  transform: translateY(-5px);
}
.custom-section-btn .btn-white {
  color: #ff014e !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.custom-section-btn .btn-white:hover {
  color: #ff014e !important;
  background: #FFFFFF !important;
  transform: translateY(-5px);
}
.cid-thXKMbTk5w {
  z-index: 1000;
  width: 100%;
}
.cid-thXKMbTk5w nav.navbar {
  position: fixed;
}
.cid-thXKMbTk5w .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-thXKMbTk5w .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thXKMbTk5w .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thXKMbTk5w .dropdown-item:hover,
.cid-thXKMbTk5w .dropdown-item:focus {
  background: #ff014e !important;
  color: white !important;
}
.cid-thXKMbTk5w .dropdown-item:hover span {
  color: white;
}
.cid-thXKMbTk5w .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thXKMbTk5w .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thXKMbTk5w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thXKMbTk5w .nav-link {
  position: relative;
}
.cid-thXKMbTk5w .container {
  display: flex;
  margin: auto;
}
.cid-thXKMbTk5w .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thXKMbTk5w .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:hover,
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:focus,
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-thXKMbTk5w .dropdown-menu,
.cid-thXKMbTk5w .navbar.opened {
  background: #000000 !important;
}
.cid-thXKMbTk5w .nav-item:focus,
.cid-thXKMbTk5w .nav-link:focus {
  outline: none;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thXKMbTk5w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thXKMbTk5w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thXKMbTk5w .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-thXKMbTk5w .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-thXKMbTk5w .navbar.opened {
  transition: all 0.3s;
}
.cid-thXKMbTk5w .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thXKMbTk5w .navbar .navbar-logo img {
  width: auto;
}
.cid-thXKMbTk5w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thXKMbTk5w .navbar.collapsed {
  justify-content: center;
}
.cid-thXKMbTk5w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thXKMbTk5w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thXKMbTk5w .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-thXKMbTk5w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thXKMbTk5w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thXKMbTk5w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thXKMbTk5w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thXKMbTk5w .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-thXKMbTk5w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thXKMbTk5w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thXKMbTk5w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thXKMbTk5w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thXKMbTk5w .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-thXKMbTk5w .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-thXKMbTk5w .navbar.navbar-short {
  min-height: 90px;
}
.cid-thXKMbTk5w .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-thXKMbTk5w .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar {
    min-height: 80px;
  }
}
.cid-thXKMbTk5w .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-thXKMbTk5w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thXKMbTk5w .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar-brand {
    min-height: 69px;
  }
}
.cid-thXKMbTk5w .dropdown-item.active,
.cid-thXKMbTk5w .dropdown-item:active {
  background-color: transparent;
}
.cid-thXKMbTk5w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thXKMbTk5w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-thXKMbTk5w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thXKMbTk5w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thXKMbTk5w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thXKMbTk5w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thXKMbTk5w button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-thXKMbTk5w button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thXKMbTk5w .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thXKMbTk5w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thXKMbTk5w .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-thXKMbTk5w .navbar {
    height: 70px;
  }
  .cid-thXKMbTk5w .navbar.opened {
    height: auto;
  }
  .cid-thXKMbTk5w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thXKMbTk5w .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #000000;
  background: rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar-short {
    min-height: 70px;
  }
}
.cid-thXKMbTk5w .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 3px;
  }
}
.cid-thXKMbTk5w .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-thXKMbTk5w .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-thXKMbTk5w .container-fluid {
  flex-wrap: wrap;
}
.cid-thXKMbTk5w button.navbar-toggler {
  display: flex;
}
.cid-thXKMbTk5w .navbar-brand {
  width: auto !important;
}
.cid-thXKMbTk5w .navbar-collapse {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-thXKMbTk5w .navbar-collapse .nav-item {
  margin: 8px 0 !important;
}
.cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: left;
}
.cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-thXKMbTk5w .icons-menu {
  margin-top: 10px;
  justify-content: left;
}
.cid-thXKMbTk5w .navbar-buttons {
  margin-top: 20px;
  text-align: left;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
@media (max-width: 991px) {
  .cid-thXKMbTk5w .container-fluid {
    flex-wrap: wrap;
  }
  .cid-thXKMbTk5w button.navbar-toggler {
    display: flex;
  }
  .cid-thXKMbTk5w .navbar-brand {
    width: auto !important;
  }
  .cid-thXKMbTk5w .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-thXKMbTk5w .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-thXKMbTk5w .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-u71HUezq3s {
  background-image: url("../../../assets/images/mbr.jpg");
}
.cid-u71HUezq3s img {
  width: auto;
}
.cid-u71HUezq3s .fantasyBox:hover {
  animation: twinkling 1s infinite;
}
.cid-u71HUezq3s #fantasyKingdomWrapper {
  background-image: url('https://expert-grp.com/assets/eigenbilder//expertlogogross.png');
  background-repeat: repeat;
  background-size: 15% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cid-u71HUezq3s #fantasyKingdom {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  perspective: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u71HUezq3s #fantasyCastle {
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotate 15s linear infinite;
}
.cid-u71HUezq3s .fantasyBox {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.9;
  color: white;
}
.cid-u71HUezq3s .fantasyFront {
  transform: translateZ(100px);
  background: black;
  background-image: url(https://www.vallender-klein.com/assets/images/webaufnahme-17-5-2023-161722-www.my-desgn.de.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71HUezq3s .fantasyBack {
  transform: rotateY(180deg) translateZ(100px);
  background: #101010;
  background-image: url(https://www.vallender-klein.com/assets/images/Screenshot%202024-03-06%20125218.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71HUezq3s .fantasyLeft {
  transform: rotateY(-90deg) translateX(-100px);
  transform-origin: left;
  background: black;
  background-image: url(https://www.vallender-klein.com/assets/images/webaufnahme-17-5-2023-161722-www.my-desgn.de.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71HUezq3s .fantasyRight {
  transform: rotateY(90deg) translateX(100px);
  transform-origin: right;
  background: #101010;
  background-image: url(https://www.vallender-klein.com/assets/images/Screenshot%202024-03-06%20125218.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71HUezq3s .fantasyTop {
  transform: rotateX(-90deg) translateY(-100px);
  transform-origin: top;
  background: black;
  background-image: url(https://www.vallender-klein.com/assets/images/webaufnahme-17-5-2023-161722-www.my-desgn.de.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71HUezq3s .fantasyBottom {
  transform: rotateX(90deg) translateY(100px);
  transform-origin: bottom;
  background: #101010;
  background-image: url(https://www.vallender-klein.com/assets/images/Screenshot%202024-03-06%20125218.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.cid-u71HUezq3s .fantasyShadow {
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 25px 25px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotateX(90deg) translateZ(-125px) rotateY(180deg) translateX(0px);
}
.cid-thXKN5Vkvt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.cid-thXKN5Vkvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXKN5Vkvt .mbr-fallback-image {
  background-repeat: repeat;
  background-size: 15% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url('https://expert-grp.com/assets/eigenbilder//expertlogogross.png');
}
.cid-thXKN5Vkvt .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXKN5Vkvt .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-thXKN5Vkvt .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXKN5Vkvt .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .col-text {
    order: 2;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-thXKN5Vkvt .col-text {
    margin-top: 20px;
  }
}
.cid-thXKN5Vkvt .text-wrapper {
  width: 100%;
}
.cid-thXKN5Vkvt .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-thXKN5Vkvt .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 22px;
}
.cid-thXKN5Vkvt .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-thXKN5Vkvt .mbr-text {
  color: #C4CFDE;
  padding-right: 16%;
  opacity: 0.9;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .mbr-text {
    padding-right: 0;
  }
}
.cid-thXKN5Vkvt .mbr-section-btn {
  margin-top: 20px;
}
.cid-thXKN5Vkvt .social-container {
  width: 100%;
  padding-top: 125px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .social-container {
    padding-top: 40px;
  }
}
.cid-thXKN5Vkvt .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-thXKN5Vkvt .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-thXKN5Vkvt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-thXKN5Vkvt .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thXKN5Vkvt .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-thXKN5Vkvt .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thXKN5Vkvt .soc-item:hover:before {
  opacity: 1;
}
.cid-thXKN5Vkvt .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .col-img {
    order: 1;
  }
}
.cid-thXKN5Vkvt .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-thXKN5Vkvt .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-thXKN5Vkvt .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border-radius: 6px;
}
.cid-u72jgH13v5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background19.jpg");
}
.cid-u72jgH13v5 .user-card {
  background-color: #ff014e;
  padding: 35px 60px;
  border-radius: 10px;
}
.cid-u72jgH13v5 .user_image {
  width: 100%;
  overflow: hidden;
  padding-right: 40px;
}
.cid-u72jgH13v5 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  border-radius: 50%;
}
.cid-u72jgH13v5 .heading {
  color: #f18716;
  padding-bottom: 50px;
  margin-bottom: 0;
  text-align: left;
}
.cid-u72jgH13v5 .user_desk {
  color: #ffffff;
  opacity: 0.8;
  line-height: 30px;
  text-align: left;
}
.cid-u72jgH13v5 .user_text {
  padding-bottom: 30px;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 30px;
  margin: 0;
  text-align: left;
}
.cid-u72jgH13v5 .user_name {
  color: #ffffff;
  line-height: 30px;
  margin: 0;
  text-align: left;
}
@media (max-width: 400px) {
  .cid-u72jgH13v5 .user_image {
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .cid-u72jgH13v5 .user-card {
    padding: 1rem;
  }
  .cid-u72jgH13v5 .heading {
    padding-bottom: 25px;
  }
}
@media (max-width: 770px) {
  .cid-u72jgH13v5 .user_image {
    margin-bottom: 25px;
    padding-right: 0;
  }
}
.cid-u72jgH13v5 .small {
  margin-bottom: 0;
}
.cid-tCwTsHtrKx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/2-2000x1124.webp");
}
.cid-tCwTsHtrKx .mbr-text,
.cid-tCwTsHtrKx .mbr-section-btn {
  color: #353535;
}
.cid-tCwTsHtrKx .mbr-text {
  max-width: 500px;
  padding: 0 4rem;
}
@media (max-width: 767px) {
  .cid-tCwTsHtrKx .mbr-text {
    padding: 0;
  }
}
.cid-tCwTsHtrKx .mbr-section-btn {
  padding: 0 4rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .cid-tCwTsHtrKx .mbr-section-btn {
    padding: 0;
    padding-bottom: 8rem;
  }
}
.cid-tCwTsHtrKx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tCwTsHtrKx .mbr-iconfont {
  color: #121212;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.cid-tCwTsHtrKx .icons-wrapper {
  position: absolute;
  display: flex;
  bottom: 4rem;
  width: fit-content;
  left: 4rem;
}
@media (max-width: 767px) {
  .cid-tCwTsHtrKx .icons-wrapper {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cid-tCwTsHtrKx .icon-wrapper {
  position: relative;
  width: 35px;
  cursor: pointer;
  margin: 0 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
}
.cid-tCwTsHtrKx .icon-wrapper:hover .mbr-iconfont {
  color: #ff014e;
}
.cid-tCwTsHtrKx .mbr-section-title {
  color: #dda11f;
}
.cid-u72h9M9e6j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u72h9M9e6j .mbr-fallback-image.disabled {
  display: none;
}
.cid-u72h9M9e6j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u72h9M9e6j .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-u72h9M9e6j .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-u72h9M9e6j .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u72h9M9e6j .container {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u72h9M9e6j .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-u72h9M9e6j .row {
  justify-content: space-between;
}
.cid-u72h9M9e6j .item {
  border-bottom: 1px solid #ffffff;
}
.cid-u72h9M9e6j .item:first-child {
  border-top: 1px solid #ffffff;
}
.cid-u72h9M9e6j .item .item-wrapper .card-box {
  display: flex;
  padding: 80px 0;
}
@media (max-width: 992px) {
  .cid-u72h9M9e6j .item .item-wrapper .card-box {
    padding: 48px 0;
    display: block;
  }
}
.cid-u72h9M9e6j .item .item-wrapper .card-box .card-title {
  width: 35%;
  margin-right: 16px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u72h9M9e6j .item .item-wrapper .card-box .card-title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-u72h9M9e6j .item .item-wrapper .card-box .card-text {
  width: 55%;
  margin-bottom: 0;
  margin-right: 16px;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-u72h9M9e6j .item .item-wrapper .card-box .card-text {
    width: 100%;
    margin-right: 0;
  }
}
.cid-u72h9M9e6j .card-title {
  color: #f18716;
}
.cid-u72h9M9e6j .card-text {
  color: #ffffff;
}
.cid-u72gPwKvLu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f3f3e9;
}
.cid-u72gPwKvLu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u72gPwKvLu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u72gPwKvLu .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-u72gPwKvLu .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-u72gPwKvLu .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u72gPwKvLu .container {
    padding: 0 20px;
  }
}
.cid-u72gPwKvLu .row {
  position: relative;
  margin: 0 -20px;
}
.cid-u72gPwKvLu .item {
  padding: 0 20px;
  margin-bottom: 40px;
}
.cid-u72gPwKvLu .item .item-wrapper .item-img {
  height: 1000px;
  position: relative;
  padding: 30px 38px;
}
@media (max-width: 992px) {
  .cid-u72gPwKvLu .item .item-wrapper .item-img {
    padding: 24px 30px;
    height: 450px;
  }
}
.cid-u72gPwKvLu .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem !important;
  object-fit: cover;
}
.cid-u72gPwKvLu .item .item-wrapper .item-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-u72gPwKvLu .item .item-wrapper .item-img .item-content {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-u72gPwKvLu .item .item-wrapper .item-img .item-content .item-title {
  position: sticky;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
}
.cid-u72gPwKvLu .item-title {
  color: #ffffff;
}
.cid-tCwUkM1L9o {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tCwUkM1L9o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCwUkM1L9o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCwUkM1L9o .card {
  margin: 39px 0;
}
.cid-tCwUkM1L9o .card .card-link {
  display: flex;
  position: relative;
}
.cid-tCwUkM1L9o .card .card-link:hover .image-main,
.cid-tCwUkM1L9o .card .card-link:focus .image-main {
  width: 390px;
}
.cid-tCwUkM1L9o .card .card-link:hover .card-wrapper .mbr-section-title,
.cid-tCwUkM1L9o .card .card-link:focus .card-wrapper .mbr-section-title {
  color: #878e99;
}
.cid-tCwUkM1L9o .card .card-link:hover .card-wrapper .mbr-text,
.cid-tCwUkM1L9o .card .card-link:focus .card-wrapper .mbr-text {
  color: #878e99;
}
.cid-tCwUkM1L9o .card .card-link .image-main {
  position: absolute;
  width: 0;
  height: 260px;
  object-fit: cover;
  left: 90%;
  top: 2.5rem;
  transform-origin: left;
  transition: all 0.6s ease-out;
}
@media (max-width: 1200px) {
  .cid-tCwUkM1L9o .card .card-link .image-main {
    right: -55%;
  }
}
@media (max-width: 992px) {
  .cid-tCwUkM1L9o .card .card-link .image-main {
    display: none;
  }
}
.cid-tCwUkM1L9o .card .card-link .image {
  width: 55px;
  height: 55px;
  object-fit: contain;
  padding-top: 6px;
  margin-right: 24px;
}
@media (max-width: 425px) {
  .cid-tCwUkM1L9o .card .card-link .image {
    margin-right: 12px;
  }
}
.cid-tCwUkM1L9o .card .card-link .card-wrapper .mbr-section-title {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-tCwUkM1L9o .card .card-link .card-wrapper .mbr-text {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-tCwUkM1L9o .mbr-section-title,
.cid-tCwUkM1L9o .mbr-iconfont {
  color: #f18716;
}
.cid-tCwUkM1L9o .mbr-text {
  color: #ffffff;
}
.cid-thXLfwRkmP {
  background-image: url("../../../assets/images/pexels-george-morina-4960420-1920x1281.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-thXLfwRkmP .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXLfwRkmP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXLfwRkmP .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-thXLfwRkmP .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-thXLfwRkmP .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-thXLfwRkmP .container {
    max-width: 540px;
  }
}
.cid-thXLfwRkmP .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thXLfwRkmP .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-thXLfwRkmP .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thXLfwRkmP .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thXLfwRkmP .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thXLfwRkmP .mbr-section-title {
  color: #f18716;
}
.cid-thXLfwRkmP .mbr-section-subtitle {
  color: #FF014E;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-thXLfwRkmP .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-thXLfwRkmP .card-row {
  align-items: stretch;
}
.cid-thXLfwRkmP .card {
  margin-top: 30px;
}
.cid-thXLfwRkmP .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
.cid-thXLfwRkmP .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thXLfwRkmP .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-thXLfwRkmP .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-thXLfwRkmP .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-thXLfwRkmP .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-thXLfwRkmP .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-thXLfwRkmP .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-thXLfwRkmP .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ff014e;
}
.cid-thXLfwRkmP .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-thXLfwRkmP .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-thXQ3qOT1c {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXQ3qOT1c .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXQ3qOT1c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXQ3qOT1c .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thXQ3qOT1c .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-thXQ3qOT1c .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-thXQ3qOT1c .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-thXQ3qOT1c .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-thXQ3qOT1c .border-item {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background-color: #16181c;
}
.cid-thXQ3qOT1c .card-text {
  color: #dda11f;
  margin-bottom: 0;
  text-align: center;
}
.cid-thXQ3qOT1c H5 {
  text-align: center;
  color: #f18716;
}
.cid-thXN2QU3aY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-thXN2QU3aY .mbr-overlay {
  background-color: #212428;
  opacity: 0.2;
}
.cid-thXN2QU3aY .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXN2QU3aY .row {
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cid-thXN2QU3aY .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-thXN2QU3aY .col-info-card {
    margin-bottom: 50px;
  }
}
.cid-thXN2QU3aY .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-thXN2QU3aY .mbr-section-title {
  color: #f18716;
}
@media (max-width: 767px) {
  .cid-thXN2QU3aY .mbr-section-title {
    text-align: center;
  }
}
.cid-thXN2QU3aY .mbr-section-subtitle {
  color: #f18716;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXN2QU3aY .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thXN2QU3aY .item-card {
  height: 100%;
}
.cid-thXN2QU3aY .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thXN2QU3aY .item-wrap {
    padding: 50px 20px;
  }
}
.cid-thXN2QU3aY .item-wrap:hover .item-img img {
  transform: scale(1.1);
}
.cid-thXN2QU3aY .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-thXN2QU3aY .item-img img {
  width: 100%;
  aspect-ratio: 1.59722222;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .card-box {
  padding-top: 28px;
}
.cid-thXN2QU3aY .card-title {
  color: #C4CFDE;
  margin-bottom: 9px;
}
.cid-thXN2QU3aY .card-subtitle {
  color: #878e99;
  margin-bottom: 15px;
}
.cid-thXN2QU3aY .card-text {
  color: #878e99;
  margin-bottom: 20px;
}
.cid-thXN2QU3aY .card-contacts {
  color: #878e99;
}
.cid-thXN2QU3aY .card-contacts a {
  position: relative;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .card-contacts a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ff014e;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .card-contacts a:hover {
  color: #ff014e !important;
}
.cid-thXN2QU3aY .card-contacts a:hover:before {
  width: 100%;
}
.cid-thXN2QU3aY .social-container {
  width: 100%;
  padding-top: 30px;
}
.cid-thXN2QU3aY .social-title {
  color: #C4CFDE;
  margin-bottom: 8px;
}
.cid-thXN2QU3aY .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  margin-top: 24px;
}
.cid-thXN2QU3aY .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thXN2QU3aY .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-thXN2QU3aY .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thXN2QU3aY .soc-item:hover .mbr-iconfont {
  color: #ff014e;
}
.cid-thXN2QU3aY .soc-item:hover:before {
  opacity: 1;
}
.cid-thXN2QU3aY .form-main-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .cid-thXN2QU3aY .form-main-container {
    padding-left: 20px;
  }
}
.cid-thXN2QU3aY .form-wrap {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-thXN2QU3aY .form-wrap {
    padding: 20px;
  }
}
.cid-thXN2QU3aY form {
  width: 100%;
}
.cid-thXN2QU3aY form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-thXN2QU3aY form p {
  color: #878e99;
}
.cid-thXN2QU3aY form .mbr-section-btn {
  text-align: center;
  justify-content: center;
}
.cid-thXN2QU3aY form .mbr-section-btn .btn {
  width: 100%;
}
.cid-thXN2QU3aY form .form-group {
  margin-bottom: 20px !important;
}
.cid-thXN2QU3aY form .form-control {
  background-color: #191b1e;
  border-radius: 6px !important;
  height: 55px;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset !important;
  border: 2px solid #191b1e !important;
  padding: 10px 15px;
  font-size: 18px;
  margin-bottom: 0;
  color: #C4CFDE;
  font-weight: 400;
  transition: 0.4s all !important;
  line-height: 29px !important;
}
.cid-thXN2QU3aY form .form-control::-webkit-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .form-control::-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .form-control:-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .form-control:-ms-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form select {
  color: #878e99 !important;
}
.cid-thXN2QU3aY form textarea {
  height: 216px !important;
  resize: none;
}
.cid-thXN2QU3aY form input:active,
.cid-thXN2QU3aY form textarea:active,
.cid-thXN2QU3aY form input:focus,
.cid-thXN2QU3aY form textarea:focus {
  border-color: #ff014e !important;
  box-shadow: none !important;
  color: #878e99 !important;
  outline: none !important;
}
.cid-thXN2QU3aY form input:active::-webkit-input-placeholder,
.cid-thXN2QU3aY form textarea:active::-webkit-input-placeholder,
.cid-thXN2QU3aY form input:focus::-webkit-input-placeholder,
.cid-thXN2QU3aY form textarea:focus::-webkit-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form input:active::-moz-placeholder,
.cid-thXN2QU3aY form textarea:active::-moz-placeholder,
.cid-thXN2QU3aY form input:focus::-moz-placeholder,
.cid-thXN2QU3aY form textarea:focus::-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form input:active:-moz-placeholder,
.cid-thXN2QU3aY form textarea:active:-moz-placeholder,
.cid-thXN2QU3aY form input:focus:-moz-placeholder,
.cid-thXN2QU3aY form textarea:focus:-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form input:active:-ms-input-placeholder,
.cid-thXN2QU3aY form textarea:active:-ms-input-placeholder,
.cid-thXN2QU3aY form input:focus:-ms-input-placeholder,
.cid-thXN2QU3aY form textarea:focus:-ms-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.cid-thXN2QU3aY form .row [class*=col] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-thXN2QU3aY form label {
  width: 100%;
  color: #878e99;
  margin-bottom: 14px;
}
.cid-thXN2QU3aY form .form-control-label {
  width: 100%;
}
.cid-thXN2QU3aY form .form-check-label {
  margin-bottom: 14px;
}
.cid-thXN2QU3aY form .form-check-input {
  border-color: #191b1e !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-thXN2QU3aY form .form-check-input:focus,
.cid-thXN2QU3aY form .form-check-input:hover {
  border-color: #ff014e !important;
}
.cid-thXN2QU3aY form .form-check-input:checked {
  border-color: #ff014e !important;
  background-color: #191b1e !important;
}
.cid-u71lnJbppM {
  background-image: url("../../../assets/images/pexels-george-morina-4960630-1920x1281.jpg");
}
.cid-u71lnJbppM img {
  width: auto;
}
.cid-u71lnJbppM #fantasyKingdomWrapper {
  background-image: url('https://expert-grp.com/assets/eigenbilder//expertlogogross.png');
  background-repeat: repeat;
  background-size: 10% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cid-u71lnJbppM #fantasyKingdom {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u71lnJbppM #fantasyCastle {
  width: 400px;
  height: 400px;
  transform-style: preserve-3d;
  animation: rotate 15s linear infinite;
}
.cid-u71lnJbppM .fantasyBox {
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.9;
  color: white;
}
.cid-u71lnJbppM .fantasyFront {
  transform: translateZ(200px);
  background: black;
  background-image: url(https://www.vallender-klein.com/assets/images/webaufnahme-17-5-2023-161722-www.my-desgn.de.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71lnJbppM .fantasyBack {
  transform: rotateY(180deg) translateZ(200px);
  background: #101010;
  background-image: url(https://www.vallender-klein.com/assets/images/Screenshot%202024-03-06%20125218.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71lnJbppM .fantasyLeft {
  transform: rotateY(-90deg) translateX(-200px);
  transform-origin: left;
  background: black;
  background-image: url(https://www.vallender-klein.com/assets/images/webaufnahme-17-5-2023-161722-www.my-desgn.de.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71lnJbppM .fantasyRight {
  transform: rotateY(90deg) translateX(200px);
  transform-origin: right;
  background: #101010;
  background-image: url(https://www.vallender-klein.com/assets/images/Screenshot%202024-03-06%20125218.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71lnJbppM .fantasyTop {
  transform: rotateX(-90deg) translateY(-200px);
  transform-origin: top;
  background: black;
  background-image: url(https://www.vallender-klein.com/assets/images/webaufnahme-17-5-2023-161722-www.my-desgn.de.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-u71lnJbppM .fantasyBottom {
  transform: rotateX(90deg) translateY(200px);
  transform-origin: bottom;
  background: #101010;
  background-image: url(https://www.vallender-klein.com/assets/images/Screenshot%202024-03-06%20125218.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.cid-u71lnJbppM .fantasyShadow {
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotateX(90deg) translateZ(-250px) rotateY(180deg) translateX(0px);
}
.cid-thXPQ2zFY4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(315deg, #16181c 10%, #212428 100%) !important;
}
.cid-thXPQ2zFY4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXPQ2zFY4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXPQ2zFY4 .card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
@media (max-width: 767px) {
  .cid-thXPQ2zFY4 .card-box {
    max-width: 510px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 0;
  }
}
.cid-thXPQ2zFY4 .label-container {
  padding: 5px 16px;
  border-radius: 100px;
  background: #ff014e;
}
.cid-thXPQ2zFY4 .label-text {
  color: #ffffff;
}
.cid-thXPQ2zFY4 .card-text {
  color: #878e99;
  margin-left: 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-thXPQ2zFY4 .card-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-thXPQ2zFY4 .link-text {
  color: #C4CFDE;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .cid-thXPQ2zFY4 .link-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-thXPQ2zFY4 .link-text a {
  display: flex;
  align-items: center;
}
.cid-thXPQ2zFY4 .link-text a .mbr-iconfont {
  font-size: inherit;
  color: inherit;
  margin-left: 6px;
}
.cid-thXPQ2zFY4 .link-text a:hover {
  color: #ff014e !important;
}
.cid-thXOcQyshN {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-thXOcQyshN .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXOcQyshN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXOcQyshN .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thXOcQyshN .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-thXOcQyshN .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-thXOcQyshN .mbr-section-subtitle {
  color: #C4CFDE;
}
.cid-thXOcQyshN .card-row {
  align-items: stretch;
}
.cid-thXOcQyshN .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-thXOcQyshN .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.cid-thXOcQyshN .card-box {
  height: 100%;
}
.cid-thXOcQyshN .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-thXOcQyshN .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #ff014e;
}
.cid-thXOcQyshN .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-thXOcQyshN .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-thXOPqy2QT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXOPqy2QT .mbr-section-head {
  width: 100%;
}
.cid-thXOPqy2QT .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-thXP0uH5Zh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-thXP0uH5Zh .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXP0uH5Zh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXP0uH5Zh .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thXP0uH5Zh .mbr-section-title {
  color: #FF014E;
}
.cid-thXP0uH5Zh .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXP0uH5Zh .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thXP0uH5Zh .card-row {
  align-items: stretch;
}
.cid-thXP0uH5Zh .card {
  margin-top: 30px;
}
.cid-thXP0uH5Zh .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-thXP0uH5Zh .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-thXP0uH5Zh .card-wrapper {
    padding: 20px;
  }
}
.cid-thXP0uH5Zh .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thXP0uH5Zh .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-thXP0uH5Zh .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-thXP0uH5Zh .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-thXP0uH5Zh .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-thXP0uH5Zh .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-thXP0uH5Zh .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-thXP0uH5Zh .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ff014e;
}
.cid-thXP0uH5Zh .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-thXP0uH5Zh .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-thXQjWqKmd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(315deg, #16181c 10%, #212428 100%) !important;
}
.cid-thXQjWqKmd .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXQjWqKmd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXQjWqKmd .card {
  margin: 10px 0;
}
.cid-thXQjWqKmd .card-box {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .cid-thXQjWqKmd .card-box {
    justify-content: center;
  }
}
.cid-thXQjWqKmd .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  aspect-ratio: 1;
  padding: 4px;
  border-radius: 50%;
  background-color: #3eb75e;
  margin-right: 10px;
}
.cid-thXQjWqKmd .iconfont-wrapper .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-thXQjWqKmd .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tCwPejYAEx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #150d1d;
}
.cid-tCwPejYAEx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCwPejYAEx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCwPejYAEx .row {
  align-items: flex-end;
}
.cid-tCwPejYAEx .mbr-section-title {
  color: #dfcefd;
}
.cid-tCwPejYAEx .mbr-text,
.cid-tCwPejYAEx .mbr-section-btn {
  color: #dfcefd;
}
.cid-tCwPejYAEx .col-lg-4 {
  align-items: flex-end;
}
.cid-u72ko7gk6d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background20.jpg");
}
.cid-u72ko7gk6d .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u72ko7gk6d .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u72ko7gk6d .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-thXRijuFis {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXRijuFis .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXRijuFis .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXRijuFis .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-thXRijuFis .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-thXRijuFis .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thXRijuFis .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-thXRijuFis .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thXRijuFis .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thXRijuFis .mbr-section-head {
  width: 100%;
}
.cid-thXRijuFis .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-thXRijuFis .mbr-section-title {
    text-align: center;
  }
}
.cid-thXRijuFis .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXRijuFis .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thXRijuFis .card-row {
  align-items: stretch;
}
.cid-thXRijuFis .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-thXRijuFis .item {
    margin-top: 30px;
  }
}
.cid-thXRijuFis .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-thXRijuFis .item-wrapper {
    padding: 20px;
  }
}
.cid-thXRijuFis .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thXRijuFis .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-thXRijuFis .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-thXRijuFis .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-thXRijuFis .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thXRijuFis .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-thXRijuFis .card-title {
  position: relative;
  z-index: 5;
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-thXRijuFis .card-title {
    margin-bottom: 10px;
  }
}
.cid-thXRijuFis .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-thXRijuFis .card-text a {
  transition: .4s all;
}
.cid-thXRijuFis .card-text a:hover {
  color: #ff014e !important;
}
.cid-tQnMPxTHrn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tQnMPxTHrn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQnMPxTHrn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQnMPxTHrn .mbr-section-head {
  padding-bottom: 30px;
  width: 100%;
}
.cid-tQnMPxTHrn .mbr-section-title {
  color: #FF014E;
}
.cid-tQnMPxTHrn .mbr-section-subtitle {
  color: #f18716;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tQnMPxTHrn .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tQnMPxTHrn .card {
  margin-top: 35px;
}
.cid-tQnMPxTHrn .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-tQnMPxTHrn .panel-title {
  position: relative;
  padding: 10px 0 20px;
  transition: .4s all;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tQnMPxTHrn .panel-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #16181c 0%, #16181c 100%);
}
.cid-tQnMPxTHrn .panel-title[aria-expanded="true"]:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #6b67ce 0%, #fc636b 100%);
}
.cid-tQnMPxTHrn .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-tQnMPxTHrn .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #c4cfde;
  margin-left: 1rem;
}
.cid-tQnMPxTHrn .panel-group {
  border: none;
}
.cid-tQnMPxTHrn .panel-body {
  padding: 20px 0 0;
}
.cid-tQnMPxTHrn .panel-text {
  color: #878e99;
}
.cid-tQnMPxTHrn .panel-title-edit {
  color: #C4CFDE;
}
.cid-tQnMPxTHrn .sign {
  width: 24px;
  height: 24px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cid-thXRwvOhXN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-thXRwvOhXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXRwvOhXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXRwvOhXN .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-thXRwvOhXN .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-thXRwvOhXN .mbr-section-title {
  color: #f18716;
}
.cid-thXRwvOhXN .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXRwvOhXN .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thXRwvOhXN .card-row {
  align-items: stretch;
}
.cid-thXRwvOhXN .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-thXRwvOhXN .card {
    flex-basis: 80% !important;
  }
}
.cid-thXRwvOhXN .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thXRwvOhXN .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thXRwvOhXN .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-thXRwvOhXN .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-thXRwvOhXN .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-thXRwvOhXN .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-thXRwvOhXN .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-thXRwvOhXN .card-title {
  color: #878e99;
  margin-bottom: 0;
}
.cid-thXRwvOhXN .card-title a {
  transition: 0.4s all;
}
.cid-thXRwvOhXN .card-title a:hover {
  color: #ff014e !important;
}
.cid-thXRClqJeG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXRClqJeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXRClqJeG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXRClqJeG .card-row {
  align-items: stretch;
}
.cid-thXRClqJeG .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thXRClqJeG .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-thXRClqJeG .image-wrapper {
  margin-right: 30px;
}
.cid-thXRClqJeG .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .image-wrapper {
    margin-right: 0;
  }
}
.cid-thXRClqJeG .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .mbr-section-title {
    text-align: center !important;
  }
}
.cid-thXRClqJeG .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-thXRClqJeG .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .social-container {
    padding-top: 25px;
  }
}
.cid-thXRClqJeG .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .social-title {
    text-align: center !important;
  }
}
.cid-thXRClqJeG .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .social-list {
    justify-content: center !important;
  }
}
.cid-thXRClqJeG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-thXRClqJeG .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thXRClqJeG .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-thXRClqJeG .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thXRClqJeG .soc-item:hover:before {
  opacity: 1;
}
.cid-thXRClqJeG .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-thXRClqJeG .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-thXRClqJeG .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-thXRClqJeG .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXRClqJeG .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-thXRClqJeG .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-thXRClqJeG .contact-item {
  padding: 10px 0 20px;
}
.cid-thXRClqJeG .card-title {
  color: #f18716;
  margin-bottom: 4px;
}
.cid-thXRClqJeG .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-thXL483li8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXL483li8 .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-thXL483li8 .copyright-container {
  padding: 40px 0;
}
.cid-thXL483li8 .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-kvh2BEOasm P {
  color: #1281fc;
}
.cid-kvh2BEOasm DIV {
  color: #ffffff;
}
.cid-kvh2BEOasm H10 {
  color: #034e75;
}
.cid-kvh2BEOasm .hidden {
  display: none;
}
.cid-kvh2BEOasm .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-kvh2BEOasm .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-kvh2BEOasm .icon-bar a:hover {
  background-color: #000000;
}
.cid-kvh2BEOasm .flag {
  background: transparent;
}
.cid-kvh2BEOasm .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-kvh2BEOasm .nav-right {
  float: left !important;
  position: relative;
}
.cid-kvh2BEOasm #google_translate_element {
  display: none;
}
.cid-kvh2BEOasm .goog-te-banner {
  display: none;
}
.cid-kvh2BEOasm .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-kvh2BEOasm .goog-te-spinner-pos {
  display: none !important;
}
.cid-kvh2BEOasm body {
  top: 0px !important;
}
.cid-kvh2BEOasm body body {
  top: 0 !important;
}
.cid-kvh2BEOasm body .goog-te-banner-frame {
  display: none !important;
}
.cid-kvh2BEOasm .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-kvh2BEOasm .goog-tooltip {
  display: none !important;
}
.cid-kvh2BEOasm .goog-tooltip:hover {
  display: none !important;
}
.cid-kvh2BEOasm .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-kvh2BEOasm #goog-gt-tt,
.cid-kvh2BEOasm .goog-te-balloon-frame {
  display: none !important;
}
.cid-kvh2BEOasm #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-kvh2BEOasm .goog-logo-link {
  display: none !important;
}
.cid-kvh2BEOasm .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-kvh2BEOasm div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-kvh2BEOasm div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-thY9GeqdPa {
  z-index: 1000;
  width: 100%;
}
.cid-thY9GeqdPa nav.navbar {
  position: fixed;
}
.cid-thY9GeqdPa .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-thY9GeqdPa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thY9GeqdPa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thY9GeqdPa .dropdown-item:hover,
.cid-thY9GeqdPa .dropdown-item:focus {
  background: #ff014e !important;
  color: white !important;
}
.cid-thY9GeqdPa .dropdown-item:hover span {
  color: white;
}
.cid-thY9GeqdPa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thY9GeqdPa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thY9GeqdPa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thY9GeqdPa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thY9GeqdPa .nav-link {
  position: relative;
}
.cid-thY9GeqdPa .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-thY9GeqdPa .container {
    flex-wrap: nowrap;
  }
}
.cid-thY9GeqdPa .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thY9GeqdPa .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link:hover,
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link:focus,
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-thY9GeqdPa .dropdown-menu,
.cid-thY9GeqdPa .navbar.opened {
  background: #000000 !important;
}
.cid-thY9GeqdPa .nav-item:focus,
.cid-thY9GeqdPa .nav-link:focus {
  outline: none;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thY9GeqdPa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thY9GeqdPa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thY9GeqdPa .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-thY9GeqdPa .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-thY9GeqdPa .navbar.opened {
  transition: all 0.3s;
}
.cid-thY9GeqdPa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thY9GeqdPa .navbar .navbar-logo img {
  width: auto;
}
.cid-thY9GeqdPa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thY9GeqdPa .navbar.collapsed {
  justify-content: center;
}
.cid-thY9GeqdPa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thY9GeqdPa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thY9GeqdPa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-thY9GeqdPa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thY9GeqdPa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thY9GeqdPa .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-thY9GeqdPa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thY9GeqdPa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thY9GeqdPa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thY9GeqdPa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thY9GeqdPa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thY9GeqdPa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thY9GeqdPa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thY9GeqdPa .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-thY9GeqdPa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thY9GeqdPa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thY9GeqdPa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thY9GeqdPa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thY9GeqdPa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thY9GeqdPa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-thY9GeqdPa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-thY9GeqdPa .navbar.navbar-short {
  min-height: 90px;
}
.cid-thY9GeqdPa .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-thY9GeqdPa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .navbar {
    min-height: 80px;
  }
}
.cid-thY9GeqdPa .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-thY9GeqdPa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thY9GeqdPa .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .navbar-brand {
    min-height: 69px;
  }
}
.cid-thY9GeqdPa .dropdown-item.active,
.cid-thY9GeqdPa .dropdown-item:active {
  background-color: transparent;
}
.cid-thY9GeqdPa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thY9GeqdPa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thY9GeqdPa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thY9GeqdPa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-thY9GeqdPa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thY9GeqdPa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thY9GeqdPa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thY9GeqdPa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thY9GeqdPa button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-thY9GeqdPa button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thY9GeqdPa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thY9GeqdPa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thY9GeqdPa .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-thY9GeqdPa .navbar {
    height: 70px;
  }
  .cid-thY9GeqdPa .navbar.opened {
    height: auto;
  }
  .cid-thY9GeqdPa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thY9GeqdPa .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #000000;
  background: rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .navbar-short {
    min-height: 70px;
  }
}
.cid-thY9GeqdPa .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-thY9GeqdPa .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-thY9GeqdPa .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .container-fluid {
    padding: 0 3px;
  }
}
.cid-thY9GeqdPa .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-thY9GeqdPa .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-thY9GeqdPa .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-thY9GeqdPa .container-fluid {
    flex-wrap: wrap;
  }
  .cid-thY9GeqdPa button.navbar-toggler {
    display: flex;
  }
  .cid-thY9GeqdPa .navbar-brand {
    width: auto !important;
  }
  .cid-thY9GeqdPa .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-thY9GeqdPa .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-thY9GeqdPa .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-thY9GeqdPa .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-thY9GeqdPa .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-thY9GeqdPa .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-thY9GShril {
  background-image: url("../../../assets/images/pexels-august-de-richelieu-4427430.jpg");
}
.cid-thY9GShril .mbr-fallback-image.disabled {
  display: none;
}
.cid-thY9GShril .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thY9GShril .mbr-section-title {
  color: #c4cfde;
}
.cid-thY9GShril .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-thY9GShril .mbr-section-btn {
  margin-top: 30px;
}
.cid-thY9GShril .mbr-text,
.cid-thY9GShril .mbr-section-btn {
  color: #c4cfde;
}
.cid-thYaWFjPel {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-thYaWFjPel .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYaWFjPel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYaWFjPel .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYaWFjPel .mbr-section-title {
  color: #212428;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-thYaWFjPel .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-thYaWFjPel .mbr-section-subtitle {
  color: #212428;
}
.cid-thYaWFjPel .card-row {
  align-items: stretch;
}
.cid-thYaWFjPel .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-thYaWFjPel .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-thYaWFjPel .card-box {
  height: 100%;
}
.cid-thYaWFjPel .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-thYaWFjPel .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #312ca8;
}
.cid-thYaWFjPel .card-title {
  color: #212428;
  margin-bottom: 20px;
}
.cid-thYaWFjPel .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-thYAh1rn4D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-thYAh1rn4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYAh1rn4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-thYAh1rn4D .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-thYAh1rn4D .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: flex-start;
}
.cid-thYAh1rn4D .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .cid-thYAh1rn4D .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYAh1rn4D .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYAh1rn4D .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYAh1rn4D .mbr-section-title {
  color: #212428;
}
.cid-thYAh1rn4D .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYAh1rn4D .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYAh1rn4D .card-row {
  align-items: stretch;
}
.cid-thYAh1rn4D .item {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-thYAh1rn4D .item {
    margin-top: 50px;
  }
}
.cid-thYAh1rn4D .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-bg {
  opacity: 0.5;
}
.cid-thYAh1rn4D .item-wrapper:hover .mbr-section-btn {
  margin-top: 0;
  opacity: 1;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-title {
  color: #312ca8 !important;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-text {
  color: #312ca8 !important;
}
.cid-thYAh1rn4D .item-img-shadow {
  width: 100%;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border-radius: 7px;
}
.cid-thYAh1rn4D .item-img {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1.02702703;
}
.cid-thYAh1rn4D .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-thYAh1rn4D .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #c4cfde;
  border-radius: 6px;
  opacity: 0;
  transition: .5s all;
  pointer-events: none;
}
.cid-thYAh1rn4D .mbr-section-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translate(-50%, -50%);
  max-width: 100%;
  margin-top: 10px;
  transition: 0.4s all;
  opacity: 0;
}
.cid-thYAh1rn4D .mbr-section-btn .btn {
  padding: 10px 18px;
  min-height: 44px;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-thYAh1rn4D .mbr-section-btn {
    width: auto;
  }
  .cid-thYAh1rn4D .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-thYAh1rn4D .card-box {
  position: relative;
  z-index: 5;
  padding: 39px 30px 0;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-thYAh1rn4D .card-box {
    padding: 20px 10px 0;
  }
}
.cid-thYAh1rn4D .card-title {
  color: #212428;
  margin-bottom: 20px;
  transition: .4s all;
}
.cid-thYAh1rn4D .card-text {
  color: #212428;
  margin-bottom: 22px;
  transition: .4s all;
}
.cid-thYfHSO2OR {
  background-image: url("../../../assets/images/pexels-sora-shimazaki-5668765.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-thYfHSO2OR .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYfHSO2OR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYfHSO2OR .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-thYfHSO2OR .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-thYfHSO2OR .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-thYfHSO2OR .container {
    max-width: 540px;
  }
}
.cid-thYfHSO2OR .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thYfHSO2OR .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-thYfHSO2OR .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYfHSO2OR .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYfHSO2OR .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thYfHSO2OR .mbr-section-title {
  color: #434a51;
}
.cid-thYfHSO2OR .mbr-section-subtitle {
  color: #13171f;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-thYfHSO2OR .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-thYfHSO2OR .card-row {
  align-items: stretch;
}
.cid-thYfHSO2OR .card {
  margin-top: 30px;
}
.cid-thYfHSO2OR .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #c4cfde, #ffffff);
}
.cid-thYfHSO2OR .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thYfHSO2OR .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-thYfHSO2OR .card-wrapper:hover .card-title {
  color: #434a51 !important;
}
.cid-thYfHSO2OR .card-wrapper:hover .card-text {
  color: #434a51 !important;
}
.cid-thYfHSO2OR .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #c4cfde, #9ca5b1);
  opacity: 0;
  transition: .5s all;
}
.cid-thYfHSO2OR .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-thYfHSO2OR .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-thYfHSO2OR .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ff014e;
}
.cid-thYfHSO2OR .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-thYfHSO2OR .card-text {
  color: #212428;
  margin-bottom: 22px;
  transition: .5s all;
  text-align: center;
}
.cid-thYfHSO2OR .card-title,
.cid-thYfHSO2OR .iconfont-wrapper {
  color: #212428;
  text-align: center;
}
.cid-thYgYraYRR {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #c4cfde;
}
.cid-thYgYraYRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYgYraYRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYgYraYRR .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thYgYraYRR .mbr-section-title {
  color: #FF014E;
}
.cid-thYgYraYRR .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYgYraYRR .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYgYraYRR .card-row {
  align-items: stretch;
}
.cid-thYgYraYRR .card {
  margin-top: 30px;
}
.cid-thYgYraYRR .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #c4cfde, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-thYgYraYRR .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-thYgYraYRR .card-wrapper {
    padding: 20px;
  }
}
.cid-thYgYraYRR .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thYgYraYRR .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-thYgYraYRR .card-wrapper:hover .card-title {
  color: #000000 !important;
}
.cid-thYgYraYRR .card-wrapper:hover .card-text {
  color: #000000 !important;
}
.cid-thYgYraYRR .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #c4cfde, #9ca5b1);
  opacity: 0;
  transition: .5s all;
}
.cid-thYgYraYRR .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-thYgYraYRR .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-thYgYraYRR .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #878e99;
}
.cid-thYgYraYRR .card-title {
  color: #212428;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
.cid-thYgYraYRR .card-text {
  color: #212428;
  margin-bottom: 22px;
  transition: .5s all;
  text-align: center;
}
.cid-thYjj9TXYU {
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #c4cfde;
}
.cid-thYjj9TXYU .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-thYjj9TXYU .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-thYjj9TXYU .mbr-section-title {
    text-align: center;
  }
}
.cid-thYjj9TXYU .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYjj9TXYU .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thYjj9TXYU .box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thYjj9TXYU .mbr-media {
  width: 100%;
  position: relative;
}
.cid-thYjj9TXYU .mbr-media img {
  width: 100%;
  aspect-ratio: 1.77842566;
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
}
.cid-thYjj9TXYU .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-thYjj9TXYU .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-thYjj9TXYU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-thYjj9TXYU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-thYjj9TXYU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-thYjj9TXYU .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-thYjj9TXYU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-thYjAfFT4b {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
  overflow: hidden;
}
.cid-thYjAfFT4b .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYjAfFT4b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYjAfFT4b .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #c4cfde, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thYjAfFT4b .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-thYjAfFT4b .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-thYjAfFT4b .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-thYjAfFT4b .card-title {
    margin-bottom: 20px;
  }
}
.cid-thYjAfFT4b .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-thYjAfFT4b .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-thYjAfFT4b .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-thYhIgNz9O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-thYhIgNz9O .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYhIgNz9O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYhIgNz9O .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thYhIgNz9O .mbr-section-title {
  color: #212428;
}
.cid-thYhIgNz9O .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYhIgNz9O .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYhIgNz9O .card-row {
  align-items: stretch;
}
.cid-thYhIgNz9O .card {
  margin: 15px 0;
}
.cid-thYhIgNz9O .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #c4cfde, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-thYhIgNz9O .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-thYhIgNz9O .card-wrapper {
    padding: 20px;
  }
}
.cid-thYhIgNz9O .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-thYhIgNz9O .card-head {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-thYhIgNz9O .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
  padding: 7px;
  min-width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #312ca8;
}
.cid-thYhIgNz9O .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
}
.cid-thYhIgNz9O .card-head-text {
  flex-grow: 1;
}
.cid-thYhIgNz9O .name-title {
  color: #212428;
}
.cid-thYhIgNz9O .name-text {
  color: #312ca8;
}
.cid-thYhIgNz9O .card-title {
  color: #212428;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-thYhIgNz9O .card-text {
  color: #212428;
  opacity: 0.75;
  margin-bottom: 36px;
  transition: .5s all;
}
.cid-thYhIgNz9O .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  margin-right: auto;
  padding-top: 4px;
}
.cid-thYhIgNz9O .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.cid-thYhIgNz9O .score-container .score-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #312ca8;
}
.cid-thYiiRmFxx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-thYiiRmFxx .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYiiRmFxx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-thYiiRmFxx .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.cid-thYiiRmFxx .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thYiiRmFxx .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-thYiiRmFxx .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYiiRmFxx .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYiiRmFxx .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYiiRmFxx .mbr-section-title {
  color: #212428;
}
.cid-thYiiRmFxx .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYiiRmFxx .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYiiRmFxx .card-row {
  align-items: stretch;
}
.cid-thYiiRmFxx .item {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-thYiiRmFxx .item {
    margin-top: 30px;
  }
}
.cid-thYiiRmFxx .item:nth-child(1n) .item-img {
  aspect-ratio: 0.8552381;
}
.cid-thYiiRmFxx .item:nth-child(3n) .item-img {
  aspect-ratio: 1.22343324;
}
.cid-thYiiRmFxx .item:nth-child(2n) .item-img {
  aspect-ratio: 0.94129979;
}
.cid-thYiiRmFxx .item-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}
.cid-thYiiRmFxx .item-img-shadow {
  width: 100%;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border-radius: 7px;
}
.cid-thYiiRmFxx .item-img {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #16181c;
}
.cid-thYiiRmFxx .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-thYk47ZjUx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
  overflow: hidden;
}
.cid-thYk47ZjUx .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYk47ZjUx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYk47ZjUx .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-thYk47ZjUx .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-thYk47ZjUx .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thYk47ZjUx .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-thYk47ZjUx .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYk47ZjUx .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYk47ZjUx .mbr-section-head {
  width: 100%;
}
.cid-thYk47ZjUx .mbr-section-title {
  color: #212428;
}
@media (max-width: 767px) {
  .cid-thYk47ZjUx .mbr-section-title {
    text-align: center;
  }
}
.cid-thYk47ZjUx .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYk47ZjUx .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thYk47ZjUx .card-row {
  align-items: stretch;
}
.cid-thYk47ZjUx .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-thYk47ZjUx .item {
    margin-top: 30px;
  }
}
.cid-thYk47ZjUx .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #c4cfde, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-thYk47ZjUx .item-wrapper {
    padding: 20px;
  }
}
.cid-thYk47ZjUx .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thYk47ZjUx .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-thYk47ZjUx .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #c4cfde, #9ca5b1);
  opacity: 0;
  transition: .4s all;
}
.cid-thYk47ZjUx .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-thYk47ZjUx .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thYk47ZjUx .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-thYk47ZjUx .card-title {
  position: relative;
  z-index: 5;
  color: #312ca8;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-thYk47ZjUx .card-title {
    margin-bottom: 10px;
  }
}
.cid-thYk47ZjUx .card-text {
  position: relative;
  z-index: 5;
  color: #212428;
  margin-bottom: 0;
  text-align: center;
}
.cid-thYk47ZjUx .card-text a {
  transition: .4s all;
}
.cid-thYk47ZjUx .card-text a:hover {
  color: #ff014e !important;
}
.cid-thYnT7PHNA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 750px;
  display: flex;
  align-items: center;
  background-image: url("../../../assets/images/background6.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-thYnT7PHNA .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYnT7PHNA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYnT7PHNA .mbr-section-head {
  width: 100%;
}
.cid-thYnT7PHNA .mbr-section-title {
  color: #212428;
}
.cid-thYnT7PHNA .mbr-section-subtitle {
  color: #FF014E;
  margin-top: 20px;
}
.cid-thYnT7PHNA .mbr-section-btn {
  margin-top: 40px;
}
.cid-thYlBOnrGH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #c4cfde;
}
.cid-thYlBOnrGH .mbr-overlay {
  background-color: #212428;
  opacity: 0.2;
}
.cid-thYlBOnrGH .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thYlBOnrGH .row {
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cid-thYlBOnrGH .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-thYlBOnrGH .col-info-card {
    margin-bottom: 50px;
  }
}
.cid-thYlBOnrGH .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-thYlBOnrGH .mbr-section-title {
  color: #212428;
}
@media (max-width: 767px) {
  .cid-thYlBOnrGH .mbr-section-title {
    text-align: center;
  }
}
.cid-thYlBOnrGH .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYlBOnrGH .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thYlBOnrGH .item-card {
  height: 100%;
}
.cid-thYlBOnrGH .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thYlBOnrGH .item-wrap {
    padding: 50px 20px;
  }
}
.cid-thYlBOnrGH .item-wrap:hover .item-img img {
  transform: scale(1.1);
}
.cid-thYlBOnrGH .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-thYlBOnrGH .item-img img {
  width: 100%;
  aspect-ratio: 1.59722222;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thYlBOnrGH .card-box {
  padding-top: 28px;
}
.cid-thYlBOnrGH .card-title {
  color: #212428;
  margin-bottom: 9px;
}
.cid-thYlBOnrGH .card-subtitle {
  color: #212428;
  margin-bottom: 15px;
}
.cid-thYlBOnrGH .card-text {
  color: #878e99;
  margin-bottom: 20px;
}
.cid-thYlBOnrGH .card-contacts {
  color: #212428;
}
.cid-thYlBOnrGH .card-contacts a {
  position: relative;
  transition: 0.4s all;
}
.cid-thYlBOnrGH .card-contacts a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ff014e;
  transition: 0.4s all;
}
.cid-thYlBOnrGH .card-contacts a:hover {
  color: #ff014e !important;
}
.cid-thYlBOnrGH .card-contacts a:hover:before {
  width: 100%;
}
.cid-thYlBOnrGH .social-container {
  width: 100%;
  padding-top: 30px;
}
.cid-thYlBOnrGH .social-title {
  color: #C4CFDE;
  margin-bottom: 8px;
}
.cid-thYlBOnrGH .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  margin-top: 24px;
}
.cid-thYlBOnrGH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-thYlBOnrGH .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thYlBOnrGH .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-thYlBOnrGH .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thYlBOnrGH .soc-item:hover .mbr-iconfont {
  color: #ff014e;
}
.cid-thYlBOnrGH .soc-item:hover:before {
  opacity: 1;
}
.cid-thYlBOnrGH .form-main-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .cid-thYlBOnrGH .form-main-container {
    padding-left: 20px;
  }
}
.cid-thYlBOnrGH .form-wrap {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-thYlBOnrGH .form-wrap {
    padding: 20px;
  }
}
.cid-thYlBOnrGH form {
  width: 100%;
}
.cid-thYlBOnrGH form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-thYlBOnrGH form p {
  color: #878e99;
}
.cid-thYlBOnrGH form .mbr-section-btn {
  text-align: center;
  justify-content: center;
}
.cid-thYlBOnrGH form .mbr-section-btn .btn {
  width: 100%;
}
.cid-thYlBOnrGH form .form-group {
  margin-bottom: 20px !important;
}
.cid-thYlBOnrGH form .form-control {
  background-color: #191b1e;
  border-radius: 6px !important;
  height: 55px;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset !important;
  border: 2px solid #191b1e !important;
  padding: 10px 15px;
  font-size: 18px;
  margin-bottom: 0;
  color: #C4CFDE;
  font-weight: 400;
  transition: 0.4s all !important;
  line-height: 29px !important;
}
.cid-thYlBOnrGH form .form-control::-webkit-input-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form .form-control::-moz-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form .form-control:-moz-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form .form-control:-ms-input-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form select {
  color: #878e99 !important;
}
.cid-thYlBOnrGH form textarea {
  height: 216px !important;
  resize: none;
}
.cid-thYlBOnrGH form input:active,
.cid-thYlBOnrGH form textarea:active,
.cid-thYlBOnrGH form input:focus,
.cid-thYlBOnrGH form textarea:focus {
  border-color: #ff014e !important;
  box-shadow: none !important;
  color: #878e99 !important;
  outline: none !important;
}
.cid-thYlBOnrGH form input:active::-webkit-input-placeholder,
.cid-thYlBOnrGH form textarea:active::-webkit-input-placeholder,
.cid-thYlBOnrGH form input:focus::-webkit-input-placeholder,
.cid-thYlBOnrGH form textarea:focus::-webkit-input-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form input:active::-moz-placeholder,
.cid-thYlBOnrGH form textarea:active::-moz-placeholder,
.cid-thYlBOnrGH form input:focus::-moz-placeholder,
.cid-thYlBOnrGH form textarea:focus::-moz-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form input:active:-moz-placeholder,
.cid-thYlBOnrGH form textarea:active:-moz-placeholder,
.cid-thYlBOnrGH form input:focus:-moz-placeholder,
.cid-thYlBOnrGH form textarea:focus:-moz-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form input:active:-ms-input-placeholder,
.cid-thYlBOnrGH form textarea:active:-ms-input-placeholder,
.cid-thYlBOnrGH form input:focus:-ms-input-placeholder,
.cid-thYlBOnrGH form textarea:focus:-ms-input-placeholder {
  color: #878e99;
}
.cid-thYlBOnrGH form .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.cid-thYlBOnrGH form .row [class*=col] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-thYlBOnrGH form label {
  width: 100%;
  color: #878e99;
  margin-bottom: 14px;
}
.cid-thYlBOnrGH form .form-control-label {
  width: 100%;
}
.cid-thYlBOnrGH form .form-check-label {
  margin-bottom: 14px;
}
.cid-thYlBOnrGH form .form-check-input {
  border-color: #191b1e !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-thYlBOnrGH form .form-check-input:focus,
.cid-thYlBOnrGH form .form-check-input:hover {
  border-color: #ff014e !important;
}
.cid-thYlBOnrGH form .form-check-input:checked {
  border-color: #ff014e !important;
  background-color: #191b1e !important;
}
.cid-thYmpY4Rep {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #878e99;
}
.cid-thYmpY4Rep .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-thYmpY4Rep .mbr-section-title {
  color: #212428;
}
.cid-thYmpY4Rep .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYmpY4Rep .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYmpY4Rep .card {
  margin-bottom: 30px;
}
.cid-thYmpY4Rep img {
  width: auto;
  max-height: 100px;
  max-width: 100%;
  margin: auto;
}
.cid-thYmLg8Hpp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
  overflow: hidden;
}
.cid-thYmLg8Hpp .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYmLg8Hpp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYmLg8Hpp .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-thYmLg8Hpp .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-thYmLg8Hpp .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thYmLg8Hpp .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-thYmLg8Hpp .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYmLg8Hpp .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYmLg8Hpp .mbr-section-head {
  width: 100%;
}
.cid-thYmLg8Hpp .mbr-section-title {
  color: #212428;
}
@media (max-width: 767px) {
  .cid-thYmLg8Hpp .mbr-section-title {
    text-align: center;
  }
}
.cid-thYmLg8Hpp .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYmLg8Hpp .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thYmLg8Hpp .card-row {
  align-items: stretch;
}
.cid-thYmLg8Hpp .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-thYmLg8Hpp .item {
    margin-top: 30px;
  }
}
.cid-thYmLg8Hpp .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #c4cfde, #ffffff);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-thYmLg8Hpp .item-wrapper {
    padding: 20px;
  }
}
.cid-thYmLg8Hpp .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thYmLg8Hpp .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-thYmLg8Hpp .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #c4cfde, #9ca5b1);
  opacity: 0;
  transition: .4s all;
}
.cid-thYmLg8Hpp .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-thYmLg8Hpp .item-img img {
  width: 100%;
  aspect-ratio: 1.77777778;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thYmLg8Hpp .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-thYmLg8Hpp .card-title {
  position: relative;
  z-index: 5;
  color: #312ca8;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-thYmLg8Hpp .card-title {
    margin-bottom: 10px;
  }
}
.cid-thYmLg8Hpp .card-text {
  position: relative;
  z-index: 5;
  color: #212428;
  margin-bottom: 0;
  text-align: left;
}
.cid-thYmLg8Hpp .card-text a {
  transition: .4s all;
}
.cid-thYmLg8Hpp .card-text a:hover {
  color: #ff014e !important;
}
.cid-thYab7yJ96 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-thYab7yJ96 .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-thYab7yJ96 .copyright-container {
  padding: 40px 0;
}
.cid-thYab7yJ96 .mbr-text {
  color: #212428;
}
.cid-thXKMbTk5w {
  z-index: 1000;
  width: 100%;
}
.cid-thXKMbTk5w nav.navbar {
  position: fixed;
}
.cid-thXKMbTk5w .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-thXKMbTk5w .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thXKMbTk5w .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thXKMbTk5w .dropdown-item:hover,
.cid-thXKMbTk5w .dropdown-item:focus {
  background: #ff014e !important;
  color: white !important;
}
.cid-thXKMbTk5w .dropdown-item:hover span {
  color: white;
}
.cid-thXKMbTk5w .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thXKMbTk5w .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thXKMbTk5w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thXKMbTk5w .nav-link {
  position: relative;
}
.cid-thXKMbTk5w .container {
  display: flex;
  margin: auto;
}
.cid-thXKMbTk5w .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thXKMbTk5w .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:hover,
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:focus,
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-thXKMbTk5w .dropdown-menu,
.cid-thXKMbTk5w .navbar.opened {
  background: #000000 !important;
}
.cid-thXKMbTk5w .nav-item:focus,
.cid-thXKMbTk5w .nav-link:focus {
  outline: none;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thXKMbTk5w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thXKMbTk5w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thXKMbTk5w .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-thXKMbTk5w .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-thXKMbTk5w .navbar.opened {
  transition: all 0.3s;
}
.cid-thXKMbTk5w .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thXKMbTk5w .navbar .navbar-logo img {
  width: auto;
}
.cid-thXKMbTk5w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thXKMbTk5w .navbar.collapsed {
  justify-content: center;
}
.cid-thXKMbTk5w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thXKMbTk5w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thXKMbTk5w .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-thXKMbTk5w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thXKMbTk5w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thXKMbTk5w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thXKMbTk5w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thXKMbTk5w .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-thXKMbTk5w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thXKMbTk5w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thXKMbTk5w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thXKMbTk5w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thXKMbTk5w .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-thXKMbTk5w .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-thXKMbTk5w .navbar.navbar-short {
  min-height: 90px;
}
.cid-thXKMbTk5w .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-thXKMbTk5w .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar {
    min-height: 80px;
  }
}
.cid-thXKMbTk5w .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-thXKMbTk5w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thXKMbTk5w .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar-brand {
    min-height: 69px;
  }
}
.cid-thXKMbTk5w .dropdown-item.active,
.cid-thXKMbTk5w .dropdown-item:active {
  background-color: transparent;
}
.cid-thXKMbTk5w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thXKMbTk5w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-thXKMbTk5w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thXKMbTk5w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thXKMbTk5w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thXKMbTk5w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thXKMbTk5w button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-thXKMbTk5w button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thXKMbTk5w .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thXKMbTk5w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thXKMbTk5w .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-thXKMbTk5w .navbar {
    height: 70px;
  }
  .cid-thXKMbTk5w .navbar.opened {
    height: auto;
  }
  .cid-thXKMbTk5w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thXKMbTk5w .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #000000;
  background: rgba(0, 0, 0, 0.7);
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar-short {
    min-height: 70px;
  }
}
.cid-thXKMbTk5w .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 3px;
  }
}
.cid-thXKMbTk5w .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-thXKMbTk5w .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-thXKMbTk5w .container-fluid {
  flex-wrap: wrap;
}
.cid-thXKMbTk5w button.navbar-toggler {
  display: flex;
}
.cid-thXKMbTk5w .navbar-brand {
  width: auto !important;
}
.cid-thXKMbTk5w .navbar-collapse {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-thXKMbTk5w .navbar-collapse .nav-item {
  margin: 8px 0 !important;
}
.cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link {
  margin: 0 !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 1;
  justify-content: left;
}
.cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-thXKMbTk5w .icons-menu {
  margin-top: 10px;
  justify-content: left;
}
.cid-thXKMbTk5w .navbar-buttons {
  margin-top: 20px;
  text-align: left;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
@media (max-width: 991px) {
  .cid-thXKMbTk5w .container-fluid {
    flex-wrap: wrap;
  }
  .cid-thXKMbTk5w button.navbar-toggler {
    display: flex;
  }
  .cid-thXKMbTk5w .navbar-brand {
    width: auto !important;
  }
  .cid-thXKMbTk5w .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-thXKMbTk5w .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-thXKMbTk5w .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-thXL483li8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXL483li8 .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-thXL483li8 .copyright-container {
  padding: 40px 0;
}
.cid-thXL483li8 .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-u76nQDC6t4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-u76nQDC6t4 .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-u76nQDC6t4 .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-u76nQDC6t4 .mbr-section-title {
    text-align: center;
  }
}
.cid-u76nQDC6t4 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-u76nQDC6t4 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-u76nQDC6t4 .box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-u76nQDC6t4 .mbr-media {
  width: 100%;
  position: relative;
}
.cid-u76nQDC6t4 .mbr-media img {
  width: 100%;
  aspect-ratio: 1.77842566;
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
}
.cid-u76nQDC6t4 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u76nQDC6t4 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u76nQDC6t4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u76nQDC6t4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u76nQDC6t4 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u76nQDC6t4 .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u76nQDC6t4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u76o29xTpn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-u76o29xTpn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u76o29xTpn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u76o29xTpn .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-u76o29xTpn .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-u76o29xTpn .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-u76o29xTpn .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-u76o29xTpn .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-u76o29xTpn .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-u76o29xTpn .mbr-section-head {
  width: 100%;
}
.cid-u76o29xTpn .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-u76o29xTpn .mbr-section-title {
    text-align: center;
  }
}
.cid-u76o29xTpn .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-u76o29xTpn .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-u76o29xTpn .card-row {
  align-items: stretch;
}
.cid-u76o29xTpn .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-u76o29xTpn .item {
    margin-top: 30px;
  }
}
.cid-u76o29xTpn .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-u76o29xTpn .item-wrapper {
    padding: 20px;
  }
}
.cid-u76o29xTpn .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-u76o29xTpn .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-u76o29xTpn .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-u76o29xTpn .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-u76o29xTpn .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-u76o29xTpn .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-u76o29xTpn .card-title {
  position: relative;
  z-index: 5;
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-u76o29xTpn .card-title {
    margin-bottom: 10px;
  }
}
.cid-u76o29xTpn .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u76o29xTpn .card-text a {
  transition: .4s all;
}
.cid-u76o29xTpn .card-text a:hover {
  color: #ff014e !important;
}
