:root {
  --main-bg-color: rgba(14, 16, 21, 1);
  --conteiner-padding: 10px;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: Open Sans;
  src: url('./../fonts/OpenSans-Regular.ttf');
}

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

body {
  background-color: var(--main-bg-color);
  color: white;
  position: relative;
}
.background-wrap {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-bg-color);
  z-index: -1;
}
.background {
  height: 30%;
  background: var(--main-bg-color);
}
.goToMainText {
  color: #fff;
  font-family: Open Sans, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.left {
  background: radial-gradient(
    800px 500px at center left,
    rgba(88, 139, 168, 0.6),
    rgba(114, 89, 165, 0.2) 49.32%,
    rgba(144, 32, 163, 0) 89.17%
  );
}

.right {
  background: radial-gradient(
    1000px 500px at center right,
    rgba(88, 139, 168, 0.8),
    rgba(114, 89, 165, 0.72) 49.32%,
    rgba(144, 32, 163, 0) 89.17%
  );
}
.arrow {
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.goToMain {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 30px;
}
.formSection {
  margin-top: 140px;
}
.topSection {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.topBigBlock {
  margin-bottom: 100px;
}

.topBig {
  color: #fff;
  font-family: Open Sans;
  font-size: 85px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.topBigSub {
  color: #f9f9f9;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.topFact {
  display: flex;
  gap: 30px;
}
.topFactText {
  color: #fff;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.topLeft {
  width: 30%;
}

.topRight {
  width: 60%;
  margin-top: 150px;
}

.topImgWrapper {
  position: relative;
}

.topImg2 {
  position: absolute;
  top: -150px;
  left: 100px;
  z-index: -1;
}

.purpureCircle {
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  background-color: #7a77ff;
  border-radius: 50%;
  filter: drop-shadow(0px 0px 8px #7a77ff);
}

.techStripe {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.techStripe > .telegrapf {
  width: 264px;
  height: 86px;
}
.techStripe > .telegrapf img {
  width: 257.18px;
  height: 57.64px;
  top: 14.28px;
  left: 3.64px;
}
.react {
  width: 81.51px;
  height: 82.17px;
  border-radius: 11px;
}

.facts {
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 140px;
  gap: 20px;
  color: #fff;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.stripeWrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 100%;
}

.fn {
  margin-top: 140px;
  display: flex;
  justify-content: center;
  gap: 85px;
}
.fnLeft {
  width: 30%;
}
.fnHeader {
  color: #fff;
  font-family: Open Sans;
  font-size: 41px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.682%;
  margin-bottom: 75px;
}
.factText {
  color: #fff;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.fnFactsWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.fnFactsWrapper2 {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fnImgWrapper {
  position: relative;
  margin-top: 200px;
}
.fnImg1 {
}

.fnImg2 {
  position: absolute;
  top: -200px;
  left: 170px;
  z-index: -1;
}

.fnImg3 {
}

.fnImg4 {
  position: absolute;
  top: -200px;
  left: 120px;
  z-index: -1;
}

.fnRight {
  width: 60%;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 var(--conteiner-padding) 0 var(--conteiner-padding);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 var(--conteiner-padding) 0 var(--conteiner-padding);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 992px;
    padding: 0 var(--conteiner-padding) 0 var(--conteiner-padding);
  }

  .topImg1 {
    width: 500px;
  }
  .topImg2 {
    width: 520px;
    position: absolute;
    top: -180px;
    left: 70px;
    z-index: -1;
  }
  .fnImg2 {
    width: 520px;
    position: absolute;
    top: -200px;
    left: 70px;
    z-index: -1;
  }
  .fnImg3 {
    width: 500px;
  }
  .fnImg4 {
    width: 520px;
    position: absolute;
    top: -180px;
    left: 70px;
    z-index: -1;
  }
  .topBig {
    font-size: 65px;
  }
  .topBigBlock {
    margin-bottom: 50px;
  }
  .fnImg1 {
    width: 470px;
  }
  .fnFactsWrapper {
    margin-top: 20px;
  }
  .fnHeader {
    margin-bottom: 50px;
  }
  .fnFactsWrapper {
    gap: 20px;
  }
  .fnFactsWrapper2 {
    margin-top: 45px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 768px;
    padding: 0 var(--conteiner-padding) 0 var(--conteiner-padding);
  }
  .topImg2 {
    position: relative;
    top: 0px;
    left: 0px;
    width: 450px;
  }
  .topImg1 {
    width: 450px;
  }
  .topBig {
    font-size: 45px;
  }
  .topRight {
    margin-top: 0px;
  }
  .topBigBlock {
    margin-bottom: 55px;
  }

  .fn {
    gap: 50px;
    margin-top: 60px;
  }
  .fnHeader {
    margin-bottom: 40px;
  }
  .fnImgWrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
  }
  .fnFactsWrapper {
    margin-top: 0px;
    gap: 25px;
  }
  .fnFactsWrapper2 {
    margin-top: 0px;
    gap: 25px;
  }
  .fnImg1 {
    width: 450px;
  }
  .fnImg2 {
    width: 450px;
    position: relative;
    top: -0px;
    left: 0px;
    z-index: -1;
  }
  .fnImg3 {
    width: 450px;
  }
  .fnImg4 {
    width: 450px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 420px;
    padding: 0 var(--conteiner-padding) 0 var(--conteiner-padding);
  }
  .topImg2 {
    position: relative;
    top: 0px;
    left: 0px;
    width: 400px;
  }
  .topImg1 {
    width: 400px;
  }
  .topSection {
    flex-direction: column;
    gap: 30px;
  }
  .topRight {
    margin-top: 0px;
  }
  .topLeft {
    width: 100%;
  }
  .topBigBlock {
    margin-bottom: 40px;
  }
  .topBig {
    text-align: center;
  }
  .topBigSub {
    text-align: center;
  }
  .fn {
    flex-direction: column;
    margin-top: 10px;
    gap: 20px;
  }
  .fnHeader {
    margin-bottom: 30px;
    text-align: center;
  }
  .fnLeft {
    width: 100%;
  }
  .fnRight {
    width: 100%;
  }
  .fnImg1 {
    width: 400px;
  }
  .fnImg2 {
    width: 400px;
    position: relative;
    top: -0px;
    left: 0px;
    z-index: -1;
  }
  .fnImg3 {
    width: 400px;
  }
  .fnImg4 {
    width: 400px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: -1;
  }
  .fnImgWrapper {
    margin-top: 10px;
  }
  .facts {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 419px) {
  .container {
    max-width: 320px;
    padding: 0 var(--conteiner-padding) 0 var(--conteiner-padding);
  }
  .topBig {
    font-size: 50px;
  }
  .topImg2 {
    position: relative;
    top: 0px;
    left: 0px;
    width: 300px;
  }
  .topImg1 {
    width: 300px;
  }
  .facts {
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 20px;
  }

  .fnImg1 {
    width: 300px;
  }
  .fnImg2 {
    width: 300px;
    position: relative;
    top: -0px;
    left: 0px;
    z-index: -1;
  }
  .fnImg3 {
    width: 300px;
  }
  .fnImg4 {
    width: 300px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: -1;
  }
}
/* FOOTER */
.parent-container {
  display: flex;
  width: 100%;
  height: fit-content;
  justify-content: space-between;
}
.parent-container {
  gap: 10%;
  margin-bottom: 30px;
}
.child-container {
  width: 45%;
  height: 63px;
  font-family: 'Open Sans';
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;

  color: rgba(180, 180, 180, 1);
}
