@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url(https://fonts.googleapis.com/css?family=Anton:regular);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}

textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header {
  position: relative;
  padding-block: 28px;
}
.header__inner {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 56px;
  background: #0004ff;
}
.header__logo {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}
.home {
  background: #000 url(../images/bg.png) center / cover no-repeat;
}
.home__inner {
  padding-block: 125px 190px;
}
.home__title {
  color: #fff;
  text-align: center;
  font-family: Anton;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.home__text {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.home__link {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 24px 80px;
  border-radius: 20px;
  background: #0004ff;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 26.4px */
}
.b1__title {
  color: #0004ff;
  text-align: center;
  font-family: Anton;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.b1__subtitle {
  color: #474747;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}

.b1__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.b1__img {
  margin-inline: auto;
  max-width: 238px;
  width: 100%;
}
.b1__label {
  color: #474747;
  text-align: center;
  font-family: Anton;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.b1__text {
  color: #474747;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 357px;
  width: 100%;
  margin: 0 auto 60px;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #474747;
  text-align: center;
}
.form input,
.form textarea {
  display: block;
  width: 100%;
  padding: 10px;

  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: rgba(0, 0, 0, 0.1);
}
.form textarea {
  height: 100px;
}
.form button {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 20px;
  background: #0004ff;
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
}
.contact__text {
  color: #474747;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer {
  padding-block: 20px 55px;
}

.footer__inner {
  border-radius: 48px;
  background: #0004ff;
  flex-wrap: wrap;
  padding: 20px 40px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__links a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
  text-transform: uppercase;
}
.footer__copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .footer,
  .header {
    padding: 20px 0;
    background-color: #0004ff;
  }
  .footer__inner,
  .header__inner {
    padding: 0;
    border: initial;
    background: transparent;
  }
  .footer__links,
  .footer__inner {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__inner {
    flex-direction: column-reverse;
  }
  .home__inner {
    padding-block: 60px;
  }
}
@media (max-width: 420px) {
  .home__link {
    padding: 16px 42px;
  }
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #474747;
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.terms p {
  color: #474747;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1000px) {
  .terms__title {
    font-size: 32px;
  }
}
/* thank-page */
.th__title {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  color: #474747;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.th__btn {
  display: block;
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
  background-color: #0004ff;
  padding: 18px 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 768px) {
  .th__title {
    font-size: 32px;
  }
}
