* {
  font-family: "Rubik", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --swiper-pagination-bottom: 0;
  --swiper-pagination-bullet-width: 5px;
  --swiper-pagination-bullet-height: 5px;
  --swiper-pagination-color:#11111D;
  --index: calc(1vw + 1vh);
}

body {
  background: #11111D;
  overflow-x: hidden;
  --scroll: 0;
  --scrollcard: 0;
}
body.active-menu {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: #A1A1B5;
}
a:hover {
  color: #FF931E;
}

form {
  width: 100%;
  display: block;
}

input, textarea {
  outline: none;
}

.main-animation {
  overflow: hidden;
  position: relative;
}

.cart--bob {
  transition: all 2s ease;
  animation: bobbing 6s infinite ease-in-out;
}

.cart--bob2 {
  transition: all 2s ease;
  animation: bobbingAlt 6s infinite ease-in-out;
}

.carts-wrapper {
  width: 100%;
  overflow: hidden;
  position: absolute;
  height: 100vh;
  bottom: 0;
}

.cart-block {
  position: fixed;
  z-index: 2;
  max-width: 609px;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  margin: auto;
  transition: all 2s ease;
  animation: bobbingAlt 5s infinite ease-in-out;
  filter: drop-shadow(32px 39px 28px rgba(0, 0, 0, 0.4));
}

.cart-image {
  background: url("../images/card.png") no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 402px;
  max-width: 609px;
  transform: rotateX(-25deg) rotateY(0deg) rotateZ(-20deg) skew(15deg, 0deg) scale(0.7) translate3d(0px, 0px, -100px);
  border-radius: 15px;
  transition: all 3s ease;
  animation: card-anim 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scrollcard) * -1s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes card-anim {
  2% {
    transform: rotateX(10deg) rotateZ(-4deg) skew(41deg, -27deg) scale(0.7) translate3d(0px, 0px, 10px);
    bottom: 240px;
  }
  10% {
    transform: rotateX(360deg) rotateZ(0deg) skew(0deg, 0deg) scale(1) translate3d(0px, 0px, 10px);
  }
  17% {
    transform: rotateX(360deg) rotateZ(0deg) skew(0deg, 0deg) scale(0.8) translateY(300px) translate3d(0px, 0px, 10px);
    bottom: 0px;
  }
  65% {
    opacity: 100%;
    transform: rotateX(360deg) rotateZ(0deg) skew(0deg, 0deg) scale(0.8) translateY(300px) translate3d(0px, 0px, 10px);
    bottom: 0px;
  }
  66% {
    opacity: 0%;
  }
  100% {
    opacity: 0;
  }
}
.cart-block-2 {
  position: absolute;
  z-index: 10;
  width: 751px;
  height: 492px;
  left: -980px;
  right: 0;
  top: 200px;
  bottom: 0;
  margin: auto;
  transition: all 2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-block-2--left {
  transform: rotateX(0deg) rotateZ(6deg) skew(-20deg, 20deg) scale(2) translate3d(-1000px, 0px, 100px);
}
.cart-block-2 img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.cart-block-3 {
  position: absolute;
  z-index: 2;
  width: 704px;
  height: 614px;
  left: 0;
  right: -1000px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-block-3--right {
  transform: rotateX(0deg) rotateZ(0deg) skew(-40deg, 40deg) scale(2) translate3d(1000px, 0px, 100px);
}
.cart-block-3 img {
  display: block;
  max-width: 100%;
  width: 100%;
}

@keyframes bobbing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bobbingAlt {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
@media (max-width: 768px) {
  .carts {
    display: none;
  }
}

.header {
  position: relative;
  z-index: 99;
  width: 100%;
  height: 85px;
  background: #11111D;
  border-bottom: 1px solid #4E4E79;
}
.header__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
@media (max-width: 1199px) {
  .header__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .header__wrapper {
    padding: 0px 16px;
  }
}
.header__block {
  max-width: 400px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__block:last-child {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .header__block .phone {
    display: none;
  }
}
.header__line {
  width: 1px;
  height: 36px;
  background: #4E4E79;
  margin: 0px 20px;
}
@media (max-width: 768px) {
  .header__line {
    display: none;
  }
}

.main-block {
  width: 100%;
  height: 2000px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main-block {
    height: auto;
  }
}
.main-block__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
  position: relative;
  z-index: 20;
}
@media (max-width: 1199px) {
  .main-block__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .main-block__wrapper {
    padding: 0px 16px;
  }
}
.main-block__title {
  max-width: 830px;
  width: 100%;
  font-weight: 500;
  font-size: 60px;
  line-height: 72px;
  color: #FFFFFF;
  margin-bottom: 40px;
  padding-top: 80px;
}
@media (max-width: 1199px) {
  .main-block__title {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .main-block__title {
    font-size: 50px;
    line-height: 60px;
    padding-top: 170px;
  }
}
@media (max-width: 568px) {
  .main-block__title {
    font-size: 40px;
    line-height: 48px;
    padding-top: 110px;
  }
}
.main-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  animation-direction: alternate;
}
.main-block__bg img {
  top: -20px;
  position: absolute;
  animation: bg-move 6s ease-in infinite;
}
@media (max-width: 768px) {
  .main-block__bg img {
    top: -400px;
  }
}
.main-block__bg img:nth-child(1) {
  z-index: -1;
  animation: bg-blink1 6s ease-in infinite;
}
.main-block__bg img:nth-child(2) {
  z-index: -2;
  animation: bg-blink2 6s ease-in infinite;
}
.main-block__bg img:nth-child(3) {
  z-index: -3;
  animation: bg-blink3 6s ease-in infinite;
}
.main-block__button {
  position: relative;
  z-index: 4;
  max-width: 266px;
  width: 100%;
  height: 66px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.main-block__button:hover {
  background: #FF931E;
}
.main-block__button:hover {
  border: 1px solid #FF931E;
  color: #FFFFFF;
}
.main-block__image {
  margin: 80px 0px;
  display: none;
  position: relative;
  z-index: 3;
}
.main-block__image img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .main-block__image {
    display: flex;
    justify-content: center;
  }
}

@keyframes bg-move {
  0% {
    transform: translateY(-15px);
  }
  33% {
    transform: translateY(0px);
  }
  66% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
@keyframes bg-blink1 {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bg-blink2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bg-blink3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.slider-block {
  width: 100%;
  height: 6000px;
}
@media (max-width: 768px) {
  .slider-block {
    display: none;
  }
}
.slider-block__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.slider-block__content {
  width: 100%;
  height: 1000px;
  position: sticky;
  overflow: hidden;
  bottom: 0;
}

.slider-block-mobile {
  display: none;
  position: relative;
  overflow: hidden;
}
.slider-block-mobile::before {
  content: "";
  width: 2650px;
  height: 2650px;
  border-radius: 50%;
  background: linear-gradient(22.21deg, rgba(245, 127, 23, 0.5) 52.77%, rgba(245, 127, 23, 0) 73.61%), linear-gradient(265.78deg, rgba(245, 127, 23, 0.5) 21.1%, rgba(245, 127, 23, 0) 55.87%), linear-gradient(126.89deg, rgba(239, 152, 76, 0.6) 13.94%, rgba(241, 142, 55, 0.367002) 18.07%, rgba(245, 127, 23, 0) 22.93%), linear-gradient(257.69deg, #3375F7 25.68%, #CEE5EB 69.5%);
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .slider-block-mobile {
    display: block;
  }
}
.slider-block-mobile__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .slider-block-mobile__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .slider-block-mobile__wrapper {
    padding: 0px 16px;
  }
}
.slider-block-mobile__title {
  padding-top: 100px;
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .slider-block-mobile__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .slider-block-mobile__title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 568px) {
  .slider-block-mobile__title {
    padding-top: 80px;
  }
}
.slider-block-mobile__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  text-align: center;
  color: #000000;
}
@media (max-width: 568px) {
  .slider-block-mobile__desc {
    font-size: 16px;
    line-height: 22px;
  }
}
.slider-block-mobile__slider {
  padding: 100px 0px 70px;
}
.slider-block-mobile__slider .swiper {
  padding-bottom: 40px;
}

.slider-element__num {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: transparent;
  -webkit-text-stroke: 1px #FFFFFF;
  text-align: center;
}
.slider-element__title {
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  text-align: center;
  color: #000000;
  margin: 20px 0px;
}
@media (max-width: 1199px) {
  .slider-element__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .slider-element__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.slider-element__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  text-align: center;
  color: #000000;
}
@media (max-width: 568px) {
  .slider-element__desc {
    font-size: 16px;
    line-height: 22px;
  }
}

.advantages-block {
  width: 100%;
  padding: 100px 0px;
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
}
@media (max-width: 1199px) {
  .advantages-block {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .advantages-block {
    padding: 70px 0px;
  }
}
@media (max-width: 568px) {
  .advantages-block {
    padding: 50px 0px;
  }
}
.advantages-block__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .advantages-block__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .advantages-block__wrapper {
    padding: 0px 16px;
  }
}
.advantages-block__title {
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .advantages-block__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .advantages-block__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.advantages-block__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
}
@media (max-width: 568px) {
  .advantages-block__desc {
    font-size: 16px;
    line-height: 22px;
  }
}
.advantages-block__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages-block__image img {
  max-width: 100%;
  display: block;
}
.advantages-block__content {
  padding-top: 125px;
}
@media (max-width: 768px) {
  .advantages-block__content {
    padding-top: 0;
  }
}

.button-block {
  width: 100%;
  height: 308px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .button-block {
    height: 256px;
  }
}
.button-block:hover .button-block__btn {
  opacity: 1;
}
.button-block__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  width: 200%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.button-block__content div {
  width: 100%;
  display: inline-block;
  font-weight: 500;
  font-size: 90px;
  line-height: 108px;
  color: #4E4E79;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  animation: marqueeAnimate 5s linear infinite;
}
@media (max-width: 1199px) {
  .button-block__content div {
    font-size: 80px;
    line-height: 96px;
  }
}
@media (max-width: 768px) {
  .button-block__content div {
    font-size: 60px;
    line-height: 72px;
  }
}
@media (max-width: 568px) {
  .button-block__content div {
    font-size: 40px;
    line-height: 48px;
  }
}
.button-block__content span {
  display: block;
  margin: 0px 30px;
}
.button-block__btn {
  opacity: 0;
  position: relative;
  z-index: 3;
  width: 650px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .button-block__btn {
    opacity: 1;
  }
}
.button-block__btn .btn {
  position: relative;
  z-index: 4;
}
.button-block__btn::before {
  content: "";
  width: 650px;
  height: 308px;
  display: block;
  background: rgba(17, 17, 29, 0.8);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(17, 17, 29, 0.8) 20%, rgba(17, 17, 29, 0.8) 80%, rgba(255, 255, 255, 0) 100%);
  border-radius: 557px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes marqueeAnimate {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.stages-block {
  width: 100%;
  padding: 100px 0px;
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
}
@media (max-width: 1199px) {
  .stages-block {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .stages-block {
    padding: 70px 0px;
  }
}
@media (max-width: 568px) {
  .stages-block {
    padding: 50px 0px;
  }
}
.stages-block__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .stages-block__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .stages-block__wrapper {
    padding: 0px 16px;
  }
}
.stages-block__title {
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .stages-block__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .stages-block__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.stages-block__content {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .stages-block__content {
    flex-direction: column;
  }
}
@media (max-width: 568px) {
  .stages-block__content {
    margin-top: 30px;
  }
}

.logos-block {
  padding: 100px 0px;
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
}
@media (max-width: 1199px) {
  .logos-block {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .logos-block {
    padding: 70px 0px;
  }
}
@media (max-width: 568px) {
  .logos-block {
    padding: 50px 0px;
  }
}
.logos-block__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .logos-block__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .logos-block__wrapper {
    padding: 0px 16px;
  }
}
.logos-block__title {
  max-width: 830px;
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .logos-block__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .logos-block__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.logos-block__content {
  margin-top: 60px;
  width: 100%;
}
@media (max-width: 568px) {
  .logos-block__content {
    margin-top: 30px;
  }
}

.faq-block {
  padding: 100px 0px;
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
}
@media (max-width: 1199px) {
  .faq-block {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .faq-block {
    padding: 70px 0px;
  }
}
@media (max-width: 568px) {
  .faq-block {
    padding: 50px 0px;
  }
}
.faq-block__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .faq-block__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .faq-block__wrapper {
    padding: 0px 16px;
  }
}
.faq-block__title {
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .faq-block__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .faq-block__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.faq-block__content {
  margin-top: 60px;
  width: 100%;
}
@media (max-width: 568px) {
  .faq-block__content {
    margin-top: 30px;
  }
}

.form-block {
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
  padding: 100px 0px;
}
@media (max-width: 1199px) {
  .form-block {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .form-block {
    padding: 70px 0px;
  }
}
@media (max-width: 568px) {
  .form-block {
    padding: 50px 0px;
  }
}
.form-block__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
  background: url("../images/city.png") no-repeat;
  background-position: center 0;
  background-size: contain;
}
@media (max-width: 1199px) {
  .form-block__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .form-block__wrapper {
    padding: 0px 16px;
  }
}
.form-block__title {
  font-weight: 500;
  font-size: 120px;
  line-height: 108px;
  color: #FFFFFF;
  text-align: center;
  padding: 195px 0px 200px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .form-block__title {
    font-size: 90px;
    line-height: 88px;
    padding: 195px 0px 85px;
  }
}
@media (max-width: 768px) {
  .form-block__title {
    font-size: 70px;
    line-height: 84px;
    padding: 120px 0px 50px;
  }
}
@media (max-width: 568px) {
  .form-block__title {
    font-size: 32px;
    line-height: 38px;
    padding: 10px 0px 60px;
  }
}
.form-block__content {
  max-width: 830px;
  width: 100%;
  margin: 0px auto;
}
.form-block__content .row {
  margin-top: -20px;
}
.form-block__content .col-6 {
  margin-top: 20px;
}
.form-block__status {
  margin-top: 20px;
  height: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  color: #C00808;
}
@media (max-width: 568px) {
  .form-block__status {
    font-size: 16px;
    line-height: 22px;
  }
}
.form-block__footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.form-block__send {
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1199px) {
  .form-block__send {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .form-block__send {
    font-size: 32px;
    line-height: 38px;
  }
}

.footer {
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
  width: 100%;
  padding-top: 80px;
  border-top: 1px solid #4E4E79;
}
@media (max-width: 568px) {
  .footer {
    padding-top: 50px;
  }
}
.footer__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .footer__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .footer__wrapper {
    padding: 0px 16px;
  }
}
.footer__name {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
@media (max-width: 568px) {
  .footer__name {
    font-size: 16px;
    line-height: 22px;
  }
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #A1A1B5;
  margin-bottom: 20px;
}
.footer__text:last-child {
  margin-bottom: 0px;
}
.footer__menu li {
  margin-bottom: 20px;
  list-style: none;
}
.footer__menu li:last-child {
  margin-bottom: 0;
}
.footer__menu li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #A1A1B5;
  transition: all 0.3s ease-in-out;
}
.footer__menu li a:hover {
  color: #FF931E;
}
@media (max-width: 568px) {
  .footer__buttons {
    display: flex;
  }
  .footer__buttons .app-button {
    margin-top: 0;
    margin-right: 20px;
  }
  .footer__buttons .app-button:last-child {
    margin-right: 0px;
  }
}
.footer__copyright {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #4E4E79;
  padding: 20px 0px;
}
.footer__copyright .footer__text {
  margin-bottom: 0;
}

.block-404 {
  position: relative;
  z-index: 20;
  background: #11111D;
  transform: translate3d(0px, 0px, 100px);
  padding: 100px 0px;
  height: 100vh;
}
@media (max-width: 1199px) {
  .block-404 {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .block-404 {
    padding: 70px 0px;
  }
}
@media (max-width: 568px) {
  .block-404 {
    padding: 50px 0px;
  }
}
.block-404__wrapper {
  height: 100%;
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/city.png") no-repeat;
  background-position: center 0;
  background-size: contain;
}
@media (max-width: 1199px) {
  .block-404__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .block-404__wrapper {
    padding: 0px 16px;
  }
}
.block-404__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.block-404__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  color: #FFFFFF;
  margin: 60px 0 40px;
}
@media (max-width: 1199px) {
  .block-404__text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 568px) {
  .block-404__text {
    font-size: 18px;
    line-height: 22px;
  }
}
.block-404__button {
  position: relative;
  z-index: 4;
  max-width: 400px;
  width: 100%;
  height: 66px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.block-404__button:hover {
  background: #FF931E;
}
.block-404__button:hover {
  border: 1px solid #FF931E;
  color: #FFFFFF;
}
@media (max-width: 568px) {
  .block-404__button {
    min-width: 200px;
    padding: 20px 40px;
  }
}
.block-404__img {
  max-width: 610px;
}
@media (max-width: 1199px) {
  .block-404__img {
    max-width: 470px;
  }
}
@media (max-width: 568px) {
  .block-404__img {
    max-width: 275px;
  }
}

.menu-button {
  cursor: pointer;
}
.menu-button svg {
  fill: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.menu-button svg:hover {
  fill: #FF931E;
}

.logo {
  user-select: none;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.logo:hover {
  filter: grayscale(0%);
}
.logo img {
  height: 45px;
}

.phone {
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.phone:hover {
  color: #FF931E;
}

.lk svg {
  fill: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.lk svg:hover {
  fill: #FF931E;
}

.btn {
  cursor: pointer;
  width: 115px;
  min-width: 115px;
  max-width: 115px;
  height: 115px;
  background: #4E4E79;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background: #FF931E;
}
@media (max-width: 768px) {
  .btn {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    height: 90px;
  }
}
.btn:disabled {
  cursor: default;
  opacity: 0.5;
}
.btn:disabled:hover {
  background: #4E4E79;
}

.app-button {
  margin-top: 12px;
  border: 1px solid #4E4E79;
  border-radius: 10px;
  height: 47px;
  max-width: 160px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.app-button:hover {
  background: #FF931E;
}
.app-button svg {
  fill: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.app-button:hover {
  border: 1px solid #FF931E;
}
.app-button:hover svg {
  fill: #11111D;
}

.socials {
  margin-top: 42px;
}
.socials a {
  margin-right: 10px;
}
.socials a:last-child {
  margin-right: 0px;
}
.socials a svg {
  fill: #A1A1B5;
  transition: all 0.3s ease-in-out;
}
.socials a:hover svg {
  fill: #FF931E;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px 0px;
}
.row--center {
  justify-content: center;
}
@media (max-width: 1199px) {
  .row {
    margin: 0px -10px 0px;
  }
}
.row:first-child {
  margin-top: -40px;
}
@media (max-width: 1199px) {
  .row:first-child {
    margin-top: -20px;
  }
}

.col-6 {
  flex: 0 0 50%;
  padding: 0px 20px;
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .col-6 {
    padding: 0px 10px;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .col-6--md {
    padding: 0px 0px;
    flex: 0 0 100%;
  }
  .col-6--md .row {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .col-6--md-hide {
    display: none;
  }
  .col-6--custom {
    padding: 20px 10px 0px;
  }
}
@media (max-width: 568px) {
  .col-6--sm {
    padding: 10px;
    flex: 0 0 100%;
  }
}

.col-3 {
  flex: 0 0 25%;
  padding: 0px 20px;
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .col-3 {
    padding: 0px 10px;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .col-3--md {
    flex: 0 0 50%;
  }
}
@media (max-width: 568px) {
  .col-3--xs {
    flex: 0 0 100%;
  }
}

.col-4 {
  flex: 0 0 33.33333%;
  padding: 0px 20px;
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .col-4 {
    padding: 0px 10px;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .col-4--md {
    flex: 0 0 50%;
  }
}
@media (max-width: 568px) {
  .col-4--xs {
    flex: 0 0 100%;
  }
}

.cart {
  width: 100%;
  height: 235px;
  background: #1E1E33;
  border: 1px solid #4E4E79;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .cart {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .cart {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .cart {
    padding: 30px;
  }
}
@media (max-width: 568px) {
  .cart {
    padding: 32px;
  }
}
.cart:hover {
  background: #FF931E;
  border: 1px solid #FF931E;
}
.cart:hover .cart__desc {
  transition: 0.2s ease-in-out;
  visibility: visible;
  opacity: 1;
  height: auto;
  margin-top: 15px;
}
.cart__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart__icon svg {
  fill: #FFFFFF;
}
.cart__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
}
.cart__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.cart__desc {
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin-top: 0px;
}
@media (max-width: 1199px) {
  .cart__desc {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}

.stage {
  cursor: pointer;
  border: 1px solid #4E4E79;
  border-radius: 20px;
  margin-right: 20px;
  width: 114px;
  height: 590px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1199px) {
  .stage {
    margin-right: 16px;
    height: 700px;
  }
}
@media (max-width: 768px) {
  .stage {
    width: 100%;
    height: auto;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.stage:last-child {
  margin-right: 0px;
}
.stage:hover .stage__header {
  transition: all 0.3s ease-in-out;
}
.stage:hover .stage__header:hover {
  background: #FF931E;
}
.stage.active {
  cursor: default;
  width: 595px;
  animation: animBlock 0.8s linear;
}
@media (max-width: 1500px) {
  .stage.active {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .stage.active {
    animation: none;
  }
}
.stage.active .stage__header {
  display: none;
}
.stage.active .stage__header .stage__title {
  transform: rotate(180deg);
}
.stage.active .stage__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 568px) {
  .stage.active .stage__content {
    padding: 30px;
  }
}
.stage:not(.active) .stage__header .stage__title {
  transform: rotate(180deg);
  animation: title 0.5s linear;
}
@media (max-width: 768px) {
  .stage:not(.active) .stage__header .stage__title {
    transform: rotate(0deg);
    animation: none;
  }
}
.stage__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column-reverse;
  padding: 40px 0px;
  height: 100%;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .stage__header {
    flex-direction: row;
    padding: 33px 30px;
  }
}
.stage__header .stage__title,
.stage__header .stage__num {
  transform: rotate(180deg);
  writing-mode: tb-rl;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .stage__header .stage__title,
  .stage__header .stage__num {
    transform: rotate(0deg);
    writing-mode: inherit;
  }
}
.stage__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1199px) {
  .stage__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 568px) {
  .stage__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.stage__num {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  opacity: 1;
  transition: all 10s ease-in-out;
}
@media (max-width: 1199px) {
  .stage__num {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 568px) {
  .stage__num {
    font-size: 18px;
    line-height: 22px;
  }
}
.stage__desc {
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
}
@media (max-width: 568px) {
  .stage__desc {
    font-size: 16px;
    line-height: 22px;
  }
}
.stage__image {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .stage__image {
    height: 300px;
  }
}
.stage__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stage__content {
  display: none;
  width: 595px;
  height: 588px;
}
@media (max-width: 1500px) {
  .stage__content {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .stage__content {
    height: 700px;
  }
}
@media (max-width: 768px) {
  .stage__content {
    height: auto;
  }
}

@keyframes animBlock {
  0% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes title {
  0% {
    transform: rotate(250deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.logo-element {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4E4E79;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  padding: 20px;
}
@media (max-width: 1199px) {
  .logo-element {
    height: 104px;
  }
}
@media (max-width: 768px) {
  .logo-element {
    height: 148px;
  }
}
@media (max-width: 568px) {
  .logo-element {
    height: 82px;
  }
}
.logo-element:hover {
  background: #1E1E33;
}
.logo-element:hover img {
  filter: grayscale(0%);
}
.logo-element img {
  display: block;
  max-width: 100%;
  height: 90px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%);
  transition: all 0.3s ease-in-out;
}

.faq-element {
  cursor: pointer;
  border-top: 1px solid #4E4E79;
  transition: all 0.3s ease-in-out;
}
.faq-element:not(.active):hover {
  background: #FF931E;
}
@media (max-width: 768px) {
  .faq-element:not(.active):hover {
    background: none;
  }
}
.faq-element.active {
  background: #1E1E33;
}
.faq-element.active .faq-element__toggle {
  transform: rotate(45deg);
}
.faq-element.active .faq-element__desc {
  margin-top: 20px;
  height: max-content;
  opacity: 1;
  visibility: visible;
}
.faq-element:last-child {
  border-bottom: 1px solid #4E4E79;
}
.faq-element__wrapper {
  max-width: 1900px;
  width: 100%;
  padding: 0px 100px;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .faq-element__wrapper {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .faq-element__wrapper {
    padding: 0px 16px;
  }
}
.faq-element__body {
  padding: 20px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.faq-element__content {
  flex-grow: 1;
  width: 100%;
}
.faq-element__num {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  max-width: 395px;
  width: 100%;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .faq-element__num {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 568px) {
  .faq-element__num {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1199px) {
  .faq-element__num {
    max-width: 35px;
    margin-right: 20px;
  }
}
@media (max-width: 568px) {
  .faq-element__num {
    max-width: 28px;
    margin-right: 16px;
  }
}
.faq-element__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  max-width: 830px;
}
@media (max-width: 1199px) {
  .faq-element__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 568px) {
  .faq-element__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.faq-element__desc {
  margin-top: 0px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  max-width: 830px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 568px) {
  .faq-element__desc {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 568px) {
  .faq-element__desc {
    margin-left: -44px;
    width: calc(100% + 74px);
  }
}
.faq-element__toggle {
  transition: all 0.3s ease-in-out;
}

.field {
  display: flex;
  flex-direction: column-reverse;
}
.field__name {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 568px) {
  .field__name {
    font-size: 16px;
    line-height: 22px;
  }
}
.field__input {
  width: 100%;
  height: 57px;
  background: #1E1E33;
  border: 1px solid #4E4E79;
  padding: 0px 20px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 568px) {
  .field__input {
    font-size: 16px;
    line-height: 22px;
  }
}
.field__input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
}
@media (max-width: 568px) {
  .field__input::placeholder {
    font-size: 16px;
    line-height: 22px;
  }
}
.field__input:focus::placeholder {
  color: transparent;
}
.field__input:hover {
  border: 1px solid #6667AB;
}
.field__input:hover ~ .field__name {
  color: #FFFFFF;
}
.field__input:focus {
  border: 1px solid #6667AB;
}
.field__input:focus ~ .field__name {
  color: #FFFFFF;
}
.field__input:focus::placeholder {
  display: none;
}
.field__textarea {
  width: 100%;
  height: 162px;
  background: #1E1E33;
  border: 1px solid #4E4E79;
  padding: 16px 20px;
  border-radius: 10px;
  resize: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 568px) {
  .field__textarea {
    font-size: 16px;
    line-height: 22px;
  }
}
.field__textarea:hover {
  border: 1px solid #6667AB;
}
.field__textarea:hover ~ .field__name {
  color: #FFFFFF;
}
.field__textarea::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
}
@media (max-width: 568px) {
  .field__textarea::placeholder {
    font-size: 16px;
    line-height: 22px;
  }
}
.field__textarea:focus {
  border: 1px solid #6667AB;
}
.field__textarea:focus ~ .field__name {
  color: #FFFFFF;
}
.field__textarea:focus::placeholder {
  color: transparent;
}

.drag {
  width: 100%;
  position: relative;
}
.drag__block {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px dashed #4E4E79;
  border-radius: 10px;
  height: 162px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drag__block--over {
  border: 1px solid #4E4E79;
  background: url("../images/doc.svg") no-repeat;
  background-position: center;
  background-size: 40px;
}
.drag__block--over .drag__info {
  display: none;
}
.drag__block.error {
  border: 1px dashed #C00808;
}
.drag__info {
  margin: auto;
  max-width: 225px;
  width: 100%;
  height: max-content;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  text-align: center;
  z-index: -1;
}
@media (max-width: 568px) {
  .drag__info {
    font-size: 16px;
    line-height: 22px;
  }
}
.drag__info span {
  color: #6667AB;
}
.drag__thumb {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.drag__thumb:last-child {
  margin-bottom: 0px;
}
.drag__thumb::before {
  content: "";
  width: 10px;
  min-width: 10px;
  max-width: 10px;
  height: 15px;
  display: block;
  background: url("../images/doc.svg") no-repeat;
  background-size: 11px;
  background-position: center;
}
.drag__thumb::after {
  content: attr(data-label);
  display: block;
  margin-left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #A1A1B5;
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drag__poly {
  display: none;
}
.drag__error {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #FF6464;
  margin-top: 5px;
  text-align: right;
}

.checkbox {
  margin-bottom: 10px;
}
.checkbox:last-child {
  margin-bottom: 0px;
}
.checkbox label {
  cursor: pointer;
  display: inline-flex;
}
.checkbox span {
  display: block;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid #A1A1B5;
  box-sizing: border-box;
}
.checkbox input {
  display: none;
}
.checkbox input:checked ~ span {
  position: relative;
}
.checkbox input:checked ~ span:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -2px;
  left: 0px;
  background: url("../images/check.svg") no-repeat;
  background-position: center;
  background-size: 12px;
}
.checkbox__text {
  max-width: 190px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #A1A1B5;
  transition: all 0.3s ease-in-out;
}

.header-menu {
  display: none;
  width: 100%;
  top: 85px;
  height: calc(100% - 85px);
  position: absolute;
}
.header-menu.active {
  display: block;
}
.header-menu.active-animate {
  transition: all 0.5s ease-in-out;
}
.header-menu.active-animate .header-menu__wrapper {
  left: 0;
}
.header-menu__wrapper {
  position: relative;
  width: 523px;
  height: 100%;
  padding: 40px 0px;
  z-index: 99;
  background: #1E1E33;
  overflow-y: auto;
  left: -523px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .header-menu__wrapper {
    width: 300px;
  }
}
@media (max-width: 568px) {
  .header-menu__wrapper {
    width: 100%;
  }
}
.header-menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 98;
}
.header-menu__personal {
  margin: 60px 0px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  background: #FF931E;
  padding: 0px 110px;
}
@media (max-width: 1199px) {
  .header-menu__personal {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .header-menu__personal {
    padding: 0px 16px;
  }
}
.header-menu__personal svg {
  fill: #FFFFFF;
  margin-right: 12px;
}
.header-menu__personal a {
  color: #FFFFFF;
}
.header-menu__menu {
  padding: 0px 110px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .header-menu__menu {
    padding: 0px 24px;
  }
}
@media (max-width: 568px) {
  .header-menu__menu {
    padding: 0px 16px;
  }
}
.header-menu__menu:first-child {
  margin-top: 0;
}
.header-menu__menu li {
  list-style: none;
  margin-bottom: 18px;
}
.header-menu__menu li:last-child {
  margin-bottom: 0;
}
.header-menu__menu li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.header-menu__menu li a:hover {
  color: #FF931E;
}

.circle {
  position: absolute;
  width: 3600px;
  height: 3600px;
  border-radius: 50%;
  background: radial-gradient(50.09% 50.09% at 50.09% 49.91%, #8AB3F0 73.44%, #C1B8B3 100%);
  display: block;
  margin: auto;
  top: 300px;
  left: calc(50% - 1800px);
  right: 0;
  z-index: -1;
  transform: rotate(calc(var(--scroll) * 0.05deg)) translate3d(0px, 0px, -20px);
}
.circle__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.circle__element:first-child {
  opacity: 0;
}
.circle__element:first-child.view {
  opacity: 1;
}
.circle__element:nth-child(2) {
  transform: rotate(75deg);
}
.circle__element:nth-child(3) {
  transform: rotate(150deg);
}
.circle__element:nth-child(4) {
  transform: rotate(225deg);
}
.circle__element:nth-child(5) {
  transform: rotate(300deg);
}
.circle__num {
  opacity: 0;
  font-weight: 500;
  font-size: 230px;
  line-height: 276px;
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
  margin-top: -150px;
  transition: all 0.3s ease-in-out;
}
.circle__num.view {
  opacity: 1;
}
@media (max-width: 1199px) {
  .circle__num {
    font-size: 170px;
    line-height: 200px;
    margin-top: -105px;
  }
}
.circle__title {
  max-width: 1035px;
  width: 100%;
  margin: 0px auto;
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  color: #000000;
  margin-bottom: 40px;
  text-align: center;
  margin-top: 37px;
}
@media (max-width: 1199px) {
  .circle__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .circle__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.circle__title:first-child {
  margin-top: 160px;
}
@media (max-width: 1199px) {
  .circle__title:first-child {
    margin-top: 110px;
  }
}
@media (max-width: 1199px) {
  .circle__title {
    max-width: 630px;
  }
}
.circle__desc {
  max-width: 1035px;
  width: 100%;
  margin: 0px auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #A1A1B5;
  color: #000000;
  text-align: center;
}
@media (max-width: 568px) {
  .circle__desc {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 1199px) {
  .circle__desc {
    max-width: 630px;
  }
}/*# sourceMappingURL=style.css.map */