* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  background-color: #000;
  color: #fff;
}
body.active {
  overflow: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

:root {
  --padding: 50px 0;
  --font_size_h1: clamp(30px, 5vw, 60px);
  --color_red: #CF0000;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 157px;
  padding: 20px 0 20px 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: flex-start;
  border-right: 1px solid #F0F0F0;
  z-index: 999;
}
.nav__wrapp {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}
.nav__logo {
  text-align: center;
}
.nav__flipped {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  max-width: 118px;
  width: 100%;
  height: 100%;
}
.nav__flipped-open {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  cursor: pointer;
}
.nav__flipped-img {
  position: relative;
  width: 100%;
}
.nav__flipped-img2 {
  position: absolute;
  right: 0;
  max-height: 90px;
  height: 100%;
}
.nav__flipped-img2.animate {
  animation: flipped 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
  -webkit-animation: flipped 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
}
.nav__language-btn-wrapp {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0 auto;
}
.nav__language-info {
  padding-left: 5px;
  padding-right: 6px;
  padding-bottom: 2px;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.nav__language-info.active {
  background: red;
}
.nav__language-info:hover {
  background: red;
}
.nav__language-hover {
  height: 0;
  visibility: hidden;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease;
}

.nav__language-btn-wrapp.active .nav__language-hover {
  visibility: visible;
} 
.nav__language-btn {
  font-weight: 600;
  font-size: 27px;
  cursor: pointer;
}
.nav__social {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav__social-item:first-child {
  margin-bottom: 20px;
}

.social path {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.social:hover path {
  fill: var(--color_red);
}

@keyframes flipped {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(8deg);
  }
  20%, 40%, 60% {
    transform: rotate(-10deg);
  }
  30%, 50%, 70% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  90% {
    transform: rotate(8deg);
  }
}
.header {
  overflow: hidden;
}
.header__wrapp {
  position: relative;
}
.header__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 59px;
  gap: 30px;
}
.header__contact-us {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  font-weight: 400;
  font-size: 14px;
  line-height: 176%;
  width: 254px;
  position: relative;
  padding-bottom: 20px;
  cursor: pointer;
}
.header__contact-us:hover::after {
  background: var(--color_red);
}
.header__contact-us::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.header__text {
  display: flex;
  align-items: center;
  align-content: flex-start;
  flex-wrap: wrap;
  max-width: 1068px;
}
.header__text img {
  width: clamp(180px, 19vw, 350px);
  height: 100%;
}
.header__text-wrrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.header__title {
  font-weight: 400;
  font-size: clamp(56px, 6vw, 150px);
  text-transform: uppercase;
}
.header__span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FF0000;
  color: #FF0000;
  font-weight: 700;
  width: 54px;
  height: 32px;
  font-size: 24px;
  border-radius: 4px;
  margin-left: 34px;
}
.header__description {
  font-weight: 400;
  font-size: clamp(11px, 1vw, 20px);
  line-height: 122%;
  max-width: 500px;
  color: #EBC6C6;
  margin-left: 20px;
}
.header__description span {
  font-weight: 700;
  color: #fff;
}
.header__subtitle {
  font-weight: 300;
  font-size: clamp(26px, 4vw, 80px);
  line-height: 100%;
  margin-top: 42px;
}
.header__subtitle span {
  color: #FF0000;
}
.header__paralax {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.header__paralax-left {
  max-width: 635px;
  right: -322px;
}
.header__paralax-left img {
  top: 0;
}
.header__paralax-right {
  max-width: 650px;
}
.header__paralax-right img {
  bottom: 0;
}
.header__paralax-left, .header__paralax-right {
  position: relative;
  width: 100%;
}
.header__paralax-left img, .header__paralax-right img {
  position: absolute;
  width: 100%;
  right: 0;
}
.header__arrow-down {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.header__arrow-down img {
  animation: arrow 1s linear infinite both;
  -webkit-animation: arrow 1s linear infinite both;
  height: 100%;
}

.span-text {
  display: flex;
  flex-direction: column;
}
.span-text__title {
  font-weight: 400;
  font-size: 47px;
  color: #fff;
}
.span-text__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 158%;
  color: #fff;
  width: 173px;
}

@keyframes arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.curtain-wrap {
  position: relative;
  z-index: 0;
}

.curtain-wrap > div {
  position: fixed;
  left: 0;
  top: 0;
  width: 8.4%;
  height: 100%;
  background: #000;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform-origin: bottom;
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transition: background 0.3s ease-out;
  -webkit-transition: background 0.3s ease-out;
  -o-transition: background 0.3s ease-out;
  -moz-transition: background 0.3s ease-out;
  -ms-transition: background 0.3s ease-out;
  will-change: transform;
}

.curtain-wrap > div:nth-of-type(1) {
  left: 0;
}

.curtain-wrap > div:nth-of-type(2) {
  left: 8.33%;
}

.curtain-wrap > div:nth-of-type(3) {
  left: 16.66%;
}

.curtain-wrap > div:nth-of-type(4) {
  left: 24.99%;
}

.curtain-wrap > div:nth-of-type(5) {
  left: 33.32%;
}

.curtain-wrap > div:nth-of-type(6) {
  left: 41.65%;
}

.curtain-wrap > div:nth-of-type(7) {
  left: 49.98%;
}

.curtain-wrap > div:nth-of-type(8) {
  left: 58.31%;
}

.curtain-wrap > div:nth-of-type(9) {
  left: 66.64%;
}

.curtain-wrap > div:nth-of-type(10) {
  left: 74.97%;
}

.curtain-wrap > div:nth-of-type(11) {
  left: 83.3%;
}

.curtain-wrap > div:nth-of-type(12) {
  left: 91.63%;
}

.curtain-wrap.page-transition {
  z-index: 999;
}

.nav-wrap.active ~ .curtain-wrap.page-transition > div {
  background: var(--color_softBlack);
}

.nav-wrap .curtain-wrap > div:nth-of-type(6) {
  z-index: 1;
}

#nav {
  transition: opacity 1s ease-out;
}

.nav-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -100%;
  z-index: 99;
}
.nav-wrap.active {
  overflow: auto;
  top: 0;
}

.nav-wrap .main__nav {
  width: 100%;
  height: 100%;
}

.main__nav__inner {
    position: relative;
}

.main__nav__inner .download {
    height: 100%;
}

.main__nav__inner .download__img {
    width: 80px;
    height: 80px;
}
.main__nav__inner .download__wrapp-head {
    width: 50px;
    height: 50px;
}
.main__nav__inner.active::after   {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.main__nav__inner._sending::after   {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.contact-specs {
  position: relative;
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
}

.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 50px 0;
  overflow: hidden;
}
.popup__wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  position: relative;
  width: 100%;
}
.sucess {
  position: absolute;
  background: url(../img/svg/backgraund-sucess.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 677px;
  width: 100%;
  height: clamp(200px, 43vw, 320px);
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease;
}
.sucess__wrapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.sucess__indicator-ok {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: clamp(55px, 11vw, 80px);
  background-image: url(../img/svg/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(30px, 5vw, 60px);
  
}

.sucess__indicator-ok::after {
  content: '';
  position: absolute;
  width: 92%;
  border-right-style: none;
  border-bottom-style: solid;
  border-width: 5px;
  -o-border-image: url(../img/svg/dashed-rotate.svg) 2 repeat;
  border-image: url(../img/svg/dashed-rotate.svg) 5 fill repeat;
  bottom: -3px;
}
div.sucess__indicator-ok-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  background: #00D100;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  background-image: url(../img/svg/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(25px, 6vw, 40px);
}
div.sucess__indicator-ok-circle.poperror {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  background: #ff0000;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  background-image: url(../img/svg/error.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: clamp(25px, 6vw, 40px);
}
.sucess__indicator-ok-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
}
.sucess__text {
  font-weight: 600;
  font-size: clamp(19px, 3vw, 26px);
  color: #000;
  text-align: center;
  line-height: 160%;
  margin: auto;
  padding: 0 15px;
}
.popup__left-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right-style: solid;
  border-width: 2px;
  -o-border-image: url(../img/svg/dashed.svg) 2 repeat;
     border-image: url(../img/svg/dashed.svg) 2 fill repeat;
  position: relative;
}
.popup__left-content::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -21px;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 100%;
  z-index: 1;
}
.popup__left-content, .popup__right-content {
  padding: clamp(20px, 5vw, 75px);
}
.popup__title {
  font-weight: 500;
  font-size: 24px;
  color: #000;
  max-width: 288px;
}
.popup__description {
  margin-top: 15px;
  font-weight: 400;
  font-size: clamp(12px, 2vw, 14px);
  color: #000;
  max-width: 364px;
}
.popup__red {
  text-decoration: underline;
  color: var(--color_red);
}
.popup__right-content {
  position: relative;
}
.popup__right-content::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 100%;
  z-index: 1;
}
.popup__form-recaptcha {
  width: 100%;
  max-width: 252px;
}
.popup__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}
.popup__checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-gap: 16px;
  font-weight: 400;
  font-size: clamp(12px, 2vw, 15px);
  color: #000;
  cursor: pointer;
}
.popup__checkbox .popup__red {
  margin-left: 9px;
}
.popup__checkbox-input:checked + .popup__checkbox .popup__span::after {
  background-color: var(--color_red);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.popup__span {
  display: block;
  position: relative;
  border: 2px solid var(--color_red);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  width: 45px;
  height: 45px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  cursor: pointer;
}
.popup__span::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  background-image: url(../img/svg/check.svg);
  transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
}
.popup__privacy {
  max-width: 425px;
}
.popup__close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -26px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  cursor: pointer;
  z-index: 1;
}
.popup__close span {
  display: flex;
  width: 24px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.popup__close span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.right-content__title {
  font-weight: 300;
  font-size: 24px;
  color: #000;
}
.right-content__title::after {
  content: "*";
  vertical-align: super;
}

.formclient {
  display: flex;
  position: relative;
}
.form__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(141px, 1fr));
  grid-auto-flow: row;
  grid-gap: 5px;
  align-items: flex-start;
  margin-top: 30px;
}
.form__container-list {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #000;
  padding: 1px 6px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.form__container-list.active {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form__container-list._chek {
  border: 1px solid var(--color_red);
  background: var(--color_red);
}
@media (hover: hover) {
  .formclient .form__container-list:hover {
    background-color: #CF0000;
    border-color: #CF0000;
  }
  .formclient .form__container-list:hover .form__list-text {
    color: #fff;
  }
}
@media (hover: none) {
  .formclient .form__container-list:active {
    background-color: transparent;
  }
  .formclient .form__container-list:active .form__list-text {
    color: #000;
  }
}
.form__list-text {
  display: block;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form__list-text._chek {
  color: #fff;
}
.form__list-text, .formclient label {
  font-weight: 300;
  font-size: 14px;
  color: #000;
  cursor: pointer;
}
.form__checkbox-services {
    display: flex;
  width: 100%;
}
.form__accordion-content {
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: -0.8px;
  width: calc(100% + 1.6px);
  gap: 10px;
  height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 6px;
  z-index: 1;
}
.form__item-services:first-child {
  margin-top: 15px;
}
.form__item-services input {
  display: none;
}
.form__uiux {
  display: block;
}
.form__checkbox-inputServices:checked + .form__checkbox-services {
  position: relative;
  color: var(--color_red);
}
.form__contact-wrapp {
  margin-top: 30px;
}
.form__top-input {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.form__input {
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  color: #000;
  border: 0;
  border-bottom: 1px solid #E6E6E6;
  outline: none;
  padding-bottom: 13px;
  width: 100%;
}
.form__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}
.form__input._error {
  border-color: var(--color_red);
}
.form__input._error::placeholder {
  color: var(--color_red);
}
.iti {
  --iti-path-flags-1x: url('../img/flags.png');
  --iti-path-flags-2x: url('../img/flags@2x.png');
  --iti-path-globe-1x: url('../img/globe.png');
  --iti-path-globe-2x: url('../img/globe@2x.png');
}
.iti__country {
    color: #000;
}
.iti .iti__selected-dial-code {
    font-family: "JetBrains Mono", monospace;
    font-style: normal;
    color: #000;
    font-size: 19px;
}
.form__social-info {
  margin-bottom: 10px;
}
.form__social-info p {
  font-weight: 400;
  font-size: 14px;
  color: #000;
}
.form__comment-wrapp {
  margin-top: 30px;
}
.form__comment {
  height: 78px;
  resize: vertical;
}
.form__bottom-wrapp {
  margin-top: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.form__bottom-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 290px;
  width: 100%;
}

.form__bottom-input .iti__selected-country-primary {
    padding: 0;
}
.form__bottom-input .iti__country-container {
    bottom: auto;
}
.form__btn.btn {
  position: relative;
  width: 120px;
  height: 120px;
  border: 1px solid #000;
  color: #000;
}
.form__btn.btn svg {
  width: 17px;
}
.form__btn.btn path {
  fill: #000;
}
.form__btn.btn:hover path {
  fill: #fff;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  background: transparent;
  outline: none;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border: 1px solid #fff;
  width: 150px;
  height: 150px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}
.btn svg {
  width: 40px;
  height: 100%;
}
.btn span {
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-align: left;
  width: 125px;
  line-height: 149%;
}

@media (hover: hover) {
  .btn:hover {
    background: var(--color_red);
    border: var(--color_red);
    color: #fff;
  }
  .btn:hover::before {
    content: "";
    position: absolute;
    border: 1px solid var(--color_red);
    left: -5px;
    opacity: 0;
    right: -5px;
    top: -5px;
    bottom: -5px;
    border-radius: 14px;
    animation: pulse 2.5s linear infinite 1.25s;
    -webkit-animation: pulse 2.5s linear infinite 1.25s;
  }
  .btn:hover::after {
    content: "";
    position: absolute;
    border: 1px solid var(--color_red);
    left: -10px;
    opacity: 0;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 14px;
    animation: pulse 2.5s linear infinite;
    -webkit-animation: pulse 2.5s linear infinite;
  }
}
@media (hover: none) {
  .btn:active {
    background: var(--color_red);
    border: var(--color_red);
    color: #fff;
  }
  .btn:active::before {
    content: "";
    position: absolute;
    border: 1px solid var(--color_red);
    left: -5px;
    opacity: 0;
    right: -5px;
    top: -5px;
    bottom: -5px;
    border-radius: 14px;
    animation: pulse 2.5s linear infinite 1.25s;
    -webkit-animation: pulse 2.5s linear infinite 1.25s;
  }
  .btn:active::after {
    content: "";
    position: absolute;
    border: 1px solid var(--color_red);
    left: -10px;
    opacity: 0;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 14px;
    animation: pulse 2.5s linear infinite;
    -webkit-animation: pulse 2.5s linear infinite;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.text-running {
  overflow: hidden;
  background: var(--color_red);
  position: relative;
}
.text-running__wrapp {
  display: flex;
  align-items: center;
  position: relative;
  left: 0;
  height: clamp(40px, 6vw, 50px);
}
.text-running__title {
  position: absolute;
  font-weight: 400;
  font-size: clamp(17px, 3vw, 20px);
  text-wrap: nowrap;
}

.potential__wrapp-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh + 50px);
  padding: var(--padding);
  padding-bottom: 70px;
}
.potential__title {
  font-size: var(--font_size_h1);
  font-weight: 800;
  letter-spacing: 3px;
  text-align: center;
}
.potential__wrapp {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 70px;
  gap: 15px;
}
.potential__left-content {
  position: sticky;
  top: 10px;
  max-width: 404px;
  max-height: 519px;
  width: 100%;
}
.potential__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.potential__img-border {
  position: absolute;
  top: 51px;
  left: 22px;
  border: 2px #EBC6C6 solid;
  width: 100%;
  height: 100%;
  max-height: 486px;
  z-index: -1;
}
.potential__center-content {
  display: flex;
  flex-direction: column;
  gap: 54px;
  max-width: 556px;
  margin-top: 12px;
}
.potential__center-title {
  font-weight: 500;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 141%;
}
.potential__center-title span {
  color: #db2929;
}
.potential__subtitle-wrapp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.potential__center-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 139%;
}
.potential__btn {
  position: sticky;
  top: 20px;
}

.stages {
  background: #fff;
}
.stages__content-wrapp {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: var(--padding);
  min-height: 100vh;
  overflow: hidden;
}
.stages__title-wrapp {
  text-align: center;
}
.stages__subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #555;
}
.stages__title {
  font-weight: 500;
  font-size: var(--font_size_h1);
  color: #121212;
  margin-top: 15px;
}
.stages__list {
  display: flex;
  margin-top: 60px;
}
.stages__item, .stages__item.swiper-slide {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  min-width: 400px;
  height: 100%;
}
.stages__item-list {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}
.stages__line-wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  position: relative;
}
.stages__line {
  width: 100%;
  height: 1px;
  background: #000;
}
.stages__circle {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--color_red);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  animation: scaleCircle 1s linear infinite;
  -webkit-animation: scaleCircle 1s linear infinite;
}
.stages__number {
  font-weight: 700;
  font-size: clamp(58px, 6vw, 85px);
  color: #f6f6f6;
}
.stages__text {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}
.stages__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #000;
}

@keyframes scaleCircle {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
.services {
  overflow: hidden;
}
.services__wrapp {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 100vh;
  position: relative;
}
.services__top-content {
  display: grid;
  grid-template-columns: auto 1fr 185px;
  align-items: center;
  justify-items: center;
  gap: 15px;
  padding-top: 50px;
}
.services__text-wrapp {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.services__subtitle {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
}
.services__title {
  font-size: clamp(30px, 4.3vw, 60px);
  font-weight: 500;
  line-height: 100%;
  width: 288px;
}
.services__description {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  color: #999;
  max-width: 456px;
}
.services__description span {
  color: #fff;
}
.services__btn.active {
  background: var(--color_red);
  border: var(--color_red);
}
.services__wrapp-scroll {
  padding-bottom: 50px;
}
.services__vertical-scroll-container {
  width: 100%;
  height: 542px;
  position: relative;
}
.services__vertical-scroll-container .swiper-pagination-bullet-active {
  background: none;
}
.services__vertical-scroll-container .swiper-pagination-bullets-dynamic {
  font-size: 20px;
}
.services__vertical-scroll-item.swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  transition: 0.5s linear;
  -webkit-transition: 0.5s linear;
  -moz-transition: 0.5s linear;
  -ms-transition: 0.5s linear;
  -o-transition: 0.5s linear;
  padding: 25px 0;
}
.services__vertical-scroll-item.swiper-slide-active {
  border-top: 1px solid #2C2C2C;
  border-bottom: 1px solid #2C2C2C;
  transition: 0s;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
}
.services__vertical-scroll-description-wrapp path {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  fill: #999999;
}
.services__vertical-scroll-item.swiper-slide-active .services__vertical-scroll-description-wrapp path {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  fill: #fff;
}
.services__vertical-scroll-number, .services__vertical-scroll-text, .services__vertical-scroll-description-span, .services__vertical-scroll-description-wrapp svg {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  color: #999999;
}
.services__vertical-scroll-item.swiper-slide-active .services__vertical-scroll-number, .services__vertical-scroll-item.swiper-slide-active .services__vertical-scroll-text, .services__vertical-scroll-item.swiper-slide-active .services__vertical-scroll-description-span, .services__vertical-scroll-item.swiper-slide-active .services__vertical-scroll-description-wrapp svg {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  color: #fff;
}
.services__vertical-scroll-number {
  font-weight: 400;
  font-size: clamp(14px, 3vw, 28px);
}
.services__vertical-scroll-text {
  font-weight: 400;
  font-size: clamp(14px, 3vw, 28px);
  max-width: 336px;
}
.services__vertical-scroll-description-wrapp {
  display: flex;
  align-items: center;
  gap: 40px;
  cursor: pointer;
}
.services__vertical-scroll-description-wrapp svg {
  min-width: 50px;
  height: 100%;
}
.services__vertical-scroll-description-span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 166%;
  max-width: 490px;
}
.services__big-text {
  max-width: 634px;
}

.services__vertical-scroll-item.active > .services__vertical-scroll-description-wrapp path {
  fill: #ff1616;
}

.services__vertical-scroll-item.active .services__vertical-scroll-description-span,
.services__vertical-scroll-item.active .services__vertical-scroll-text,
.services__vertical-scroll-item.active .services__vertical-scroll-number {
  color: #ff1616;
}

.cases {
  background: #fff;
  color: #000;
  position: relative;
  overflow: hidden;
}
.cases__wrapp {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 60px;
  min-height: 100vh;
  padding: var(--padding);
  position: relative;
}
.cases__title {
  font-weight: 500;
  font-size: clamp(60px, 11vw, 150px);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
.cases__grid-wrapp {
  display: grid;
  grid-template-columns: repeat(2, minmax(290px, 1fr));
  -moz-column-gap: 88px;
  -o-column-gap: 88px;
  column-gap: 88px;
  row-gap: 66px;
  position: relative;
}
.cases__grid-item {
  display: grid;
  grid-gap: 24px;
}
.cases__grid-item:nth-child(4n+1), .cases__grid-item:nth-child(4n+4) {
  grid-template-rows: auto;
}
.cases__grid-item:nth-child(4n+2), .cases__grid-item:nth-child(4n+3) {
  grid-row: span 4;
}
.cases__grid-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cases__btn {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 18px);
  width: 100%;
  height: clamp(60px, 9vw, 120px);
  border: 1px solid #000;
  color: #000;
}
.cases__btn:hover path {
  fill: #fff;
}
.cases__btn span {
  align-items: center;
  width: 100%;
  grid-gap: 17px;
}
.cases__btn svg {
  width: 25px;
}
.cases__btn path {
  fill: #000;
}
.cases__btn._hold {
  pointer-events: none;
}

.download {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
}
.download__wrapp {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download__img {
  display: block;
  width: 50px;
  height: 50px;
  animation: download 1s linear infinite;
  -webkit-animation: download 1s linear infinite;
  transform-origin: center;
  -webkit-transform-origin: center;
}
.download__wrapp-head {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
}
.download__img-head {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  animation: download_img 1s linear infinite;
  -webkit-animation: download_img 1s linear infinite;
  transform-origin: center;
  -webkit-transform-origin: center;
}

@keyframes download {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@keyframes download_img {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
.faq__wrapp-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 60px;
  min-height: 100vh;
  padding: var(--padding);
  position: relative;
}
.faq__title {
  font-weight: 500;
  font-size: var(--font_size_h1);
  text-align: center;
}
.faq__wrapp-accordion {
  display: grid;
  grid-gap: 20px;
}
.faq__accordion {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.faq__accordion.active {
  background: #1d1d1d;
}
.faq__accordion.active .faq__accordion-triggle::after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.faq__accordion-toggle {
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 24px;
  align-items: center;
  padding: clamp(12px, 2vw, 20px);
}
.faq__accordion-toggle-title {
  font-weight: 400;
  font-size: clamp(15px, 2vw, 20px);
}
.faq__accordion-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(15px, 2vw, 24px);
  height: clamp(15px, 2vw, 24px);
  position: relative;
}
.faq__accordion-triggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3px;
  background: #CF0000;
}
.faq__accordion-triggle::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: #CF0000;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.faq__accordion-content {
  height: 0;
  overflow: hidden;
  z-index: 1;
}
.faq__accordion-content p {
  padding: 0;
  padding-right: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(12px, 2vw, 20px);
  padding-left: clamp(12px, 2vw, 20px);
}
.faq__accordion-content-text {
  font-weight: 400;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 160%;
}

@media (hover: hover) {
  .faq__accordion:hover {
    background: #1d1d1d;
  }
}
@media (hover: none) {
  .faq__accordion {
    background: #1d1d1d;
  }
}
.footer {
  background: #fff;
  color: #000;
}
.footer__number, .footer__mail {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.footer__number:hover, .footer__mail:hover {
  color: var(--color_red);
}
.footer__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
}
.footer__wrapp-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer__content-left {
  display: flex;
  flex-direction: column;
  gap: 53px;
}
.footer__content-left, .footer__services-wrapp {
  padding-top: 50px;
  padding-bottom: 20px;
}
.footer__contacts, .footer__services-wrapp {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
.footer__titel {
  font-weight: 500;
  font-size: 20px;
}
.footer__contacts-wrapp {
  display: flex;
  flex-direction: column;
  gap: 37px;
}
.footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__social-wrapp {
  display: flex;
  gap: 20px;
}
.footer__social {
  display: inline-flex;
}
.footer__bottom-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.footer__bottom-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 187%;
  max-width: 370px;
}
.footer__services-wrapp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
}
.footer__services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__services-list-text {
  font-weight: 400;
  font-size: 16px;
}
.footer__services-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding-left: 10px;
}
.footer__services-item.active {
  color: var(--color_red);
}
.footer__services-line {
  width: 6px;
  height: 1px;
  background: #CF0000;
}
.footer__services-item-text {
  font-weight: 400;
  font-size: 14px;
}
.footer__right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #fff;
  padding: 50px 30px 30px 30px;
  max-width: 363px;
  height: 556px;
}
.footer__right-title {
  font-weight: 400;
  font-size: clamp(27px, 5vw, 36px);
  line-height: 139%;
  text-align: center;
}
.footer__btn span {
  align-items: flex-start;
}
.footer__btn.active {
  background: var(--color_red);
  border: var(--color_red);
}
.footer__right-subtitle-wrapp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__right-subtitle {
  font-weight: 500;
  font-size: 18px;
}
.footer__right-description {
  font-weight: 400;
  font-size: 14px;
  color: #999;
  text-align: center;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
  padding: 37px 0;
}
.footer__bottom-text-wrapp {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__bottom-info {
  font-weight: 400;
  font-size: 14px;
}
.footer__bottom-security-wrapp {
  display: flex;
  gap: 30px;
}
.footer__bottom-privacy {
  text-decoration: underline;
}
.footer__bottom-security {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.footer__bottom-security:hover {
  color: #CF0000;
}