.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Regular.woff2") format("woff2"), url("../fonts/Unbounded-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Bold.woff2") format("woff2"), url("../fonts/Unbounded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Black.woff2") format("woff2"), url("../fonts/Unbounded-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #1B2830;
  --text-color: var(--black);
  --accent-color: #72C79F;
  --grey: #F3F4F5;
  --blue-grey: #4F6878;
  --border-color: #D1DFE8;
  --second-family: "Unbounded", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  min-width: 320px;
  line-height: 1.5;
  color: var(--text-color);
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 75px;
}

.h1 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 130%;
}

.h2 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
}

.h3 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
}

.h4 {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}

.format-text-p p {
  margin: 20px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}
.format-text-p b, .format-text-p strong {
  font-weight: 700;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 0px 60px;
  height: 70px;
  color: #fff;
  background-color: var(--black);
  text-decoration: none;
  line-height: normal;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.btn:active {
  background-color: var(--blue-grey);
}
.btn--sm {
  padding: 0px 30px;
  height: 47px;
  font-size: 14px;
}
.btn__icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  position: relative;
  z-index: 2;
}
.btn__title {
  position: relative;
  z-index: 2;
}
.btn__title span {
  color: #94ADBD;
}
.btn__title + .btn__icon {
  margin-right: 0;
  margin-left: 20px;
}
.btn__toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 20px;
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.btn__toggle:before, .btn__toggle:after {
  background-color: #A5B3C2;
  width: 2px;
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: calc(50% - 1px);
  content: "";
  border-radius: 10em;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.btn__toggle:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.btn--blue-grey {
  background-color: var(--blue-grey);
}
.btn--blue-grey:active {
  background-color: #DDE4EB;
  color: var(--black);
}
.btn--accent {
  overflow: hidden;
  color: var(--text-color);
  background: -webkit-gradient(linear, left top, right top, from(#add962), color-stop(#5cd4b0), to(#add962));
  background: linear-gradient(90deg, #add962, #5cd4b0, #add962);
  background-size: 200% 100%;
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease;
  -webkit-box-shadow: 0 6px 14px 0 rgba(133, 229, 191, 0.2);
          box-shadow: 0 6px 14px 0 rgba(133, 229, 191, 0.2);
}
.btn--accent:active {
  background-position: 100% 0;
}
.btn--show-more {
  background-color: #DDE4EB;
  color: var(--text-color);
}
.btn--show-more:active {
  color: #fff;
  background-color: var(--black);
}
.btn--show-more.active .btn__toggle {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.btn--show-more.active .btn__toggle:after {
  opacity: 0;
}

@media (hover) {
  .btn:hover {
    background-color: var(--blue-grey);
  }
  .btn--blue-grey:hover {
    background-color: #DDE4EB;
    color: var(--black);
  }
  .btn--accent:hover {
    background-position: 100% 0;
  }
  .btn--show-more:hover {
    color: #fff;
    background-color: var(--blue-grey);
  }
}
.section {
  padding: 100px 0;
}
.section--bg {
  background-color: var(--grey);
}

.page-section {
  padding: 50px 0 100px;
}
.page-hero__text {
  margin-top: 50px;
  max-width: 750px;
}

.social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.social__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0f0d2b), to(#151242));
  background-image: linear-gradient(180deg, #0f0d2b 0%, #151242 100%);
}
.social__link svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.social__link + .social__link {
  margin-left: 22px;
}
.social__link:active svg path {
  fill: var(--accent-color);
}

@media (hover) {
  .social__link:hover svg path {
    fill: var(--accent-color);
  }
}
.back,
.next {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background-color: #DDE4EB;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
}
.back svg path,
.next svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.back:focus-visible,
.next:focus-visible {
  outline: none;
}
.back:active,
.next:active {
  background-color: var(--black);
}
.back:active svg path,
.next:active svg path {
  stroke: #fff;
}
.back.swiper-button-disabled,
.next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 10px;
  width: 14px;
  height: 14px;
  background: #FFF;
  border: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 4px;
  opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--black);
}

@media (hover) {
  .wow {
    visibility: hidden;
  }
  .back:hover,
  .next:hover {
    background-color: var(--black);
  }
  .back:hover svg path,
  .next:hover svg path {
    stroke: #fff;
  }
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
    background-color: var(--black);
  }
}
.list {
  margin: 0;
  padding: 0;
}
.list li {
  padding-left: 27px;
  position: relative;
}
.list li + li {
  margin-top: 10px;
}
.list li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  background-image: url("./img/check-li-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .h1 {
    font-size: 48px;
  }
  .h2 {
    font-size: 36px;
  }
  .h3 {
    font-size: 28px;
  }
  .h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .main {
    margin-top: 60px;
  }
  .section {
    padding: 80px 0;
  }
  .page-section {
    padding: 40px 0 80px;
  }
  .page-hero__text {
    margin-top: 40px;
  }
  .btn {
    padding: 0 30px;
  }
  .h1 {
    font-size: 36px;
  }
  .h2 {
    font-size: 28px;
  }
  .h3 {
    font-size: 20px;
  }
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 7px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
  }
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

@-webkit-keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInRightOpacity {
  -webkit-animation-name: slideInRightOpacity;
          animation-name: slideInRightOpacity;
}

@-webkit-keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInUpOpacity {
  -webkit-animation-name: slideInUpOpacity;
          animation-name: slideInUpOpacity;
}

@-webkit-keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInDownOpacity {
  -webkit-animation-name: slideInDownOpacity;
          animation-name: slideInDownOpacity;
}

@-webkit-keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.rotateImage {
  -webkit-animation-name: rotateImage;
          animation-name: rotateImage;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeInScaleOpacity {
  -webkit-animation-name: fadeInScaleOpacity;
          animation-name: fadeInScaleOpacity;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes bgScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bgScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.bgScaleOpacity {
  -webkit-animation-name: bgScaleOpacity;
          animation-name: bgScaleOpacity;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo img {
  width: 100%;
}

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--grey);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.header.fixed {
  border-color: #D1DFE8;
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 75px;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 166px;
}
.header__btn {
  margin-left: auto;
}

.menu {
  margin-left: 90px;
  margin-right: 90px;
}
.menu .container {
  padding: 0;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.menu__item {
  position: relative;
}
.menu__item + .menu__item {
  margin-left: 50px;
}
.menu__item.current_page_item .menu__link:after {
  width: 100%;
  opacity: 1;
}
.menu__item:hover .sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.menu__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
}
.menu__link:after {
  position: absolute;
  left: 0px;
  bottom: 0;
  height: 1px;
  content: "";
  z-index: -1;
  opacity: 0;
  background-color: var(--black);
  -webkit-transition: width 0.3s, opacity 0.3s;
  transition: width 0.3s, opacity 0.3s;
  width: 0;
}
.menu__link:active:after {
  width: 100%;
  opacity: 1;
}
.menu__link svg {
  margin-left: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.menu__link svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

@media (hover) {
  .menu__link:hover:after {
    width: 100%;
    opacity: 1;
  }
}
.sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 20px;
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sub-menu__item + .sub-menu__item {
  margin-top: 10px;
}
.sub-menu__item.current_page_item .sub-menu__link {
  color: #022F60;
}
.sub-menu__link {
  color: #fff;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.sub-menu__link:active {
  color: #022F60;
}

@media (hover) {
  .sub-menu__link:hover {
    color: #022F60;
  }
}
.hamburger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  height: 36px;
  background-color: transparent;
  z-index: 12;
}
.hamburger .hamburger-box {
  width: 36px;
  height: 24px;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
  background-color: #081830;
  height: 3px;
  width: 36px;
  border-radius: 0;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger .hamburger-inner::before {
  top: 10px;
}

@media only screen and (max-width: 1199px) {
  .header.opened .menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header.opened .menu__list {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header__logo {
    z-index: 2;
  }
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 30px;
  }
  .menu {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 100dvh;
    background-color: var(--grey);
    opacity: 0;
    visibility: hidden;
    padding-top: 100px;
  }
  .menu .container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 50px;
    margin-top: auto;
    margin-bottom: auto;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    margin-top: 20px;
  }
  .menu__item {
    margin-right: 0;
    width: auto;
  }
  .menu__item + .menu__item {
    margin-left: 0;
    margin-top: 50px;
  }
  .menu__item:hover .sub-menu {
    margin-top: 20px;
  }
  .menu__link {
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
  }
  .menu__link svg {
    width: 20px;
    height: 20px;
    top: 2px;
    position: relative;
  }
  .sub-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: center;
    margin-top: 20px;
    background-color: transparent;
  }
  .sub-menu.opened {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-menu__link {
    font-size: 16px;
    color: #022F60;
    white-space: normal;
  }
  .sub-menu__link:active {
    color: var(--accent-color);
  }
  .sub-menu__item + .sub-menu__item {
    margin-top: 20px;
  }
  .sub-menu__item.current_page_item .sub-menu__link {
    color: var(--accent-color);
  }
}
@media only screen and (max-width: 1199px) and (hover) {
  .sub-menu__link:hover {
    color: var(--accent-color);
  }
}
@media only screen and (max-width: 575px) {
  .header {
    height: 60px;
  }
  .header-block {
    height: 60px;
  }
  .header__btn {
    display: none;
  }
  .header__logo {
    width: 136px;
  }
  .menu {
    padding-top: 60px;
  }
}
.business {
  margin: 70px 0 50px;
}
.business-tabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 50px;
  border-bottom: 2px solid #F3F4F5;
  position: relative;
}
.business-tabs__slider {
  position: absolute;
  bottom: -2px;
  height: 4px;
  background-color: var(--black);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.business-content {
  position: relative;
}
.business-tab {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  padding-bottom: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
}
.business-tab + .business-tab {
  margin-left: 30px;
}
.business-tab__count {
  font-weight: 400;
  color: #4f6878;
}
.business-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -10px -20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.business-items.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.business-item {
  margin: 0 10px 20px;
  width: calc(16.6666666667% - 20px);
  border-radius: 10px;
  background-color: var(--black);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.business-item__image, .business-item__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 130px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business-item__image {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.business-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-item__arrow {
  padding-top: 30px;
  right: 0;
  position: relative;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.business-item__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}
.business-item:nth-child(2) {
  background-color: #243847;
}
.business-item:nth-child(3) {
  background-color: #314757;
}
.business-item:nth-child(4) {
  background-color: #3D5666;
}
.business-item:nth-child(5) {
  background-color: #455F70;
}
.business-item:nth-child(6) {
  background-color: #4F6878;
}

@media (hover) {
  .business-item:hover .business-item__image {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .business-item:hover .business-item__arrow {
    right: -10px;
  }
}
@media only screen and (max-width: 1199px) {
  .business {
    margin-bottom: 0;
  }
  .business-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .business-tabs:-webkit-scrollbar {
    display: none;
  }
  .business-tabs__slider {
    bottom: 0;
  }
  .business-tab {
    font-size: 20px;
  }
  .business-item {
    width: calc(33.3333333333% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .business-item {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .business {
    margin-top: 50px;
  }
  .business-tab {
    font-size: 15px;
  }
  .business-tab + .business-tab {
    margin-left: 20px;
  }
  .business-tabs {
    margin-bottom: 40px;
  }
  .business-items {
    margin: 0 -5px -10px;
  }
  .business-item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
  .business-item__title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 389px) {
  .business-tab {
    font-size: 14px;
  }
}
.product {
  padding: 55px 80px 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 547px;
  position: relative;
  border-radius: 10px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.product:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 785px;
  bottom: 0;
  content: "";
  border-radius: 0 10px 10px 0;
  background-color: var(--grey);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  z-index: 2;
}
.product--no-gallery {
  padding-top: 40px;
  padding-bottom: 40px;
}
.product--no-gallery .product-gallery {
  display: none;
}
.product.show-details:before {
  width: calc(100% + 2px);
  border-radius: 0;
}
.product.show-details .product-add-info {
  opacity: 1;
  visibility: visible;
  margin-left: -70px;
}
.product.show-details .product-users {
  opacity: 1;
  visibility: visible;
}
.product.show-details .product-header__item--payback {
  opacity: 1;
  visibility: visible;
}
.product-users {
  color: var(--blue-grey);
  font-weight: 500;
  font-size: 14px;
  margin-left: 60px;
  line-height: 1.3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, margin-left 0.3s;
  transition: opacity 0.3s, visibility 0.3s, margin-left 0.3s;
}
.product-users strong {
  font-weight: 600;
  font-size: 20px;
  color: var(--black);
}
.product-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}
.product-header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: -60px;
}
.product-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 60px;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.product-header__item--payback {
  opacity: 0;
  visibility: hidden;
}
.product-header__label {
  font-size: 16px;
  line-height: normal;
}
.product-header__profit {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  color: #72c79f;
  line-height: normal;
  margin-top: 7px;
  white-space: nowrap;
}
.product-header__profit span {
  font-size: 24px;
}
.product-header__price {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  margin-top: 13px;
  white-space: nowrap;
}
.product-header__price span {
  font-size: 20px;
}
.product-header__payback {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  margin-top: 10px;
  white-space: nowrap;
}
.product-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}
.product-content {
  width: 705px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 80px;
  position: relative;
  z-index: 2;
}
.product-title {
  max-width: calc(100% - 50px);
}
.product-text {
  font-size: 16px;
  margin-top: 30px;
  font-weight: 500;
  max-width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 50px;
}
.product-add-info {
  width: 725px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s, margin-left 0.5s;
  transition: opacity 0.3s, visibility 0.3s, margin-left 0.5s;
  position: relative;
  z-index: 2;
}
.product-blockquote {
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  border-left: 4px solid var(--accent-color);
  padding-left: 30px;
  max-width: 380px;
}
.product-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -60px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.product-advantage {
  margin-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.product-advantage__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}
.product-advantage__title {
  font-weight: 700;
  font-size: 14px;
}
.product-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  width: 100%;
}
.product-btns .btn {
  width: 100%;
  padding: 0 30px;
}
.product-btns .btn + .btn {
  margin-left: 10px;
}
.product-gallery {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 750px;
  background-color: var(--black);
}
.product-gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery-slide video {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  left: -2px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  left: 65px;
  right: auto;
  top: 0;
  bottom: 0;
  width: auto;
}
.product-footer {
  display: none;
}

@media only screen and (max-width: 1599px) {
  .product {
    padding-left: 60px;
    padding-right: 60px;
  }
  .product:before {
    width: calc(50% + 60px);
  }
  .product-content {
    width: calc(50% + 60px);
    padding-right: 60px;
  }
  .product-content .product-btns {
    width: calc(100% + 10px);
  }
  .product-add-info {
    width: calc(50% - 20px);
  }
  .product-gallery {
    width: 50%;
  }
  .product-gallery .swiper-pagination {
    left: 85px;
  }
}
@media only screen and (max-width: 1199px) {
  .product {
    min-height: auto;
    background-color: var(--grey);
    border-radius: 10px;
    padding-top: 0;
  }
  .product:before {
    display: none;
  }
  .product--no-gallery .product-gallery {
    display: block;
  }
  .product.show-details .product-add-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0px;
  }
  .product.show-details .product-users {
    opacity: 1;
    visibility: visible;
  }
  .product-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-content {
    padding-right: 0;
    width: 100%;
  }
  .product-content .product-btns {
    width: 100%;
  }
  .product-title {
    max-width: 480px;
  }
  .product-add-info {
    width: 100%;
    opacity: 1;
    visibility: visible;
    margin-top: 50px;
    display: none;
  }
  .product-users {
    display: none;
  }
  .product-header__items {
    margin-right: -60px;
  }
  .product-header__item--payback {
    opacity: 1;
    visibility: visible;
  }
  .product-gallery {
    position: relative;
    width: calc(100% + 120px);
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    aspect-ratio: 1.427;
    margin: -40px -60px 70px;
    border-radius: 10px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .product-gallery .swiper-pagination {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: auto;
    bottom: 10px;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .product-users {
    display: block;
    margin-left: 0;
    margin-top: 30px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .product-header__item--payback {
    display: none;
  }
  .product-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
  .product-footer .product-users {
    display: block;
    margin: 0;
  }
  .product-footer .product-header__item--payback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-right: 30px;
  }
  .product-footer .product-header__item--payback .product-header__payback {
    margin-top: 2px;
  }
  .product-gallery {
    width: calc(100% + 120px);
    margin: -60px -60px 70px;
  }
}
@media only screen and (max-width: 767px) {
  .product {
    padding: 50px 40px;
  }
  .product-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
  }
  .product-header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .product-header__item {
    text-align: left;
    margin-right: 0;
  }
  .product-header__item + .product-header__item {
    margin-top: 20px;
  }
  .product-gallery {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .product {
    padding: 40px 30px;
  }
  .product-users {
    font-size: 12px;
    display: none;
  }
  .product-users strong {
    font-size: 16px;
  }
  .product-header {
    margin-bottom: 40px;
  }
  .product-header__item + .product-header__item {
    margin-top: 15px;
  }
  .product-header__label {
    font-size: 14px;
  }
  .product-header__profit {
    font-size: 27px;
    margin-top: 2px;
  }
  .product-header__price {
    font-size: 20px;
    margin-top: 5px;
  }
  .product-header__price span {
    font-size: 16px;
  }
  .product-header__payback {
    font-size: 20px;
    margin-top: 2px;
  }
  .product-text {
    font-size: 12px;
    margin: 15px 0 40px;
  }
  .product-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-btns .btn {
    width: 100%;
    padding: 0;
  }
  .product-btns .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .product-add-info {
    margin-top: 30px;
  }
  .product-footer {
    margin-bottom: 30px;
  }
  .product-footer .product-header__item--payback {
    margin-right: 30px;
  }
  .product-blockquote {
    font-size: 14px;
    padding-left: 20px;
  }
  .product-advantages {
    margin: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-advantage {
    width: 100%;
    margin: 0;
  }
  .product-advantage + .product-advantage {
    margin-top: 20px;
  }
  .product-advantage__title {
    font-size: 12px;
  }
  .product-gallery {
    width: calc(100% + 60px);
    margin: -40px -30px 40px;
  }
  .product-gallery .swiper-pagination {
    left: 20px;
  }
}
.hero {
  width: 100%;
  height: calc(100vh - 75px);
  position: relative;
  overflow: hidden;
}
.hero-slider {
  width: 100%;
  height: 100%;
  background-color: var(--black);
}
.hero-slide {
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  width: 100%;
  height: calc(100% + 4px);
  left: 0;
  top: -2px;
}
.hero-video video {
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform, opacity, filter;
}

@media only screen and (max-width: 1599px) {
  .hero-slide {
    padding-bottom: 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 1199px) {
  .hero {
    margin-top: 100px;
    height: auto;
    width: auto;
  }
  .hero-slider {
    height: auto;
    width: auto;
    background-color: transparent;
  }
  .hero-slider > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-slide {
    height: auto !important;
  }
  .hero-slide + .hero-slide {
    margin-top: 40px;
  }
  .hero-video {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .hero {
    margin-top: 80px;
  }
  .hero-slide + .hero-slide {
    margin-top: 30px;
  }
}
.about {
  padding-bottom: 0;
}
.about-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about-info {
  max-width: 726px;
}
.about__subtitle {
  margin-top: 20px;
  display: block;
  line-height: 1.5;
}
.about-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 100px;
}
.about-btns .btn + .btn {
  margin-left: 20px;
}
.about-block {
  position: relative;
  margin-top: 100px;
}
.about-pretext {
  font-weight: 700;
  font-size: 20px;
  width: 368px;
  position: absolute;
  left: 0;
  top: 75px;
}
.about-text {
  width: 310px;
  position: absolute;
}
.about-text--1 {
  top: 0;
  left: calc(50% - 50px);
}
.about-text--2 {
  top: 260px;
  right: 0;
}
.about-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: -2.5%;
  top: 10px;
  position: relative;
  z-index: -1;
}
.about-chess {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -50px;
  padding-right: 115px;
}
.about-tizer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 332px;
}
.about-tizer:nth-child(1) .about-tizer__count span {
  font-size: 40px;
}
.about-tizer:nth-child(2) {
  margin-top: 145px;
}
.about-tizer__count {
  line-height: 0.8;
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 64px;
  line-height: 80%;
  text-transform: uppercase;
  color: var(--accent-color);
}
.about-tizer__count span {
  font-size: 24px;
}
.about-tizer__title {
  margin: 0;
  margin-top: 8px;
  font-weight: 700;
  font-size: 20px;
}
.about-tizer__text {
  margin-top: 22px;
  font-size: 14px;
}

@media only screen and (max-width: 1599px) {
  .about-image {
    left: 2.5%;
  }
  .about-text--2 {
    top: 16.5vw;
    width: 18vw;
  }
  .about-tizers {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1279px) {
  .about-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-btns {
    margin-left: 0;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-pretext {
    font-size: 18px;
    width: 300px;
    top: 50px;
  }
  .about-text--2 {
    top: 300px;
    width: 250px;
  }
  .about-tizers {
    margin-top: 50px;
    margin-left: -30px;
    margin-right: -30px;
  }
  .about-tizer {
    width: calc(33.33% - 60px);
    margin: 0 30px;
  }
  .about-tizer:nth-child(1) .about-tizer__count span {
    font-size: 30px;
  }
  .about-tizer__count {
    font-size: 50px;
  }
  .about-tizer__count span {
    font-size: 18px;
  }
  .about-tizer__title {
    font-size: 18px;
    margin-top: 20px;
  }
  .about-tizer__text {
    font-size: 14px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .about-block {
    margin-top: 50px;
  }
  .about-pretext {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 500px;
  }
  .about-text {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 30px;
  }
  .about-text--1, .about-text--2 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
  }
  .about-image {
    margin-top: 50px;
    left: auto;
    top: auto;
  }
  .about-tizer:nth-child(2) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-tizers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
  .about-tizer {
    width: 100%;
    margin: 0;
  }
  .about-tizer + .about-tizer {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .about-pretext {
    font-size: 16px;
  }
  .about-text {
    margin-top: 20px;
  }
  .about-image {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 30px;
  }
  .about-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: 30px;
  }
  .about-btns .btn + .btn {
    margin-left: 0;
    margin-top: 15px;
  }
  .about-tizers {
    margin-top: 30px;
  }
  .about-tizer:nth-child(1) .about-tizer__count span {
    font-size: 24px;
  }
  .about-tizer__count {
    font-size: 42px;
  }
  .about-tizer__count span {
    font-size: 14px;
  }
  .about-tizer__title {
    font-size: 16px;
    margin-top: 10px;
  }
  .about-tizer__text {
    font-size: 12px;
    margin-top: 10px;
  }
  .about-tizer + .about-tizer {
    margin-top: 40px;
  }
}
.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 50px -10px -20px;
}
.services-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 100px;
}
.services-btns .btn + .btn {
  margin-left: 20px;
}
.services-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.services__text {
  margin-top: 36px;
  max-width: 400px;
}

.service {
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  background-color: var(--black);
  border-radius: 10px;
  color: #fff;
  padding: 50px 40px 58px;
}
.service:nth-child(2n) {
  background-color: var(--blue-grey);
}
.service:nth-child(2n) .service__image:before {
  background-color: rgba(58, 83, 99, 0.43);
}
.service__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}
.service__subtitle {
  margin-top: 30px;
  font-weight: 500;
  font-size: 15px;
}
.service__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1.533;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-top: 12px;
  position: relative;
}
.service__image img {
  position: relative;
  height: 100%;
  width: auto;
}
.service__image:before {
  content: "";
  width: 190px;
  height: 190px;
  background-color: rgba(79, 104, 120, 0.25);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-filter: blur(29px);
          filter: blur(29px);
}
.service__list {
  margin-top: 12px;
}
.service__list li {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  line-height: 130%;
}
.service__list li:before {
  position: absolute;
  content: "";
  left: 5px;
  width: 14px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#CAF582), to(#7EE4C5));
  background: linear-gradient(90deg, #CAF582, #7EE4C5);
  border-radius: 10em;
  top: 8px;
}
.service__list li + li {
  margin-top: 20px;
}

@media only screen and (max-width: 1599px) {
  .service {
    padding: 40px 30px 48px;
  }
  .service__image {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
@media only screen and (max-width: 1199px) {
  .service {
    width: calc(50% - 20px);
    padding: 50px 40px 58px;
  }
  .service__image {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1199px) {
  .service:nth-child(2n) {
    background-color: var(--black);
  }
  .service:nth-child(2n) .service__image:before {
    background-color: rgba(79, 104, 120, 0.25);
  }
  .service:nth-child(4n+2), .service:nth-child(4n+3) {
    background-color: var(--blue-grey);
  }
  .service:nth-child(4n+2) .service__image:before, .service:nth-child(4n+3) .service__image:before {
    background-color: rgba(58, 83, 99, 0.43);
  }
}
@media only screen and (max-width: 991px) {
  .service {
    padding: 40px 30px 48px;
  }
  .service__image {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .services-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .services__text {
    margin-top: 30px;
  }
  .services-btns {
    margin-left: 0;
    margin-top: 30px;
  }
  .service {
    width: calc(100% - 20px);
    padding: 50px 40px 58px;
  }
  .service__image {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}
@media only screen and (max-width: 575px) {
  .services {
    margin-top: 40px;
  }
  .services-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .services-btns .btn + .btn {
    margin-left: 0;
    margin-top: 15px;
  }
  .service {
    padding: 40px;
  }
  .service__title {
    font-size: 18px;
  }
  .service__subtitle {
    font-size: 13px;
  }
  .service__list li {
    font-size: 12px;
  }
  .service__list li:before {
    top: 6px;
  }
  .service__list li + li {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 399px) {
  .service {
    padding: 40px 30px;
  }
}
.faq-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.faq-info {
  width: 290px;
  margin-left: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.faq__text--mobile {
  display: none;
}
.faq-btns {
  margin-top: 40px;
}
.faq-btns .btn {
  width: 100%;
}
.faq-btns .btn + .btn {
  margin-top: 20px;
}
.faq-btns--mobile {
  display: none;
}
.faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.faq-item {
  border-bottom: 1px solid #E1E4E6;
  width: 100%;
}
.faq-item + .faq-item {
  margin-top: 40px;
}
.faq-item.is-open .faq-item__body {
  max-height: 2000px;
}
.faq-item.is-open .faq-item__content {
  padding: 20px 0 30px;
  opacity: 1;
}
.faq-item.is-open .faq-item__toggle:before {
  opacity: 0;
}
.faq-item__header {
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq-item__title {
  font-weight: 700;
  font-size: 18px;
  padding-top: 11.5px;
}
.faq-item__toggle {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  border-radius: 10px;
  background-color: var(--black);
  width: 50px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.faq-item__toggle:before, .faq-item__toggle:after {
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fff;
  height: 22px;
  border-radius: 10em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.faq-item__toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__toggle:active {
  background-color: var(--blue-grey);
}
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
.faq-item__content {
  opacity: 0;
  padding: 0;
  font-size: 15px;
  -webkit-transition: padding 0.3s, opacity 0.3s;
  transition: padding 0.3s, opacity 0.3s;
}

@media (hover) {
  .faq-item__toggle:hover {
    background-color: var(--blue-grey);
  }
}
@media only screen and (max-width: 1199px) {
  .faq-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
  .faq-info {
    display: none;
  }
  .faq__text--mobile {
    display: block;
    margin-top: 30px;
  }
  .faq-btns--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    width: 100%;
  }
  .faq-btns--mobile .btn + .btn {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .faq-block {
    margin-top: 40px;
  }
  .faq-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
  .faq-btns .btn + .btn {
    margin-top: 20px;
    margin-left: 0px;
  }
  .faq-item__title {
    font-size: 14px;
    padding-top: 0;
  }
  .faq-item__content {
    font-size: 13px;
  }
  .faq-item.is-open .faq-item__content {
    padding-top: 0px;
  }
}
.mfp-bg {
  background-color: var(--black);
  opacity: 0.75;
}

*::-webkit-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #89A4B5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #89A4B5;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*:-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #89A4B5;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #89A4B5;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #89A4B5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.form input[type=text],
.form input[type=password],
.form input[type=url],
.form input[type=email],
.form input[type=number],
.form textarea {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  height: 61px;
  padding: 0 30px;
  text-align: left;
  border: 1px solid #89A4B5;
  border-radius: 10px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--text-color);
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form textarea {
  resize: none;
  height: 150px;
  padding-top: 20px;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 61px var(--grey);
  -webkit-text-fill-color: var(--text-color);
}
.form .input-group {
  width: 100%;
}
.form .input-group + .input-group {
  margin-top: 10px;
}
.form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form .form-row .input-group {
  width: calc(50% - 10px);
}

.iti {
  width: 100%;
}
.iti__flag-container {
  padding: 0;
}
.iti .iti__selected-flag {
  outline: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px 0 0 10px;
  color: var(--text-color);
}
.iti__arrow {
  border-top: 4px solid var(--text-color);
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid var(--text-color);
}
.iti__country-list {
  max-height: 220px;
  z-index: 11;
  margin: 0;
  margin-top: 10px;
  border: 1px solid #89A4B5;
  white-space: normal;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--grey);
}
.iti__country-list li {
  color: var(--text-color);
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.iti-mobile .iti__country-list {
  margin: 0;
  border-radius: 0;
  width: calc(100% - 20px);
}

.wpcf7-list-item-label {
  display: inline-block;
  cursor: pointer;
  padding-left: 31px;
  text-align: left;
  line-height: auto;
  position: relative;
}
.wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 4px;
  height: 21px;
  width: 21px;
  top: 0;
  left: 0px;
  border: 1px solid #89A4B5;
}
.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  height: 11px;
  width: 11px;
  border-radius: 2px;
  background-color: var(--accent-color);
  top: 5px;
  left: 5px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wpcf7-list-item input[type=checkbox] {
  display: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
  margin-top: 30px;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: inherit;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item-label a:active {
  text-decoration: none;
  text-decoration-color: transparent;
}

@media (hover) {
  .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    text-decoration: none;
    text-decoration-color: transparent;
  }
}
.fancybox-bg {
  background-color: var(--black);
}

.fancybox-is-open .fancybox-bg {
  background-color: var(--black);
  opacity: 0.75;
}

/* Custom animation */
.fancybox-fx-slide-in-down.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--next {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-up.fancybox-slide--previous {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.popup {
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 50px 80px;
  width: 100%;
  max-width: 580px;
  background-color: var(--grey);
  position: relative;
  display: none;
  margin: 20px auto;
}
.popup-title {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  font-family: var(--second-family);
  line-height: 130%;
  text-align: center;
}
.popup .fancybox-close-small {
  display: none;
}
.popup-close {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  top: 15px;
  right: 15px;
  position: absolute;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-close svg {
  width: 20px;
  height: 20px;
}
.popup-close svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.popup-close:hover svg path {
  fill: #3C5566;
}
.popup .form {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.popup .form .btn {
  width: 100%;
  margin-top: 30px;
}
.popup .form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.popup .form-footer .btn {
  width: auto;
  margin-top: 0;
}
.popup .form-footer .wpcf7-acceptance .wpcf7-list-item-label {
  margin-top: 0px;
  margin-left: 25px;
}
.popup--wide {
  max-width: 900px;
}
.popup--wide .popup-title {
  text-align: left;
}

.thanks-popup {
  max-width: 630px;
  padding: 50px 60px;
}
.thanks-popup-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.thanks-popup-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-right: 40px;
}
.thanks-popup-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}
.thanks-popup-subtitle {
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  .popup--wide {
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 991px) {
  .thanks-popup {
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .popup {
    max-width: calc(100% - 40px);
  }
  .popup .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup .form-row .input-group {
    width: 100%;
  }
  .popup .form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup .form-footer .btn {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 30px;
  }
  .popup .form-footer .wpcf7-acceptance .wpcf7-list-item-label {
    margin-left: 0;
  }
  .popup--wide .popup-title {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .wpcf7-acceptance .wpcf7-list-item-label {
    margin-top: 20px;
  }
  .popup {
    padding: 60px 30px 30px;
  }
  .popup-title {
    font-size: 24px;
  }
  .popup .form {
    margin-top: 30px;
  }
  .popup .form__btn {
    margin-top: 20px;
  }
  .popup .form-footer {
    margin-top: 20px;
  }
  .popup .form-footer .btn {
    margin-top: 20px;
  }
  .thanks-popup {
    padding: 40px;
  }
  .thanks-popup-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .thanks-popup-image {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .thanks-popup-title {
    font-size: 20px;
  }
  .thanks-popup-subtitle {
    font-size: 14px;
  }
}
.footer {
  overflow: hidden;
  background-color: var(--black);
  color: #fff;
  padding: 100px 0;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
}
.footer__logo {
  width: 166px;
  margin-bottom: 30px;
}
.footer-copy {
  margin-top: auto;
  font-weight: 400;
  font-size: 15px;
}
.footer-copy--tablet-hidden {
  display: none;
}
.footer-menu {
  margin-left: auto;
  margin-right: auto;
}
.footer-menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-menu__item + .footer-menu__item {
  margin-left: 100px;
}
.footer-menu__link {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  white-space: nowrap;
}
.footer-sub-menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-sub-menu__item {
  margin-top: 20px;
}
.footer-sub-menu__link {
  font-size: 15px;
  line-height: 130%;
  color: #fff;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.footer-sub-menu__link:active {
  text-decoration: underline;
  text-decoration-color: #fff;
}
.footer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 280px;
}
.footer-btns .btn {
  height: 60px;
}
.footer-btns .btn + .btn {
  margin-top: 20px;
}

@media (hover) {
  .footer-sub-menu__link:hover {
    text-decoration: underline;
    text-decoration-color: #fff;
  }
}
@media only screen and (max-width: 1599px) {
  .footer-info {
    width: auto;
  }
  .footer-btns {
    width: auto;
  }
  .footer-menu__item + .footer-menu__item {
    margin-left: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer {
    padding-bottom: 70px;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-info {
    margin-right: 0;
  }
  .footer-menu {
    margin-left: 0;
    margin-right: 0;
    margin-top: 70px;
    width: 100%;
  }
  .footer-menu__list {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-copy {
    margin-top: 70px;
  }
  .footer-copy--desktop-hidden {
    display: none;
  }
  .footer-copy--tablet-hidden {
    display: block;
  }
  .footer-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 0;
    margin-top: 70px;
  }
  .footer-btns .btn + .btn {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-menu {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer-menu__item + .footer-menu__item {
    margin-left: 50px;
  }
  .footer-menu__link {
    font-size: 18px;
  }
  .footer-sub-menu__link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding: 80px 0 50px;
  }
  .footer__logo {
    width: 136px;
  }
  .footer-menu {
    margin-top: 50px;
  }
  .footer-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-menu__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-menu__item + .footer-menu__item {
    margin-left: 0;
    margin-top: 40px;
  }
  .footer-sub-menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-sub-menu__item {
    margin-top: 15px;
  }
  .footer-sub-menu__link {
    text-align: center;
  }
  .footer-copy {
    font-size: 14px;
    margin-top: 50px;
  }
  .footer-btns {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-btns .btn + .btn {
    margin-left: 0;
    margin-top: 20px;
  }
}
.catalog-section {
  padding-top: 40px;
  padding-bottom: 100px;
  overflow: hidden;
}
.catalog-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.catalog-products {
  margin-top: 50px;
}
.catalog-products .product + .product {
  margin-top: 40px;
}

.detail-search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 70px;
  margin-right: 20px;
  padding: 0 50px;
}
.detail-search__count {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--black);
  color: #fff;
  line-height: 30px;
  white-space: nowrap;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
  pointer-events: none;
}

.search-form {
  position: relative;
  width: 100%;
  border: 1px solid #D1DFE8;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
}
.search-form:before {
  position: absolute;
  content: "";
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("./img/search-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.search-form__btn {
  font-size: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 50px;
  position: relative;
  top: -1px;
  right: -1px;
  height: calc(100% + 2px);
}
.search-form *::-webkit-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #A8B9C4;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #A8B9C4;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *:-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #A8B9C4;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *::-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #A8B9C4;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form *::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  color: #A8B9C4;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.search-form__input {
  width: 100%;
  line-height: 1.3;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  padding: 0 20px 0 64px;
  text-align: left;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--black);
}
.search-form__input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.search-form__input:focus::-moz-placeholder {
  opacity: 0;
}
.search-form__input:focus:-ms-input-placeholder {
  opacity: 0;
}
.search-form__input:focus::-ms-input-placeholder {
  opacity: 0;
}
.search-form__input:focus::placeholder {
  opacity: 0;
}
.search-form input:-webkit-autofill,
.search-form input:-webkit-autofill:hover,
.search-form input:-webkit-autofill:focus,
.search-form input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 70px #fff;
  -webkit-text-fill-color: var(--black);
}

@media only screen and (max-width: 991px) {
  .detail-search {
    padding: 0;
    width: 50px;
    height: 50px;
  }
  .detail-search__count {
    margin: 0;
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 3;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }
  .detail-search .btn__icon {
    margin-left: 0px;
  }
  .detail-search .btn__title {
    display: none;
  }
  .search-form {
    height: 50px;
  }
  .search-form:before {
    display: none;
    padding-left: 20px;
  }
  .search-form__input {
    padding: 0 20px;
  }
  .search-form__btn {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 575px) {
  .catalog-section {
    padding-bottom: 80px;
  }
  .catalog-search {
    margin-bottom: 40px;
  }
  .catalog-products {
    margin-top: 40px;
  }
  .catalog-products .product + .product {
    margin-top: 30px;
  }
  .detail-search {
    margin-right: 10px;
  }
  .search-form__btn {
    text-indent: -9999px;
    width: 50px;
    padding: 0;
    background-image: url("./img/search-icon-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
  }
}
.pagination {
  margin-top: 50px;
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  text-decoration: none;
  background-color: #DDE4EB;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: var(--black);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.page-numbers:active {
  background-color: var(--black);
  color: #fff;
}
.page-numbers.current {
  background-color: var(--black);
  color: #fff;
}
.page-numbers.prev.disabled, .page-numbers.next.disabled {
  display: none;
}
.page-numbers.dots {
  background-color: #F3F4F5;
  pointer-events: none;
}

@media (hover) {
  .page-numbers:hover {
    background-color: var(--black);
    color: #fff;
  }
}
@media only screen and (max-width: 575px) {
  .pagination {
    margin-top: 40px;
  }
  .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.order {
  margin: 40px 0;
}
.order-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-radius: 10px;
  background-color: var(--black);
  padding: 60px 80px;
  color: #fff;
  min-height: 547px;
  position: relative;
  overflow: hidden;
}
.order-block:before {
  position: absolute;
  content: "";
  width: 562px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: #4F6878;
  opacity: 0.25;
  position: absolute;
  bottom: 105px;
  right: 80px;
  -webkit-filter: blur(200px);
          filter: blur(200px);
}
.order-info {
  max-width: 440px;
  position: relative;
  z-index: 2;
}
.order-text {
  margin-top: 32px;
  font-weight: 500;
}
.order__btn {
  margin-top: 50px;
  min-width: 308px;
}
.order-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 770px auto;
  background-repeat: no-repeat;
  background-position: bottom 55px right 80px;
  pointer-events: none;
}

@media only screen and (max-width: 1599px) {
  .order-image {
    background-size: 600px auto;
  }
}
@media only screen and (max-width: 1199px) {
  .order-block {
    min-height: auto;
    padding: 60px;
  }
  .order-info {
    max-width: 50%;
  }
  .order-image {
    background-size: 500px auto;
    background-position: bottom 30px right 30px;
  }
}
@media only screen and (max-width: 991px) {
  .order-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .order-info {
    max-width: 100%;
  }
  .order-image {
    margin-top: 50px;
    position: relative;
    aspect-ratio: 1.2;
    width: 100%;
    background-size: contain;
    background-position: center;
  }
}
@media only screen and (max-width: 767px) {
  .order-block {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .order {
    margin: 30px 0;
  }
  .order-block {
    padding: 40px 30px;
  }
  .order-text {
    margin-top: 20px;
  }
  .order__btn {
    margin-top: 40px;
    min-width: auto;
    width: 100%;
  }
}
.offer {
  padding: 0;
  margin-bottom: 100px;
}
.offer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  background-color: var(--blue-grey);
  padding: 50px 80px;
  color: #fff;
  position: relative;
}
.offer-info {
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.offer__title {
  line-height: 1.5;
}
.offer-text {
  margin-top: 30px;
  font-weight: 500;
  max-width: 470px;
}
.offer__btn {
  margin-top: 40px;
  min-width: 308px;
}
.offer-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 850px auto;
  background-repeat: no-repeat;
  background-position: top -100px right -45px;
  pointer-events: none;
}

@media only screen and (max-width: 1599px) {
  .offer-image {
    background-position: top -50px right -45px;
    background-size: 700px auto;
  }
}
@media only screen and (max-width: 1199px) {
  .offer-block {
    padding: 60px;
  }
  .offer-info {
    max-width: 50%;
  }
  .offer-image {
    background-size: 500px auto;
    background-position: bottom 30px right -30px;
  }
}
@media only screen and (max-width: 991px) {
  .offer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offer-info {
    max-width: 100%;
  }
  .offer-image {
    margin-top: 50px;
    position: relative;
    aspect-ratio: 1.2;
    width: 100%;
    background-size: contain;
    background-position: center;
  }
}
@media only screen and (max-width: 575px) {
  .offer {
    margin-bottom: 80px;
  }
  .offer-block {
    padding: 40px;
  }
  .offer-text {
    margin-top: 20px;
  }
  .offer__btn {
    margin-top: 30px;
    min-width: auto;
    width: 100%;
  }
}
.card-hero {
  padding-top: 100px;
  min-height: 740px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
}
.card-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 85px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.card-hero__bg--bc {
  background-position: bottom center;
}
.card-hero__bg--bc video {
  -o-object-position: bottom center;
     object-position: bottom center;
}
.card-hero__bg--tc {
  background-position: top center;
}
.card-hero__bg--tc video {
  -o-object-position: top center;
     object-position: top center;
}
.card-hero__bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card-hero-content {
  color: #fff;
}
.card-hero__text {
  max-width: 480px;
  margin-top: 40px;
  font-weight: 500;
}
.card-hero-info {
  background-color: var(--grey);
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 170px;
  border-radius: 10px;
  margin-top: 60px;
  padding: 50px 80px;
}
.card-hero-info__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -60px;
}
.card-hero-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 60px;
}
.card-hero-info__label {
  font-size: 16px;
  line-height: normal;
}
.card-hero-info__profit {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  color: #72c79f;
  line-height: normal;
  margin-top: 7px;
  white-space: nowrap;
}
.card-hero-info__price {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  margin-top: 13px;
  white-space: nowrap;
}
.card-hero-info__price span {
  font-size: 20px;
}
.card-hero-info__payback {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  margin-top: 10px;
  white-space: nowrap;
}
.card-hero-info__btn {
  width: 100%;
  max-width: 450px;
  margin-left: 100px;
}

@media only screen and (max-width: 1599px) {
  .card-hero-info {
    padding: 50px 60px;
  }
  .card-hero-info__btn {
    margin-left: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .card-hero {
    min-height: 640px;
  }
  .card-hero__bg {
    height: calc(100% - 135px);
  }
  .card-hero-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 270px;
    padding: 50px;
  }
  .card-hero-info__items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-right: 0;
  }
  .card-hero-info__item {
    margin-right: 0;
  }
  .card-hero-info__btn {
    max-width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .card-hero {
    min-height: auto;
  }
  .card-hero__bg {
    height: calc(100% - 340px);
  }
  .card-hero-info {
    height: auto;
    top: 100%;
  }
  .card-hero-info__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .card-hero-info__item + .card-hero-info__item {
    margin-top: 30px;
  }
  .card-hero-info__profit {
    margin-top: 10px;
  }
  .card-hero-info__price {
    margin-top: 10px;
  }
  .card-hero-info__payback {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .card-hero__bg {
    height: calc(100% - 300px);
  }
  .card-hero__text {
    margin-top: 30px;
    font-size: 12px;
  }
  .card-hero-info {
    margin-top: 40px;
    padding: 40px 30px;
  }
  .card-hero-info__label {
    font-size: 14px;
  }
  .card-hero-info__profit {
    font-size: 27px;
  }
  .card-hero-info__price {
    font-size: 20px;
  }
  .card-hero-info__price span {
    font-size: 16px;
  }
  .card-hero-info__payback {
    font-size: 20px;
  }
  .card-hero-info__btn {
    max-width: 100%;
    margin-top: 30px;
  }
  .card-hero-info__item + .card-hero-info__item {
    margin-top: 30px;
  }
}
.video-play {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 20px;
  width: 100px;
  height: 100px;
  background-color: var(--black);
  z-index: 2;
  background-image: url("./img/play-icon.svg");
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (min-width: 1200px) {
  .card-section__container {
    max-width: 1440px;
  }
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 100px;
}
.card-section {
  margin-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
}
.card-content {
  width: 57.5%;
}
.card-aside {
  width: 32.5%;
}
.card-slider {
  width: 100%;
  aspect-ratio: 1.42;
  overflow: hidden;
}
.card-slider-wrap {
  width: 100%;
  position: relative;
}
.card-slide {
  overflow: hidden;
  position: relative;
}
.card-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-slide video {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  left: -2px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-thumbs-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.card-thumbs-slider.swiper-initialized {
  opacity: 1;
}
.card-thumbs-slider__nav {
  position: absolute;
  bottom: 0;
  height: 130px;
  left: 0;
  right: 0;
}
.card-thumbs-slider__back, .card-thumbs-slider__next {
  position: absolute;
  top: 50%;
}
.card-thumbs-slider__back {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.card-thumbs-slider__next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.card-thumbs-slide {
  overflow: hidden;
  aspect-ratio: 1.39;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.card-thumbs-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-thumbs-slide--has-video {
  position: relative;
}
.card-thumbs-slide--has-video:before {
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  background-color: var(--black);
  z-index: 2;
}
.card-thumbs-slide--has-video:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-image: url("./img/play-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.card-chars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}
.card-char {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: normal;
  font-size: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.card-char strong {
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
  text-align: right;
}
.card-char + .card-char {
  margin-top: 10px;
}
.card-info {
  width: 100%;
  padding: 70px 0;
}
.card__btn {
  width: 100%;
}
.card-blockquote {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  margin: 70px 0;
  border-left: 4px solid var(--accent-color);
  padding-left: 60px;
  padding-right: 30px;
}
.card-pretext {
  font-weight: 500;
  font-size: 20px;
  margin: 30px 0;
}
.card-text {
  margin-top: 34px;
  font-weight: 500;
}
.card-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -40px;
  margin-bottom: -40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 70px;
}
.card-advantage {
  padding-left: 39px;
  background-image: url("./img/icon-park-outline_auto-focus.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 24px;
  margin-right: 40px;
  margin-bottom: 40px;
  width: calc(50% - 40px);
}
.card-advantage__title {
  font-weight: 700;
  font-size: 14px;
}
.card-advantage__text {
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}
.card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -20px;
  padding-top: 70px;
  border-top: 1px solid var(--border-color);
}
.card-tag {
  margin: 0 20px 20px 0;
  border-radius: 10px;
  padding: 10px 30px;
  background-color: var(--grey);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: normal;
}
.card-location {
  margin-top: 70px;
  width: 100%;
}
.card-location__btn {
  width: 100%;
  margin-top: 30px;
}
.card-location__text {
  margin-top: 30px;
  padding-left: 34px;
  font-weight: 500;
  font-size: 16px;
  background-image: url("./img/pin.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 24px;
}
.card-manager {
  margin-top: 70px;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  background-color: var(--grey);
}
.card-manager-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-manager__photo {
  border-radius: 10px;
  width: 158px;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.card-manager__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-manager__btn {
  width: 100%;
  margin-top: 30px;
}
.card-manager__name {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
}
.card-manager__job {
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
}
.card-manager__info {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 1199px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-content {
    width: 100%;
  }
  .card-aside {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .card-chars-wrap {
    width: calc(50% - 40px);
  }
  .card-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - 40px);
  }
  .card-location {
    width: 100%;
    margin-top: 0;
  }
  .card-manager {
    width: 100%;
  }
  .card-tags {
    border-top: none;
  }
}
@media only screen and (max-width: 991px) {
  .card-thumbs-slider {
    margin-top: 15px;
  }
  .card-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-aside {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-chars-wrap {
    width: 100%;
  }
  .card-row {
    width: 100%;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .card {
    padding-bottom: 80px;
  }
  .card-section {
    margin-top: 60px;
    padding-bottom: 80px;
  }
  .card-info {
    padding: 50px 0;
  }
  .card-blockquote {
    margin: 50px 0;
    padding-left: 30px;
    padding-right: 0;
    font-size: 18px;
  }
  .card-pretext {
    font-size: 18px;
  }
  .card-text {
    margin-top: 30px;
  }
  .card-advantages {
    margin: 50px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-advantage {
    width: 100%;
    margin: 0;
  }
  .card-advantage + .card-advantage {
    margin-top: 30px;
  }
  .card-tags {
    padding-top: 50px;
    margin: 0 -15px -15px 0;
  }
  .card-tag {
    font-size: 14px;
    margin: 0 15px 15px 0;
  }
  .card-chars {
    margin-top: 20px;
  }
  .card-char {
    font-size: 14px;
  }
  .card-char + .card-char {
    margin-top: 0px;
  }
  .card-char strong {
    margin-left: 20px;
  }
  .card-row {
    margin-top: 50px;
  }
  .card-location__text {
    font-size: 14px;
    margin-top: 20px;
  }
  .card-location__btn {
    margin-top: 20px;
  }
  .card-manager {
    margin-top: 50px;
    padding: 20px;
  }
  .card-manager__photo {
    width: 40%;
  }
  .card-manager__info {
    margin-left: 20px;
  }
  .card-manager__name {
    font-size: 18px;
  }
  .card-manager__job {
    font-size: 14px;
    margin-top: 10px;
  }
  .card-manager__btn {
    margin-top: 20px;
  }
  .card-slide__video-play {
    border-radius: 15px;
    width: 75px;
    height: 75px;
  }
  .card-thumbs-slide--has-video:before {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
            transform: translate(-50%, -50%) scale(0.6);
  }
}
.order-details {
  padding: 50px 80px;
  border-radius: 10px;
  background-color: var(--grey);
  position: relative;
}
.order-details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.order-details-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 530px;
}
.order-details__title {
  margin: 0;
  font-size: 20px;
  font-family: var(--second-family);
  font-weight: 700;
}
.order-details__text {
  margin-top: 30px;
  font-weight: 500;
  font-size: 15px;
}
.order-details__image {
  position: absolute;
  right: 80px;
  bottom: 0;
  pointer-events: none;
  width: 654px;
  aspect-ratio: 2.64;
}
.order-details__btn {
  min-width: 289px;
}

@media only screen and (max-width: 1299px) {
  .order-details {
    padding: 50px 60px;
  }
  .order-details__image {
    right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .order-details-info {
    width: 40%;
  }
  .order-details__image {
    right: 0;
    width: 60%;
  }
  .order-details__title {
    font-size: 18px;
  }
  .order-details__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .order-details-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 250px;
  }
  .order-details-info {
    width: 100%;
  }
  .order-details__btn {
    margin-top: 40px;
  }
  .order-details__image {
    right: 0;
    left: 30px;
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 767px) {
  .order-details-block {
    padding-bottom: 180px;
  }
}
@media only screen and (max-width: 575px) {
  .order-details {
    padding: 30px;
  }
  .order-details-block {
    padding-bottom: 30vw;
  }
  .order-details__title {
    font-size: 16px;
  }
  .order-details__text {
    font-size: 13px;
    margin-top: 20px;
  }
  .order-details__btn {
    min-width: auto;
    width: 100%;
    margin-top: 30px;
  }
}
.other-products {
  margin-top: 100px;
  overflow: hidden;
}
.other-products-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 30px -10px -20px;
}
.other-product {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  border-radius: 10px;
  background-color: #F3F4F5;
  overflow: hidden;
}
.other-product-image {
  width: 100%;
  aspect-ratio: 1.422;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}
.other-product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-product-content {
  padding: 30px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.other-product-price {
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.other-product-price__label {
  font-size: 16px;
  margin-bottom: 5px;
}
.other-product-price__value {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  color: #1b2830;
  white-space: nowrap;
}
.other-product-price__value span, .other-product-price__value b, .other-product-price__value strong {
  font-size: 24px;
  font-weight: 700;
}
.other-product-title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}
.other-product__btn {
  width: 100%;
  margin-top: auto;
  padding: 0 30px;
}

@media only screen and (max-width: 1199px) {
  .other-product {
    width: calc(50% - 20px);
  }
  .other-product-title {
    font-size: 18px;
  }
  .other-product-price__label {
    font-size: 14px;
  }
  .other-product-price__value {
    font-size: 18px;
  }
  .other-product-price__value span, .other-product-price__value b, .other-product-price__value strong {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .other-product {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .other-products {
    margin-top: 80px;
  }
  .other-product-content {
    padding: 30px;
  }
  .other-product-title {
    font-size: 16px;
  }
  .other-product-price__label {
    font-size: 12px;
  }
  .other-product-price__value {
    font-size: 16px;
  }
  .other-product-price__value span, .other-product-price__value b, .other-product-price__value strong {
    font-size: 20px;
  }
}