@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

:root {
  --main-color: #fff;
  --accent-color: #BAFD02;
  --dark-color: #060B0E;
}

body {
  background: var(--dark-color);
  font-family: "Unbounded", serif;
  font-style: normal;
  color: var(--main-color);
  font-weight: normal;
}

img {
  width: 100%;
  pointer-events: none;
}

.wrapper {
  overflow: hidden;
}

/* #region Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
} 

@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
} 
/* #endregion */

/* #region HEADER */
.header {
  padding: 20px 0;
  position: relative;
}

.header::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -20px;
  width: 390px;
  height: 486px; 
  background-color: #fff;
  box-shadow: 0 0 100px #fff;
  filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
  -moz-backdrop-filter: blur(120px);
  opacity: 0.2;
  z-index: -1;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

@media (max-width: 992px) {
  .header__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header__logo {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 375px) {
  .header__logo {
    font-size: 24px;
  }
}

.header__wrapper p {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 992px) {
  .header__wrapper p {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .header__wrapper p {
    font-size: 14px;
  }
}

.header__wrapper p span {
  display: block;
  width: 75px;
}

@media (max-width: 375px) {
  .header__wrapper p span {
    width: 65px;
  }
}
/* #endregion */

/* #region HERO */
.hero {
  padding: 120px 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 531px;
  height: 486px; 
  background-color: #fff;
  box-shadow: 0 0 100px #fff;
  filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
  -moz-backdrop-filter: blur(120px);
  opacity: .1;
  z-index: -1;
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 60px;
  }
}

.hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.hero__content {
  max-width: 625px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.hero__content h1 {
  color: #FFF;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-wrap: balance;
}

@media (max-width: 375px) {
  .hero__content h1  {
    font-size: 40px;
  }
}

.hero__content h1 span {
  color: var(--accent-color);
}

.hero__nums {
  display: flex;
  align-items: center;
  gap: 49px;
}

@media (max-width: 375px) {
  .hero__nums {
    gap: 25px;
  }
}

.hero__nums-img {
  display: flex;
  align-items: center;
}

.hero__nums-img img {
  width: 44px;
  height: 44px;
}

.hero__nums-img img:nth-child(2) {
  transform: translateX(-6px);
}

.hero__nums-img img:nth-child(3) {
  transform: translateX(-12px);
}

.hero__nums-img img:nth-child(4) {
  transform: translateX(-18px);
}

.hero__nums-info {
  display: flex;
  flex-direction: column;
}

.hero__nums-info span {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero__nums-info p {
  font-size: 8px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.hero__info {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.hero__info p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  line-height: normal;
  max-width: 476px;
  width: 100%;
  margin-left: -25px;
}

@media (max-width: 576px) {
  .hero__info p {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .hero__info p {
    font-size: 14px;
  }
}


.circle__wrapper {
  display: flex;
  align-items: center;
}

.circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.circle-arrow {
  border-radius: 26px;
  background: var(--accent-color);
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-36px);
}

.circle-arrow img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
/* #endregion */

/* #region FORM */
.form {
  max-width: 360px;
  width: 100%;
}

.form h2 {
  background: var(--accent-color);
  padding: 16px;
  color: var(--dark-color);
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form__fields {
  background: var(--main-color);
  padding: 28px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 576px) {
  .form__fields  {
    padding: 28px 20px;
  }
}

.form input {
  padding: 14px 24px;
  color: #757575;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border: 1px solid #CCC;
  outline: none;
}

.form button {
  background: var(--accent-color);
  border: none;
  padding: 12px;
  width: 100%;
  color: var(--dark-color);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s linear;
}

@media (hover: hover) {
  .form button:hover  {
    scale: 1.03;
  }
}

@media (hover: none) {
  .form button:active  {
    scale: 1.03;
  }
}
/* #endregion */

/* #region VIDEO */
.video {
  padding: 80px 0;
}

@media (max-width: 576px) {
  .video {
    padding: 0 0 40px;
  }
}

.video video {
  width: 100%;
}
/* #endregion */

/* #region ABOUT */
.about {
  padding-bottom: 80px;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -180px;
  width: 390px;
  height: 486px; 
  background-color: #fff;
  box-shadow: 0 0 100px #fff;
  filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
  -moz-backdrop-filter: blur(120px);
  opacity: 0.2;
  z-index: -1;
}

.about::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -200px;
  width: 431px;
  height: 386px; 
  background-color: #fff;
  box-shadow: 0 0 100px #fff;
  filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
  -moz-backdrop-filter: blur(120px);
  opacity: .1;
  z-index: -1;
}

.about p {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  line-height: 1.3;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto 80px;
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 13px;
}

@media (max-width: 992px) {
  .about__wrapper {
      flex-direction: column;
      gap: 20px;
  }
}

.about__box {
  width: calc((100% - 39px) / 4);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
}

@media (max-width: 992px) {
  .about__box {
      width: 100%;
      max-width: 100%;
  }
}

.about__box:nth-child(odd) {
  border: 1px solid #FFF;
  background: linear-gradient(122deg, rgba(194, 188, 188, 0.10) 30.74%, rgba(89, 84, 84, 0.10) 96.53%);
}

.about__box:nth-child(odd) h3 {
  color: var(--accent-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
  text-wrap: balance;
}

@media (max-width: 576px) {
  .about__box:nth-child(odd) h3 {
    margin-bottom: 20px;
  }
}

.about__box:nth-child(odd) span {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.about__box:nth-child(even) {
  border: 1px solid #FFF;
  background: var(--accent-color);
}

.about__box:nth-child(even) h3 {
  color: var(--dark-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
  text-wrap: balance;
}

@media (max-width: 576px) {
  .about__box:nth-child(even) h3 {
    margin-bottom: 20px;
  }
}

.about__box:nth-child(even) span {
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
/* #endregion */

/* #region OVERVIEW */
.overview {
  padding: 60px 0;
}

.overview__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

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

@media (max-width: 576px) {
  .overview__wrapper {
    gap: 24px;
  }
}

.overview__img {
  max-width: 400px;
}

.overview__descr {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overview__descr p {
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  line-height: 1.4;
}

/* #endregion */

/* #region START */
.start {
  padding: 60px 0;
  position: relative;
}

.start::before {
  content: '';
  position: absolute;
  left: -109px;
  top: -20px;
  width: 390px;
  height: 486px; 
  background-color: #fff;
  box-shadow: 0 0 100px #fff;
  filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
  -moz-backdrop-filter: blur(120px);
  opacity: 0.2;
  z-index: -1;
}

.start::after {
  content: '';
  position: absolute;
  right: -250px;
  bottom: -250px;
  width: 531px;
  height: 486px; 
  background-color: #fff;
  box-shadow: 0 0 100px #fff;
  filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
  -moz-backdrop-filter: blur(120px);
  opacity: .2;
  z-index: -1;
}

.start h2 {
  color: var(--accent-color);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 60px;
}

.start__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

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

.start__box {
  width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #FFF;
  background: linear-gradient(122deg, rgba(194, 188, 188, 0.10) 30.74%, rgba(89, 84, 84, 0.10) 96.53%);
  padding: 20px 24px;
}

@media (max-width: 992px) {
  .start__box {
      width: 100%;
      max-width: 100%;
  }
}

.start__box h3 {
  color: var(--accent-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 390px) {
  .start__box h3 {
    font-size: 20px;
  }
}

.start__box p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.start__box a {
  color: #000;
  border: 1px solid var(--accent-color);;
  background: var(--accent-color);
  padding: 15px 12px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all .2s linear;
}

@media (max-width: 390px) {
  .start__box a {
    padding: 15px 8px;
    font-size: 10px;
    gap: 6px;
  }
}

@media (hover: hover) {
  .start__box a:hover  {
    scale: 1.03;
  }
}

@media (hover: none) {
  .start__box a:active  {
    scale: 1.03;
  }
}

.start__box img {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  object-fit: contain;
}

@media (max-width: 390px) {
  .start__box img {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
  }
}

/* #endregion */

/* #region REGISTRATION */
.registration {
  padding: 60px 0;
}

.registration__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.registration__wrapper h3 {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-wrap: balance;
}
/* #endregion */

/* #region FOOTER */
.footer {
  padding: 40px 0;
}

.footer__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

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

.footer__logo {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  min-width: 190px;
}

.footer__header nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 26px;
}

@media (max-width: 992px) {
  .footer__header nav {
    justify-content: flex-start;
  }
}

.footer__header nav a {
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all .2s linear;
}

@media (hover: hover) {
  .footer__header nav a:hover  {
    opacity: .7;
  }
}

@media (hover: none) {
  .footer__header nav a:active  {
    opacity: .7;
  }
}

.footer__bottom {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: right;
}

@media (max-width: 992px) {
  .footer__bottom {
    text-align: left;
  }
}

/* #endregion */