body {
  font-family: Finlandica;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Raleway', 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: 2.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.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: #ec1722 !important;
}
.bg-success {
  background-color: #8fff32 !important;
}
.bg-info {
  background-color: #312ca8 !important;
}
.bg-warning {
  background-color: #ec1722 !important;
}
.bg-danger {
  background-color: #13171f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ec1722 !important;
  border-color: #ec1722 !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: #9f0d15 !important;
  border-color: #9f0d15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !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: #ec1722 !important;
  border-color: #ec1722 !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: #9f0d15 !important;
  border-color: #9f0d15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #13171f !important;
  border-color: #13171f !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #ec1722;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9f0d15 !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: #ec1722 !important;
  border-color: #ec1722 !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: #ec1722;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9f0d15 !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: #ec1722 !important;
  border-color: #ec1722 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #13171f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #13171f !important;
  border-color: #13171f !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: #ec1722 !important;
}
.text-secondary {
  color: #6b67ce !important;
}
.text-success {
  color: #8fff32 !important;
}
.text-info {
  color: #312ca8 !important;
}
.text-warning {
  color: #ec1722 !important;
}
.text-danger {
  color: #13171f !important;
}
.text-white {
  color: #C4CFDE !important;
}
.text-black {
  color: #212428 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #910c13 !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: #910c13 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #ec1722;
}
.nav-tabs .nav-link:not(.active) {
  color: #212428;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #312ca8;
}
.alert-warning {
  background-color: #ec1722;
}
.alert-danger {
  background-color: #13171f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ec1722;
  border-color: #ec1722;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ec1722;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbd4d6;
}
.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: #fbd4d6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bfc7d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Raleway', 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: #ec1722 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', 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: #ec1722;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ec1722;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ec1722;
}
.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: #ec1722;
  border-bottom-color: #ec1722;
}
.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: #ec1722 !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='%23ec1722' %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: #ec1722 !important;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
}
.custom-section-btn .btn-black:hover {
  color: #ec1722 !important;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  transform: translateY(-5px);
}
.custom-section-btn .btn-white {
  color: #ec1722 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.custom-section-btn .btn-white:hover {
  color: #ec1722 !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: #ec1722 !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;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .container {
    flex-wrap: nowrap;
  }
}
.cid-thXKMbTk5w .iconfont-wrapper {
  color: #ff014e !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: #212428 !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(33, 36, 40, 0.9);
  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 - 4.7rem);
  }
}
.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: #212428;
}
.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: #ff014e;
}
.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: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@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;
  }
}
@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-thXKN5Vkvt {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-thXKN5Vkvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXKN5Vkvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.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: #ec0047;
  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-thXLfwRkmP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hochzeit-inline-1200x800.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: #C4CFDE;
}
.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;
  text-align: center;
}
.cid-thXLfwRkmP .card-title,
.cid-thXLfwRkmP .iconfont-wrapper {
  text-align: center;
}
.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: #ec0047;
}
@media (max-width: 767px) {
  .cid-thXN2QU3aY .mbr-section-title {
    text-align: center;
  }
}
.cid-thXN2QU3aY .mbr-section-subtitle {
  color: #C4CFDE;
  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: #ec1722;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .card-contacts a:hover {
  color: #ec1722 !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: #ec1722;
}
.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: #ec1722 !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: #ec1722 !important;
}
.cid-thXN2QU3aY form .form-check-input:checked {
  border-color: #ec1722 !important;
  background-color: #191b1e !important;
}
.cid-thXRijuFis {
  padding-top: 1rem;
  padding-bottom: 1rem;
  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: #ffffff;
  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: #ec1722 !important;
}
.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-tzKdijDNuW {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tzKdijDNuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzKdijDNuW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzKdijDNuW .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tzKdijDNuW .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tzKdijDNuW .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tzKdijDNuW .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tzKdijDNuW .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tzKdijDNuW .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tzKdijDNuW .mbr-section-head {
  width: 100%;
}
.cid-tzKdijDNuW .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-tzKdijDNuW .mbr-section-title {
    text-align: center;
  }
}
.cid-tzKdijDNuW .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tzKdijDNuW .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tzKdijDNuW .card-row {
  align-items: stretch;
}
.cid-tzKdijDNuW .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tzKdijDNuW .item {
    margin-top: 30px;
  }
}
.cid-tzKdijDNuW .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-tzKdijDNuW .item-wrapper {
    padding: 20px;
  }
}
.cid-tzKdijDNuW .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tzKdijDNuW .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-tzKdijDNuW .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-tzKdijDNuW .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tzKdijDNuW .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-tzKdijDNuW .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-tzKdijDNuW .card-title {
  position: relative;
  z-index: 5;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-tzKdijDNuW .card-title {
    margin-bottom: 10px;
  }
}
.cid-tzKdijDNuW .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-tzKdijDNuW .card-text a {
  transition: .4s all;
}
.cid-tzKdijDNuW .card-text a:hover {
  color: #ec1722 !important;
}
.cid-thXP0uH5Zh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/architektur-start-1200x800.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.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;
  text-align: center;
}
.cid-thXP0uH5Zh .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
  text-align: center;
}
.cid-thXQPe83Ff {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXQPe83Ff .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thXQPe83Ff .mbr-section-title {
  color: #FF014E;
}
.cid-thXQPe83Ff .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thXQPe83Ff .carousel-wrapper {
  margin: 0 75px;
}
@media (max-width: 1199px) {
  .cid-thXQPe83Ff .carousel-wrapper {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .carousel-wrapper {
    margin: 0 -10px;
  }
}
.cid-thXQPe83Ff .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto 36px;
}
@media (max-width: 1199px) {
  .cid-thXQPe83Ff .carousel {
    max-width: 100%;
  }
}
.cid-thXQPe83Ff .carousel-inner {
  display: flex;
  align-items: center;
  padding: 50px 0 25px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .carousel-inner {
    padding: 40px 0 25px;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .carousel-inner {
    padding: 35px 0 25px;
  }
}
.cid-thXQPe83Ff .item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0 25px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .item-wrapper {
    padding: 0 10px;
  }
}
.cid-thXQPe83Ff .card-info {
  position: relative;
  z-index: 10;
  width: 395px;
  padding: 30px 30px 40px 30px;
  margin-right: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-thXQPe83Ff .card-info {
    width: 270px;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-info {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .card-info {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.cid-thXQPe83Ff .info-img-wrap {
  display: flex;
  width: 100%;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .info-img-wrap {
    max-width: 150px;
    margin-right: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .info-img-wrap {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-thXQPe83Ff .info-img-wrap img {
  width: 100%;
  aspect-ratio: 1.32936508;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thXQPe83Ff .info-img-wrap img:hover {
  transform: scale(1.1);
}
.cid-thXQPe83Ff .info-text-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .info-text-wrap {
    flex-grow: 1;
  }
}
.cid-thXQPe83Ff .info-card-title {
  color: #FF014E;
  margin-bottom: 10px;
}
.cid-thXQPe83Ff .info-card-subtitle {
  color: #C4CFDE;
}
.cid-thXQPe83Ff .info-card-text {
  color: #878e99;
  margin-top: 4px;
}
.cid-thXQPe83Ff .card-description {
  position: relative;
  margin-top: 115px;
  width: 1px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-description {
    width: 100%;
    margin-top: 0;
  }
}
.cid-thXQPe83Ff .card-description::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 5px;
  background: #16181c;
  left: -43px;
  z-index: 9;
  top: 66px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-description::before {
    display: none;
  }
}
.cid-thXQPe83Ff .card-description-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 50px 40px 50px 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-description-wrapper {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .card-description-wrapper {
    padding: 20px;
  }
}
.cid-thXQPe83Ff .card-description-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #16181c;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .card-description-container {
    flex-wrap: wrap;
  }
}
.cid-thXQPe83Ff .card-description-text-wrap {
  margin-bottom: 15px;
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .card-description-text-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-thXQPe83Ff .card-description-title {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-thXQPe83Ff .card-description-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-thXQPe83Ff .card-description-label-wrap {
  padding: 15px 17px;
  border-radius: 6px;
  margin-left: auto;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .card-description-label-wrap {
    margin-left: 0;
  }
}
.cid-thXQPe83Ff .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-thXQPe83Ff .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
}
.cid-thXQPe83Ff .score-container .score-wrapper .mbr-iconfont {
  font-size: 11px;
  color: #ff014e;
}
.cid-thXQPe83Ff .card-description-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-thXQPe83Ff .absolute-icon-wrapper {
  position: absolute;
  z-index: 9;
  left: 0;
  top: -107px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .absolute-icon-wrapper {
    display: none;
  }
}
.cid-thXQPe83Ff .absolute-icon-wrapper .mbr-iconfont {
  color: #16181c;
  font-size: 99px;
}
.cid-thXQPe83Ff .carousel-control {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 25px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  border-radius: 6px;
  transition: all 0.4s;
  opacity: 1;
}
.cid-thXQPe83Ff .carousel-control.carousel-control-prev {
  right: 105px;
  left: auto;
  margin-left: 0;
}
.cid-thXQPe83Ff .carousel-control.carousel-control-next {
  right: 25px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .carousel-control {
    display: none;
  }
}
.cid-thXQPe83Ff .carousel-control:hover {
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  color: #ec1722 !important;
  opacity: 1;
}
.cid-thXQPe83Ff .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-thXQPe83Ff .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-thXQPe83Ff .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-thXQPe83Ff .carousel-indicators {
  position: absolute;
  bottom: -35px;
  margin-bottom: 0 !important;
}
.cid-thXQPe83Ff .carousel-indicators li {
  max-width: 11px;
  height: 11px;
  width: 11px;
  max-height: 11px;
  margin: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  border: 0;
  border-radius: 50%;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  opacity: 1;
  transition: all 0.4s;
}
.cid-thXQPe83Ff .carousel-indicators li.active,
.cid-thXQPe83Ff .carousel-indicators li:hover {
  opacity: 1;
  background: #ec1722 !important;
}
.cid-thXQPe83Ff .carousel-indicators li::after,
.cid-thXQPe83Ff .carousel-indicators li::before {
  content: none;
}
.cid-thXQPe83Ff .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-thXQPe83Ff .item-menu-overlay {
  opacity: 0 !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: #878e99;
  margin-bottom: 4px;
}
.cid-thXRClqJeG .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.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-tBAHJ2n6DT {
  z-index: 1000;
  width: 100%;
}
.cid-tBAHJ2n6DT nav.navbar {
  position: fixed;
}
.cid-tBAHJ2n6DT .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-tBAHJ2n6DT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBAHJ2n6DT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBAHJ2n6DT .dropdown-item:hover,
.cid-tBAHJ2n6DT .dropdown-item:focus {
  background: #ec1722 !important;
  color: white !important;
}
.cid-tBAHJ2n6DT .dropdown-item:hover span {
  color: white;
}
.cid-tBAHJ2n6DT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBAHJ2n6DT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBAHJ2n6DT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBAHJ2n6DT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBAHJ2n6DT .nav-link {
  position: relative;
}
.cid-tBAHJ2n6DT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBAHJ2n6DT .container {
    flex-wrap: nowrap;
  }
}
.cid-tBAHJ2n6DT .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBAHJ2n6DT .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-tBAHJ2n6DT .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-tBAHJ2n6DT .navbar-nav .nav-item .nav-link:hover,
.cid-tBAHJ2n6DT .navbar-nav .nav-item .nav-link:focus,
.cid-tBAHJ2n6DT .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tBAHJ2n6DT .dropdown-menu,
.cid-tBAHJ2n6DT .navbar.opened {
  background: #212428 !important;
}
.cid-tBAHJ2n6DT .nav-item:focus,
.cid-tBAHJ2n6DT .nav-link:focus {
  outline: none;
}
.cid-tBAHJ2n6DT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBAHJ2n6DT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBAHJ2n6DT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBAHJ2n6DT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBAHJ2n6DT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBAHJ2n6DT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBAHJ2n6DT .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(33, 36, 40, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-tBAHJ2n6DT .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tBAHJ2n6DT .navbar.opened {
  transition: all 0.3s;
}
.cid-tBAHJ2n6DT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBAHJ2n6DT .navbar .navbar-logo img {
  width: auto;
}
.cid-tBAHJ2n6DT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBAHJ2n6DT .navbar.collapsed {
  justify-content: center;
}
.cid-tBAHJ2n6DT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBAHJ2n6DT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBAHJ2n6DT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tBAHJ2n6DT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBAHJ2n6DT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBAHJ2n6DT .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-tBAHJ2n6DT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBAHJ2n6DT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBAHJ2n6DT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBAHJ2n6DT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBAHJ2n6DT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBAHJ2n6DT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBAHJ2n6DT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBAHJ2n6DT .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-tBAHJ2n6DT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBAHJ2n6DT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBAHJ2n6DT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBAHJ2n6DT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBAHJ2n6DT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBAHJ2n6DT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBAHJ2n6DT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBAHJ2n6DT .navbar.navbar-short {
  min-height: 90px;
}
.cid-tBAHJ2n6DT .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-tBAHJ2n6DT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tBAHJ2n6DT .navbar {
    min-height: 80px;
  }
}
.cid-tBAHJ2n6DT .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-tBAHJ2n6DT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBAHJ2n6DT .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tBAHJ2n6DT .navbar-brand {
    min-height: 69px;
  }
}
.cid-tBAHJ2n6DT .dropdown-item.active,
.cid-tBAHJ2n6DT .dropdown-item:active {
  background-color: transparent;
}
.cid-tBAHJ2n6DT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBAHJ2n6DT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBAHJ2n6DT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBAHJ2n6DT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-tBAHJ2n6DT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBAHJ2n6DT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBAHJ2n6DT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBAHJ2n6DT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBAHJ2n6DT 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-tBAHJ2n6DT button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tBAHJ2n6DT button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tBAHJ2n6DT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff014e;
}
.cid-tBAHJ2n6DT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tBAHJ2n6DT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBAHJ2n6DT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBAHJ2n6DT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBAHJ2n6DT nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBAHJ2n6DT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBAHJ2n6DT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBAHJ2n6DT nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBAHJ2n6DT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBAHJ2n6DT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBAHJ2n6DT .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-tBAHJ2n6DT .navbar {
    height: 70px;
  }
  .cid-tBAHJ2n6DT .navbar.opened {
    height: auto;
  }
  .cid-tBAHJ2n6DT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBAHJ2n6DT .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@media (max-width: 575px) {
  .cid-tBAHJ2n6DT .navbar-short {
    min-height: 70px;
  }
}
.cid-tBAHJ2n6DT .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-tBAHJ2n6DT .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-tBAHJ2n6DT .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAHJ2n6DT .container-fluid {
    padding: 0 3px;
  }
}
.cid-tBAHJ2n6DT .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tBAHJ2n6DT .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tBAHJ2n6DT .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tBAHJ2n6DT .container-fluid {
    flex-wrap: wrap;
  }
  .cid-tBAHJ2n6DT button.navbar-toggler {
    display: flex;
  }
  .cid-tBAHJ2n6DT .navbar-brand {
    width: auto !important;
  }
  .cid-tBAHJ2n6DT .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-tBAHJ2n6DT .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-tBAHJ2n6DT .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-tBAHJ2n6DT .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-tBAHJ2n6DT .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-tBAHJ2n6DT .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-tBAOWREvdx {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tBAOWREvdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBAOWREvdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBAOWREvdx .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tBAOWREvdx .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tBAOWREvdx .container {
    max-width: 540px;
  }
}
.cid-tBAOWREvdx .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tBAOWREvdx .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tBAOWREvdx .mbr-section-title {
  color: #FF014E;
}
.cid-tBAOWREvdx .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tBAOWREvdx .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tBAOWREvdx .mbr-section-btn {
  margin-top: 25px;
}
.cid-tBAOTQFwZ8 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAOTQFwZ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBAOTQFwZ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBAOTQFwZ8 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  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-tBAOTQFwZ8 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tBAOTQFwZ8 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tBAOTQFwZ8 .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tBAOTQFwZ8 .card-title {
    margin-bottom: 20px;
  }
}
.cid-tBAOTQFwZ8 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tBAOTQFwZ8 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tBAOTQFwZ8 .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tBARjHtFy5 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tBARjHtFy5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBARjHtFy5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBARjHtFy5 .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tBARjHtFy5 .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tBARjHtFy5 .container {
    max-width: 540px;
  }
}
.cid-tBARjHtFy5 .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tBARjHtFy5 .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tBARjHtFy5 .mbr-section-title {
  color: #FF014E;
}
.cid-tBARjHtFy5 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tBARjHtFy5 .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tBARjHtFy5 .mbr-section-btn {
  margin-top: 25px;
}
.cid-tBARemqZS1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBARemqZS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBARemqZS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBARemqZS1 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  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-tBARemqZS1 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tBARemqZS1 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tBARemqZS1 .card-title {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tBARemqZS1 .card-title {
    margin-bottom: 20px;
  }
}
.cid-tBARemqZS1 .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tBARemqZS1 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tBARemqZS1 .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tBAHJ95pyT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAHJ95pyT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBAHJ95pyT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBAHJ95pyT .card-row {
  align-items: stretch;
}
.cid-tBAHJ95pyT .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-tBAHJ95pyT .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-tBAHJ95pyT .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tBAHJ95pyT .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-tBAHJ95pyT .image-wrapper {
  margin-right: 30px;
}
.cid-tBAHJ95pyT .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-tBAHJ95pyT .image-wrapper {
    margin-right: 0;
  }
}
.cid-tBAHJ95pyT .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tBAHJ95pyT .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tBAHJ95pyT .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tBAHJ95pyT .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tBAHJ95pyT .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tBAHJ95pyT .social-container {
    padding-top: 25px;
  }
}
.cid-tBAHJ95pyT .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tBAHJ95pyT .social-title {
    text-align: center !important;
  }
}
.cid-tBAHJ95pyT .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tBAHJ95pyT .social-list {
    justify-content: center !important;
  }
}
.cid-tBAHJ95pyT .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-tBAHJ95pyT .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-tBAHJ95pyT .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tBAHJ95pyT .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tBAHJ95pyT .soc-item:hover:before {
  opacity: 1;
}
.cid-tBAHJ95pyT .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tBAHJ95pyT .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAHJ95pyT .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tBAHJ95pyT .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tBAHJ95pyT .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBAHJ95pyT .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tBAHJ95pyT .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tBAHJ95pyT .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAHJ95pyT .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tBAHJ95pyT .contact-item {
  padding: 10px 0 20px;
}
.cid-tBAHJ95pyT .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tBAHJ95pyT .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tBAHJ9W51h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAHJ9W51h .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-tBAHJ9W51h .copyright-container {
  padding: 40px 0;
}
.cid-tBAHJ9W51h .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-tBAUAsNq28 {
  z-index: 1000;
  width: 100%;
}
.cid-tBAUAsNq28 nav.navbar {
  position: fixed;
}
.cid-tBAUAsNq28 .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-tBAUAsNq28 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBAUAsNq28 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBAUAsNq28 .dropdown-item:hover,
.cid-tBAUAsNq28 .dropdown-item:focus {
  background: #ec1722 !important;
  color: white !important;
}
.cid-tBAUAsNq28 .dropdown-item:hover span {
  color: white;
}
.cid-tBAUAsNq28 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBAUAsNq28 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBAUAsNq28 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBAUAsNq28 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBAUAsNq28 .nav-link {
  position: relative;
}
.cid-tBAUAsNq28 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBAUAsNq28 .container {
    flex-wrap: nowrap;
  }
}
.cid-tBAUAsNq28 .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBAUAsNq28 .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-tBAUAsNq28 .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-tBAUAsNq28 .navbar-nav .nav-item .nav-link:hover,
.cid-tBAUAsNq28 .navbar-nav .nav-item .nav-link:focus,
.cid-tBAUAsNq28 .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tBAUAsNq28 .dropdown-menu,
.cid-tBAUAsNq28 .navbar.opened {
  background: #212428 !important;
}
.cid-tBAUAsNq28 .nav-item:focus,
.cid-tBAUAsNq28 .nav-link:focus {
  outline: none;
}
.cid-tBAUAsNq28 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBAUAsNq28 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBAUAsNq28 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBAUAsNq28 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBAUAsNq28 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBAUAsNq28 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBAUAsNq28 .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(33, 36, 40, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-tBAUAsNq28 .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tBAUAsNq28 .navbar.opened {
  transition: all 0.3s;
}
.cid-tBAUAsNq28 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBAUAsNq28 .navbar .navbar-logo img {
  width: auto;
}
.cid-tBAUAsNq28 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBAUAsNq28 .navbar.collapsed {
  justify-content: center;
}
.cid-tBAUAsNq28 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBAUAsNq28 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBAUAsNq28 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tBAUAsNq28 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBAUAsNq28 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBAUAsNq28 .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-tBAUAsNq28 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBAUAsNq28 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBAUAsNq28 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBAUAsNq28 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBAUAsNq28 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBAUAsNq28 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBAUAsNq28 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBAUAsNq28 .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-tBAUAsNq28 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBAUAsNq28 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBAUAsNq28 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBAUAsNq28 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBAUAsNq28 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBAUAsNq28 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBAUAsNq28 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBAUAsNq28 .navbar.navbar-short {
  min-height: 90px;
}
.cid-tBAUAsNq28 .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-tBAUAsNq28 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tBAUAsNq28 .navbar {
    min-height: 80px;
  }
}
.cid-tBAUAsNq28 .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-tBAUAsNq28 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBAUAsNq28 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tBAUAsNq28 .navbar-brand {
    min-height: 69px;
  }
}
.cid-tBAUAsNq28 .dropdown-item.active,
.cid-tBAUAsNq28 .dropdown-item:active {
  background-color: transparent;
}
.cid-tBAUAsNq28 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBAUAsNq28 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBAUAsNq28 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBAUAsNq28 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-tBAUAsNq28 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBAUAsNq28 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBAUAsNq28 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBAUAsNq28 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBAUAsNq28 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-tBAUAsNq28 button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tBAUAsNq28 button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tBAUAsNq28 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff014e;
}
.cid-tBAUAsNq28 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tBAUAsNq28 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBAUAsNq28 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBAUAsNq28 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBAUAsNq28 nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBAUAsNq28 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBAUAsNq28 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBAUAsNq28 nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBAUAsNq28 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBAUAsNq28 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBAUAsNq28 .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-tBAUAsNq28 .navbar {
    height: 70px;
  }
  .cid-tBAUAsNq28 .navbar.opened {
    height: auto;
  }
  .cid-tBAUAsNq28 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBAUAsNq28 .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@media (max-width: 575px) {
  .cid-tBAUAsNq28 .navbar-short {
    min-height: 70px;
  }
}
.cid-tBAUAsNq28 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-tBAUAsNq28 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-tBAUAsNq28 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAUAsNq28 .container-fluid {
    padding: 0 3px;
  }
}
.cid-tBAUAsNq28 .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tBAUAsNq28 .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tBAUAsNq28 .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tBAUAsNq28 .container-fluid {
    flex-wrap: wrap;
  }
  .cid-tBAUAsNq28 button.navbar-toggler {
    display: flex;
  }
  .cid-tBAUAsNq28 .navbar-brand {
    width: auto !important;
  }
  .cid-tBAUAsNq28 .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-tBAUAsNq28 .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-tBAUAsNq28 .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-tBAUAsNq28 .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-tBAUAsNq28 .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-tBAUAsNq28 .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-tBAUAuB5M4 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-tBAUAuB5M4 .mbr-overlay {
  background-color: #212428;
  opacity: 0.2;
}
.cid-tBAUAuB5M4 .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-tBAUAuB5M4 .row {
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cid-tBAUAuB5M4 .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-tBAUAuB5M4 .col-info-card {
    margin-bottom: 50px;
  }
}
.cid-tBAUAuB5M4 .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-tBAUAuB5M4 .mbr-section-title {
  color: #ec0047;
}
@media (max-width: 767px) {
  .cid-tBAUAuB5M4 .mbr-section-title {
    text-align: center;
  }
}
.cid-tBAUAuB5M4 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tBAUAuB5M4 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tBAUAuB5M4 .item-card {
  height: 100%;
}
.cid-tBAUAuB5M4 .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-tBAUAuB5M4 .item-wrap {
    padding: 50px 20px;
  }
}
.cid-tBAUAuB5M4 .item-wrap:hover .item-img img {
  transform: scale(1.1);
}
.cid-tBAUAuB5M4 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tBAUAuB5M4 .item-img img {
  width: 100%;
  aspect-ratio: 1.59722222;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-tBAUAuB5M4 .card-box {
  padding-top: 28px;
}
.cid-tBAUAuB5M4 .card-title {
  color: #C4CFDE;
  margin-bottom: 9px;
}
.cid-tBAUAuB5M4 .card-subtitle {
  color: #878e99;
  margin-bottom: 15px;
}
.cid-tBAUAuB5M4 .card-text {
  color: #878e99;
  margin-bottom: 20px;
}
.cid-tBAUAuB5M4 .card-contacts {
  color: #878e99;
}
.cid-tBAUAuB5M4 .card-contacts a {
  position: relative;
  transition: 0.4s all;
}
.cid-tBAUAuB5M4 .card-contacts a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ec1722;
  transition: 0.4s all;
}
.cid-tBAUAuB5M4 .card-contacts a:hover {
  color: #ec1722 !important;
}
.cid-tBAUAuB5M4 .card-contacts a:hover:before {
  width: 100%;
}
.cid-tBAUAuB5M4 .social-container {
  width: 100%;
  padding-top: 30px;
}
.cid-tBAUAuB5M4 .social-title {
  color: #C4CFDE;
  margin-bottom: 8px;
}
.cid-tBAUAuB5M4 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  margin-top: 24px;
}
.cid-tBAUAuB5M4 .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-tBAUAuB5M4 .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-tBAUAuB5M4 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-tBAUAuB5M4 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tBAUAuB5M4 .soc-item:hover .mbr-iconfont {
  color: #ec1722;
}
.cid-tBAUAuB5M4 .soc-item:hover:before {
  opacity: 1;
}
.cid-tBAUAuB5M4 .form-main-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .cid-tBAUAuB5M4 .form-main-container {
    padding-left: 20px;
  }
}
.cid-tBAUAuB5M4 .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-tBAUAuB5M4 .form-wrap {
    padding: 20px;
  }
}
.cid-tBAUAuB5M4 form {
  width: 100%;
}
.cid-tBAUAuB5M4 form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tBAUAuB5M4 form p {
  color: #878e99;
}
.cid-tBAUAuB5M4 form .mbr-section-btn {
  text-align: center;
  justify-content: center;
}
.cid-tBAUAuB5M4 form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tBAUAuB5M4 form .form-group {
  margin-bottom: 20px !important;
}
.cid-tBAUAuB5M4 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-tBAUAuB5M4 form .form-control::-webkit-input-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form .form-control::-moz-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form .form-control:-moz-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form .form-control:-ms-input-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form select {
  color: #878e99 !important;
}
.cid-tBAUAuB5M4 form textarea {
  height: 216px !important;
  resize: none;
}
.cid-tBAUAuB5M4 form input:active,
.cid-tBAUAuB5M4 form textarea:active,
.cid-tBAUAuB5M4 form input:focus,
.cid-tBAUAuB5M4 form textarea:focus {
  border-color: #ec1722 !important;
  box-shadow: none !important;
  color: #878e99 !important;
  outline: none !important;
}
.cid-tBAUAuB5M4 form input:active::-webkit-input-placeholder,
.cid-tBAUAuB5M4 form textarea:active::-webkit-input-placeholder,
.cid-tBAUAuB5M4 form input:focus::-webkit-input-placeholder,
.cid-tBAUAuB5M4 form textarea:focus::-webkit-input-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form input:active::-moz-placeholder,
.cid-tBAUAuB5M4 form textarea:active::-moz-placeholder,
.cid-tBAUAuB5M4 form input:focus::-moz-placeholder,
.cid-tBAUAuB5M4 form textarea:focus::-moz-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form input:active:-moz-placeholder,
.cid-tBAUAuB5M4 form textarea:active:-moz-placeholder,
.cid-tBAUAuB5M4 form input:focus:-moz-placeholder,
.cid-tBAUAuB5M4 form textarea:focus:-moz-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form input:active:-ms-input-placeholder,
.cid-tBAUAuB5M4 form textarea:active:-ms-input-placeholder,
.cid-tBAUAuB5M4 form input:focus:-ms-input-placeholder,
.cid-tBAUAuB5M4 form textarea:focus:-ms-input-placeholder {
  color: #878e99;
}
.cid-tBAUAuB5M4 form .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.cid-tBAUAuB5M4 form .row [class*=col] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-tBAUAuB5M4 form label {
  width: 100%;
  color: #878e99;
  margin-bottom: 14px;
}
.cid-tBAUAuB5M4 form .form-control-label {
  width: 100%;
}
.cid-tBAUAuB5M4 form .form-check-label {
  margin-bottom: 14px;
}
.cid-tBAUAuB5M4 form .form-check-input {
  border-color: #191b1e !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tBAUAuB5M4 form .form-check-input:focus,
.cid-tBAUAuB5M4 form .form-check-input:hover {
  border-color: #ec1722 !important;
}
.cid-tBAUAuB5M4 form .form-check-input:checked {
  border-color: #ec1722 !important;
  background-color: #191b1e !important;
}
.cid-tBAUAzM69O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAUAzM69O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBAUAzM69O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBAUAzM69O .card-row {
  align-items: stretch;
}
.cid-tBAUAzM69O .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-tBAUAzM69O .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-tBAUAzM69O .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tBAUAzM69O .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-tBAUAzM69O .image-wrapper {
  margin-right: 30px;
}
.cid-tBAUAzM69O .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-tBAUAzM69O .image-wrapper {
    margin-right: 0;
  }
}
.cid-tBAUAzM69O .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tBAUAzM69O .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tBAUAzM69O .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tBAUAzM69O .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tBAUAzM69O .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tBAUAzM69O .social-container {
    padding-top: 25px;
  }
}
.cid-tBAUAzM69O .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tBAUAzM69O .social-title {
    text-align: center !important;
  }
}
.cid-tBAUAzM69O .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tBAUAzM69O .social-list {
    justify-content: center !important;
  }
}
.cid-tBAUAzM69O .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-tBAUAzM69O .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-tBAUAzM69O .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tBAUAzM69O .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tBAUAzM69O .soc-item:hover:before {
  opacity: 1;
}
.cid-tBAUAzM69O .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tBAUAzM69O .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAUAzM69O .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tBAUAzM69O .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tBAUAzM69O .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBAUAzM69O .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tBAUAzM69O .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tBAUAzM69O .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAUAzM69O .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tBAUAzM69O .contact-item {
  padding: 10px 0 20px;
}
.cid-tBAUAzM69O .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tBAUAzM69O .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tBAUAAEyGZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAUAAEyGZ .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-tBAUAAEyGZ .copyright-container {
  padding: 40px 0;
}
.cid-tBAUAAEyGZ .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-tBAYf6XmxG {
  z-index: 1000;
  width: 100%;
}
.cid-tBAYf6XmxG nav.navbar {
  position: fixed;
}
.cid-tBAYf6XmxG .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-tBAYf6XmxG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBAYf6XmxG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBAYf6XmxG .dropdown-item:hover,
.cid-tBAYf6XmxG .dropdown-item:focus {
  background: #ec1722 !important;
  color: white !important;
}
.cid-tBAYf6XmxG .dropdown-item:hover span {
  color: white;
}
.cid-tBAYf6XmxG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBAYf6XmxG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBAYf6XmxG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBAYf6XmxG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBAYf6XmxG .nav-link {
  position: relative;
}
.cid-tBAYf6XmxG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBAYf6XmxG .container {
    flex-wrap: nowrap;
  }
}
.cid-tBAYf6XmxG .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBAYf6XmxG .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-tBAYf6XmxG .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-tBAYf6XmxG .navbar-nav .nav-item .nav-link:hover,
.cid-tBAYf6XmxG .navbar-nav .nav-item .nav-link:focus,
.cid-tBAYf6XmxG .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tBAYf6XmxG .dropdown-menu,
.cid-tBAYf6XmxG .navbar.opened {
  background: #212428 !important;
}
.cid-tBAYf6XmxG .nav-item:focus,
.cid-tBAYf6XmxG .nav-link:focus {
  outline: none;
}
.cid-tBAYf6XmxG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBAYf6XmxG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBAYf6XmxG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBAYf6XmxG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBAYf6XmxG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBAYf6XmxG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBAYf6XmxG .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(33, 36, 40, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-tBAYf6XmxG .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tBAYf6XmxG .navbar.opened {
  transition: all 0.3s;
}
.cid-tBAYf6XmxG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBAYf6XmxG .navbar .navbar-logo img {
  width: auto;
}
.cid-tBAYf6XmxG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBAYf6XmxG .navbar.collapsed {
  justify-content: center;
}
.cid-tBAYf6XmxG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBAYf6XmxG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBAYf6XmxG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tBAYf6XmxG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBAYf6XmxG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBAYf6XmxG .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-tBAYf6XmxG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBAYf6XmxG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBAYf6XmxG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBAYf6XmxG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBAYf6XmxG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBAYf6XmxG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBAYf6XmxG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBAYf6XmxG .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-tBAYf6XmxG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBAYf6XmxG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBAYf6XmxG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBAYf6XmxG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBAYf6XmxG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBAYf6XmxG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBAYf6XmxG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBAYf6XmxG .navbar.navbar-short {
  min-height: 90px;
}
.cid-tBAYf6XmxG .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-tBAYf6XmxG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tBAYf6XmxG .navbar {
    min-height: 80px;
  }
}
.cid-tBAYf6XmxG .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-tBAYf6XmxG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBAYf6XmxG .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tBAYf6XmxG .navbar-brand {
    min-height: 69px;
  }
}
.cid-tBAYf6XmxG .dropdown-item.active,
.cid-tBAYf6XmxG .dropdown-item:active {
  background-color: transparent;
}
.cid-tBAYf6XmxG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBAYf6XmxG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBAYf6XmxG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBAYf6XmxG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-tBAYf6XmxG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBAYf6XmxG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBAYf6XmxG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBAYf6XmxG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBAYf6XmxG 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-tBAYf6XmxG button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tBAYf6XmxG button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tBAYf6XmxG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff014e;
}
.cid-tBAYf6XmxG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tBAYf6XmxG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBAYf6XmxG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBAYf6XmxG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBAYf6XmxG nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBAYf6XmxG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBAYf6XmxG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBAYf6XmxG nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBAYf6XmxG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBAYf6XmxG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBAYf6XmxG .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-tBAYf6XmxG .navbar {
    height: 70px;
  }
  .cid-tBAYf6XmxG .navbar.opened {
    height: auto;
  }
  .cid-tBAYf6XmxG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBAYf6XmxG .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@media (max-width: 575px) {
  .cid-tBAYf6XmxG .navbar-short {
    min-height: 70px;
  }
}
.cid-tBAYf6XmxG .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-tBAYf6XmxG .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-tBAYf6XmxG .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAYf6XmxG .container-fluid {
    padding: 0 3px;
  }
}
.cid-tBAYf6XmxG .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tBAYf6XmxG .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tBAYf6XmxG .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tBAYf6XmxG .container-fluid {
    flex-wrap: wrap;
  }
  .cid-tBAYf6XmxG button.navbar-toggler {
    display: flex;
  }
  .cid-tBAYf6XmxG .navbar-brand {
    width: auto !important;
  }
  .cid-tBAYf6XmxG .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-tBAYf6XmxG .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-tBAYf6XmxG .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-tBAYf6XmxG .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-tBAYf6XmxG .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-tBAYf6XmxG .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-tBAYfaIOaB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAYfaIOaB .mbr-section-head {
  width: 100%;
}
.cid-tBAYfaIOaB .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tBB03skBEN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tBB03skBEN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBB03skBEN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBB03skBEN .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tBB03skBEN .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tBB03skBEN .container {
    max-width: 540px;
  }
}
.cid-tBB03skBEN .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tBB03skBEN .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tBB03skBEN .mbr-section-title {
  color: #FF014E;
}
.cid-tBB03skBEN .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tBB03skBEN .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tBB03skBEN .mbr-section-btn {
  margin-top: 25px;
}
.cid-tBI4jhD8WX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #212428;
}
.cid-tBI4jhD8WX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBI4jhD8WX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBI4jhD8WX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBI4jhD8WX .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tBI4jhD8WX .container {
  padding: 0;
}
.cid-tBI4jhD8WX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBI4jhD8WX .icon-focus {
  display: none;
}
.cid-tBI4jhD8WX .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-tBI4jhD8WX .btn-primary-outline:hover {
  background: transparent!important;
  color: #ec1722 !important;
}
.cid-tBI4jhD8WX .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-tBI4jhD8WX li {
  position: relative;
}
.cid-tBI4jhD8WX li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tBI4jhD8WX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tBI4jhD8WX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tBI4jhD8WX .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tBI4jhD8WX .btn {
  font-family: Finlandica !important;
}
.cid-tBI4jhD8WX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tBI4jhD8WX .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tBI4jhD8WX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tBI4jhD8WX li:not(:last-child):after {
    top: 9px;
  }
  .cid-tBI4jhD8WX .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-tBAYfdNIrM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAYfdNIrM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBAYfdNIrM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBAYfdNIrM .card-row {
  align-items: stretch;
}
.cid-tBAYfdNIrM .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-tBAYfdNIrM .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-tBAYfdNIrM .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tBAYfdNIrM .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-tBAYfdNIrM .image-wrapper {
  margin-right: 30px;
}
.cid-tBAYfdNIrM .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-tBAYfdNIrM .image-wrapper {
    margin-right: 0;
  }
}
.cid-tBAYfdNIrM .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tBAYfdNIrM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tBAYfdNIrM .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tBAYfdNIrM .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tBAYfdNIrM .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tBAYfdNIrM .social-container {
    padding-top: 25px;
  }
}
.cid-tBAYfdNIrM .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tBAYfdNIrM .social-title {
    text-align: center !important;
  }
}
.cid-tBAYfdNIrM .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tBAYfdNIrM .social-list {
    justify-content: center !important;
  }
}
.cid-tBAYfdNIrM .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-tBAYfdNIrM .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-tBAYfdNIrM .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tBAYfdNIrM .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tBAYfdNIrM .soc-item:hover:before {
  opacity: 1;
}
.cid-tBAYfdNIrM .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tBAYfdNIrM .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAYfdNIrM .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tBAYfdNIrM .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tBAYfdNIrM .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBAYfdNIrM .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tBAYfdNIrM .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tBAYfdNIrM .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBAYfdNIrM .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tBAYfdNIrM .contact-item {
  padding: 10px 0 20px;
}
.cid-tBAYfdNIrM .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tBAYfdNIrM .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tBAYfezdnV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBAYfezdnV .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-tBAYfezdnV .copyright-container {
  padding: 40px 0;
}
.cid-tBAYfezdnV .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-tBC3FM1eYH {
  z-index: 1000;
  width: 100%;
}
.cid-tBC3FM1eYH nav.navbar {
  position: fixed;
}
.cid-tBC3FM1eYH .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-tBC3FM1eYH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBC3FM1eYH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBC3FM1eYH .dropdown-item:hover,
.cid-tBC3FM1eYH .dropdown-item:focus {
  background: #ec1722 !important;
  color: white !important;
}
.cid-tBC3FM1eYH .dropdown-item:hover span {
  color: white;
}
.cid-tBC3FM1eYH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBC3FM1eYH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBC3FM1eYH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBC3FM1eYH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBC3FM1eYH .nav-link {
  position: relative;
}
.cid-tBC3FM1eYH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBC3FM1eYH .container {
    flex-wrap: nowrap;
  }
}
.cid-tBC3FM1eYH .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBC3FM1eYH .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-tBC3FM1eYH .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-tBC3FM1eYH .navbar-nav .nav-item .nav-link:hover,
.cid-tBC3FM1eYH .navbar-nav .nav-item .nav-link:focus,
.cid-tBC3FM1eYH .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tBC3FM1eYH .dropdown-menu,
.cid-tBC3FM1eYH .navbar.opened {
  background: #212428 !important;
}
.cid-tBC3FM1eYH .nav-item:focus,
.cid-tBC3FM1eYH .nav-link:focus {
  outline: none;
}
.cid-tBC3FM1eYH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBC3FM1eYH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBC3FM1eYH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBC3FM1eYH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBC3FM1eYH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBC3FM1eYH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBC3FM1eYH .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(33, 36, 40, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-tBC3FM1eYH .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tBC3FM1eYH .navbar.opened {
  transition: all 0.3s;
}
.cid-tBC3FM1eYH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBC3FM1eYH .navbar .navbar-logo img {
  width: auto;
}
.cid-tBC3FM1eYH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBC3FM1eYH .navbar.collapsed {
  justify-content: center;
}
.cid-tBC3FM1eYH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBC3FM1eYH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBC3FM1eYH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tBC3FM1eYH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBC3FM1eYH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBC3FM1eYH .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-tBC3FM1eYH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBC3FM1eYH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBC3FM1eYH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBC3FM1eYH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBC3FM1eYH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBC3FM1eYH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBC3FM1eYH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBC3FM1eYH .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-tBC3FM1eYH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBC3FM1eYH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBC3FM1eYH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBC3FM1eYH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBC3FM1eYH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBC3FM1eYH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBC3FM1eYH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBC3FM1eYH .navbar.navbar-short {
  min-height: 90px;
}
.cid-tBC3FM1eYH .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-tBC3FM1eYH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tBC3FM1eYH .navbar {
    min-height: 80px;
  }
}
.cid-tBC3FM1eYH .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-tBC3FM1eYH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBC3FM1eYH .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tBC3FM1eYH .navbar-brand {
    min-height: 69px;
  }
}
.cid-tBC3FM1eYH .dropdown-item.active,
.cid-tBC3FM1eYH .dropdown-item:active {
  background-color: transparent;
}
.cid-tBC3FM1eYH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBC3FM1eYH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBC3FM1eYH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBC3FM1eYH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-tBC3FM1eYH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBC3FM1eYH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBC3FM1eYH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBC3FM1eYH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBC3FM1eYH 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-tBC3FM1eYH button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tBC3FM1eYH button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tBC3FM1eYH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff014e;
}
.cid-tBC3FM1eYH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tBC3FM1eYH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBC3FM1eYH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBC3FM1eYH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBC3FM1eYH nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBC3FM1eYH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBC3FM1eYH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBC3FM1eYH nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBC3FM1eYH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBC3FM1eYH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBC3FM1eYH .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-tBC3FM1eYH .navbar {
    height: 70px;
  }
  .cid-tBC3FM1eYH .navbar.opened {
    height: auto;
  }
  .cid-tBC3FM1eYH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBC3FM1eYH .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@media (max-width: 575px) {
  .cid-tBC3FM1eYH .navbar-short {
    min-height: 70px;
  }
}
.cid-tBC3FM1eYH .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-tBC3FM1eYH .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-tBC3FM1eYH .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC3FM1eYH .container-fluid {
    padding: 0 3px;
  }
}
.cid-tBC3FM1eYH .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tBC3FM1eYH .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tBC3FM1eYH .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tBC3FM1eYH .container-fluid {
    flex-wrap: wrap;
  }
  .cid-tBC3FM1eYH button.navbar-toggler {
    display: flex;
  }
  .cid-tBC3FM1eYH .navbar-brand {
    width: auto !important;
  }
  .cid-tBC3FM1eYH .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-tBC3FM1eYH .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-tBC3FM1eYH .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-tBC3FM1eYH .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-tBC3FM1eYH .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-tBC3FM1eYH .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-tBC3FMzVHi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC3FMzVHi .mbr-section-head {
  width: 100%;
}
.cid-tBC3FMzVHi .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tBC3FMOzTL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tBC3FMOzTL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBC3FMOzTL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBC3FMOzTL .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tBC3FMOzTL .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tBC3FMOzTL .container {
    max-width: 540px;
  }
}
.cid-tBC3FMOzTL .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tBC3FMOzTL .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tBC3FMOzTL .mbr-section-title {
  color: #FF014E;
}
.cid-tBC3FMOzTL .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tBC3FMOzTL .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tBC3FMOzTL .mbr-section-btn {
  margin-top: 25px;
}
.cid-tBIxbEb55g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #212428;
}
.cid-tBIxbEb55g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBIxbEb55g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBIxbEb55g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBIxbEb55g .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tBIxbEb55g .container {
  padding: 0;
}
.cid-tBIxbEb55g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBIxbEb55g .icon-focus {
  display: none;
}
.cid-tBIxbEb55g .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-tBIxbEb55g .btn-primary-outline:hover {
  background: transparent!important;
  color: #ec1722 !important;
}
.cid-tBIxbEb55g .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-tBIxbEb55g li {
  position: relative;
}
.cid-tBIxbEb55g li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tBIxbEb55g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tBIxbEb55g .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tBIxbEb55g .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tBIxbEb55g .btn {
  font-family: Finlandica !important;
}
.cid-tBIxbEb55g .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tBIxbEb55g .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tBIxbEb55g .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tBIxbEb55g li:not(:last-child):after {
    top: 9px;
  }
  .cid-tBIxbEb55g .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-tBC3FNFCaR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC3FNFCaR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBC3FNFCaR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBC3FNFCaR .card-row {
  align-items: stretch;
}
.cid-tBC3FNFCaR .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-tBC3FNFCaR .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-tBC3FNFCaR .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tBC3FNFCaR .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-tBC3FNFCaR .image-wrapper {
  margin-right: 30px;
}
.cid-tBC3FNFCaR .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-tBC3FNFCaR .image-wrapper {
    margin-right: 0;
  }
}
.cid-tBC3FNFCaR .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tBC3FNFCaR .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tBC3FNFCaR .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tBC3FNFCaR .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tBC3FNFCaR .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tBC3FNFCaR .social-container {
    padding-top: 25px;
  }
}
.cid-tBC3FNFCaR .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tBC3FNFCaR .social-title {
    text-align: center !important;
  }
}
.cid-tBC3FNFCaR .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tBC3FNFCaR .social-list {
    justify-content: center !important;
  }
}
.cid-tBC3FNFCaR .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-tBC3FNFCaR .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-tBC3FNFCaR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tBC3FNFCaR .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tBC3FNFCaR .soc-item:hover:before {
  opacity: 1;
}
.cid-tBC3FNFCaR .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tBC3FNFCaR .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC3FNFCaR .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tBC3FNFCaR .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tBC3FNFCaR .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBC3FNFCaR .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tBC3FNFCaR .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tBC3FNFCaR .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC3FNFCaR .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tBC3FNFCaR .contact-item {
  padding: 10px 0 20px;
}
.cid-tBC3FNFCaR .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tBC3FNFCaR .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tBC3FOjRv6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC3FOjRv6 .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-tBC3FOjRv6 .copyright-container {
  padding: 40px 0;
}
.cid-tBC3FOjRv6 .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-tBC3Sb3hRh {
  z-index: 1000;
  width: 100%;
}
.cid-tBC3Sb3hRh nav.navbar {
  position: fixed;
}
.cid-tBC3Sb3hRh .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-tBC3Sb3hRh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBC3Sb3hRh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBC3Sb3hRh .dropdown-item:hover,
.cid-tBC3Sb3hRh .dropdown-item:focus {
  background: #ec1722 !important;
  color: white !important;
}
.cid-tBC3Sb3hRh .dropdown-item:hover span {
  color: white;
}
.cid-tBC3Sb3hRh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBC3Sb3hRh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBC3Sb3hRh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBC3Sb3hRh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBC3Sb3hRh .nav-link {
  position: relative;
}
.cid-tBC3Sb3hRh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBC3Sb3hRh .container {
    flex-wrap: nowrap;
  }
}
.cid-tBC3Sb3hRh .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBC3Sb3hRh .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-tBC3Sb3hRh .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-tBC3Sb3hRh .navbar-nav .nav-item .nav-link:hover,
.cid-tBC3Sb3hRh .navbar-nav .nav-item .nav-link:focus,
.cid-tBC3Sb3hRh .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tBC3Sb3hRh .dropdown-menu,
.cid-tBC3Sb3hRh .navbar.opened {
  background: #212428 !important;
}
.cid-tBC3Sb3hRh .nav-item:focus,
.cid-tBC3Sb3hRh .nav-link:focus {
  outline: none;
}
.cid-tBC3Sb3hRh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBC3Sb3hRh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBC3Sb3hRh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBC3Sb3hRh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBC3Sb3hRh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBC3Sb3hRh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBC3Sb3hRh .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(33, 36, 40, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-tBC3Sb3hRh .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tBC3Sb3hRh .navbar.opened {
  transition: all 0.3s;
}
.cid-tBC3Sb3hRh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBC3Sb3hRh .navbar .navbar-logo img {
  width: auto;
}
.cid-tBC3Sb3hRh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBC3Sb3hRh .navbar.collapsed {
  justify-content: center;
}
.cid-tBC3Sb3hRh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBC3Sb3hRh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBC3Sb3hRh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tBC3Sb3hRh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBC3Sb3hRh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBC3Sb3hRh .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-tBC3Sb3hRh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBC3Sb3hRh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBC3Sb3hRh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBC3Sb3hRh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBC3Sb3hRh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBC3Sb3hRh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBC3Sb3hRh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBC3Sb3hRh .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-tBC3Sb3hRh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBC3Sb3hRh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBC3Sb3hRh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBC3Sb3hRh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBC3Sb3hRh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBC3Sb3hRh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBC3Sb3hRh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBC3Sb3hRh .navbar.navbar-short {
  min-height: 90px;
}
.cid-tBC3Sb3hRh .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-tBC3Sb3hRh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tBC3Sb3hRh .navbar {
    min-height: 80px;
  }
}
.cid-tBC3Sb3hRh .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-tBC3Sb3hRh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBC3Sb3hRh .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tBC3Sb3hRh .navbar-brand {
    min-height: 69px;
  }
}
.cid-tBC3Sb3hRh .dropdown-item.active,
.cid-tBC3Sb3hRh .dropdown-item:active {
  background-color: transparent;
}
.cid-tBC3Sb3hRh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBC3Sb3hRh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBC3Sb3hRh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBC3Sb3hRh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-tBC3Sb3hRh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBC3Sb3hRh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBC3Sb3hRh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBC3Sb3hRh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBC3Sb3hRh 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-tBC3Sb3hRh button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tBC3Sb3hRh button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tBC3Sb3hRh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff014e;
}
.cid-tBC3Sb3hRh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tBC3Sb3hRh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBC3Sb3hRh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBC3Sb3hRh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBC3Sb3hRh nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBC3Sb3hRh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBC3Sb3hRh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBC3Sb3hRh nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBC3Sb3hRh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBC3Sb3hRh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBC3Sb3hRh .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-tBC3Sb3hRh .navbar {
    height: 70px;
  }
  .cid-tBC3Sb3hRh .navbar.opened {
    height: auto;
  }
  .cid-tBC3Sb3hRh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBC3Sb3hRh .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@media (max-width: 575px) {
  .cid-tBC3Sb3hRh .navbar-short {
    min-height: 70px;
  }
}
.cid-tBC3Sb3hRh .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-tBC3Sb3hRh .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-tBC3Sb3hRh .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC3Sb3hRh .container-fluid {
    padding: 0 3px;
  }
}
.cid-tBC3Sb3hRh .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tBC3Sb3hRh .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tBC3Sb3hRh .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tBC3Sb3hRh .container-fluid {
    flex-wrap: wrap;
  }
  .cid-tBC3Sb3hRh button.navbar-toggler {
    display: flex;
  }
  .cid-tBC3Sb3hRh .navbar-brand {
    width: auto !important;
  }
  .cid-tBC3Sb3hRh .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-tBC3Sb3hRh .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-tBC3Sb3hRh .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-tBC3Sb3hRh .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-tBC3Sb3hRh .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-tBC3Sb3hRh .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-tBC3SbzikJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC3SbzikJ .mbr-section-head {
  width: 100%;
}
.cid-tBC3SbzikJ .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tBC3SbOvKe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tBC3SbOvKe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBC3SbOvKe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBC3SbOvKe .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tBC3SbOvKe .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tBC3SbOvKe .container {
    max-width: 540px;
  }
}
.cid-tBC3SbOvKe .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tBC3SbOvKe .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tBC3SbOvKe .mbr-section-title {
  color: #FF014E;
}
.cid-tBC3SbOvKe .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tBC3SbOvKe .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tBC3SbOvKe .mbr-section-btn {
  margin-top: 25px;
}
.cid-tBIwtEnU2K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #212428;
}
.cid-tBIwtEnU2K .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBIwtEnU2K .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBIwtEnU2K .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBIwtEnU2K .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tBIwtEnU2K .container {
  padding: 0;
}
.cid-tBIwtEnU2K .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBIwtEnU2K .icon-focus {
  display: none;
}
.cid-tBIwtEnU2K .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-tBIwtEnU2K .btn-primary-outline:hover {
  background: transparent!important;
  color: #ec1722 !important;
}
.cid-tBIwtEnU2K .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-tBIwtEnU2K li {
  position: relative;
}
.cid-tBIwtEnU2K li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tBIwtEnU2K .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tBIwtEnU2K .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tBIwtEnU2K .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tBIwtEnU2K .btn {
  font-family: Finlandica !important;
}
.cid-tBIwtEnU2K .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tBIwtEnU2K .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tBIwtEnU2K .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tBIwtEnU2K li:not(:last-child):after {
    top: 9px;
  }
  .cid-tBIwtEnU2K .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-tBC3Scxb8E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC3Scxb8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBC3Scxb8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBC3Scxb8E .card-row {
  align-items: stretch;
}
.cid-tBC3Scxb8E .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-tBC3Scxb8E .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-tBC3Scxb8E .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tBC3Scxb8E .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-tBC3Scxb8E .image-wrapper {
  margin-right: 30px;
}
.cid-tBC3Scxb8E .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-tBC3Scxb8E .image-wrapper {
    margin-right: 0;
  }
}
.cid-tBC3Scxb8E .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tBC3Scxb8E .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tBC3Scxb8E .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tBC3Scxb8E .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tBC3Scxb8E .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tBC3Scxb8E .social-container {
    padding-top: 25px;
  }
}
.cid-tBC3Scxb8E .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tBC3Scxb8E .social-title {
    text-align: center !important;
  }
}
.cid-tBC3Scxb8E .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tBC3Scxb8E .social-list {
    justify-content: center !important;
  }
}
.cid-tBC3Scxb8E .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-tBC3Scxb8E .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-tBC3Scxb8E .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tBC3Scxb8E .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tBC3Scxb8E .soc-item:hover:before {
  opacity: 1;
}
.cid-tBC3Scxb8E .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tBC3Scxb8E .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC3Scxb8E .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tBC3Scxb8E .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tBC3Scxb8E .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBC3Scxb8E .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tBC3Scxb8E .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tBC3Scxb8E .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC3Scxb8E .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tBC3Scxb8E .contact-item {
  padding: 10px 0 20px;
}
.cid-tBC3Scxb8E .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tBC3Scxb8E .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tBC3SdblSw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC3SdblSw .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-tBC3SdblSw .copyright-container {
  padding: 40px 0;
}
.cid-tBC3SdblSw .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-tBC4kBMb9z {
  z-index: 1000;
  width: 100%;
}
.cid-tBC4kBMb9z nav.navbar {
  position: fixed;
}
.cid-tBC4kBMb9z .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-tBC4kBMb9z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBC4kBMb9z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBC4kBMb9z .dropdown-item:hover,
.cid-tBC4kBMb9z .dropdown-item:focus {
  background: #ec1722 !important;
  color: white !important;
}
.cid-tBC4kBMb9z .dropdown-item:hover span {
  color: white;
}
.cid-tBC4kBMb9z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBC4kBMb9z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBC4kBMb9z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBC4kBMb9z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBC4kBMb9z .nav-link {
  position: relative;
}
.cid-tBC4kBMb9z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBC4kBMb9z .container {
    flex-wrap: nowrap;
  }
}
.cid-tBC4kBMb9z .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBC4kBMb9z .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-tBC4kBMb9z .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-tBC4kBMb9z .navbar-nav .nav-item .nav-link:hover,
.cid-tBC4kBMb9z .navbar-nav .nav-item .nav-link:focus,
.cid-tBC4kBMb9z .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tBC4kBMb9z .dropdown-menu,
.cid-tBC4kBMb9z .navbar.opened {
  background: #212428 !important;
}
.cid-tBC4kBMb9z .nav-item:focus,
.cid-tBC4kBMb9z .nav-link:focus {
  outline: none;
}
.cid-tBC4kBMb9z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBC4kBMb9z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBC4kBMb9z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBC4kBMb9z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBC4kBMb9z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBC4kBMb9z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBC4kBMb9z .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(33, 36, 40, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-tBC4kBMb9z .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tBC4kBMb9z .navbar.opened {
  transition: all 0.3s;
}
.cid-tBC4kBMb9z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBC4kBMb9z .navbar .navbar-logo img {
  width: auto;
}
.cid-tBC4kBMb9z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBC4kBMb9z .navbar.collapsed {
  justify-content: center;
}
.cid-tBC4kBMb9z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBC4kBMb9z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBC4kBMb9z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tBC4kBMb9z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBC4kBMb9z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBC4kBMb9z .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-tBC4kBMb9z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBC4kBMb9z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBC4kBMb9z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBC4kBMb9z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBC4kBMb9z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBC4kBMb9z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBC4kBMb9z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBC4kBMb9z .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-tBC4kBMb9z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBC4kBMb9z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBC4kBMb9z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBC4kBMb9z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBC4kBMb9z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBC4kBMb9z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBC4kBMb9z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBC4kBMb9z .navbar.navbar-short {
  min-height: 90px;
}
.cid-tBC4kBMb9z .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-tBC4kBMb9z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tBC4kBMb9z .navbar {
    min-height: 80px;
  }
}
.cid-tBC4kBMb9z .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-tBC4kBMb9z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBC4kBMb9z .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tBC4kBMb9z .navbar-brand {
    min-height: 69px;
  }
}
.cid-tBC4kBMb9z .dropdown-item.active,
.cid-tBC4kBMb9z .dropdown-item:active {
  background-color: transparent;
}
.cid-tBC4kBMb9z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBC4kBMb9z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBC4kBMb9z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBC4kBMb9z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-tBC4kBMb9z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBC4kBMb9z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBC4kBMb9z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBC4kBMb9z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBC4kBMb9z 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-tBC4kBMb9z button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tBC4kBMb9z button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tBC4kBMb9z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff014e;
}
.cid-tBC4kBMb9z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tBC4kBMb9z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBC4kBMb9z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tBC4kBMb9z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBC4kBMb9z nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBC4kBMb9z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBC4kBMb9z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBC4kBMb9z nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBC4kBMb9z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBC4kBMb9z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBC4kBMb9z .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-tBC4kBMb9z .navbar {
    height: 70px;
  }
  .cid-tBC4kBMb9z .navbar.opened {
    height: auto;
  }
  .cid-tBC4kBMb9z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBC4kBMb9z .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@media (max-width: 575px) {
  .cid-tBC4kBMb9z .navbar-short {
    min-height: 70px;
  }
}
.cid-tBC4kBMb9z .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-tBC4kBMb9z .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-tBC4kBMb9z .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC4kBMb9z .container-fluid {
    padding: 0 3px;
  }
}
.cid-tBC4kBMb9z .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tBC4kBMb9z .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tBC4kBMb9z .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tBC4kBMb9z .container-fluid {
    flex-wrap: wrap;
  }
  .cid-tBC4kBMb9z button.navbar-toggler {
    display: flex;
  }
  .cid-tBC4kBMb9z .navbar-brand {
    width: auto !important;
  }
  .cid-tBC4kBMb9z .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-tBC4kBMb9z .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-tBC4kBMb9z .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-tBC4kBMb9z .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-tBC4kBMb9z .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-tBC4kBMb9z .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-tBC4kCkfpu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC4kCkfpu .mbr-section-head {
  width: 100%;
}
.cid-tBC4kCkfpu .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tBC4kCAJPF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tBC4kCAJPF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBC4kCAJPF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBC4kCAJPF .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tBC4kCAJPF .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tBC4kCAJPF .container {
    max-width: 540px;
  }
}
.cid-tBC4kCAJPF .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tBC4kCAJPF .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tBC4kCAJPF .mbr-section-title {
  color: #FF014E;
}
.cid-tBC4kCAJPF .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tBC4kCAJPF .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tBC4kCAJPF .mbr-section-btn {
  margin-top: 25px;
}
.cid-tBCZLDPa2Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #212428;
}
.cid-tBCZLDPa2Q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBCZLDPa2Q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBCZLDPa2Q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBCZLDPa2Q .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tBCZLDPa2Q .container {
  padding: 0;
}
.cid-tBCZLDPa2Q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBCZLDPa2Q .icon-focus {
  display: none;
}
.cid-tBCZLDPa2Q .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-tBCZLDPa2Q .btn-primary-outline:hover {
  background: transparent!important;
  color: #ec1722 !important;
}
.cid-tBCZLDPa2Q .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-tBCZLDPa2Q li {
  position: relative;
}
.cid-tBCZLDPa2Q li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tBCZLDPa2Q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tBCZLDPa2Q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tBCZLDPa2Q .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tBCZLDPa2Q .btn {
  font-family: Finlandica !important;
}
.cid-tBCZLDPa2Q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tBCZLDPa2Q .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tBCZLDPa2Q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tBCZLDPa2Q li:not(:last-child):after {
    top: 9px;
  }
  .cid-tBCZLDPa2Q .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-tBIxWjkivq {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-tBIxWjkivq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBIxWjkivq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBIxWjkivq .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tBIxWjkivq .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tBIxWjkivq .container {
    max-width: 540px;
  }
}
.cid-tBIxWjkivq .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tBIxWjkivq .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tBIxWjkivq .mbr-section-title {
  color: #FF014E;
}
.cid-tBIxWjkivq .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tBIxWjkivq .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tBIxWjkivq .mbr-section-btn {
  margin-top: 25px;
}
.cid-tBIxPOJumb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #212428;
}
.cid-tBIxPOJumb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBIxPOJumb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBIxPOJumb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBIxPOJumb .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tBIxPOJumb .container {
  padding: 0;
}
.cid-tBIxPOJumb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBIxPOJumb .icon-focus {
  display: none;
}
.cid-tBIxPOJumb .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-tBIxPOJumb .btn-primary-outline:hover {
  background: transparent!important;
  color: #ec1722 !important;
}
.cid-tBIxPOJumb .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-tBIxPOJumb li {
  position: relative;
}
.cid-tBIxPOJumb li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tBIxPOJumb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tBIxPOJumb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tBIxPOJumb .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tBIxPOJumb .btn {
  font-family: Finlandica !important;
}
.cid-tBIxPOJumb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tBIxPOJumb .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tBIxPOJumb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tBIxPOJumb li:not(:last-child):after {
    top: 9px;
  }
  .cid-tBIxPOJumb .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-tBC4kDoLW5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC4kDoLW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBC4kDoLW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBC4kDoLW5 .card-row {
  align-items: stretch;
}
.cid-tBC4kDoLW5 .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-tBC4kDoLW5 .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-tBC4kDoLW5 .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tBC4kDoLW5 .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-tBC4kDoLW5 .image-wrapper {
  margin-right: 30px;
}
.cid-tBC4kDoLW5 .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-tBC4kDoLW5 .image-wrapper {
    margin-right: 0;
  }
}
.cid-tBC4kDoLW5 .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tBC4kDoLW5 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tBC4kDoLW5 .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tBC4kDoLW5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tBC4kDoLW5 .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tBC4kDoLW5 .social-container {
    padding-top: 25px;
  }
}
.cid-tBC4kDoLW5 .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tBC4kDoLW5 .social-title {
    text-align: center !important;
  }
}
.cid-tBC4kDoLW5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tBC4kDoLW5 .social-list {
    justify-content: center !important;
  }
}
.cid-tBC4kDoLW5 .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-tBC4kDoLW5 .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-tBC4kDoLW5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tBC4kDoLW5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tBC4kDoLW5 .soc-item:hover:before {
  opacity: 1;
}
.cid-tBC4kDoLW5 .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tBC4kDoLW5 .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC4kDoLW5 .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tBC4kDoLW5 .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tBC4kDoLW5 .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBC4kDoLW5 .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tBC4kDoLW5 .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tBC4kDoLW5 .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tBC4kDoLW5 .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tBC4kDoLW5 .contact-item {
  padding: 10px 0 20px;
}
.cid-tBC4kDoLW5 .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tBC4kDoLW5 .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tBC4kE0Trk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-tBC4kE0Trk .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-tBC4kE0Trk .copyright-container {
  padding: 40px 0;
}
.cid-tBC4kE0Trk .mbr-text {
  color: #878e99;
  text-align: center;
}
.cid-tWtvHGnhFk {
  z-index: 1000;
  width: 100%;
}
.cid-tWtvHGnhFk nav.navbar {
  position: fixed;
}
.cid-tWtvHGnhFk .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-tWtvHGnhFk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWtvHGnhFk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWtvHGnhFk .dropdown-item:hover,
.cid-tWtvHGnhFk .dropdown-item:focus {
  background: #ec1722 !important;
  color: white !important;
}
.cid-tWtvHGnhFk .dropdown-item:hover span {
  color: white;
}
.cid-tWtvHGnhFk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWtvHGnhFk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWtvHGnhFk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWtvHGnhFk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWtvHGnhFk .nav-link {
  position: relative;
}
.cid-tWtvHGnhFk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWtvHGnhFk .container {
    flex-wrap: nowrap;
  }
}
.cid-tWtvHGnhFk .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWtvHGnhFk .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-tWtvHGnhFk .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-tWtvHGnhFk .navbar-nav .nav-item .nav-link:hover,
.cid-tWtvHGnhFk .navbar-nav .nav-item .nav-link:focus,
.cid-tWtvHGnhFk .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-tWtvHGnhFk .dropdown-menu,
.cid-tWtvHGnhFk .navbar.opened {
  background: #212428 !important;
}
.cid-tWtvHGnhFk .nav-item:focus,
.cid-tWtvHGnhFk .nav-link:focus {
  outline: none;
}
.cid-tWtvHGnhFk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWtvHGnhFk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWtvHGnhFk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWtvHGnhFk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWtvHGnhFk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWtvHGnhFk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWtvHGnhFk .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(33, 36, 40, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-tWtvHGnhFk .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-tWtvHGnhFk .navbar.opened {
  transition: all 0.3s;
}
.cid-tWtvHGnhFk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWtvHGnhFk .navbar .navbar-logo img {
  width: auto;
}
.cid-tWtvHGnhFk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWtvHGnhFk .navbar.collapsed {
  justify-content: center;
}
.cid-tWtvHGnhFk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWtvHGnhFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWtvHGnhFk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.7rem);
  }
}
.cid-tWtvHGnhFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWtvHGnhFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWtvHGnhFk .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-tWtvHGnhFk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWtvHGnhFk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWtvHGnhFk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWtvHGnhFk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWtvHGnhFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWtvHGnhFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWtvHGnhFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWtvHGnhFk .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-tWtvHGnhFk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWtvHGnhFk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWtvHGnhFk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWtvHGnhFk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWtvHGnhFk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWtvHGnhFk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWtvHGnhFk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWtvHGnhFk .navbar.navbar-short {
  min-height: 90px;
}
.cid-tWtvHGnhFk .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-tWtvHGnhFk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tWtvHGnhFk .navbar {
    min-height: 80px;
  }
}
.cid-tWtvHGnhFk .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-tWtvHGnhFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWtvHGnhFk .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-tWtvHGnhFk .navbar-brand {
    min-height: 69px;
  }
}
.cid-tWtvHGnhFk .dropdown-item.active,
.cid-tWtvHGnhFk .dropdown-item:active {
  background-color: transparent;
}
.cid-tWtvHGnhFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWtvHGnhFk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWtvHGnhFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWtvHGnhFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #212428;
}
.cid-tWtvHGnhFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWtvHGnhFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWtvHGnhFk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWtvHGnhFk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWtvHGnhFk 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-tWtvHGnhFk button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-tWtvHGnhFk button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-tWtvHGnhFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff014e;
}
.cid-tWtvHGnhFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-tWtvHGnhFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tWtvHGnhFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-tWtvHGnhFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWtvHGnhFk nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWtvHGnhFk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWtvHGnhFk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWtvHGnhFk nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWtvHGnhFk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWtvHGnhFk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWtvHGnhFk .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-tWtvHGnhFk .navbar {
    height: 70px;
  }
  .cid-tWtvHGnhFk .navbar.opened {
    height: auto;
  }
  .cid-tWtvHGnhFk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWtvHGnhFk .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #212428;
  background: rgba(33, 36, 40, 0.9);
}
@media (max-width: 575px) {
  .cid-tWtvHGnhFk .navbar-short {
    min-height: 70px;
  }
}
.cid-tWtvHGnhFk .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-tWtvHGnhFk .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWtvHGnhFk .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-tWtvHGnhFk .container-fluid {
    padding: 0 3px;
  }
}
.cid-tWtvHGnhFk .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tWtvHGnhFk .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-tWtvHGnhFk .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-tWtvHGnhFk .container-fluid {
    flex-wrap: wrap;
  }
  .cid-tWtvHGnhFk button.navbar-toggler {
    display: flex;
  }
  .cid-tWtvHGnhFk .navbar-brand {
    width: auto !important;
  }
  .cid-tWtvHGnhFk .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-tWtvHGnhFk .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-tWtvHGnhFk .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-tWtvHGnhFk .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-tWtvHGnhFk .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-tWtvHGnhFk .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-tWtvHHa0mw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWtvHHa0mw .mbr-section-head {
  width: 100%;
}
.cid-tWtvHHa0mw .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tWtvHHppvt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tWtvHHppvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWtvHHppvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWtvHHppvt .container {
  max-width: 1260px;
}
@media (max-width: 1199px) {
  .cid-tWtvHHppvt .container {
    max-width: 960px;
  }
}
@media (max-width: 767px) {
  .cid-tWtvHHppvt .container {
    max-width: 540px;
  }
}
.cid-tWtvHHppvt .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cid-tWtvHHppvt .logo-container img {
  width: 80px;
  height: auto;
  object-fit: cover;
}
.cid-tWtvHHppvt .mbr-section-title {
  color: #FF014E;
}
.cid-tWtvHHppvt .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
.cid-tWtvHHppvt .mbr-text {
  color: #878e99;
  margin-top: 20px;
}
.cid-tWtvHHppvt .mbr-section-btn {
  margin-top: 25px;
}
.cid-tWtvHHKAXI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #212428;
}
.cid-tWtvHHKAXI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tWtvHHKAXI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWtvHHKAXI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWtvHHKAXI .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tWtvHHKAXI .container {
  padding: 0;
}
.cid-tWtvHHKAXI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tWtvHHKAXI .icon-focus {
  display: none;
}
.cid-tWtvHHKAXI .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-tWtvHHKAXI .btn-primary-outline:hover {
  background: transparent!important;
  color: #ec1722 !important;
}
.cid-tWtvHHKAXI .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-tWtvHHKAXI li {
  position: relative;
}
.cid-tWtvHHKAXI li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tWtvHHKAXI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tWtvHHKAXI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tWtvHHKAXI .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tWtvHHKAXI .btn {
  font-family: Finlandica !important;
}
.cid-tWtvHHKAXI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tWtvHHKAXI .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tWtvHHKAXI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tWtvHHKAXI li:not(:last-child):after {
    top: 9px;
  }
  .cid-tWtvHHKAXI .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-tWtvHJEOIc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWtvHJEOIc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWtvHJEOIc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWtvHJEOIc .card-row {
  align-items: stretch;
}
.cid-tWtvHJEOIc .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-tWtvHJEOIc .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-tWtvHJEOIc .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tWtvHJEOIc .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-tWtvHJEOIc .image-wrapper {
  margin-right: 30px;
}
.cid-tWtvHJEOIc .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-tWtvHJEOIc .image-wrapper {
    margin-right: 0;
  }
}
.cid-tWtvHJEOIc .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tWtvHJEOIc .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tWtvHJEOIc .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tWtvHJEOIc .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tWtvHJEOIc .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tWtvHJEOIc .social-container {
    padding-top: 25px;
  }
}
.cid-tWtvHJEOIc .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tWtvHJEOIc .social-title {
    text-align: center !important;
  }
}
.cid-tWtvHJEOIc .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tWtvHJEOIc .social-list {
    justify-content: center !important;
  }
}
.cid-tWtvHJEOIc .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-tWtvHJEOIc .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-tWtvHJEOIc .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tWtvHJEOIc .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tWtvHJEOIc .soc-item:hover:before {
  opacity: 1;
}
.cid-tWtvHJEOIc .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWtvHJEOIc .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tWtvHJEOIc .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tWtvHJEOIc .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tWtvHJEOIc .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWtvHJEOIc .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tWtvHJEOIc .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tWtvHJEOIc .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tWtvHJEOIc .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tWtvHJEOIc .contact-item {
  padding: 10px 0 20px;
}
.cid-tWtvHJEOIc .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tWtvHJEOIc .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: left;
}
.cid-tWtvHKmGl3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-tWtvHKmGl3 .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-tWtvHKmGl3 .copyright-container {
  padding: 40px 0;
}
.cid-tWtvHKmGl3 .mbr-text {
  color: #878e99;
  text-align: center;
}
