body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.5625rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.7rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- 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: 4.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.675rem;
    font-size: calc( 2.4875rem + (5.25 - 2.4875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4875rem + (5.25 - 2.4875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.96rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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: #121212 !important;
}
.bg-success {
  background-color: #ff781f !important;
}
.bg-info {
  background-color: #df3b96 !important;
}
.bg-warning {
  background-color: #d1d1d1 !important;
}
.bg-danger {
  background-color: #1c427e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #121212 !important;
  border-color: #121212 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #dc493a !important;
  border-color: #dc493a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a2291d !important;
  border-color: #a2291d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a2291d !important;
  border-color: #a2291d !important;
}
.btn-info,
.btn-info:active {
  background-color: #df3b96 !important;
  border-color: #df3b96 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a81b69 !important;
  border-color: #a81b69 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a81b69 !important;
  border-color: #a81b69 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff781f !important;
  border-color: #ff781f !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c74f00 !important;
  border-color: #c74f00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c74f00 !important;
  border-color: #c74f00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d1d1d1 !important;
  border-color: #d1d1d1 !important;
  color: #525252 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #525252 !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1c427e !important;
  border-color: #1c427e !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0c1d37 !important;
  border-color: #0c1d37 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0c1d37 !important;
  border-color: #0c1d37 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.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;
  color: #121212;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #121212 !important;
  border-color: #121212 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  color: #dc493a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a2291d !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #dc493a !important;
  border-color: #dc493a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  color: #df3b96;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a81b69 !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #df3b96 !important;
  border-color: #df3b96 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  color: #ff781f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c74f00 !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff781f !important;
  border-color: #ff781f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  color: #d1d1d1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a6a6a6 !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #525252 !important;
  background-color: #d1d1d1 !important;
  border-color: #d1d1d1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  color: #1c427e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0c1d37 !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1c427e !important;
  border-color: #1c427e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #121212 !important;
}
.text-secondary {
  color: #dc493a !important;
}
.text-success {
  color: #ff781f !important;
}
.text-info {
  color: #df3b96 !important;
}
.text-warning {
  color: #d1d1d1 !important;
}
.text-danger {
  color: #1c427e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0f0f0f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #db4536 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff751a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #de3794 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cecece !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1b407a !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #121212;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #df3b96;
}
.alert-warning {
  background-color: #d1d1d1;
}
.alert-danger {
  background-color: #1c427e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #121212;
  border-color: #121212;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #121212;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c4c4c4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff3eb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fceaf4;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #447cd5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #121212;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #121212;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #121212;
}
.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: #121212;
  border-bottom-color: #121212;
}
.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: #121212 !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: #dc493a !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='%23121212' %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[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):not(.dropdown-toggle):not(.dropdown-item) {
  letter-spacing: -0.025em;
  position: relative;
  padding-top: .5rem;
  margin-bottom: .5rem;
  z-index: 9;
  white-space: nowrap;
  line-height: 1.5;
}
a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):not(.dropdown-toggle):not(.dropdown-item):before {
  content: "";
  z-index: 0;
  max-width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  height: 1px;
  background-color: currentColor;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):not(.dropdown-toggle):not(.dropdown-item):after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 6%;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='%23dc493a' %3E%3Ccircle cx='60' cy='60' r='50'/%3E%3C/svg%3E");
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0, 0);
}
a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):not(.dropdown-toggle):not(.dropdown-item):hover:before {
  max-width: 0%;
  left: 100%;
}
a[class*="text-"]:not(.btn):not([role]):not(.navbar-caption):not(.dropdown-toggle):not(.dropdown-item):hover:after {
  opacity: 1;
  transform: scale(1.15);
}
section.popup-builder .modal.mbr-popup button {
  border: none;
}
.cid-sCnmUc7GU2 .navbar-dropdown {
  position: relative !important;
}
.cid-sCnmUc7GU2 nav.navbar {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-sCnmUc7GU2 nav.navbar {
    padding-top: 1.5rem;
  }
}
.cid-sCnmUc7GU2 .contacts_menu {
  position: absolute;
  top: 24px;
  right: 105px;
}
.cid-sCnmUc7GU2 .contacts_menu ol {
  display: flex;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCnmUc7GU2 .contacts_menu ol li {
  margin: 0 1rem;
  list-style: none;
}
@media (max-width: 767px) {
  .cid-sCnmUc7GU2 .contacts_menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sCnmUc7GU2 .contacts_menu {
    top: 25px;
  }
}
.cid-sCnmUc7GU2 .navbar-short .contacts_menu {
  top: 24px;
}
@media (max-width: 991px) {
  .cid-sCnmUc7GU2 .navbar-short .contacts_menu {
    top: 21px;
  }
}
.cid-sCnmUc7GU2 .nav-item {
  border-bottom: 1px dotted rgba(209, 209, 209, 0.5);
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sCnmUc7GU2 .nav-item {
    margin: 0 !important;
  }
}
.cid-sCnmUc7GU2 .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-sCnmUc7GU2 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-sCnmUc7GU2 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-sCnmUc7GU2 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-sCnmUc7GU2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCnmUc7GU2 .nav-link {
  position: relative;
}
.cid-sCnmUc7GU2 .container {
  display: flex;
  margin: auto;
}
.cid-sCnmUc7GU2 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sCnmUc7GU2 .dropdown-menu,
.cid-sCnmUc7GU2 .navbar.opened {
  background: #121212 !important;
}
.cid-sCnmUc7GU2 .nav-item:focus,
.cid-sCnmUc7GU2 .nav-link:focus {
  outline: none;
}
.cid-sCnmUc7GU2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCnmUc7GU2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCnmUc7GU2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sCnmUc7GU2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCnmUc7GU2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCnmUc7GU2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCnmUc7GU2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  box-shadow: none;
  background: #121212;
}
.cid-sCnmUc7GU2 .navbar.opened {
  transition: all 0.3s;
}
.cid-sCnmUc7GU2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sCnmUc7GU2 .navbar .navbar-logo img {
  width: auto;
}
.cid-sCnmUc7GU2 .navbar .navbar-collapse {
  z-index: 1;
}
.cid-sCnmUc7GU2 .navbar.collapsed {
  justify-content: center;
}
.cid-sCnmUc7GU2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCnmUc7GU2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sCnmUc7GU2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCnmUc7GU2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCnmUc7GU2 .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-sCnmUc7GU2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCnmUc7GU2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sCnmUc7GU2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sCnmUc7GU2 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(209, 209, 209, 0.5);
  }
  .cid-sCnmUc7GU2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCnmUc7GU2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCnmUc7GU2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCnmUc7GU2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCnmUc7GU2 .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-sCnmUc7GU2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sCnmUc7GU2 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-sCnmUc7GU2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sCnmUc7GU2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCnmUc7GU2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCnmUc7GU2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCnmUc7GU2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sCnmUc7GU2 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-sCnmUc7GU2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sCnmUc7GU2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCnmUc7GU2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCnmUc7GU2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCnmUc7GU2 .dropdown-item.active,
.cid-sCnmUc7GU2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sCnmUc7GU2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCnmUc7GU2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCnmUc7GU2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCnmUc7GU2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #121212;
}
.cid-sCnmUc7GU2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCnmUc7GU2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCnmUc7GU2 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
.cid-sCnmUc7GU2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCnmUc7GU2 button.navbar-toggler {
  outline: none;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  align-self: center;
  border-radius: 50%;
  background-color: #c4e5f6;
  padding: 0;
  color: #121212;
}
.cid-sCnmUc7GU2 button.navbar-toggler:hover {
  background-color: rgba(196, 229, 246, 0.86);
}
.cid-sCnmUc7GU2 button.navbar-toggler:hover .hamburger span:nth-child(1) {
  width: 25px;
}
.cid-sCnmUc7GU2 button.navbar-toggler:hover .hamburger span:nth-child(2) {
  width: 13px;
}
.cid-sCnmUc7GU2 button.navbar-toggler:hover .hamburger span:nth-child(3) {
  width: 13px;
}
.cid-sCnmUc7GU2 button.navbar-toggler:hover .hamburger span:nth-child(4) {
  width: 22px;
}
.cid-sCnmUc7GU2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 14px;
  width: 32px;
  height: 3px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sCnmUc7GU2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 21px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 29px;
  width: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 button.navbar-toggler .hamburger span:nth-child(3) {
  width: 25px;
  top: 29px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 37px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 nav.opened .hamburger span:nth-child(1) {
  top: 21px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 nav.opened .hamburger span:nth-child(2) {
  width: 32px !important;
  transform: rotate(45deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 nav.opened .hamburger span:nth-child(3) {
  width: 32px !important;
  transform: rotate(-45deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 nav.opened .hamburger span:nth-child(4) {
  top: 37px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmUc7GU2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sCnmUc7GU2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCnmUc7GU2 .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-sCnmUc7GU2 .navbar {
    height: 70px;
  }
  .cid-sCnmUc7GU2 .navbar.opened {
    height: auto;
  }
  .cid-sCnmUc7GU2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCnmZWoQrk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-sCnmZWoQrk .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-sCnmZWoQrk .mbr-section-title {
  margin-bottom: 2rem;
  color: #c4e5f6;
}
.cid-sCnmZWoQrk .mbr-text {
  margin-bottom: 2rem;
}
.cid-sCnmZWoQrk .image-wrapper,
.cid-sCnmZWoQrk img {
  width: 100%;
}
.cid-sCnmZWoQrk .image-wrapper {
  overflow: hidden;
}
.cid-sCnmZWoQrk .image-wrapper img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnmZWoQrk .image-wrapper img:hover {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .cid-sCnmZWoQrk .content_box {
    padding-right: 5rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sCnmZWoQrk .row {
    flex-direction: column-reverse;
  }
  .cid-sCnmZWoQrk .content_box,
  .cid-sCnmZWoQrk .mbr-text {
    padding: 0;
  }
  .cid-sCnmZWoQrk .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-sCnmZWoQrk .mbr-text {
    margin-bottom: 1.25rem;
  }
  .cid-sCnmZWoQrk .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sCnmZWoQrk .flash:hover {
  opacity: 1;
  -webkit-animation: flash 1s;
  animation: flash 1s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}
.cid-sCnmZWoQrk .mbr-text,
.cid-sCnmZWoQrk .linkBtn {
  color: #d1d1d1;
}
.cid-sCnn7dnjvN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-sCnn7dnjvN .row {
  flex-direction: row-reverse;
}
.cid-sCnn7dnjvN .main_title {
  margin-bottom: 2.5rem;
}
.cid-sCnn7dnjvN .card_subtitle {
  margin-bottom: .75rem;
}
.cid-sCnn7dnjvN .mbr-text {
  line-height: 1.23;
  color: #d1d1d1;
}
.cid-sCnn7dnjvN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCnn7dnjvN .list_title {
  margin-bottom: 1.5rem;
  color: #d1d1d1;
}
.cid-sCnn7dnjvN .list_box {
  margin-top: 2rem;
}
.cid-sCnn7dnjvN ol {
  padding: 0;
  margin: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.cid-sCnn7dnjvN ol li {
  display: block;
  line-height: 1.23;
  margin-bottom: .5rem;
  list-style: none;
}
.cid-sCnn7dnjvN ol li:before {
  content: "⚬ ";
  margin-right: 5px;
  display: inline-block;
  min-width: 28px;
}
@media (min-width: 992px) {
  .cid-sCnn7dnjvN .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sCnn7dnjvN .row {
    flex-direction: column-reverse;
  }
  .cid-sCnn7dnjvN .card-wrapper {
    padding: 0;
  }
  .cid-sCnn7dnjvN .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-sCnn7dnjvN .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-sCnn7dnjvN .image-wrapper {
    margin-bottom: 3rem;
  }
  .cid-sCnn7dnjvN .list_title {
    margin-bottom: .75rem;
  }
  .cid-sCnn7dnjvN .list_box {
    margin-top: 1rem;
  }
  .cid-sCnn7dnjvN ol {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }
  .cid-sCnn7dnjvN ol li {
    margin-bottom: .25rem;
  }
}
.cid-sCnn7dnjvN .list {
  color: #d1d1d1;
}
.cid-sCnn7dnjvN .card-title {
  color: #c4e5f6;
}
.cid-sCnn7rBbfT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #121212;
}
.cid-sCnn7rBbfT .main_header {
  margin-bottom: 8rem;
}
.cid-sCnn7rBbfT .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
  color: #d1d1d1;
}
.cid-sCnn7rBbfT .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
.cid-sCnn7rBbfT .card_item {
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .cid-sCnn7rBbfT .card_item:nth-child(1) .card-box {
    padding: 2.5rem 0 2.5rem 2rem;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(2) .card-box {
    padding: 12rem 0 2.5rem 2rem;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(3) .card-box {
    padding: 6rem 2rem 2.5rem 2rem;
  }
}
.cid-sCnn7rBbfT .card_item:nth-child(1) .square_null {
  transform: translateX(2rem);
}
.cid-sCnn7rBbfT .card_item:nth-child(1) .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #1c427e;
}
.cid-sCnn7rBbfT .card_item:nth-child(1):hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-sCnn7rBbfT .card_item:nth-child(2):hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -3rem) scale(0.75);
}
.cid-sCnn7rBbfT .card_item:nth-child(2) .square_fill {
  background-color: #ff781f;
  transform: translate(-2.5rem, -0.5rem);
}
.cid-sCnn7rBbfT .card_item:nth-child(2) .square_null {
  transform: rotate(45deg) translate(-1rem, -2rem);
}
.cid-sCnn7rBbfT .card_item:nth-child(3):hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-sCnn7rBbfT .card_item:nth-child(3) .square_fill {
  background-color: #df3b96;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-sCnn7rBbfT .card_item .card-box {
  border-left: 1px dotted rgba(255, 255, 255, 0.5);
}
.cid-sCnn7rBbfT .card_item:last-child .card-box {
  border-right: 1px dotted rgba(255, 255, 255, 0.5);
}
.cid-sCnn7rBbfT .card-box {
  height: 100%;
}
.cid-sCnn7rBbfT .item-wrapper {
  height: 100%;
  padding: 0 1rem;
}
.cid-sCnn7rBbfT .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-sCnn7rBbfT .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-sCnn7rBbfT .square_animation .square_null {
  z-index: 1;
  border: 1px solid white;
}
.cid-sCnn7rBbfT .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnn7rBbfT .card-title {
  margin-bottom: 1.75rem;
  color: #c4e5f6;
}
.cid-sCnn7rBbfT .card-text {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-sCnn7rBbfT .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(1) .square_null {
    transform: translateX(1rem);
  }
  .cid-sCnn7rBbfT .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-4.75rem);
  }
  .cid-sCnn7rBbfT .card_item:nth-child(3):hover .square_fill {
    transform: scale(1) translateX(-4rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-sCnn7rBbfT .item-wrapper {
    padding: 0;
  }
  .cid-sCnn7rBbfT .card-box {
    padding: 2rem 0 2.5rem;
  }
  .cid-sCnn7rBbfT .main_header {
    margin-bottom: 4rem;
  }
  .cid-sCnn7rBbfT .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-sCnn7rBbfT .mbr-text {
    margin-top: .75rem;
  }
  .cid-sCnn7rBbfT .square_animation {
    margin-bottom: 1rem;
  }
  .cid-sCnn7rBbfT .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(1):hover .square_fill {
    transform: none;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(1) .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(1) .square_null {
    transform: translateX(1.5rem);
  }
  .cid-sCnn7rBbfT .card_item:nth-child(2):hover .square_fill {
    transform: none;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(2) .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(2) .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-sCnn7rBbfT .card_item:nth-child(3):hover .square_fill {
    transform: none;
  }
  .cid-sCnn7rBbfT .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-sCnn7rBbfT .card_item .card-box {
    border-width: 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  }
  .cid-sCnn7rBbfT .card_item:last-child .card-box {
    border-width: 0;
  }
  .cid-sCnn7rBbfT .card-title {
    margin-bottom: 1.25rem;
  }
  .cid-sCnn7rBbfT .card-text {
    margin-bottom: 1.25rem;
  }
}
.cid-sCnn7rBbfT .mbr-section-title {
  color: #c4e5f6;
}
.cid-sCnn7rBbfT .card-text,
.cid-sCnn7rBbfT .linkBtn {
  color: #d1d1d1;
}
.cid-sCnnSSga9a {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #121212;
}
.cid-sCnnSSga9a .mbr-media {
  position: relative;
  cursor: pointer;
}
.cid-sCnnSSga9a .mbr-media img {
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.cid-sCnnSSga9a .mbr-media:hover .text_video {
  width: 11rem;
  height: 11rem;
  cursor: pointer;
}
.cid-sCnnSSga9a .mbr-section-subtitle {
  left: 0;
  top: 0;
  line-height: 1;
  position: absolute;
  margin-left: -1.75rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: sideways;
  text-orientation: sideways;
  color: #d1d1d1;
  padding-left: 0.2rem;
}
@media (max-width: 767px) {
  .cid-sCnnSSga9a .mbr-section-subtitle {
    display: none;
  }
}
.cid-sCnnSSga9a .text_video {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: #dc493a;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .cid-sCnnSSga9a .text_video {
    max-height: 120px;
    max-width: 120px;
  }
}
.cid-sCnnSSga9a .descr_video {
  max-width: 160px;
  line-height: 1;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  color: #ffffff;
}
.cid-sCnnSSga9a .shape {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #1c427e;
  margin: -1.25rem;
  width: 16rem;
  height: 16rem;
  z-index: 0;
}
@media (max-width: 767px) {
  .cid-sCnnSSga9a .shape {
    display: none;
  }
}
.cid-sCnnSSga9a .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sCnnSSga9a .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sCnnSSga9a .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sCnnSSga9a .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCnnSSga9a .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCnnjGwVev {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #121212;
}
@media (min-width: 992px) {
  .cid-sCnnjGwVev .no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .cid-sCnnjGwVev .no-gutters > [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-sCnnjGwVev .card_item {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-sCnnjGwVev .card_item .item-wrapper {
    border-left: 1px dotted rgba(255, 255, 255, 0.5);
  }
  .cid-sCnnjGwVev .card_item:last-child .item-wrapper {
    border-right: 1px dotted rgba(255, 255, 255, 0.5);
  }
}
.cid-sCnnjGwVev .item-wrapper {
  height: 100%;
  overflow: visible;
}
.cid-sCnnjGwVev .card-box {
  padding: 0 2rem 2.5rem 2rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnnjGwVev .card-box:hover {
  transform: translateY(-3rem);
}
.cid-sCnnjGwVev .card-box:hover img {
  transform: scale(1.01);
}
.cid-sCnnjGwVev .card-title {
  margin-bottom: .75rem;
  color: #c4e5f6;
}
.cid-sCnnjGwVev .card-text {
  margin-bottom: 1.25rem;
}
.cid-sCnnjGwVev .item-img {
  margin-bottom: 2.5rem;
  position: relative;
  transform: skewY(2deg);
}
.cid-sCnnjGwVev img,
.cid-sCnnjGwVev .item-img {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-sCnnjGwVev .item:focus,
.cid-sCnnjGwVev span:focus {
  outline: none;
}
@media (max-width: 991px) {
  .cid-sCnnjGwVev .item-wrapper {
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .cid-sCnnjGwVev .card-title {
    margin-bottom: .5rem;
  }
  .cid-sCnnjGwVev .card-text {
    margin-bottom: .75rem;
  }
  .cid-sCnnjGwVev .item-img {
    margin-bottom: 1.5rem;
  }
  .cid-sCnnjGwVev .card-box:hover {
    transform: translateY(0);
  }
  .cid-sCnnjGwVev .card-box:hover img {
    transform: scale(1.01);
  }
}
@media (max-width: 767px) {
  .cid-sCnnjGwVev .card-box {
    padding: 0 0 1rem;
  }
}
.cid-sCnnjGwVev .card-text,
.cid-sCnnjGwVev .linkBtn {
  color: #d1d1d1;
}
.cid-sCnnaVBBXR {
  background-color: #121212;
}
.cid-sCnnaVBBXR .mbr-section-subtitle {
  margin-bottom: 1.5rem;
  color: #d1d1d1;
}
.cid-sCnnaVBBXR .mbr-text {
  line-height: 1.15;
}
.cid-sCnnaVBBXR .bottom_box {
  margin-top: 4rem;
}
.cid-sCnnaVBBXR .title {
  position: relative;
  z-index: 1;
}
.cid-sCnnaVBBXR .name {
  margin-bottom: 1rem;
  color: #c4e5f6;
}
.cid-sCnnaVBBXR b,
.cid-sCnnaVBBXR strong {
  font-weight: 500;
  color: #dc493a;
}
.cid-sCnnaVBBXR .shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background-color: #1c427e;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.cid-sCnnaVBBXR .linkBtn {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCnnaVBBXR .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-sCnnaVBBXR .bottom_box {
    margin-top: 2rem;
    text-align: left;
  }
  .cid-sCnnaVBBXR .linkBtn {
    margin-top: 1.5rem;
  }
  .cid-sCnnaVBBXR .name {
    margin-bottom: .5rem;
  }
}
.cid-sCnnaVBBXR .mbr-text,
.cid-sCnnaVBBXR .linkBtn {
  color: #d1d1d1;
}
.cid-sCnnaVBBXR .prof {
  color: #d1d1d1;
}
.cid-sD51UmSPIu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #121212;
}
.cid-sD51UmSPIu .mbr-section-head,
.cid-sD51UmSPIu .gallery_item {
  margin-bottom: 6rem;
}
.cid-sD51UmSPIu .mbr-section-subtitle {
  margin-bottom: 0.5rem;
  color: #d1d1d1;
}
.cid-sD51UmSPIu .mbr-section-title {
  line-height: .95;
  color: #c4e5f6;
}
.cid-sD51UmSPIu .box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-sD51UmSPIu .gallery-wrap-left {
  padding-right: 2rem;
  max-width: 66%;
  width: 66%;
}
.cid-sD51UmSPIu .gallery-wrap-right {
  padding-left: 2rem;
  max-width: 33%;
  width: 33%;
}
.cid-sD51UmSPIu .item-img,
.cid-sD51UmSPIu img {
  max-width: 100%;
  object-fit: cover;
}
.cid-sD51UmSPIu .gallery-wrap-50 .item_left {
  padding-right: 1rem;
}
.cid-sD51UmSPIu .gallery-wrap-50 .item_right {
  padding-left: 1rem;
}
.cid-sD51UmSPIu .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}
.cid-sD51UmSPIu .item-title {
  text-align: left;
  flex: 1 1 0;
  color: #c4e5f6;
}
.cid-sD51UmSPIu .item-subtitle {
  text-align: right;
  flex: 1 1 0;
  color: #d1d1d1;
}
@media (max-width: 991px) {
  .cid-sD51UmSPIu .gallery-wrap-left {
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .cid-sD51UmSPIu .gallery-wrap-right {
    padding-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sD51UmSPIu .mbr-section-head,
  .cid-sD51UmSPIu .gallery_item {
    margin-bottom: 3rem;
  }
  .cid-sD51UmSPIu .gallery-wrap-50 .item_left {
    padding-right: 0;
  }
  .cid-sD51UmSPIu .gallery-wrap-50 .item_right {
    padding-left: 0;
  }
}
.cid-sCnnqNccBm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-sCnnqNccBm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sCnnqNccBm .mbr-section-subtitle {
  margin-bottom: 14px;
  color: #eae8e4;
}
.cid-sCnnqNccBm .image_box {
  max-width: 115px;
  margin: auto;
}
.cid-sCnnqNccBm img {
  width: 100%;
  border-radius: 50%;
}
.cid-sCnnqNccBm .mbr-text {
  line-height: 28px;
  margin: 14px 0;
  color: #d1d1d1;
}
.cid-sCnnqNccBm .follow_box {
  display: inline-flex;
  align-items: center;
}
.cid-sCnnqNccBm .follow_title {
  color: #6f7379;
}
.cid-sCnnqNccBm .social_list {
  padding-left: 20px;
}
.cid-sCnnqNccBm .iconfont-wrapper {
  padding-right: 10px;
}
.cid-sCnnqNccBm .iconfont-wrapper span {
  font-size: 16px;
  width: 16px;
  line-height: 16px;
  color: #c4e5f6;
}
.cid-sCnnqNccBm .form_box {
  padding-top: 28px;
}
.cid-sCnnqNccBm .form_title {
  color: #eae8e4;
  line-height: 22px;
  margin-bottom: 5px;
}
.cid-sCnnqNccBm .form_text {
  color: #d1d1d1;
  margin-bottom: 14px;
}
.cid-sCnnqNccBm .form-control {
  border-top-left-radius: 100px !important;
  border-bottom-left-radius: 100px !important;
  transition: border 0.5s ease-in 0.5s;
  height: 48px;
  padding: 6px 20px;
  border: 1px solid #d1d1d1;
  background-color: #d1d1d1;
}
.cid-sCnnqNccBm .form-control:focus {
  border-color: #050505;
}
.cid-sCnnqNccBm input::-webkit-input-placeholder {
  color: #121212;
  opacity: .8;
}
.cid-sCnnqNccBm input::-moz-placeholder {
  color: #121212;
  opacity: .8;
}
.cid-sCnnqNccBm .form-group {
  margin: 0;
  padding-right: 0 !important;
}
.cid-sCnnqNccBm .mbr-section-btn {
  padding-left: 0 !important;
}
.cid-sCnnqNccBm .btn {
  width: 100%;
  height: 48px;
  padding: 6px 20px;
  border-top-right-radius: 100px !important;
  border-bottom-right-radius: 100px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
@media (max-width: 767px) {
  .cid-sCnnqNccBm .form-control {
    border-radius: 0 !important;
  }
  .cid-sCnnqNccBm .form-group {
    margin: 0;
    padding-right: 0.6rem !important;
  }
  .cid-sCnnqNccBm .mbr-section-btn {
    margin-top: 1rem;
    padding-left: 0.6rem !important;
  }
  .cid-sCnnqNccBm .btn {
    border-radius: 0 !important;
  }
  .cid-sCnnqNccBm .image_box {
    margin: 0;
    margin-bottom: 1rem;
  }
}
.cid-sCnnqNccBm .textGDPR {
  font-size: 14px;
}
.cid-sCnnqNccBm .mbr-section-title {
  color: #c4e5f6;
}
.cid-sCnnqNccBm .follow_wrap,
.cid-sCnnqNccBm .follow_title {
  color: #c4e5f6;
}
.cid-sCnn8IZmjy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-sCnn8IZmjy .main_header {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-sCnn8IZmjy .main_header {
    margin-bottom: 3rem;
  }
}
.cid-sCnn8IZmjy .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
  color: #d1d1d1;
}
.cid-sCnn8IZmjy .mbr-section-title {
  margin-bottom: 1.5rem;
  color: #c4e5f6;
}
.cid-sCnn8IZmjy .mbr-text {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.cid-sCnn8IZmjy .content_box {
  max-width: 42rem;
}
.cid-sCnn8IZmjy img,
.cid-sCnn8IZmjy .item-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-sCnn8IZmjy .item:focus,
.cid-sCnn8IZmjy span:focus {
  outline: none;
}
.cid-sCnn8IZmjy .item-img {
  position: relative;
}
.cid-sCnn8IZmjy .item_descr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
  text-align: center;
  cursor: default;
  padding: 0 1rem;
}
.cid-sCnn8IZmjy .item {
  cursor: pointer;
}
.cid-sCnn8IZmjy .item:nth-child(odd) .item-wrapper {
  padding-right: 1rem;
}
.cid-sCnn8IZmjy .item:nth-child(even) .item-wrapper {
  padding-left: 1rem;
}
.cid-sCnn8IZmjy .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding-bottom: 6rem;
}
@media (max-width: 991px) {
  .cid-sCnn8IZmjy .item-wrapper {
    padding: 0 0 3rem 0 !important;
  }
}
.cid-sCnn8IZmjy .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sCnn8IZmjy .item-title {
  text-align: left;
  flex: 1 1 0;
  color: #d1d1d1;
}
.cid-sCnn8IZmjy .item-subtitle {
  text-align: right;
  flex: 1 1 0;
}
@media (max-width: 767px) {
  .cid-sCnn8IZmjy .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-sCnn8IZmjy .mbr-text {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .cid-sCnn8IZmjy .item-content {
    margin-bottom: .75rem;
  }
}
.cid-sCnn8IZmjy .mbr-text,
.cid-sCnn8IZmjy .linkBtn {
  color: #d1d1d1;
}
.cid-sCnnvd6rsP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #121212;
}
.cid-sCnnvd6rsP .foot-menu {
  margin-bottom: 0;
}
.cid-sCnnvd6rsP ul {
  list-style: none;
  padding: 0;
}
.cid-sCnnvd6rsP li {
  display: inline-block;
  padding: .5rem 1.5rem .5rem 0;
  position: relative;
  line-height: 1.5;
}
.cid-sCnnvd6rsP li:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #d1d1d1;
}
.cid-sCnnvd6rsP ul li:last-child {
  padding-right: 0;
}
.cid-sCnnvd6rsP ul li:last-child:after {
  content: none;
}
.cid-sCnnvd6rsP .mbr-section-subtitle {
  margin-bottom: .75rem;
}
@media (min-width: 992px) {
  .cid-sCnnvd6rsP .box {
    text-align: right;
  }
}
@media (max-width: 991px) {
  .cid-sCnnvd6rsP .foot-menu {
    margin-bottom: 1.25rem;
  }
}
.cid-sCnnvd6rsP H4 {
  color: #c4e5f6;
}
