html {
  scroll-behavior: smooth;
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  scroll-behavior: smooth;
}

.form-control {
  position: relative;
}

.error {
  position: absolute;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  right: 5%;
  top: 2%;
}

.err {
  outline: red;
}

.first__screen .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.first__screen {
  background-image: url("./../images/bg-pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  padding: 15rem 0;
  background-size: cover;
}
.first__screen-content {
  max-width: 100rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.first__screen-heading {
  font-weight: 500;
  font-size: 4rem;
  line-height: 4.6rem;
  color: #fff;
}
.first__screen-title {
  font-family: "Bebas Neue";
  font-weight: 600;
  font-size: 7rem;
  line-height: 7rem;
  color: #fff;
}
.first__screen-for {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.container {
  padding: 0 20rem;
}

.screen-for__text {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 3.75rem;
  background: linear-gradient(91.48deg, rgba(147, 147, 147, 0.6) 17.7%, rgba(89, 89, 89, 0.6) 98.6%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 1.95rem 2.5rem;
  border-radius: 0.8rem;
  max-width: 56.8rem;
  color: #fff;
}
.screen-for__arrow {
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 11rem;
  background: linear-gradient(91.48deg, rgba(147, 147, 147, 0.6) 17.7%, rgba(89, 89, 89, 0.6) 98.6%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 0.8rem;
}
.screen-for__arrow img {
  width: 7.2rem;
  height: 7.2rem;
}

.form__box {
  max-width: 100rem;
  width: 100%;
}

.form-bg {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.form-control {
  width: 100%;
}

.form-input {
  padding: 1.95rem 1.2rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.875rem;
  color: rgba(0, 0, 0, 0.4);
}

.form__text {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 3.75rem;
  color: #fff;
  margin-bottom: 2.4rem;
}

.error {
  color: red;
  font-size: 1.2rem;
  display: none;
}

.agreement {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.agreement__text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.875rem;
  color: #fff;
  pointer-events: none;
}

.btn {
  font-family: "Bebas Neue";
  width: 100%;
  font-weight: 600;
  font-size: 4rem;
  line-height: 4rem;
  text-align: center;
  color: #252525;
  background-image: url("./../images/button.png");
  padding: 3.6rem 0;
  background-size: contain;
  background-repeat: no-repeat;
}

#agreement:checked {
  background: url("./../images/icons/checked.svg"), #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

#agreement {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: none;
}

.second__screen {
  padding: 5rem 0 3.8rem 0;
  background-image: url("./../images/bg-second.png");
  background-size: cover;
}
.second__screen-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.second__screen-heading {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.second__screen-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  font-size: 6.4rem;
  line-height: 6.4rem;
  color: #fff;
}
.second__screen-subtitle {
  font-weight: 400;
  font-size: 4rem;
  line-height: 4.68rem;
  color: #fff;
}
.second__screen-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.second__screen-item {
  background: linear-gradient(44.12deg, rgba(41, 41, 41, 0.8) 24.62%, rgba(112, 112, 112, 0.8) 151.59%);
  border: 1px solid #d7d7d7;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.6);
  border-radius: 0.8rem;
  padding: 3.5rem 2.2rem;
  font-weight: 400;
  font-size: 4rem;
  line-height: 4.68rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.second__screen-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  background-image: url("./../images/icons/icon.svg");
  width: 4.9rem;
  height: 4.9rem;
  transform: translate(-50%, -50%);
  background-size: cover;
}
.second__screen-item.mx {
  max-width: 61rem;
}
.second__screen-item.last {
  min-width: 35rem;
}

.second__row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.second__row-second {
  display: flex;
  gap: 4rem;
}

.link {
  font-family: "Bebas Neue";
  width: 100%;
  font-weight: 600;
  font-size: 4rem;
  line-height: 4rem;
  text-align: center;
  color: #252525;
  background-image: url("./../images/link.png");
  padding: 3.6rem 0;
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 68rem;
  margin: 0 auto;
  cursor: pointer;
}

@media (max-width: 968px) {
  .first__screen-content {
    max-width: none;
  }
  .first__screen-heading {
    font-size: 2.8rem;
    line-height: 3rem;
  }
  .first__screen-title {
    font-size: 3.6rem;
    line-height: 4rem;
    font-weight: 600;
    padding-right: 21.4rem;
  }
  .container {
    padding: 0 2rem;
  }
  .first__screen {
    padding: 12.4rem 0 8rem 0;
    background-image: url("./../images/bg-mob.png");
    background-position: right;
  }
  .screen-for__text {
    font-size: 2.2rem;
    line-height: 2.6rem;
    padding: 1rem 1.4rem;
  }
  .first__screen-for {
    max-width: 42.8rem;
  }
  .screen-for__arrow {
    width: 10.4rem;
    height: 7.4rem;
    padding: 1.4rem;
  }
  .screen-for__arrow img {
    width: 5.6rem;
    height: 5.6rem;
  }
  .form__text {
    font-size: 2.8rem;
    line-height: 2.75rem;
  }
  .btn {
    background-image: url("./../images/link.png");
    font-size: 4.8rem;
    line-height: 4.8rem;
    padding: 2.8rem 0 2.6rem 0;
  }
  .second__screen-title {
    font-size: 4.4rem;
    line-height: 4.8rem;
    font-weight: 500;
  }
  .second__screen-subtitle {
    font-size: 2.8rem;
  }
  .second__row,
  .second__row-second {
    flex-direction: column;
    gap: 4rem;
  }
  .second__screen-item {
    font-size: 2.4rem;
    line-height: 2.6rem;
    height: 13.2rem;
    padding: 0rem 2.8rem;
  }
  .second__screen-item::before {
    content: "";
    width: 5.4rem;
    height: 5.4rem;
  }
}
.footer__block.for-mobile {
  display: none;
}

.footer {
  font-size: 2rem;
  font-family: "Rubik", sans-serif;
  line-height: 1.1;
  background: #070707;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}

.footer__dogovor {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: end;
}

.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}

.footer a:hover {
  color: #7c66ff;
  border-color: #7c66ff;
}

.footer a svg {
  width: 2rem;
  fill: currentColor;
}

@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  margin-bottom: 2rem;
}

.footer__row:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  min-width: 19rem;
}

.footer__phone > div {
  min-width: 19rem;
}

.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #a3a3a3;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  align-items: center;
}

.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}

@media screen and (max-width: 1024px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .footer__mail a {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}
@media (max-width: 968px) {
  .footer__block.for-mobile {
    display: block;
  }
  .footer__block.for-desktop {
    display: none;
  }
  .form-separator-mobile {
    width: 100%;
    height: 1px;
    background-color: #d6c7c7;
  }
}/*# sourceMappingURL=style.css.map */