@charset "UTF-8";

.black {
  font-weight: 900;
}

.extrabold {
  font-weight: 800;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.ultra-light {
  font-weight: 200;
}

.thin {
  font-weight: 100;
}

.lazy-bg {
  background-color: #dddddd;
}

.default-btn {
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  background-color: transparent;
  color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  line-height: 1;
  transition: 0.3s ease-in-out;
}

.default-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.default-btn-white {
  color: #16151c;
  border: 1px solid rgba(22, 21, 28, 0.3);
}

.default-btn-white:hover {
  background-color: rgba(22, 21, 28, 0.05);
  border: 1px solid rgba(22, 21, 28, 0.3);
}

.default-btn:active {
  transform: scale(0.95);
}

.default-icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: #16151c;
  transition: fill 0.3s ease-in-out;
}

.default-icon:hover {
  fill: #00aeff;
}

.default-icon-white {
  fill: #ffffff;
}

.default-icon-white:hover {
  fill: #00aeff;
}

.default-btn-lg {
  font-size: 18px;
  padding: 18px 36px;
  max-width: fit-content;
}

.default-btn-lg img {
  margin-left: 12px;
}

.title {
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1;
  font-size: 80px;
  color: #16151c;
}

.title.white {
  color: #ffffff;
}

.title b {
  font-weight: 900;
}

.title .blue {
  color: #00aeff;
}

.marquee-slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-slide {
  display: flex;
  align-items: center;
  max-width: fit-content;
  min-width: fit-content;
  display: flex;
  animation: marquee-animation 10s linear infinite;
}

@keyframes marquee-animation {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-slider-plus-y {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.marquee-slide-plus-y {
  display: flex;
  flex-direction: column;
  max-width: fit-content;
  min-width: fit-content;
  display: flex;
  animation: marquee-animation-plus-y 10s linear infinite;
}

@keyframes marquee-animation-plus-y {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

.marquee-slider-minus-y {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.marquee-slide-minus-y {
  display: flex;
  flex-direction: column;
  max-width: fit-content;
  min-width: fit-content;
  display: flex;
  animation: marquee-animation-minus-y 10s linear infinite;
}

@keyframes marquee-animation-minus-y {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

* p {
  margin: 0;
  padding: 0;
}

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

* button {
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

* input,
* textarea {
  font-family: inherit;
  outline: none;
}

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

* a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

[hidden] {
  display: none !important;
}

html {
  background-color: #16151c;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  color: #16151c;
  margin: 0;

  max-width: 100%;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header.fixed {
  background-color: #16151c;
}

.header__box {
  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;
  padding: 32px 0;
  padding-right: 40px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header.fixed .header__box {
  padding-top: 21px;
  padding-bottom: 21px;
}

.header__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo-text {
  padding-left: 32px;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
}

.header__phone-icon {
  display: none;
}

.header__phone {
  font-size: 20px;
  margin-right: 40px;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}

.header__phone:hover {
  color: #00aeff;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__button {
  position: relative;
  margin-right: 4px;
}

.header__button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  -webkit-transform: translate(-5px, -5px);
  -ms-transform: translate(-5px, -5px);
  transform: translate(-5px, -5px);
  width: 16px;
  height: 16px;
  background: url(../images/icons/circle-plus.svg) center/cover no-repeat;
}

.header__lang-btn {
  position: relative;
  padding-left: 16px;
  padding-right: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.header__lang-arrow {
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  right: 16px;
  top: 50%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header__switcher {
  position: relative;
}

.header__switcher.active .header__lang-btn {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.header__switcher.active .header__langs {
  opacity: 1;
  visibility: visible;
}

.header__switcher.active .header__lang-arrow {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.header__langs {
  background-color: rgb(22, 21, 28);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 1px;
  top: auto;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  width: 100%;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.header__lang-link {
  width: 100%;
  padding: 8px 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}

.header__lang-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.header__menu-btn {
  display: block;
  padding: 0;
  position: relative;
  background-color: transparent;
  border: none;
  z-index: 16;
}

.header__menu-close {
  opacity: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.header__overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 33, 33, 0.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.header__overlay.active {
  visibility: visible;
  opacity: 1;
}

.header__menu {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  z-index: 15;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  top: 0;
  width: 720px;
  overflow-y: auto;
  height: 100vh;
  background-color: #ffffff;
  color: #16151c;
  padding: 36px 96px 24px 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header.fixed .header__menu {
  padding-top: 24px;
}

.header__menu .header__button {
  border: 1px solid #16151c;
  font-weight: 600;
  color: #16151c;
  margin-right: 56px;
  background-color: rgb(255, 255, 255);
}

.header__menu .header__button:hover {
  background-color: rgba(22, 21, 28, 0.1);
}

.header__menu .header__phone {
  font-weight: 700;
  margin-right: 0;
}

.header__menu-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu-list {
  margin-top: 60px;
  margin-bottom: 80px;
  max-width: fit-content;
}

.header__menu-link {
  padding-top: 14px;
  padding-bottom: 14px;
  text-transform: uppercase;
  width: 100%;
}

.header__menu-item:first-child .header__menu-link {
  padding-top: 0 !important;
}

.header__menu-item:last-child {
  margin-bottom: 0;
}

.header__menu-link {
  font-weight: 700;
  font-size: 28px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header__menu-link:hover {
  color: #00aeff;
}

.header__socails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  margin-bottom: 36px;
}

.header__socials-item {
  margin-right: 40px;
}

.header__socials-item:last-child {
  margin-right: 0;
}

.header__menu-text {
  font-size: 14px;
  font-weight: 500;
}

.header__menu-bottom {
  margin-top: auto;
  color: #091a2f;
}

.header__socials-icon path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header__socials-link:hover .header__socials-icon path {
  fill: #00aeff;
}

.header__menu-wrap {
  margin-left: 40px;
}

.header__menu-open,
.header__menu-close {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: block;
}

.header__menu-wrap.active .header__menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.header__menu-wrap.active .header__menu-btn .header__menu-open {
  opacity: 0;
}

.header__menu-wrap.active .header__menu-btn .header__menu-close {
  opacity: 1 !important;
}

.screen {
  position: relative;
  overflow: hidden;
  z-index: 2;
  color: #ffffff;
}

.screen__title {
  display: none;
  font-family: "ArialBlack", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  line-height: 1.33;
}

.screen__btn {
  display: none;
}

.screen__image {
  display: block;
  margin: 0;
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
}

.screen__thumb {
  max-width: 341px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}

.screen__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.screen__block {
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 60px;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.screen__block>* {
  margin-top: auto;
}

.screen__box {
  max-width: 1050px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.screen__text {
  padding-right: 100px;
  max-width: 670px;
}

.screen__text-lg {
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 40px;
  font-weight: 200;
}

.screen__text-md {
  margin-top: 28px;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 56px;
  font-weight: 800;
}

.screen__video-btn {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  text-align: left;
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  align-items: center;
}

.screen__video-btn:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.screen__text-sm {
  margin-left: 20px;
  text-transform: uppercase;
  line-height: 1.25;
  font-size: 20px;
  font-weight: 500;
}

.screen__business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.screen__business-item {
  padding: 0 40px;
  position: relative;
}

.screen__business-item::after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  width: 1px;
  top: 0;
  bottom: 0;
}

.screen__business-item:last-child::after {
  content: none;
}

.screen__business-title {
  font-family: "ArialBlack", Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 0.8px #ffffff;
  line-height: 1.33;
}

.screen__business-desc {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.screen__scroll {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  left: 40px;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  color: #ffffff;
  top: calc(50% - 40px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}

.screen__scroll-text {
  margin-top: 16px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* Повертає текст вертикально, знизу вверх */
  white-space: nowrap;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.screen__marquee-slide p:nth-child(2) {
  line-height: 0;
}

.screen__marquee-text {
  font-family: "ArialBlack", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 116px;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  white-space: nowrap;
  line-height: 1.33;
}

.screen__marquee {
  max-width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.screen__marquee-logo {
  margin: 0 80px;
  margin-top: 8px;
}

.francise__title {
  text-transform: uppercase;
  font-size: 56px;
  color: #16151c;
  font-weight: 900;
}

.francise__title span {
  color: #00aeff;
}

.francise__desc {
  padding-top: 8px;
  color: #16151c;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.4;
  margin-left: 100px;
  max-width: 600px;
}

.francise__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 120px;
  position: relative;
  z-index: 3;
}

.francise {
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
}

.francise::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 160px;
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(255, 255, 255, 0)),
      to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.francise__image {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  max-width: 620px;
}

.francise__wrap {
  padding-top: 140px;
  position: relative;
  z-index: 2;
}

.francise__content {
  margin-top: 80px;
  max-width: 970px;
  margin-right: 218px;
  line-height: 80px;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 24px;
  position: relative;
  z-index: 3;
  padding-bottom: 220px;
}

.francise__content span {
  font-size: 84px;
  font-weight: 700;
  margin: 0 0.5rem;
}

.francise__content br {
  display: none;
}

.francise__decor {
  font-size: 180px;
  color: #f4f4f4;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: auto;
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-top: 0px;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(14px, 40px);
  -ms-transform: translate(14px, 40px);
  transform: translate(14px, 40px);
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.speed__marquee {
  max-width: 100%;
  overflow: hidden;
}

.speed {
  background-color: #16151c;
  color: #ffffff;
}

.speed__wrap {
  padding-top: 180px;
  padding-bottom: 140px;
  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;
}

.speed__title {
  padding: 0 40px;
  font-weight: 300;
  font-size: 80px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.speed__title b {
  font-weight: 900;
}

:root {
  --speed__title-transalte-up: 28px;
  --speed__title-transalte-bottom: -28px;
}

.speed__title.up {
  -webkit-transform: translateY(var(--speed__title-transalte-up));
  -ms-transform: translateY(var(--speed__title-transalte-up));
  transform: translateY(var(--speed__title-transalte-up));
}

.speed__title.bottom {
  -webkit-transform: translateY(var(--speed__title-transalte-bottom));
  -ms-transform: translateY(var(--speed__title-transalte-bottom));
  transform: translateY(var(--speed__title-transalte-bottom));
}

.speed__desc {
  padding: 0 120px;
  margin-top: 26px;
  margin-bottom: 60px;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.speed__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 100%;
  max-height: 250px;
  height: auto;
  overflow: hidden;
}

.speed__gallery-image-wrap {
  width: 100%;
}

.speed__gallery-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}

.speed__gallery-image:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.speed__gallery-wrap {
  position: relative;
  z-index: 2;
}

.speed__gallery-btn img {
  display: none;
}

.speed__gallery-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgb(22, 21, 28);
  text-transform: uppercase;
  border: none;
  border-radius: 24px;
  background-color: #00AEFF;
  border: 1px solid rgba(255, 255, 255, 1);
}

.speed__gallery-btn:hover {
  background-color: #009de6;
  border: 1px solid #009de6;
}

.speed__gallery-btn:active {
  -webkit-transform: scale(0.95) translateY(-50%);
  -ms-transform: scale(0.95) translateY(-50%);
  transform: scale(0.95) translateY(-50%);
}

.speed__marquee-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.speed__marquee-content {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.speed__marquee-text {
  font-family: "ArialBlack", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  line-height: 1.33;
}

.speed__marquee-logo {
  width: 40px;
  height: 40px;
  margin: 0 56px;
}

.faq__decor {
  position: absolute;
  top: 0;
  left: 145px;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
  text-transform: uppercase;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 40px;
  padding-right: 180px;
  z-index: 2;
}

.faq__item:first-child {
  margin-right: 120px;
}

.faq__item:nth-child(2) {
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
}

.faq {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
  color: #ffffff;
  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;
}

.faq__desc {
  font-size: 18px;
  margin-top: 60px;
  max-width: 385px;
  line-height: 1.2;
  margin-bottom: 80px;
}

.faq__button {
  text-transform: uppercase;
}

.faq__question {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.faq__question-num {
  padding-top: 3px;
  font-size: 16px;
  font-weight: 300;
}

.faq__question-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 49px;
  padding-right: 28px;
  position: relative;
  text-align: left;
}

.faq__question-title::before {
  counter-increment: question-counter;
  content: counter(question-counter, decimal-leading-zero);
  display: inline-block;
  width: 2ch;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
}

.faq__question-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  padding: 13px;
}

.faq__question-btn-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq__question-btn-icon::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}

.faq__question-btn-icon::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}

.faq__question-head {
  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;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  color: #ffffff;
  padding-bottom: 32px;
  padding-top: 32px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.faq__question-head:hover {
  opacity: 0.7;
}

.faq__question-answer {
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.faq__question.active .faq__question-answer {
  padding-bottom: 32px;
  max-height: 500px;
  opacity: 1;
}

.faq__question.active .faq__question-btn-icon::after {
  opacity: 0;
}

.faq__question-answer {
  padding-right: 76px;
  padding-left: 49px;
}

.faq__question-answer p {
  font-size: 16px;
  line-height: 1.3;
}

.faq__questions {
  max-width: 950px;
  counter-reset: question-counter;
}

.faq__question {
  display: none;
}

.faq__item.active .faq__question {
  display: block;
}

.faq__question:nth-child(-n + 5) {
  display: block;
}

.faq__question-hide-text {
  display: none;
}

.faq__item.active .faq__question-more-text {
  display: none;
}

.faq__item.active .faq__question-hide-text {
  display: block;
}

.faq__question-more {
  min-width: 260px;
  text-align: center;
  margin-top: 40px;
}

.seo {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.seo__decor {
  position: absolute;
  top: 0;
  left: 250px;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(22, 21, 28, 0.05);
  z-index: 1;
  text-transform: uppercase;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.seo__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 150px;
}

.seo__content-wrap {
  margin-top: 180px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.seo__title {
  text-wrap:balance;
  font-weight: 300;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 56px;
}

.seo__title b {
  font-weight: 900;
}

.seo__title span {
  color: #00aeff;
}

.seo__content p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.seo__content p:last-child {
  margin-bottom: 0;
}

.seo__button {
  font-weight: 500;
  min-width: 200px;
  margin-top: 32px;
  margin-bottom: 80px;
}

.seo__image-wrap {
  margin-top: auto;
}

.seo__image {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.seo__content {
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.seo__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 220px;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(255, 255, 255, 0)),
      to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgb(255, 255, 255) 100%);
}

.seo__content-wrap.active .seo__button-more {
  display: none;
}

.seo__button-hide {
  display: none;
}

.seo__content-wrap.active .seo__button-hide {
  display: block;
}

.seo__content-wrap.active .seo__content {
  max-height: none;
}

.seo__content-wrap.active .seo__content::after {
  content: none;
}

.join {
  background-color: #ffffff;
}

.join__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 180px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.join__item:nth-child(1) {
  max-width: 680px;
  margin-top: 112px;
}

.join__item:nth-child(2) {
  margin-top: auto;
}

.join {
  position: relative;
  overflow: hidden;
}

.join__image {
  display: block;
  max-width: 800px;
}

.join__decor {
  position: absolute;
  top: 0;
  left: auto;
  right: -80px;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgb(244, 244, 244);
  z-index: 1;
  text-transform: uppercase;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.join__desc {
  margin-top: 60px;
  font-size: 24px;
  line-height: 1.4;
}

.join__contacts {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.join__phone-box {
  border-radius: 36px;
  border: 1px solid #16151c;
  padding: 32px 36px;
}

.join__phone {
  font-size: 28px;
  font-weight: 600;
  margin-top: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.join__phone:hover {
  color: #00aeff;
}

.join__text {
  font-size: 14px;
  font-weight: 500;
}

.join__mail-box {
  margin-left: 56px;
}

.join__mail {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.join__mail:hover {
  color: #00aeff;
}

.join__button {
  border: none;
  margin-top: 60px;
  background-color: rgb(22, 21, 28);
  min-width: 100%;
  border-radius: 24px;
  text-transform: uppercase;
}

.join__button:hover {
  background-color: rgba(22, 21, 28, 0.8);
}

.join__soc-text {
  margin-top: 40px;
  margin-bottom: 32px;
  text-align: center;
}

.join__socials {
  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;
  margin: 0 auto;
  padding-bottom: 54px;
}

.join__social {
  margin-right: 80px;
}

.join__social:last-child {
  margin-right: 0;
}

.require {
  background-color: #d6d5da;
  position: relative;
  overflow: hidden;
}

.require.lazy-bg.loaded {
  background: url(../images/require/bg.jpg) center/cover no-repeat;
}

.require__block {
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.require__content {
  padding: 120px 0;
}

.require__icon {
  display: block;
}

.require__list {
  margin-top: 80px;
  margin-left: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 660px;
}

.require__item {
  max-width: 250px;
  width: 250px;
  margin-bottom: 40px;
}

.require__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
}

.require__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.require__image {
  border-radius: 36px;
  display: block;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  background-color: #cccccc;
}

.require__gallery-slider {
  max-width: 282px;
}

.require__gallery-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  padding: 16px;
  height: 318px;
}

.advantages {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.advantages__slider-btn-mob {
  display: none;
}

.advantages__slide-image {
  display: block;
  width: 100%;
  height: auto;
  height: 20vw;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.advantages__slide-image:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.advantages__title {
  position: relative;
  z-index: 2;
  width: 100%;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(25.2%, #16151c),
      color-stop(25.2%, #ffffff));
  background: linear-gradient(90deg, #16151c 25.2%, #ffffff 25.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 160px;
  pointer-events: none;
}

.advantages__title b {
  font-weight: 900;
}

.advantages__block {
  position: absolute;
  width: 100%;
  padding: 0 40px;
  top: 100px;
  z-index: 10;
  pointer-events: none;
}

.advantages__desc {
  font-size: 16px;
  max-width: 312px;
  margin-top: 160px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.advantages__decor {
  position: absolute;
  max-width: 600px;
  right: 0;
  bottom: 0;
}

.advantages__slide {
  height: auto;
}

.advantages__slide-container {
  background-color: rgba(45, 44, 51, 0.9);
  color: #ffffff;
  height: 100%;
  min-height: 100vh;
  max-width: calc(45vw + 40px);
  width: calc(45vw + 40px);
  margin: 0 auto;
}

.advantages__slide-box {
  padding: 60px 120px 80px 60px;
}

.advantages__slide-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.advantages__slide-list {
  margin-top: 28px;
}

.advantages__slide-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.3;
}

.advantages__pagination {
  padding-bottom: 20px;
}

.advantages__pagination span {
  margin: 0 1px !important;
  background-color: #ffffff;
  width: 40px;
  height: 2px;
  font-size: 0;
  border-radius: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.advantages__pagination .swiper-pagination-bullet-active {
  height: 4px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.swiper-button-prev::after {
  content: none;
}

.swiper-button-next::after {
  content: none;
}

.advantages__slider .swiper-button-prev {
  top: 360px;
  left: 40px;
}

.advantages__slider .swiper-button-next {
  top: 360px;
  left: 96px;
}

.swiper-fade .swiper-slide {
  opacity: 0 !important;
}

.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

.school {
  position: relative;
  overflow: hidden;
  background-color: #16151c;
  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;
  color: #ffffff;
}

.school.lazy-bg.loaded {
  background: url(../images/school/bg.jpg) #16151c center/cover no-repeat;
}

.school__title {
  text-transform: uppercase;
  font-weight: 900;
  -webkit-transform: translateY(132px);
  -ms-transform: translateY(132px);
  transform: translateY(132px);
}

.school__title span {
  display: block;
}

.school__title span:nth-child(1) {
  margin-left: 120px;
}

.school__title span:nth-child(2) {
  margin-left: 340px;
}

.school__desc {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.school__block {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 40px;
  padding-bottom: 120px;
  z-index: 17;
}

.school__block::after {
  pointer-events: none;
  position: absolute;
  width: 831px;
  max-width: 100%;
  max-height: 100%;
  height: 831px;
  content: "";
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background-blend-mode: multiply;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}

.school__btn {
  text-transform: uppercase;
  background-color: rgb(22, 21, 28);
  border-radius: 24px;
  margin-top: 24px;
  border: none;
}

.school__btn:hover {
  background-color: rgba(22, 21, 28, 0.5);
}

.school__decor img {
  display: block;
  position: absolute;
}

.school__slider {
  max-width: 100%;
}

.school__decor {
  z-index: 16;
}

@media (min-width: 992px) {
  .school__decor img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: -webkit-filter 0.3s ease-in-out;
    transition: -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
    display: block;
  }

  .school__decor img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }

  .school__slider,
  .school__slide,
  .school__wrapper {
    position: static !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    overflow: visible !important;
    -webkit-backface-visibility: initial;
    backface-visibility: initial;
  }

  .school__decor .school__decor-1 {
    max-width: 15vw;
    left: 0;
    top: 12%;
    z-index: 8;
  }

  .school__decor .school__decor-2 {
    max-width: 8.5vw;
    left: 24vw;
    top: 5%;
    z-index: 7;
  }

  .school__decor .school__decor-3 {
    max-width: 15vw;
    right: 15vw;
    top: 4%;
    z-index: 6;
  }

  .school__decor .school__decor-4 {
    max-width: 14vw;
    right: 5vw;
    top: 14%;
    z-index: 5;
  }

  .school__decor .school__decor-5 {
    max-width: 9.5vw;
    left: 12vw;
    bottom: 35%;
    z-index: 4;
  }

  .school__decor .school__decor-6 {
    max-width: 16.5vw;
    left: 3.5vw;
    bottom: 17%;
    z-index: 3;
  }

  .school__decor .school__decor-7 {
    max-width: 10.5vw;
    right: 18vw;
    bottom: 12%;
    z-index: 2;
  }

  .school__decor .school__decor-8 {
    max-width: 12.5vw;
    right: 0;
    bottom: 21%;
    z-index: 1;
  }
}

.steps {
  position: relative;
  background-color: #ffffff;
}

.steps__shadow {
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(255, 255, 255, 0)),
      to(rgba(0, 0, 0, 0.48)));
  background: linear-gradient(0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.48) 100%);
  height: 220px;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
}

.steps__text-wrap {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  z-index: 3;
  background-position: center 80%;
  -webkit-transform: translateY(-5.5vw);
  -ms-transform: translateY(-5.5vw);
  transform: translateY(-5.5vw);
}

.steps__text {
  font-size: 22vw;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-weight: 900;
  margin-left: -2vw;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  background-size: cover;
  background-position: center 67%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}

.steps__text.lazy-bg.loaded {
  background-image: url("../images/steps/background.jpg");
}

.steps__slider .swiper-slide {
  width: 320px;
}

.steps__slider-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 80px;
}

.steps__slide-image {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  height: 128px;
  width: 100%;
  max-height: 128px;
  -o-object-fit: cover;
  object-fit: cover;
}

.steps__slide:hover .steps__slide-image {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.steps__slide-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin-top: 32px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.steps__slide:hover .steps__slide-title {
  color: #00aeff;
}

.steps__slide-content {
  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: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.steps__slide:hover .steps__slide-content {
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}

.steps__slide {
  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: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.steps__slide-desc {
  margin-top: 24px;
  margin-bottom: 68px;
}

.steps__slide-count-wrap {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.steps__slide-count {
  height: 6px;
  width: 1px;
  background-color: #16151c;
}

.steps__slide-count.active {
  width: auto;
  height: auto;
  background-color: transparent;
  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: center;
  -ms-flex-align: center;
  align-items: center;
}

.steps__slide-num {
  font-size: 28px;
  font-weight: 900;
  margin-top: 2px;
}

.steps__slide-square {
  background-color: #16151c;
  height: 12px;
  width: 12px;
}

.steps__slider {
  padding-left: 160px;
  padding-right: 80px;
  padding-bottom: 80px;
  margin-top: -5.5vw;
}

.steps__slider .slider-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.steps__slider .swiper-slide {
  height: auto;
}

.steps__slider .swiper-button-next {
  position: initial;
}

.steps__slider .swiper-button-prev {
  position: initial;
  margin-right: 16px;
}

.steps__slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 64px;
  padding-bottom: 16px;
}

.founders {
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.founders__decor {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  z-index: 1;
  text-transform: uppercase;
  -webkit-transform: translate(30px, -30px);
  -ms-transform: translate(30px, -30px);
  transform: translate(30px, -30px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.founders__slider-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 100px;
}

.founders__slider {
  padding: 0 40px;
}

.founders__slider-buttons {
  padding-bottom: 12px;
  margin-left: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.founders__slider-buttons .swiper-button-prev {
  position: initial;
  margin-right: 16px;
}

.founders__slider-buttons .swiper-button-next {
  position: initial;
}

.founders__prev {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.founders__prev:hover .founders__prev-image {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.founders__prev-image {
  width: 100%;
  max-width: 100%;
  height: 17.24vw;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.founders__prev-play {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.founders__slide-box {
  padding: 40px;
}

.founders__name {
  font-size: 28px;
  font-weight: 700;
}

.founders__desc {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.salons {
  background-color: #16151c;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding-top: 100px;
  padding-bottom: 60px;
}

.salons__map {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 120px;
  display: block;
}

.salons__decor {
  position: absolute;
  top: 0;
  left: 200px;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
  text-transform: uppercase;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.salons__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.salons__desc-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.salons__title {
  margin-right: 120px;
}

.salons__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 16px;
}

.salons__button {
  margin-right: 8px;
}

.salons__desc {
  margin-top: 60px;
  max-width: 670px;
  line-height: 1.2;
  font-size: 18px;
}

.salons__slider-buttons {
  margin-left: 56px;
  padding-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.salons__slider-buttons .swiper-button-prev,
.salons__slider-buttons .swiper-button-next {
  position: initial;
  margin: 0 8px;
}

.salons__slider {
  z-index: 2;
  padding-left: 40px;
  padding-right: 558px;
}

.salons__wrap {
  margin-top: 60px;
}

.salons__slide {
  cursor: pointer;
  max-width: 380px;
  width: 380px;
  height: 520px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.salons__slide.active {
  max-width: 820px;
  width: 820px;
  cursor: initial;
}

.salons__box {
  opacity: 0;
  visibility: hidden;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 300px;
  background-color: rgba(22, 21, 28, 0.8);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.salons__slide.active .salons__box {
  opacity: 1;
  visibility: visible;
}

.salons__box-head {
  padding: 32px;
  padding-top: 40px;
  background-color: rgba(22, 21, 28, 0.6);
  position: relative;
}

.salons__content {
  padding: 32px;
}

.salons__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

.salons__text {
  font-size: 14px;
  font-weight: 500;
}

.salons__text-md {
  font-weight: 700;
  font-size: 16px;
}

.salons__slide-buttons {
  margin-top: 36px;
}

.salons__slide-button {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  margin-right: 16px;
}

.salons__slide-button:last-child {
  margin-right: 0;
}

.salons__slide-button.disabled {
  opacity: 0.35;
  cursor: initial;
  pointer-events: none;
}

.salons__close {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  position: absolute;
  right: 16px;
  top: 16px;
}

.salons__close span {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}

.salons__close span::before,
.salons__close span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  left: 0;
  right: 0;
  bottom: 0;
  top: 50%;
  margin: 0 auto;
}

.salons__close span::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.salons__close span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.salons__location {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.salons__name {
  font-size: 24px;
  font-weight: 900;
  margin-top: 4px;
  line-height: 1.2;
}

.salons__top{
  width: 100%;
  pointer-events: none;
  padding: 24px;
  position: absolute;
  left: 0;
  top: 0;
}

.salons__bottom {
  padding: 24px;
  position: absolute;
  bottom: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.salons__slide.active .salons__bottom {
  opacity: 0;
  visibility: hidden;
}

.salons__bottom-location {
  font-size: 18px;
  font-weight: 500;
}

.salons__bottom-name {
  margin-top: 4px;
  font-weight: 700;
  font-size: 24px;
}

.salons__button.active {
  background-color: #ffffff;
  color: #16151c;
}

.salons__image {
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.salons__slide:hover .salons__image {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.salons__slide.active .salons__image {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.services {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.services.lazy-bg.loaded {
  background: url(../images/services.jpg) #d5d5d7 center/cover no-repeat;
}

.services__title {
  font-family: "ArialBlack", Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 0.8px #16151c;
  line-height: 1.33;
}

.services__head-wrap {
  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;
  padding-right: 120px;
}

.services__slider-buttons {
  margin-left: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 8px;
}

.services__slider-buttons .swiper-button-prev {
  position: initial;
  margin-right: 16px;
}

.services__slider-buttons .swiper-button-next {
  position: initial;
}

.services__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.services__slider .swiper-wrapper,
.equipment__slider .swiper-wrapper {
  margin-top: 80px !important;
}

.services__slide svg {
  display: block;
  margin-bottom: 24px;
  height: 24px;
  width: auto;
}

.services__slide {
  width: 260px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding-bottom: 40px;
}

.services__slide:hover {
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}

.services__slide-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.services__slide:hover .services__slide-title {
  color: #00aeff;
}

.services__slide svg path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.services__slide:hover svg path {
  stroke: #00aeff;
}

.services__slider {
  padding-left: 40px;
  padding-right: 40px;
}

.equipment__slider {
  padding-left: 320px;
  padding-right: 40px;
  margin-top: 40px;
}

.team {
  position: relative;
  overflow: hidden;
  padding-bottom: 44px;
  padding-top: 114px;
  color: #ffffff;
}

.team::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  width: 831px;
  height: 831px;
  left: 80px;
  top: 80px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background-blend-mode: multiply;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}

.team__decor {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
  text-transform: uppercase;
  -webkit-transform: translate(30px, -30px);
  -ms-transform: translate(30px, -30px);
  transform: translate(30px, -30px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.team__title-wrap {
  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;
  padding-right: 40px;
  padding-left: 180px;
}

.team__desc {
  max-width: 400px;
  line-height: 1.3;
  padding-bottom: 8px;
}

.team__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team__button-mob {
  display: none;
}

.team__button {
  margin-right: 8px;
}

.team__button.active {
  background-color: #ffffff;
  color: #16151c;
}

.team__slider {
  padding-left: 180px;
  padding-right: 8px;
}

.team__slide {
  width: 390px;
}

.team__slider-head {
  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-top: 60px;
  margin-bottom: 60px;
  padding-right: 32px;
}

.team__slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team__slider-buttons .swiper-button-next {
  position: initial;
  margin-top: 0;
}

.team__slider-buttons .swiper-button-prev {
  position: initial;
  margin-right: 16px;
  margin-top: 0;
}

.team__photo {
  border-radius: 8px;
  width: 100%;
  height: 390px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.team__photo {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.team__slide:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.team__photo-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.team__photo-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 21, 28, 0);
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.team__slide-name {
  opacity: 0;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 32px;
  font-size: 28px;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.team__slide-desc {
  padding: 36px;
  padding-bottom: 0;
  line-height: 1.4;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.team__slide:hover .team__photo-wrap::after {
  background-color: rgba(22, 21, 28, 0.6);
}

.team__slide:hover .team__slide-desc {
  opacity: 1;
}

.team__slide:hover .team__slide-name {
  opacity: 1;
}

.fancybox-close-small {
  display: none;
}

.popup-form {
  position: relative;
  width: 820px;
  background-color: #ffffff;
  padding: 54px 86px 68px 86px;
}

.popup-form__close {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 32px;
  top: 32px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.popup-form__close:hover {
  opacity: 0.7;
}

.popup-form__title {
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.1;
}

.popup-form__title b {
  font-weight: 900;
  color: #00aeff;
}

.popup-form__content {
  margin-top: 56px;
}

.popup-form__content.hidden {
  display: none;
}

.popup-form__input {
  width: 100%;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid rgba(22, 21, 28, 0.1);
  background-color: transparent;
  font-size: 14px;
  padding: 12px 0;
  transition: 0.3s ease-in-out;
}

.popup-form__input:focus {
  border-bottom: 1px solid rgba(0, 174, 255, 1);
}

.popup-form__input::-webkit-input-placeholder {
  color: inherit;
}

.popup-form__input::-moz-placeholder {
  color: inherit;
}

.popup-form__input:-ms-input-placeholder {
  color: inherit;
}

.popup-form__input::-ms-input-placeholder {
  color: inherit;
}

.popup-form__input::placeholder {
  color: inherit;
}

.popup-form__field {
  margin-bottom: 36px;
}

.popup-form__checkbox-wrap {
  margin-top: 56px;
  margin-bottom: 56px;
}

.popup-form__submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup-form__submit {
  min-width: 228px;
  margin-right: 68px;
  border-radius: 48px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  padding: 16px 40px;
  text-align: center;
  background-color: #16151c;
  border: 1px solid #16151c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #ffffff;
}

.popup-form__submit:hover {
  background-color: transparent;
  color: #16151c;
}

.popup-form__submit:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.popup-form__text {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.popup-form__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}

.popup-form__social-link {
  margin-right: 40px;
}

.popup-form__social-link:last-child {
  margin-right: 0;
}

.popup-form__link {
  border-bottom: 1px solid #16151c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.popup-form__link:hover {
  border-bottom: 1px solid transparent;
}

.popup-form__checkbox {
  opacity: 0;
  width: 1px;
  pointer-events: none;
  position: absolute;
  left: 12px;
  top: 20px;
}

.popup-form__checkmark {
  margin-right: 16px;
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.popup-form__checkbox:checked+.popup-form__checkmark {
  background-color: #16151c;
  border-color: #16151c;
}

.popup-form__checkmark::after {
  content: "";
  position: absolute;
  display: none;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  top: 4px;
  left: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup-form__checkbox:checked+.popup-form__checkmark::after {
  display: block;
}

.popup-form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.popup-form__fields {
  max-width: 520px;
}

.popup-form__success.hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.popup-form__text-success {
  margin-top: 56px;
  margin-bottom: 80px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  visibility: visible;
}

:root {
  --footer-bg: 110%;
}

.footer {
  color: #ffffff;
  position: relative;
}

.footer.lazy-bg.loaded {
  background: url(../images/footer.jpg) #16151c center/cover no-repeat;
}

.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.footer__item:nth-child(1) {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 110px;
}

.footer__item:nth-child(2) {
  width: 45%;
  background-color: #16151c;
  padding-left: 80px;
  padding-right: 80px;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 110px;
}

.footer__text {
  font-size: 14px;
  font-weight: 500;
}

.footer__phone-box {
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 32px 36px;
  margin-bottom: 32px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.footer__phone {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-weight: 600;
  font-size: 32px;
  margin-top: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer__phone:hover {
  color: #00aeff;
}

.footer__logo-wrap {
  width: 50%;
}

.footer__content {
  width: 50%;
}

.footer__logo {
  margin-top: 34px;
  min-height: 56px;
  width: auto;
  display: block;
  max-width: 327px;
}

.footer__box {
  padding: 32px 0;
}

.footer__box .footer__text {
  margin-bottom: 8px;
}

.footer__link-lg {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer__link-lg:hover {
  color: #00aeff;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.footer__soc {
  margin-right: 40px;
}

.footer__soc:last-child {
  margin-right: 0;
}

.footer__title {
  font-weight: 300;
  font-size: 40px;
  text-transform: uppercase;
  margin-top: 20px;
}

.footer__title b {
  font-weight: 900;
}

.footer__button {
  margin-top: 70px;
  text-transform: uppercase;
}

.footer__sections-wrap {
  margin-top: 70px;
}

.footer__sections {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__section {
  margin-bottom: 8px;
  margin-right: 8px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  bottom: 60px;
  width: 100%;
}

.footer__bottom-text {
  width: 27.5%;
  padding-left: 40px;
}

.footer__links {
  width: 27.5%;
}

.footer__design {
  width: 45%;
  padding-left: 80px;
}

.footer__link {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid #ffffff;
  margin-right: 24px;
}

.footer__link:last-child {
  margin-right: 0;
}

.footer__link:hover {
  border-bottom: 1px solid transparent;
}

.footer__design-logo {
  display: block;
  margin-top: 16px;
}

.team__slider-buttons-mobile {
  display: none;
}

.salons__map-mobile {
  display: none;
}

.popup-form__close svg {
  display: block;
}

/* Gloabl styles start */
@media (max-width: 1620px) {
  .title {
    font-size: 62px;
  }
}

@media (max-width: 1400px) {
  .title {
    font-size: 44px;
  }
}

@media (min-width: 1025px) {
  .mobile {
    display: none;
  }
}

@media (max-width: 1024px) {
  .desktop {
    display: none;
  }
}

@media (max-width: 991px) {
  .title {
    font-size: 48px;
  }

  .default-btn-lg {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .title {
    font-size: 40px;
  }
}

@media (max-width: 540px) {
  .title {
    font-size: 36px;
  }
}

/* Gloabl styles end */
/* Header and footer adaptive start */
@media (max-width: 1620px) {
  .footer__item:nth-child(1) {
    width: 50%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__item:nth-child(2) {
    width: 50%;
  }

  .footer__logo-wrap {
    width: 100%;
  }

  .footer__content {
    margin-top: 64px;
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }

  .footer__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .footer__bottom-text {
    width: 50%;
    padding-left: 80px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__links {
    width: 50%;
    padding-left: 80px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .footer__design {
    width: 100%;
    padding-left: calc(50% + 80px);
    padding-bottom: 40px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer__item:nth-child(1),
  .footer__item:nth-child(2) {
    padding-bottom: 160px;
    padding-top: 80px;
  }

  .header__menu-link {
    font-size: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header__menu-list {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .header__menu .header__button {
    margin-right: 36px;
  }

  .header__menu {
    max-width: 560px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .footer__link {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  .header__menu-link {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header__socails {
    margin-bottom: 24px;
  }

  .header__menu-list {
    margin-top: 44px;
    margin-bottom: 44px;
  }

  :root {
    --footer-bg: 160%;
  }

  .footer {
    background-size: var(--footer-bg);
    background-position: -60px center;
  }
}

@media (max-width: 1024px) {
  .header__logo-wrap {
    -webkit-transform: translateX(-46px);
    -ms-transform: translateX(-46px);
    transform: translateX(-46px);
  }

  .header__box {
    padding-right: 20px;
  }

  .footer__item:nth-child(1),
  .footer__item:nth-child(2) {
    min-height: auto;
  }

  .footer__item:nth-child(2) {
    padding-right: 60px;
    padding-left: 60px;
  }

  .footer__content {
    padding-left: 60px;
    padding-right: 60px;
  }

  .footer__bottom-text {
    padding-left: 60px;
  }

  .footer__links {
    padding-left: 60px;
  }

  .footer__design {
    padding-left: calc(50% + 60px);
  }

  .footer__item:nth-child(1),
  .footer__item:nth-child(2) {
    padding-bottom: 240px;
  }

  .header__menu-list {
    max-width: 100%;
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .header__menu-link {
    font-size: 18px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .header__menu {
    min-height: 100dvh;
    max-height: 100dvh;
    padding-bottom: 60px;
    padding-right: 64px;
    padding-left: 64px;
    max-width: 576px;
  }

  .header__menu .header__button {
    margin-right: 40px;
  }

  :root {
    --footer-bg: 170%;
  }

  .footer {
    background-size: var(--footer-bg);
    background-position: -60px center;
  }

  .header__socails {
    margin-bottom: 44px;
  }

  .header__phone {
    margin-right: 24px;
  }
}

@media (max-width: 991px) {
  .header__logo-text {
    display: none;
  }

  .header__phone span {
    display: none;
  }

  .header__phone-icon {
    display: block;
  }

  .header__phone {
    margin-right: 24px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header__switcher {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header__button {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 24px;
  }

  .header__menu-wrap {
    margin-left: 24px;
  }

  .header__menu-wrap {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .header__menu .header__phone {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .header__menu {
    max-width: 550px;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
  }

  .footer__item:nth-child(1),
  .footer__item:nth-child(2) {
    width: 100%;
  }

  .footer__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-bottom: 0;
    padding-top: 184px;
    background-color: transparent;
  }

  .footer__title {
    margin-top: 0;
  }

  .footer__logo {
    margin-top: 0;
  }

  .footer__logo-wrap {
    position: absolute;
    top: 64px;
    -webkit-transform: translateX(-22px);
    -ms-transform: translateX(-22px);
    transform: translateX(-22px);
  }

  .footer__button {
    margin-top: 64px;
  }

  .footer__sections-wrap {
    margin-top: 64px;
  }

  .footer__item:nth-child(1) {
    padding-top: 72px;
  }

  .footer__bottom {
    position: relative;
  }

  .footer__links {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer__bottom-text {
    margin-top: 32px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__design {
    margin-top: 80px;
    width: 100%;
    padding: 0;
    padding-left: 60px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: initial;
    bottom: initial;
    left: initial;
    right: initial;
    padding-bottom: 120px;
  }

  .footer__content {
    margin-top: 0;
    margin-bottom: 88px;
  }

  .footer__item:nth-child(1) {
    padding-bottom: 0;
  }

  :root {
    --footer-bg: 75%;
  }

  .footer {
    background-size: var(--footer-bg);
    background-position: center right;
  }

  .footer.lazy-bg.loaded {
    background: url(../images/footer-mob.jpg) #16151c right/cover no-repeat;
  }
}

@media (max-width: 720px) {
  .header__button {
    display: none;
  }

  .header__menu .header__button {
    display: block;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .header__menu {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .header__menu-head {
    -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;
  }

  .header__menu .header__button {
    margin-right: 0;
  }

  .header__menu .header__phone {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 32px;
    margin-top: 8px;
  }

  .header__menu {
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 40px;
  }

  .footer__item:nth-child(2) {
    padding-right: 30px;
    padding-left: 30px;
  }

  .footer__content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer__links,
  .footer__design,
  .footer__bottom-text {
    padding: 0;
  }

  .footer__bottom {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .header__logo {
    max-width: 164px;
  }

  .header__box {
    padding-right: 16px;
  }

  .footer__section {
    font-size: 13px;
  }

  .header__logo-wrap {
    -webkit-transform: translateX(-22px);
    -ms-transform: translateX(-22px);
    transform: translateX(-22px);
  }

  .footer__phone-box {
    min-width: 100%;
    max-width: 100%;
  }

  .footer__phone {
    font-size: 28px;
  }

  .header__menu {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
  }

  .footer__item:nth-child(2) {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer__bottom {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer__bottom-text {
    margin-top: 24px;
  }

  .footer__link {
    margin-bottom: 12px;
  }

  .footer__link:last-child {
    margin-bottom: 0;
  }

  .footer__content {
    margin-bottom: 40px;
  }

  .footer__bottom {
    padding-bottom: 80px;
  }
}

@media (max-width: 380px) {
  .footer__logo {
    max-width: 280px;
  }

  .footer__title {
    font-size: 32px;
  }

  .footer__button {
    font-size: 14px;
  }

  .header__phone {
    margin-right: 16px;
  }

  .header__menu-wrap {
    margin-left: 16px;
  }

  .header__logo {
    max-width: 154px;
  }

  .footer__soc {
    margin-right: 32px;
  }

  .footer__phone {
    font-size: 28px;
  }

  .footer__section {
    font-size: 12px;
    padding: 8px 16px;
  }

  .footer__phone-box {
    padding: 28px;
  }

  .footer__link-lg {
    font-size: 20px;
  }

  .footer__content {
    margin-bottom: 64px;
  }

  .footer__design {
    margin-top: 64px;
  }

  .footer__bottom {
    padding-bottom: 100px;
  }
}

/* Header and footer end */
@media (max-width: 1620px) {
  .screen__text-lg {
    font-size: 36px;
  }

  .screen__text-md {
    font-size: 48px;
    margin-top: 24px;
  }

  .screen__text-sm {
    font-size: 18px;
  }

  .screen__business-title {
    font-size: 30px;
  }

  .screen__thumb {
    max-width: 280px;
  }

  .screen__box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .screen__text {
    padding-right: 64px;
  }

  .screen__text {
    max-width: 580px;
  }

  .screen__marquee-text {
    font-size: 80px;
  }

  .screen__marquee-logo {
    margin: 0 60px;
    max-height: 60px;
    max-width: 60px;
  }

  .screen__block {
    padding-bottom: 40px;
  }

  .screen__business-item {
    padding: 0 36px;
  }

  .screen__scroll {
    left: 30px;
  }

  .screen__video-icon {
    max-width: 72px;
    max-height: 72px;
  }
}

@media (max-width: 1400px) {
  .screen__text-lg {
    font-size: 32px;
  }

  .screen__text-md {
    font-size: 40px;
    margin-top: 24px;
  }

  .screen__video-icon {
    max-width: 64px;
    max-height: 64px;
  }

  .screen__thumb {
    max-width: 240px;
  }

  .screen__text {
    max-width: 500px;
  }

  .screen__text-sm {
    font-size: 16px;
  }

  .screen__business-title {
    font-size: 28px;
  }

  .screen__text {
    padding-right: 48px;
  }

  .screen__marquee-text {
    font-size: 64px;
  }

  .screen__marquee-logo {
    margin: 0 48px;
    max-width: 48px;
    max-height: 48px;
  }

  .screen__business-item {
    padding: 0 32px;
  }

  .screen__block {
    padding-bottom: 32px;
  }

  .screen__marquee {
    padding: 32px 0;
  }

  .screen__block {
    padding-top: 120px;
  }
}

@media (max-width: 1620px) {
  .francise__title {
    font-size: 50px;
  }

  .francise__desc {
    font-size: 20px;
    margin-left: 60px;
    max-width: 500px;
  }

  .francise__content {
    font-size: 22px;
    max-width: 840px;
    padding-bottom: 170px;
    margin-right: 170px;
    line-height: 68px;
  }

  .francise__content span {
    font-size: 68px;
  }

  .francise__head {
    max-width: none;
    margin-left: auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .francise__decor {
    font-size: 160px;
  }

  .francise__wrap {
    padding-top: 120px;
  }

  .francise__image {
    max-width: 520px;
  }
}

@media (max-width: 1480px) {
  .francise__title {
    font-size: 44px;
  }

  .francise__desc {
    font-size: 16px;
    margin-left: 24px;
    max-width: 370px;
  }

  .francise__content {
    font-size: 20px;
    max-width: 760px;
    padding-bottom: 160px;
    margin-right: 54px;
    line-height: 56px;
  }

  .francise__content span {
    font-size: 56px;
  }

  .francise__decor {
    font-size: 130px;
  }

  .francise__image {
    max-width: 480px;
  }

  .francise__wrap {
    padding-top: 80px;
  }

  .francise::before {
    height: 120px;
  }
}

@media (max-width: 1620px) {
  .speed__title {
    font-size: 60px;
  }

  :root {
    --speed__title-transalte-up: 22px;
    --speed__title-transalte-bottom: -22px;
  }

  .speed__desc {
    font-size: 22px;
  }

  .speed__wrap {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}

@media (max-width: 1400px) {
  .speed__title {
    font-size: 40px;
  }

  :root {
    --speed__title-transalte-up: 14px;
    --speed__title-transalte-bottom: -14px;
  }

  .speed__desc {
    font-size: 20px;
  }

  .speed__wrap {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .speed__desc {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 1620px) {
  .advantages__title {
    background: -webkit-gradient(linear,
        left top,
        right top,
        color-stop(24.8%, #16151c),
        color-stop(24.8%, #ffffff));
    background: linear-gradient(90deg, #16151c 24.8%, #ffffff 24.8%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .advantages__decor {
    max-width: 520px;
  }

  .advantages__slide-title {
    font-size: 32px;
  }

  .advantages__slide-item {
    padding: 20px 0;
  }

  .advantages__slide-list {
    margin-top: 20px;
  }

  .advantages__slide-box {
    padding: 60px 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 1400px) {
  .advantages__title {
    background: -webkit-gradient(linear,
        left top,
        right top,
        color-stop(24.2%, #16151c),
        color-stop(24.2%, #ffffff));
    background: linear-gradient(90deg, #16151c 24.2%, #ffffff 24.2%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .advantages__desc {
    font-size: 14px;
    max-width: 260px;
  }

  .advantages__decor {
    max-width: 440px;
  }

  .advantages__slide-title {
    font-size: 24px;
  }

  .advantages__slide-item {
    font-size: 14px;
  }

  .advantages__slide-box {
    padding: 60px;
    padding-bottom: 80px;
  }
}

@media (max-width: 1300px) {
  .advantages__title {
    background: -webkit-gradient(linear,
        left top,
        right top,
        color-stop(24.4%, #16151c),
        color-stop(24.4%, #ffffff));
    background: linear-gradient(90deg, #16151c 24.4%, #ffffff 24.4%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 1620px) {
  .school__title {
    -webkit-transform: translateY(94px);
    -ms-transform: translateY(94px);
    transform: translateY(94px);
    font-weight: 800;
  }

  .school__desc {
    font-size: 36px;
    font-weight: 800;
    -webkit-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    transform: translateY(-35%);
  }

  .school__block {
    padding-bottom: 100px;
  }

  .school__image {
    max-width: 360px;
  }

  .school__title span:nth-child(2) {
    margin-left: 260px;
  }
}

@media (max-width: 1400px) {
  .school__image {
    max-width: 320px;
  }

  .school__title {
    -webkit-transform: translateY(86px);
    -ms-transform: translateY(86px);
    transform: translateY(86px);
    font-size: 56px;
  }

  .school__desc {
    font-size: 32px;
  }

  .school__block {
    padding-bottom: 80px;
  }
}

@media (max-width: 1620px) {
  .steps__slider {
    padding-left: 120px;
  }

  .steps__slide-title {
    font-size: 28px;
    margin-top: 28px;
  }

  .steps__slide-desc {
    margin-top: 16px;
    margin-bottom: 48px;
  }

  .steps__slide:hover .steps__slide-content {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  .steps__slider-buttons {
    padding-bottom: 8px;
  }

  .steps__slide-num {
    font-size: 24px;
  }

  .steps__slider-head {
    margin-bottom: 60px;
  }

  .steps__slider .swiper-slide {
    width: 300px;
  }
}

@media (max-width: 1400px) {
  .steps__slide-title {
    font-size: 24px;
    margin-top: 24px;
  }

  .steps__slide-desc {
    font-size: 14px;
  }

  .steps__slider .swiper-slide {
    width: 280px;
  }

  .steps__slider {
    padding-left: 80px;
  }
}

@media (max-width: 1620px) {
  .services {
    padding: 80px 0;
  }

  .services__head-wrap {
    padding-right: 80px;
  }

  .services__slide:hover {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  .services__slide {
    padding-bottom: 20px;
  }

  .services__slide-desc {
    font-size: 14px;
  }

  .equipment__slider {
    padding-left: 200px;
  }
}

@media (max-width: 1400px) {
  .services__slider-buttons {
    padding-bottom: 0;
  }

  .services__slider .swiper-wrapper,
  .equipment__slider .swiper-wrapper {
    margin-top: 60px !important;
  }

  .equipment__slider {
    padding-left: 160px;
  }

  .services__head-wrap {
    padding-right: 40px;
  }
}

@media (max-width: 1620px) {
  .team__decor {
    font-size: 160px;
  }

  .team__title-logo {
    width: 44px;
    height: 44px;
  }

  .team__title-wrap {
    padding-left: 120px;
  }

  .team__slider {
    padding-left: 120px;
  }

  .team__slide {
    width: 340px;
  }

  .team__photo {
    height: 340px;
  }

  .team__slide-name {
    font-size: 24px;
    padding: 28px;
  }

  .team__slide-desc {
    padding: 32px;
    padding-bottom: 0;
  }

  .team {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

@media (max-width: 1400px) {
  .team__title-logo {
    width: 32px;
    height: 32px;
  }

  .team__slider {
    padding-left: 80px;
  }

  .team__title-wrap {
    padding-left: 80px;
  }

  .team__slide {
    width: 300px;
  }

  .team__photo {
    height: 300px;
  }

  .team__slide-name {
    font-size: 20px;
    padding: 24px;
  }

  .team__slide-desc {
    padding: 32px 24px;
  }

  .team {
    padding-top: 80px;
    padding-bottom: 0px;
  }

  .team__decor {
    font-size: 130px;
  }

  .team__slider-head {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

@media (max-width: 1620px) {
  .founders__decor {
    font-size: 160px;
  }

  .founders__slider-head {
    margin-bottom: 80px;
  }

  .founders__slide-box {
    padding: 32px;
  }

  .founders__name {
    font-size: 24px;
  }

  .founders__desc {
    font-size: 16px;
  }
}

@media (max-width: 1400px) {
  .founders__decor {
    font-size: 130px;
  }

  .founders {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .founders__slider-buttons {
    padding-bottom: 8px;
  }

  .founders__slider-head {
    margin-bottom: 60px;
  }

  .founders__name {
    font-size: 20px;
  }

  .founders__desc {
    font-size: 14px;
    margin-top: 16px;
  }

  .founders__slide-box {
    padding: 24px;
  }
}

@media (max-width: 1620px) {
  .salons__decor {
    font-size: 160px;
  }

  .salons__desc {
    font-size: 16px;
    max-width: 590px;
  }

  .salons__title {
    margin-right: 40px;
  }

  .salons__buttons {
    padding-bottom: 8px;
  }

  .salons__button {
    padding: 12px 20px;
  }
}

@media (max-width: 1400px) {
  .salons__decor {
    font-size: 130px;
  }

  .salons {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .salons__slide {
    width: 320px;
    height: 440px;
  }

  .salons__slide.active {
    max-width: 640px;
    width: 640px;
  }

  .salons__box-head {
    padding: 24px;
  }

  .salons__content {
    padding: 24px;
  }

  .salons__name {
    font-size: 20px;
    font-weight: 800;
  }

  .salons__location {
    font-size: 14px;
  }

  .salons__content-item {
    margin-bottom: 16px;
  }

  .salons__slide-buttons {
    margin-top: 24px;
  }

  .salons__slider {
    padding-right: 436px;
  }

  .salons__bottom-location {
    font-size: 16px;
  }

  .salons__bottom-name {
    font-size: 20px;
  }

  .salons__bottom, .salons__top {
    padding: 16px;
  }
}

@media (max-width: 1620px) {
  .join__decor {
    font-size: 160px;
  }

  .join__block {
    padding-left: 120px;
  }

  .join__image {
    max-width: 600px;
  }

  .join__item:nth-child(1) {
    margin-top: 100px;
  }

  .join__desc {
    font-size: 20px;
  }
}

@media (max-width: 1400px) {
  .join__desc {
    font-size: 16px;
  }

  .join__block {
    padding-left: 80px;
  }

  .join__decor {
    font-size: 130px;
  }

  .join__item:nth-child(1) {
    margin-top: 80px;
  }
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .join__contacts {
    margin-top: 40px;
  }

  .join__desc {
    margin-top: 40px;
  }

  .join__button {
    margin-top: 40px;
  }

  .join__soc-text {
    margin-top: 36px;
    margin-bottom: 28px;
  }

  .join__image {
    max-width: 520px;
  }
}

@media (max-width: 1620px) {
  .require__content {
    padding: 100px 0;
  }

  .require__list {
    margin-left: 80px;
  }

  .require__gallery-slider {
    max-width: 240px;
  }

  .require__list {
    margin-top: 60px;
  }

  .require__item {
    margin-bottom: 32px;
  }

  .require__list {
    max-width: 620px;
  }

  .require__gallery-slide {
    padding: 12px;
  }
}

@media (max-width: 1400px) {
  .require__list {
    max-width: 580px;
  }

  .require__list {
    margin-left: 60px;
  }

  .require__content {
    padding: 80px 0;
    padding-bottom: 60px;
  }
}

@media (max-width: 1620px) {
  .faq__decor {
    font-size: 160px;
  }

  .faq__desc {
    font-size: 16px;
  }

  .faq__block {
    padding-right: 160px;
  }

  .faq {
    padding-top: 100px;
  }

  .faq__item:nth-child(2) {
    margin-top: 80px;
  }
}

@media (max-width: 1400px) {
  .faq__decor {
    font-size: 130px;
  }

  .faq__desc {
    font-size: 14px;
  }

  .faq__block {
    padding-right: 120px;
  }

  .faq__question-title {
    font-size: 18px;
  }

  .faq__question-btn {
    padding: 11px;
  }

  .faq__button {
    font-size: 14px;
  }

  .faq {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .faq__desc {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .faq__question-head {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .faq__item:nth-child(2) {
    margin-top: 60px;
  }

  .faq__question.active .faq__question-answer {
    padding-bottom: 24px;
  }

  .faq__question-answer {
    padding-right: 68px;
  }
}

@media (max-width: 1620px) {
  .seo__decor {
    font-size: 160px;
  }

  .seo__image {
    max-width: 520px;
  }

  .seo__title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .seo__content-wrap {
    margin-top: 140px;
  }

  .seo__block {
    padding-right: 140px;
  }
}

@media (max-width: 1400px) {
  .seo__decor {
    font-size: 130px;
  }

  .seo__image {
    max-width: 440px;
  }

  .seo__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .seo__content-wrap {
    margin-top: 140px;
  }

  .seo__content-wrap {
    margin-top: 100px;
  }

  .seo__content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .seo__block {
    padding-right: 120px;
  }

  .seo__button {
    margin-bottom: 60px;
  }
}

@media (max-width: 1620px) {
  .popup-form__title {
    font-size: 48px;
  }

  .popup-form__content {
    margin-top: 40px;
  }

  .popup-form__input {
    padding: 8px 0;
  }

  .popup-form__checkbox-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .popup-form {
    width: 720px;
    padding: 56px 80px 48px 80px;
  }

  .popup-form__submit {
    padding: 14px 32px;
  }
}

@media (max-width: 1400px) {
  .popup-form {
    width: 656px;
    padding: 40px 80px 40px 80px;
  }

  .popup-form__title {
    font-size: 44px;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .require__gallery-slider:nth-child(2) {
    display: none;
  }

  .seo__decor {
    left: 120px;
  }

  .join__image {
    max-width: 480px;
  }

  .join__phone {
    font-size: 24px;
  }

  .join__phone-box {
    padding: 24px;
  }

  .join__mail-box {
    margin-left: 40px;
  }

  .join__mail {
    font-size: 20px;
  }

  .francise__image {
    max-width: 420px;
  }
}

@media (max-width: 1024px) {
  .seo__decor {
    left: 100px;
  }

  .screen__marquee {
    display: none;
  }

  .screen__text-md {
    font-size: 32px;
  }

  .screen__text-sm {
    margin-left: 16px;
  }

  .screen__text {
    max-width: 380px;
    padding-right: 44px;
  }

  .screen__thumb {
    max-width: 220px;
  }

  .screen__business-title {
    font-size: 24px;
  }

  .screen__business-desc {
    font-size: 13px;
  }

  .screen__business-item:nth-child(1) {
    padding-left: 16px;
  }

  .screen__scroll {
    left: 16px;
    display: none;
  }

  .screen__scroll-text {
    font-size: 14px;
  }

  .screen__block {
    min-height: auto;
    padding-top: 180px;
  }

  .screen__business {
    margin-top: 80px;
  }

  .francise::before {
    height: 200px;
  }

  .francise__desc {
    max-width: 300px;
    padding-top: 0;
  }

  .francise__image {
    max-width: 463px;
  }

  .francise__decor {
    font-size: 120px;
    opacity: 0.5;
  }

  .francise__content {
    margin-right: 100px;
    max-width: 482px;
  }

  .francise__head {
    margin-right: 100px;
  }

  .francise__title {
    line-height: 1;
  }

  .speed__gallery {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
  }

  .speed__gallery-image-wrap {
    min-width: 395px;
    width: 395px;
    max-width: 395px;
  }

  .advantages__title {
    min-height: auto;
  }

  .advantages__slider .swiper-button-next,
  .advantages__slider .swiper-button-prev {
    top: 228px;
  }

  .advantages__slider .swiper-button-prev {
    left: 20px;
  }

  .advantages__slider .swiper-button-next {
    left: 76px;
  }

  .advantages__block {
    top: 94px;
    padding: 0 20px;
  }

  .advantages__desc {
    margin-top: 128px;
    max-width: 230px;
  }

  .advantages__slide-container {
    min-height: auto;
  }

  .advantages__slide-item {
    padding: 28px 0;
  }

  .school__block {
    padding-top: 160px;
    padding-bottom: 180px;
  }

  .steps__text-wrap {
    -webkit-transform: translateY(-7.35vw);
    -ms-transform: translateY(-7.35vw);
    transform: translateY(-7.35vw);
  }

  .school {
    background-size: contain;
  }

  .steps__shadow {
    height: 180px;
  }

  .steps__slider-head {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .steps__slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps__slider-head {
    margin-bottom: 56px;
  }

  .steps__slide-image {
    max-height: 106px;
  }

  .services__head-wrap {
    padding-right: 0;
  }

  .services__slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .equipment__slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services {
    background-size: contain;
  }

  .team__decor {
    font-size: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(-18px);
    -ms-transform: translateY(-18px);
    transform: translateY(-18px);
    text-align: center;
  }

  .team__title-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .team__desc {
    padding-bottom: 4px;
  }

  .team__slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team__slider-head {
    min-height: 40px;
    margin-top: 64px;
    margin-bottom: 56px;
    padding-right: 0;
    position: relative;
    z-index: 5;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .team__nav {
    -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;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 40px;
  }

  .team__nav.open {
    max-height: none;
  }

  .team__button {
    width: 100%;
    margin-right: 0;
    padding-left: 24px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: #16151c;
    border: none;
    border-radius: 0;
    font-size: 16px;
  }

  .team__button-mob {
    padding-right: 64px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    position: relative;
  }

  .team__button-mob::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L9 9L17 1' stroke='white'/%3E%3C/svg%3E%0A");
  }

  .team__button-mob {
    display: block;
    width: 100%;
    font-size: 16px;
    text-align: left;
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
    position: relative;
    z-index: 2;
  }

  .team__button:hover {
    background-color: #16151c;
  }

  .team__button-mob:hover {
    background-color: transparent;
  }

  .team__button:active,
  .team__button-mob:active {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .team__button.active {
    background-color: #16151c;
    color: #ffffff;
  }

  .team__button {
    position: relative;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .team__nav {
    min-width: 360px;
  }

  .team__nav.open .team__button {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }

  .team__nav.open .team__button-mob {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: rgba(255, 255, 255, 0.3);
  }

  .team__button {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }

  .team__button:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }

  .team__nav.open .team__button-mob::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
  }

  .team__slide {
    width: 264px;
  }

  .team__photo {
    height: 264px;
  }

  .team__slide-name {
    position: relative;
  }

  .team__photo-wrap::after {
    content: none;
  }

  .team__slide-name {
    opacity: 1;
  }

  .team__slide-desc {
    opacity: 1;
  }

  .team__slide-name {
    padding: 0 16px;
    margin-top: 24px;
  }

  .team__slide-desc {
    padding: 16px;
    padding-bottom: 28px;
  }

  .founders__decor {
    font-size: 120px;
  }

  .founders__slider-head {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .founders {
    padding-bottom: 80px;
  }

  .founders__prev-play {
    height: 64px;
    width: 64px;
  }

  .founders__slider {
    padding: 0 20px;
  }

  .founders__slide-box {
    padding: 0;
    margin-top: 20px;
  }

  .salons__map {
    top: 0;
    max-width: 390px;
  }

  .salons__decor {
    font-size: 120px;
    left: 80px;
  }

  .salons__slider {
    padding-left: 20px;
  }

  .salons__buttons {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    padding-bottom: 0;
  }

  .salons__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .salons__desc-wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 80px;
  }

  .salons__head {
    position: relative;
  }

  .salons__slider-buttons {
    margin-left: 0;
    margin-top: 48px;
    padding: 0;
  }

  .salons__slider-buttons .swiper-button-prev {
    margin-left: 0;
  }

  .salons {
    padding-bottom: 80px;
  }

  .salons__slide {
    width: 260px;
  }

  .join__block {
    padding-left: 40px;
  }

  .join__decor {
    font-size: 120px;
    right: -10px;
  }

  .join__item:nth-child(1) {
    position: relative;
    z-index: 3;
  }

  .join__item:nth-child(2) {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(25%);
    -ms-transform: translateX(25%);
    transform: translateX(25%);
  }

  .join__block {
    position: relative;
  }

  .join__image {
    max-width: 650px;
  }

  .join__desc {
    max-width: 580px;
  }

  .marquee-slide-minus-y {
    display: none;
  }

  .require__block {
    padding: 0 40px;
  }

  .require__list {
    margin-left: 0;
    margin-top: 80px;
  }

  .require__content {
    padding-bottom: 80px;
  }

  .require__gallery {
    right: 28px;
  }

  .faq__desc {
    margin-top: 64px;
    margin-bottom: 64px;
    line-height: 1.4;
  }

  .faq__block {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq__question-title {
    font-size: 16px;
  }

  .faq__question-answer p {
    font-size: 14px;
    line-height: 1.4;
  }

  .faq__question.active .faq__question-answer {
    padding-bottom: 32px;
  }

  .faq__item:first-child {
    margin-right: 40px;
    min-width: 290px;
    max-width: 290px;
  }

  .faq__button {
    white-space: nowrap;
  }

  .faq__question-title::before {
    font-size: 14px;
  }

  .faq__question-btn {
    padding: 10px;
  }

  .faq__question-btn-icon {
    width: 18px;
    height: 18px;
  }

  .seo__block {
    position: relative;
  }

  .seo__image-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
  }

  .seo__content-wrap {
    position: relative;
    z-index: 2;
  }

  .seo__decor {
    font-size: 120px;
    left: 120px;
  }

  .seo__block {
    padding: 0 60px;
  }

  .seo__content-wrap {
    max-width: 540px;
    margin-left: auto;
    margin-right: 0;
  }

  .seo__title {
    font-size: 24px;
  }

  .seo__content-wrap {
    margin-top: 80px;
  }

  .advantages__title {
    background: -webkit-gradient(linear,
        left top,
        right top,
        color-stop(24.5%, #16151c),
        color-stop(24.5%, #ffffff));
    background: linear-gradient(90deg, #16151c 24.5%, #ffffff 24.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .speed__desc {
    padding: 0 20px;
  }

  .speed__title {
    padding: 0 20px;
  }

  .salons__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .salons__button {
    margin-bottom: 8px;
  }
}

@media (max-width: 991px) {
  .screen__business {
    flex-direction: column;
  }

  .screen__business-item:nth-child(1) {
    padding: 0;
  }

  .screen__business-item {
    width: 100%;
    padding: 0;
    margin-bottom: 32px;
  }

  .screen__business-item:last-child {
    padding-bottom: 0;
  }

  .screen__business-item::after {
    content: none;
    display: none;
  }

  .screen__thumb {
    display: none;
  }

  .screen__title {
    display: block;
    position: absolute;
    bottom: -16px;
    z-index: 3;
    left: 40px;
  }

  .screen__block {
    padding: 40px;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .screen__text {
    padding-right: 0;
  }

  .screen__box {
    margin: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .screen__image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 580px;
  }

  .screen__image img {
    max-height: 580px;
  }

  .screen__btn {
    display: block;
    margin-top: 64px;
    text-transform: uppercase;
    background-color: #2d2c33;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 21px 40px;
    min-width: 320px;
    border-radius: 24px;
    border: none;
  }

  .screen__image-wrap {
    position: relative;
  }

  .screen__image-wrap::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: -webkit-gradient(linear,
        left top,
        left bottom,
        from(rgba(22, 21, 28, 0.5)),
        color-stop(40%, rgba(22, 21, 28, 0)),
        color-stop(60%, rgba(22, 21, 28, 0)),
        to(rgba(22, 21, 28, 0.5)));
    background: linear-gradient(to bottom,
        rgba(22, 21, 28, 0.5) 0%,
        rgba(22, 21, 28, 0) 40%,
        rgba(22, 21, 28, 0) 60%,
        rgba(22, 21, 28, 0.5) 100%);
  }

  .screen__text-lg {
    font-size: 40px;
  }

  .screen__text-md {
    font-size: 40px;
  }

  .screen__text {
    max-width: none;
  }

  .screen__box {
    max-width: 100%;
  }

  .screen__text-sm {
    font-size: 18px;
  }

  .francise__image {
    position: static;
  }

  .francise__content {
    max-width: none;
    padding-bottom: 0;
    margin: 0;
    margin-top: 60px;
    padding: 0 40px;
    padding-bottom: 16px;
  }

  .francise__head {
    margin: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 40px;
  }

  .francise__desc {
    margin: 0;
    margin-top: 40px;
    max-width: none;
    font-size: 20px;
  }

  .francise__title {
    font-size: 48px;
  }

  .francise__image {
    max-width: 440px;
  }

  .francise__decor {
    display: none;
  }

  .speed__wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .speed__title br {
    display: none;
  }

  .speed__title {
    text-wrap: balance;
    padding: 0 40px;
  }

  .speed__desc {
    padding: 0 40px;
    font-size: 24px;
    text-wrap: balance;
  }

  .speed__desc br {
    display: none;
  }

  .speed__desc {
    margin-top: 32px;
    margin-bottom: 64px;
  }

  .speed__marquee-text {
    font-size: 48px;
  }

  .speed__marquee-logo {
    margin: 0 36px;
    width: 36px;
    height: 36px;
  }

  .advantages__block {
    position: static;
    padding-top: 64px;
    padding-bottom: 48px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .advantages__title {
    background: none;
    color: #16151c;
    -webkit-text-fill-color: initial;
  }

  .advantages__desc {
    margin-top: 40px;
  }

  .advantages__desc {
    max-width: none;
    font-size: 18px;
  }

  .advantages__slide-container {
    width: 100%;
    max-width: 100%;
  }

  .advantages__slide-image {
    height: 44.6vw;
  }

  .advantages__slider .swiper-button-prev {
    bottom: 60px;
    top: auto;
    left: 40px;
  }

  .advantages__slider .swiper-button-next {
    bottom: 60px;
    top: auto;
    left: 104px;
  }

  .advantages__slider-btn-mob {
    display: block;
  }

  .advantages__slider-btn-desktop {
    display: none;
  }

  .advantages__pagination {
    display: none;
  }

  .advantages__slide-box {
    padding-bottom: 160px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .advantages__slide-item {
    font-size: 18px;
  }

  .advantages__slide-title {
    font-size: 32px;
  }

  .advantages {
    padding-bottom: 400px;
  }

  .advantages__decor {
    max-width: 400px;
  }

  .school__slide {
    height: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .school__decor img {
    position: static;
    width: 100%;
    height: 100%;
    max-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .school__slider {
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 5;
  }

  .school__slide img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: -webkit-filter 0.3s ease-in-out;
    transition: -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
    display: block;
  }

  .school__slide.swiper-slide-active img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }

  .school__pagination {
    bottom: 0;
  }

  .school__pagination .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
  }

  .school__pagination .swiper-pagination-bullet-active {
    background-color: #00aeff;
  }

  .school__slide.swiper-slide-active {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    z-index: 3;
  }

  .school__block {
    padding: 0;
    padding: 0 40px;
  }

  .school__image,
  .school__desc,
  .school__btn {
    display: none;
  }

  .school {
    background: none;
    padding-bottom: 100px;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
  }

  .school__title {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .school__block {
    position: static;
    z-index: 2;
  }

  .school__block::after {
    bottom: 0;
    width: 80%;
    height: 80%;
    max-width: 80%;
    max-height: 80%;
  }

  .steps__slider {
    padding-left: 40px;
    padding-right: 40px;
  }

  .services {
    background-size: 150%;
  }

  .services__head-wrap {
    -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__title-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .services__head {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 64px;
  }

  .services__slider .swiper-wrapper,
  .equipment__slider .swiper-wrapper {
    margin-top: 56px !important;
  }

  .services__slider,
  .equipment__slider {
    padding-bottom: 64px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .equipment__slider {
    margin-top: 0;
  }

  .services__slider-buttons {
    position: absolute;
    bottom: 0;
    margin-left: 0;
  }

  .team__decor {
    display: none;
  }

  .team::before {
    width: 100vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100vw;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .team__title-wrap {
    padding-right: 40px;
    padding-left: 40px;
    -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;
  }

  .team__title-logo {
    width: 36px;
    height: 36px;
  }

  .team__desc {
    font-size: 18px;
    max-width: none;
    margin-top: 48px;
  }

  .team__slider-buttons-mobile {
    display: block;
  }

  .team__slider-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
  }

  .team__slider-buttons-desktop {
    display: none;
  }

  .team {
    padding-bottom: 80px;
  }

  .team__slide-desc {
    margin-top: 16px;
    padding: 0;
  }

  .team__slide-name {
    padding: 0;
  }

  .team__slider {
    padding-left: 40px;
    padding-right: 40px;
  }

  .founders__decor {
    display: none;
  }

  .founders__slider {
    padding: 0 40px;
  }

  .founders__prev-image {
    height: 24.65vw;
  }

  .founders__slider-buttons {
    position: absolute;
    bottom: 0;
    left: 40px;
    margin: 0;
    padding: 0;
  }

  .founders__slider {
    padding-bottom: 80px;
  }

  .salons__decor {
    display: none;
  }

  .salons__map-desktop {
    display: none;
  }

  .salons__map-mobile {
    display: block;
    position: relative;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .salons__map {
    margin-left: auto;
    margin-bottom: 60px;
  }

  .salons__slider {
    padding-left: 40px;
  }

  .salons__head {
    min-width: calc(100vw - 40px);
    -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-right: 0;
  }

  .salons__title {
    margin-right: 0;
    padding-right: 40px;
  }

  .salons__desc-wrap {
    margin-bottom: 32px;
  }

  .salons__desc {
    margin-top: 48px;
    padding-right: 40px;
    font-size: 18px;
    max-width: none;
  }

  .join__decor {
    display: none;
  }

  .join__item:nth-child(2) {
    position: static;
    margin: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 60px;
  }

  .join__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
  }

  .join__image {
    max-width: 520px;
  }

  .join__desc {
    font-size: 18px;
    max-width: none;
  }

  .join__soc-text {
    font-size: 16px;
  }

  .require__gallery {
    display: none;
  }

  .faq__decor {
    display: none;
  }

  .faq__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 40px;
    padding-left: 40px;
  }

  .faq__item:first-child {
    margin-right: 0;
    max-width: none;
  }

  .faq__desc {
    font-size: 18px;
    max-width: none;
  }

  .faq__button {
    display: none;
  }

  .faq__item:nth-child(2) {
    margin-top: 0;
  }

  .faq__question-title {
    font-size: 20px;
  }

  .faq__question-answer p {
    font-size: 18px;
  }

  .faq {
    padding-bottom: 80px;
  }

  .faq__question-more {
    font-size: 16px;
  }

  .require__item {
    width: 270px;
    max-width: 270px;
  }

  .require__list {
    max-width: 620px;
  }

  .require__text {
    font-size: 18px;
  }

  .seo__decor {
    display: none;
  }

  .seo__title {
    font-size: 36px;
  }

  .seo__content-wrap {
    max-width: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0 40px;
  }

  .seo__block {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .seo__content p {
    font-size: 18px;
  }

  .seo__image-wrap {
    position: static;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .seo__image {
    max-width: 500px;
  }

  .seo__button {
    font-size: 16px;
  }

  .popup-form {
    padding-left: 40px;
    padding-right: 40px;
  }

  .steps__slide-image {
    max-height: 11vw;
    height: 11vw;
  }

  .salons__slide.active {
    max-width: 520px;
    width: 520px;
  }

  .salons__slider {
    padding-right: 340px;
  }

  .join__button {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .steps__slider {
    padding-bottom: 160px;
  }

  .steps__slider-buttons {
    position: absolute;
    bottom: 60px;
    left: 40px;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .francise__content {
    text-align: center;
  }

  .francise__content br {
    display: block;
  }
}

@media (max-width: 991px) {
  .francise__content {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .francise__content {
    text-align: center;
  }

  .screen__title {
    font-size: 48px;
  }

  .screen__text-lg {
    font-size: 32px;
  }

  .screen__text-md {
    font-size: 36px;
  }

  .francise__title {
    font-size: 40px;
  }

  .screen__block {
    padding-bottom: 60px;
  }

  .francise__wrap {
    padding-top: 60px;
  }

  .francise::before {
    height: 160px;
  }

  .francise__desc {
    font-size: 18px;
  }

  .francise__content span {
    font-size: 52px;
  }

  .francise__content {
    line-height: 52px;
  }

  .francise__image {
    max-width: 380px;
  }

  .speed__wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .speed__gallery-btn {
    display: none;
  }

  .speed__gallery-image-wrap {
    min-width: 290px;
    width: 290px;
    max-width: 290px;
  }

  .speed__desc {
    margin-bottom: 80px;
  }

  .advantages__decor {
    max-width: 360px;
  }

  .school__title {
    font-size: 48px;
  }

  .school__decor img {
    max-height: 245px;
  }

  .school__slide.swiper-slide-active {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }

  .school__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
  }

  .steps__shadow {
    height: 120px;
  }

  .steps__slider {
    padding-top: 20px;
  }

  .steps__slide-image {
    max-height: 17vw;
    height: 17vw;
  }

  .services {
    padding-top: 64px;
  }

  .services__head {
    margin-top: 48px;
  }

  .services__title {
    font-size: 48px;
  }

  .services {
    background-size: 200%;
  }

  .team__title-logo {
    width: 32px;
    height: 32px;
  }

  .team__button-mob {
    padding: 16px 24px;
  }

  .team__button {
    padding: 16px 24px;
  }

  .team__slide {
    width: 260px;
  }

  .team__photo {
    height: 260px;
  }

  .team__slider-head {
    margin-top: 40px;
    min-height: 50px;
  }

  .salons__map {
    max-width: 300px;
  }

  .salons__slide.active {
    max-width: 300px;
    width: 300px;
  }

  .salons__box {
    width: 100%;
  }

  .salons__slider {
    padding-right: 120px;
  }

  .salons__slide-buttons {
    display: none;
  }

  .salons__content {
    padding-bottom: 16px;
  }

  .join__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .join__mail-box {
    margin-left: 0;
    width: 100%;
    padding-left: 32px;
    margin-top: 40px;
  }

  .join__phone-box {
    width: 100%;
  }

  .join__social {
    margin-right: 40px;
  }

  .join__image {
    max-width: 400px;
  }

  .join__item:nth-child(2) {
    padding-right: 40px;
  }

  .require__text {
    font-size: 16px;
  }

  .require__item {
    width: 45%;
    max-width: 45%;
  }

  .seo__title {
    font-size: 24px;
  }

  .seo__image {
    max-width: 366px;
  }

  .popup-form {
    width: 520px;
    max-width: 100%;
  }

  .popup-form__title {
    font-size: 36px;
  }

  .popup-form__submit-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .popup-form__submit {
    margin-right: 0;
  }

  .popup-form__submit-text {
    margin-top: 28px;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .popup-form__submit {
    font-size: 16px;
  }

  .popup-form__close svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 540px) {
  .school__title {
    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%;
  }

  .school__title span:nth-child(1),
  .school__title span:nth-child(2),
  .school__title span:nth-child(3) {
    margin: 0;
  }

  .school__title span:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
  }

  .school__title span:nth-child(2) {
    margin-left: auto;
    margin-right: 0;
  }

  .school__title span:nth-child(3) {
    margin-right: auto;
  }

  .screen__image {
    height: 100vw;
    max-height: 100vw;
  }

  .screen__title {
    font-size: 40px;
  }

  .screen__text-lg {
    font-size: 24px;
  }

  .screen__text-md {
    font-size: 28px;
    margin-top: 16px;
  }

  .screen__video-btn {
    margin-top: 40px;
  }

  .screen__block {
    padding-bottom: 64px;
  }

  .screen__btn {
    width: 100%;
    min-width: 100%;
  }

  .francise__title {
    font-size: 36px;
  }

  .francise__head {
    padding: 0 16px;
  }

  .francise__content {
    line-height: 48px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 0;
  }

  .francise__content span {
    font-size: 48px;
  }

  .francise__image {
    max-width: 80%;
  }

  .speed__title {
    font-size: 32px;
    padding: 0 16px;
  }

  :root {
    --speed__title-transalte-up: 10px;
    --speed__title-transalte-bottom: -10px;
  }

  .speed__gallery-image-wrap {
    min-width: 240px;
    width: 240px;
    max-width: 240px;
  }

  .speed__desc {
    padding: 0 16px;
  }

  .speed__marquee-text {
    font-size: 36px;
  }

  .speed__marquee-logo {
    margin: 0 30px;
    width: 30px;
    height: 30px;
  }

  .advantages__block {
    padding-left: 16px;
    padding-right: 16px;
  }

  .advantages__desc {
    font-size: 16px;
  }

  .advantages__slide-title {
    font-size: 28px;
  }

  .advantages__slide-item {
    font-size: 16px;
  }

  .advantages__slide-box {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56px;
  }

  .advantages__decor {
    max-width: 115%;
    width: 115%;
  }

  .school__title {
    font-size: 40px;
  }

  .school__block {
    padding: 0 16px;
  }

  .school {
    padding-bottom: 80px;
  }

  .steps__slider {
    padding-left: 16px;
    padding-right: 16px;
  }

  .steps__slide-image {
    max-height: 32vw;
    height: 32vw;
  }

  .steps__slider-head {
    margin-bottom: 48px;
  }

  .steps__slider {
    padding-bottom: 140px;
  }

  .steps__slider-buttons {
    left: 16px;
    bottom: 40px;
  }

  .services__slider,
  .equipment__slider {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services__title {
    font-size: 40px;
  }

  .team__title-logo {
    width: 26px;
    height: 26px;
  }

  .team__title-wrap,
  .team__slider {
    padding-left: 16px;
    padding-right: 16px;
  }

  .team__nav {
    min-width: 100%;
    max-width: 100%;
  }

  .team__desc {
    font-size: 16px;
  }

  .team__slider-buttons {
    margin-top: 40px;
  }

  .team__slide-name {
    font-size: 20px;
  }

  .team__slide-desc {
    font-size: 14px;
  }

  .founders {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .founders__slider {
    padding-left: 16px;
    padding-right: 16px;
  }

  .founders__title {
    font-size: 32px;
  }

  .founders__slider-head {
    margin-bottom: 56px;
  }

  .founders__slider-buttons {
    left: 16px;
  }

  .founders__name {
    font-size: 24px;
  }

  .founders__desc {
    font-size: 15px;
  }

  .founders__prev-image {
    height: 50.5vw;
  }

  .salons {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .salons__slider {
    padding-left: 16px;
    padding-right: 96px;
  }

  .salons__title {
    padding-right: 16px;
  }

  .salons__desc {
    padding-right: 16px;
  }

  .salons__head {
    min-width: calc(100vw - 16px);
  }

  .join__item:nth-child(1) {
    margin-top: 64px;
  }

  .join__block {
    padding-left: 16px;
    padding-right: 16px;
  }

  .join__desc {
    margin-top: 48px;
  }

  .join__contacts {
    margin-top: 56px;
  }

  .join__phone-box {
    padding: 32px;
  }

  .join__button {
    margin-top: 56px;
  }

  .join__social {
    margin-right: 32px;
  }

  .require__block {
    padding: 0 16px;
  }

  .require__content {
    padding-top: 64px;
    padding-bottom: 44px;
  }

  .require__list {
    margin-top: 64px;
  }

  .require__item {
    width: 47.5%;
    max-width: 47.5%;
  }

  .faq__desc {
    margin-top: 48px;
    margin-bottom: 60px;
    font-size: 16px;
  }

  .faq__block {
    padding-right: 16px;
    padding-left: 16px;
  }

  .faq__question-title {
    font-size: 16px;
  }

  .faq__question-answer p {
    font-size: 14px;
  }

  .faq__question-title {
    padding-right: 24px;
    padding-left: 40px;
  }

  .faq__question-answer {
    padding-right: 40px;
    padding-left: 40px;
  }

  .faq__question-more {
    font-size: 16px;
    width: 100%;
    min-width: 100%;
  }

  .seo__content-wrap {
    margin-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .seo__content p {
    font-size: 16px;
  }

  .seo__button {
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
  }

  .seo__image {
    max-width: 85%;
    width: 85%;
  }

  .popup-form {
    padding-right: 24px;
    padding-left: 24px;
    padding-top: 44px;
    padding-bottom: 40px;
    width: 360px;
  }

  .popup-form__text {
    font-weight: 400;
    font-size: 13px;
  }

  .popup-form__title {
    font-size: 28px;
  }

  .popup-form__close {
    top: 24px;
    right: 24px;
  }

  .advantages__slider .swiper-button-prev {
    left: 16px;
  }

  .advantages__slider .swiper-button-next {
    left: 72px;
  }

  .advantages {
    padding-bottom: 320px;
  }

  .salons__map {
    max-width: 260px;
    margin-bottom: 40px;
  }

  .join__phone {
    font-size: 28px;
  }

  .join__image {
    max-width: 320px;
  }

  .services__slide-title {
    font-size: 18px;
  }

  .salons__wrap {
    margin-top: 48px;
  }
}

@media (max-width: 380px) {
  .screen__block {
    padding-left: 16px;
    padding-right: 16px;
  }

  .screen__title {
    left: 16px;
  }

  .default-btn-lg {
    font-size: 14px;
  }

  .francise__desc {
    font-size: 16px;
  }

  .francise__content {
    line-height: 36px;
    font-size: 18px;
  }

  .francise__content span {
    font-size: 36px;
  }

  .speed__title {
    font-size: 28px;
  }

  .speed__desc {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .advantages__slide-title {
    font-size: 24px;
  }

  .advantages__slide-item {
    padding: 24px 0;
  }

  .school__title {
    font-size: 36px;
  }

  .steps__slide-title {
    font-size: 18px;
  }

  .steps__slide-desc {
    font-size: 12px;
  }

  .steps__slide-num {
    font-size: 20px;
  }

  .services__title {
    font-size: 36px;
  }

  .services__slide-desc {
    font-size: 12px;
  }

  .founders__title {
    font-size: 28px;
  }

  .founders__name {
    font-size: 20px;
  }

  .founders__desc {
    font-size: 14px;
  }

  .salons__desc {
    font-size: 16px;
  }

  .salons__wrap {
    margin-top: 40px;
  }

  .join__desc {
    font-size: 16px;
  }

  .join__phone {
    font-size: 28px;
  }

  .join__phone-box {
    padding: 28px;
  }

  .join__mail-box {
    padding-left: 28px;
  }

  .join__mail {
    font-size: 18px;
  }

  .join__button {
    margin-top: 48px;
  }

  .join__soc-text {
    font-size: 14px;
  }

  .join__image {
    max-width: 100%;
  }

  .require__text {
    font-size: 14px;
  }

  .faq__question-title {
    padding-left: 32px;
    padding-right: 20px;
  }

  .faq__question-answer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.header__button {
  background-color: rgba(0, 174, 255, 1);
}

.header__button:hover {
  background-color: rgba(0, 174, 255, 0.75);
}

.header__button::before {
  display: none;
}

.header__menu .header__button::before {
  display: block;
}

@media (max-width: 720px) {
  .salons__button {
    width: 100%;
  }

  .salons__buttons {
    flex-wrap: nowrap;
    width: 100%;
    padding-right: 32px;
  }
}

@media (max-width: 540px) {
  .salons__buttons {
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .salons__buttons {
    flex-wrap: wrap;
  }

  .salons__button {
    flex-wrap: wrap;
    width: 49.5%;
    padding-right: 32px;
    margin-right: 1%;
  }

  .salons__button:nth-child(2n + 2) {
    margin-right: 0;
  }
}

/* Custom animations start */
.screen__image {
  overflow: hidden;
}

.screen__image img {
  animation: screen__image_animation 2.5s forwards;
  transform: scale(1.12);
  transform-origin: left bottom;
}

@keyframes screen__image_animation {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

.screen__text,
.screen__thumb {
  animation: screen__text_animation 2.5s forwards;
}

@keyframes screen__text_animation {
  from {
    opacity: 0;
    transform: translateX(50%);
  }

  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

.screen__marquee,
.screen__business {
  animation: screen__marquee_animation 2.5s forwards;
}

@keyframes screen__marquee_animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.francise__head.custom-animated {
  animation-name: francise__head_anim;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes francise__head_anim {
  from {
    transform: translateY(-30px);
  }

  to {
    transform: translateY(0);
  }
}

.francise__content.custom-animated {
  animation-name: francise__content_anim;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes francise__content_anim {
  from {
    opacity: 0;
    transform: translateX(50%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.francise__decor.custom-animated {
  animation-name: francise__decor_anim;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes francise__decor_anim {
  from {
    opacity: 0;
    transform: translate(14px, 50%);
  }

  to {
    opacity: 1;
    transform: translate(14px, 40px);
  }
}

.francise__image.custom-animated {
  animation-name: francise__image_anim;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes francise__image_anim {
  from {
    transform: translateX(-70%);
  }

  to {
    transform: translateX(0);
  }
}

.speed__title.up.custom-animated {
  animation-name: speed__title_up_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes speed__title_up_animation {
  from {
    transform: translateY(calc(var(--speed__title-transalte-up, 0) - 40px));
  }

  to {
    transform: translateY(var(--speed__title-transalte-up, 0));
  }
}

.speed__title.bottom.custom-animated {
  animation-name: speed__title_bottom_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes speed__title_bottom_animation {
  from {
    transform: translateY(calc(var(--speed__title-transalte-bottom, 0) + 40px));
  }

  to {
    transform: translateY(var(--speed__title-transalte-bottom, 0));
  }
}

.speed__desc.custom-animated,
.speed__marquee.custom-animated {
  animation-name: speed__desc_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes speed__desc_animation {
  from {
    transform: translateY(40px);
  }

  to {
    transform: translateY(0);
  }
}

.advantages__decor.custom-animated {
  animation-name: advantages__decor_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes advantages__decor_animation {
  from {
    transform: translateX(25%);
  }

  to {
    transform: translateX(0);
  }
}

.advantages__block.custom-animated {
  animation-name: advantages__block_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes advantages__block_animation {
  from {
    transform: translateY(10%);
  }

  to {
    transform: translateY(0);
  }
}

.steps__text.custom-animated {
  animation-name: steps__text_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes steps__text_animation {
  from {
    background-position: center 80%;
  }

  to {
    background-position: center 67%;
  }
}

.steps__slider.custom-animated {
  animation-name: steps__slider_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes steps__slider_animation {
  from {
    transform: translateY(-15%);
  }

  to {
    transform: translateY(0);
  }
}

.services__title-lg.custom-animated {
  animation-name: services__title-lg_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes services__title-lg_animation {
  from {
    transform: translateX(40%);
  }

  to {
    transform: translateX(0);
  }
}

.services__title.custom-animated {
  animation-name: services__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes services__title_animation {
  from {
    transform: translateX(-40%);
  }

  to {
    transform: translateX(0);
  }
}

.team__title.custom-animated {
  animation-name: team__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes team__title_animation {
  from {
    transform: translateX(-40%);
  }

  to {
    transform: translateX(0);
  }
}

.team__desc.custom-animated {
  animation-name: team__desc_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes team__desc_animation {
  from {
    transform: translateX(40%);
  }

  to {
    transform: translateX(0);
  }
}

.team.custom-animated.animated::before {
  animation-name: team_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes team_animation {
  from {
    transform: translateX(60%);
  }

  to {
    transform: translateX(0);
  }
}

.founders__decor.custom-animated {
  animation-name: founders__decor_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes founders__decor_animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.salons__head.custom-animated {
  animation-name: salons__head_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes salons__head_animation {
  from {
    opacity: 0;
    transform: translateX(-15%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.salons__map.custom-animated {
  animation-name: salons__map_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes salons__map_animation {
  from {
    opacity: 0;
    transform: translateX(50%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.salons__map.custom-animated {
  animation-name: salons__map_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes salons__map_animation {
  from {
    opacity: 0;
    transform: translateX(50%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.join__title.custom-animated {
  animation-name: join__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes join__title_animation {
  from {
    opacity: 0;
    transform: translateX(-25%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.join__image.custom-animated {
  animation-name: join__image_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes join__image_animation {
  from {
    opacity: 0;
    transform: translateX(50%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.require__title.custom-animated {
  animation-name: require__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes require__title_animation {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq__title.custom-animated,
.faq__desc.custom-animated {
  animation-name: faq__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes faq__title_animation {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.faq__decor.custom-animated {
  animation-name: faq__decor_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes faq__decor_animation {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(-30px);
  }
}

.seo__decor.custom-animated {
  animation-name: seo__decor_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes seo__decor_animation {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(-30px);
  }
}

.seo__image.custom-animated {
  animation-name: seo__image_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes seo__image_animation {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.seo__title.custom-animated {
  animation-name: seo__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes seo__title_animation {
  from {
    opacity: 0;
    transform: translateY(25%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer__title.custom-animated {
  animation-name: footer__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes footer__title_animation {
  from {
    opacity: 0;
    transform: translateX(50%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer__logo.custom-animated {
  animation-name: footer__logo_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes footer__logo_animation {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer.custom-animated {
  animation-name: footer_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes footer_animation {
  from {
    background-size: 145%;
  }

  to {
    background-size: var(--footer-bg);
  }
}

.school__title.custom-animated.animated span:nth-child(1) {
  animation-name: school__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

.school__title.custom-animated.animated span:nth-child(3) {
  animation-name: school__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes school__title_animation {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

.school__title.custom-animated.animated span:nth-child(2) {
  animation-name: school__title-left_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes school__title-left_animation {
  from {
    transform: translateX(50%);
  }

  to {
    transform: translateX(0%);
  }
}

.school.custom-animated {
  animation-name: school_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes school_animation {
  from {
    background-size: 120%;
  }

  to {
    background-size: 100%;
  }
}

.screen__title.custom-animated {
  animation-name: screen__title_animation;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes screen__title_animation {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

/* Custom animations end */

@media (min-width: 991px) {
  .services.custom-animated {
    animation-name: services_animation;
    animation-duration: 2s;
    animation-fill-mode: both;
  }

  @keyframes services_animation {
    from {
      background-size: 120%;
    }

    to {
      background-size: 100%;
    }
  }

  .require.custom-animated {
    animation-name: require_animation;
    animation-duration: 2s;
    animation-fill-mode: both;
  }

  @keyframes require_animation {
    from {
      background-size: 130%;
    }

    to {
      background-size: 110%;
    }
  }

  @keyframes school__decor-left_animation {
    from {
      transform: translateX(-75%);
    }

    to {
      transform: translateX(0);
    }
  }

  @keyframes school__decor-right_animation {
    from {
      transform: translateX(75%);
    }

    to {
      transform: translateX(0);
    }
  }

  @keyframes school__decor-top_animation {
    from {
      transform: translateY(-75%);
    }

    to {
      transform: translateY(0);
    }
  }

  .school__decor-2.custom-animated,
  .school__decor-3.custom-animated,
  .school__decor-4.custom-animated {
    animation-name: school__decor-top_animation;
    animation-duration: 2s;
    animation-fill-mode: both;
  }

  .school__decor-1.custom-animated,
  .school__decor-5.custom-animated,
  .school__decor-6.custom-animated {
    animation-name: school__decor-left_animation;
    animation-duration: 2s;
    animation-fill-mode: both;
  }

  .school__decor-7.custom-animated,
  .school__decor-8.custom-animated {
    animation-name: school__decor-right_animation;
    animation-duration: 2s;
    animation-fill-mode: both;
  }

  .founders__slider-head.custom-animated {
    animation-name: founders__slider-head_animation;
    animation-duration: 2s;
    animation-fill-mode: both;
  }

  @keyframes founders__slider-head_animation {
    from {
      opacity: 0;
      transform: translateX(-10%);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* Custom animations end */

img[data-lazyloaded] {
  opacity: 0;
}

img.litespeed-loaded {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 1;
}

.seo__content ol,
.seo__content ul {
  list-style-position: outside;
  list-style-type: initial;
  padding-left: 40px;
  margin-bottom: 24px;
}

.seo__content ol {
  list-style-type: decimal;
}

.seo__content ul {
  list-style: initial;
  list-style-type: disc;
}

.seo__content li {
  margin-bottom: 1em;
  list-style: initial;
}

.seo__content ol ol,
.seo__content ul ul,
.seo__content ol ul,
.seo__content ul ol {
  padding-left: 30px;
}

.seo__content ol li::marker {
  font-weight: bold;
}

.seo__content ul li::marker {
  color: inherit;
}

.seo__content h2,
.seo__content h3,
.seo__content h4,
.seo__content h5,
.seo__content h6 {
  margin-bottom: 24px;
}

.popup-form__content {
  position: relative;
}

.popup-form__content::before {
  z-index: 15;
  content: none;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  bottom: 0;
}

.popup-form__content.submitting::before {
  content: "";
  display: block;
}

.popup-form__content::after {
  content: none;
  display: none;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border: 4px solid #dddddd;
  border-top-color: #00aeff;
  border-radius: 50%;
  animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.popup-form__content.submitting::after {
  content: "";
  display: block;
}

.equipment__slider .services__slide-title {
  margin-bottom: 0;
}

.equipment__slider .services__slide-desc {
  display: none;
}

.popup-form__input-phone {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.popup-form__input-phone::-webkit-outer-spin-button,
.popup-form__input-phone::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.pn-select {
  display: flex;
  position: relative;
  align-items: stretch;
}

.pn-input {
  width: 100%;
}

.pn-input__container {
  display: flex;
  flex-direction: row;
}

.pn-dropdown {
  background: #ffffff;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(22, 21, 28, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.135);
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  bottom: 0;
  transform: translateY(100%);
  transform-origin: left top;
  transition: all 0.3s ease-out;
  width: 100%;
  visibility: hidden;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
}

.pn-select.active .pn-dropdown {
  pointer-events: initial;
  opacity: 1;
  visibility: visible;
}

.pn-selected-prefix__icon {
  transition: 0.3s ease-in-out;
}

.pn-select.active .pn-selected-prefix__icon {
  transform: rotate(-180deg);
}

.pn-selected-prefix {
  text-transform: uppercase;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 0;
  outline: none;
  padding: 0;
  transition: background 0.3 sease-out;
  border-radius: 0;
  height: auto;
  padding: 0 8px;
  background-color: rgba(22, 21, 28, 0.05);
  color: inherit;
  transition: 0.3s ease-in-out;
}

.pn-selected-prefix:hover {
  background-color: rgba(22, 21, 28, 0.1);
}

.pn-input__prefix {
  background: transparent;
  position: absolute;
  color: rgba(0, 0, 0, 0.5);
  max-width: 3.5rem;
  min-width: 3.5rem;
  text-align: center;
  pointer-events: none;
  border: none;
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1;
}

.pn-input__phonenumber::-webkit-outer-spin-button,
.pn-input__phonenumber::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.pn-input__phonenumber {
  appearance: none;
  -moz-appearance: textfield;
  padding-left: 3.25rem;
  width: 100%;
  border: none;
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1;
  border-bottom: 1px solid rgba(22, 21, 28, 0.1);
  transition: 0.3s ease-in-out;
}

.pn-input__phonenumber:focus {
  border-bottom: 1px solid rgba(0, 174, 255, 1);
}

.pn-list-item {
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}

.pn-list-item:hover {
  background-color: rgba(22, 21, 28, 0.05);
}

.pn-list-item.active {
  cursor: initial;
  background-color: rgba(22, 21, 28, 0.05);
}

.pn-list-item.active:hover {
  cursor: initial;
}

.pn-list-item::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 12px;
  border: solid #333333;
  border-width: 0 2px 2px 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);

  left: auto;
  opacity: 0;
  right: 12px;
  top: 40%;
}

.pn-list-item.active::after {
  opacity: 1;
}

.pn-selected-lang {
  min-width: 3ch;
  text-align: center;
}

@media (max-width: 1620px) {
  .pn-input__prefix {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .pn-input__phonenumber {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

.popup-form__fields input {
  border-radius: 0;
}

@media (max-width: 580px) {
  .fancybox-show-toolbar .fancybox-slide {
    padding: 6px;
  }
}

.header__menu-link {
  max-width: fit-content;
  position: relative;
}

.header__menu-item.has-children>.header__menu-link {
  padding-right: 29px;
}

.header__menu-item.has-children>.header__menu-link::after {
  position: absolute;
  content: '';
  right: 0;
  top: 20px;
  transition: .3s ease-in-out;
  width: 12px;
  height: 20px;
  transform: rotate(90deg);
  background: url('data:image/svg+xml,%3Csvg width=%2212%22 height=%2220%22 viewBox=%220 0 12 20%22 fill=%22none%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath d=%22M0 20V16.2273L7.63636 10L0 3.77273V0L12 10L0 20Z%22 fill=%22%2300AEFF%22/%3E%3C/svg%3E') center / contain no-repeat;
}

.header__menu-item.has-children.active>.header__menu-link::after {
  position: absolute;
  right: 0;
  transform: rotate(-90deg);
}

.header__submenu .header__menu-link {
  padding-left: 24px;
}

.header__submenu .header__menu-link:first-child {
  padding-top: 14px !important;
}


.header__submenu .header__menu-link::after {
  position: absolute;
  content: '';
  left: 0;
  top: 28px;
  width: 12px;
  height: 2px;
  background-color: #00aeff;
}

@media(max-width:1024px) {
  .header__menu-item.has-children>.header__menu-link::after {
    width: 9px;
    height: 15px;
  }
}

@media(max-width:1620px) {
  .header__menu-item.has-children>.header__menu-link::after {
    top: 16px;
  }

  .header__submenu .header__menu-link::after {
    top: 24px;
  }
  .header__submenu .header__menu-link:first-child {
    padding-top: 12px !important;
  }
}

@media(max-width:1400px) {
  .header__menu-item.has-children>.header__menu-link::after {
    top: 13px;
    width: 9px;
    height: 15px;
  }

  .header__submenu .header__menu-link::after {
    top: 20px;
  }
  .header__submenu .header__menu-link:first-child {
    padding-top: 10px !important;
  }
    .header__menu-item.has-children>.header__menu-link {
      padding-right: 25px;
  }
}

@media(max-width:1024px){
    .header__submenu .header__menu-link:first-child {
    padding-top: 11px !important;
  }
  .header__submenu .header__menu-link::after {
    top: 19px;
  }
}

.header__menu-item.has-children .header__submenu{
  display: none;
}

.header__menu-item.has-children.active .header__submenu{
  display: block;
}