:root {
  --fs-space: 40px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Asap', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1590px;
  width: 100%;
  margin: 0 auto;
  padding: 0 75px;
}

.fs__section {
  padding-top: var(--fs-space);
  padding-bottom: var(--fs-space);
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
}

.fs__bg-wrapper {
  position: absolute;
  top: var(--fs-space);
  left: var(--fs-space);
  right: var(--fs-space);
  bottom: var(--fs-space);
  overflow: hidden;
  border-radius: 16px;
  z-index: -1;
}

.fs__bg {
  object-fit: cover;
  object-position: left;
  width: 100%;
  height: 100%;
}

.fs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 112px 0 108px;
}

.fs__content {
  flex: 0 1 720px;
  color: #fff;
}

.fs__logo {
  margin-bottom: 35px;
}

h1 {
  font-size: 90px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 25px;
}

.fs__subtitle {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 25px;
}

.fs__text {
  font-size: 22px;
  margin: 0;
}

.fs__form {
  flex: 0 0 430px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 80px 0 #00000012;
  padding: 33px 32px 28px;
}

.fs__form-title {
  font-size: 26px;
  font-weight: 600;
  color: #1C3C70;
  text-align: center;
  margin: 0 0 16px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  font-size: 14px;
  font-weight: 500;
  color: #6D6D6D;
  letter-spacing: .1px;
}

.footer__nav {
  display: flex;
  column-gap: 35px;
}

.footer__nav-link {
  color: #6D6D6D;
  text-decoration: underline;
}

.footer__copyright {
  margin: 0;
}

@media (min-width: 1921px) {
  .fs__bg-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(272.09deg, rgba(5, 37, 98, 0.65) -0.7%, rgba(6, 51, 148, 0.65) -0.7%, rgba(21, 71, 199, 0.455) 35.03%, rgba(69, 156, 255, 0.455) 74.95%, rgba(37, 126, 242, 0.195) 108.57%);
  }
}

@media (min-width: 1024px) {
  .footer__nav-link:hover {
    text-decoration: none;
  }
}

@media (max-width: 1366px) {
  :root {
    --fs-space: 20px;
  }

  .fs__content {
    flex-basis: 640px;
  }

  h1 {
    font-size: 84px;
    margin-bottom: 40px;
  }

  .fs__subtitle {
    font-size: 32px;
  }

  .footer {
    padding: 39px 0 33px;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 53px;
  }

  .fs__subtitle {
    font-size: 29px;
  }

  .fs__text {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 60px;
  }

  .fs {
    padding: 40px 0;
    display: block;
  }

  .fs__logo {
    margin-bottom: 45px;
    width: 340px;
    height: auto;
  }

  h1 {
    margin-bottom: 23px;
  }

  .fs__subtitle {
    margin-bottom: 23px;
  }

  .fs__form {
    max-width: 430px;
    margin: 40px auto 0;
  }

  .footer {
    flex-direction: column;
    padding: 30px 0 24px;
  }

  .footer__nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 37px;
  }
}

@media (max-width: 576px) {
  :root {
    --fs-space: 10px;
  }

  .container {
    padding: 0 30px;
  }

  .fs {
    padding: 52px 0 45px;
  }

  .fs__logo {
    width: 206px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: 51px;
    margin-bottom: 19px;
  }

  .fs__subtitle {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .fs__form-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .footer__nav {
    margin-bottom: 28px;
  }
}