:root {
  --color-1: #003867;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Asap', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #000000CC;
  background-color: #F4F6FF;
}

main {
  overflow: hidden;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 102px;
  line-height: .97;
  font-weight: 700;
  margin: 19px 0 19px -5px;
}

h2 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-1);
  text-align: center;
  letter-spacing: -.5px;
  margin: 0 0 20px;
}

.subtitle {
  font-size: 32px;
  text-align: center;
  margin: 0 auto;
}

.btn {
  --text-color: #fff;
  --before-bg: linear-gradient(8.64deg, #FF492C 33.04%, #FF880F 74.86%);

  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: .3px;
  column-gap: 15px;
  text-decoration: none;
  max-width: var(--btn-width);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  border-radius: 100px;
  padding: 16px 20px;
  position: relative;
  transition: color .3s;
}

.btn:before,
.btn:after {
  content: '';
  position: absolute;
  border-radius: 100px;
}

.btn:before {
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--before-bg);
  transition: background .3s;
}

.btn:after {
  z-index: 1;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(8.64deg, #FF492C 33.04%, #FF880F 74.86%);
}

.btn svg,
.btn span {
  z-index: 3;
}

.btn svg {
  fill: var(--text-color);
}

.container {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}

.bg-big {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1690px;
  translate: -50% 0;
  z-index: -1;
  border-radius: 16px;
  overflow: hidden;
}

.bg-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fs__wrapper {
  position: relative;
  z-index: 1;
  padding: 53px 0 58px;
  margin-top: 40px;
}

.fs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  color: #fff;
}

.fs__content {
  flex: 0 0 502px;
}

.fs__logo {
  margin-left: -13px;
  height: auto;
}

.fs__subtitle {
  font-size: 32px;
  line-height: 1.3;
  margin: 0;
}

.fs__form {
  border-radius: 24px;
  padding: 46px 46px 37px;
  background-color: #fff;
  box-shadow: 0 12px 80px 0 #00000012;
  max-width: 447px;
}

.fs__form-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-1);
  text-align: center;
  margin: 0 0 -6px;
}

.steps__wrapper {
  margin-top: 87px;
}

.steps {
  margin-top: 49px;
  display: flex;
}

.step {
  flex: 1;
  padding: 5px 30px;
  border-left: 2px solid #AECEE8;
}

.step__title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-1);
  margin: 0 0 26px;
  max-width: 250px;
}

.step__list {
  max-width: 270px;
}

.step__list li {
  padding-left: 36px;
  font-size: 18px;
  position: relative;
}

.step__list li:not(:last-child) {
  margin-bottom: 25px;
}

.step__list li:before {
  content: url('./images/bullet.svg');
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.step__list li strong {
  font-weight: 600;
}

.steps__btn {
  --btn-width: 483px;
  --bg-hover: #F4F6FF;

  margin: 54px auto 0;
}

.utp__wrapper {
  margin-top: 113px;
  position: relative;
  padding: 95px 0;
}

.utp__wrapper .bg-big {
  background-color: #fff;
}

.utp__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 21px;
}

.utp__logos span {
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  color: var(--color-1);
  margin: -12px 18px 0 16px;
}

.utp__list {
  display: flex;
  justify-content: center;
  column-gap: 47px;
  margin-top: 68px;
}

.utp__item {
  flex: 1;
  text-align: center;
}

.utp__item-icon {
  max-width: 115px;
  margin: 0 auto;
  position: relative;
}

.utp__item-icon:before,
.utp__item-icon:after {
  content: url('./images/utp-decor-line.svg');
  position: absolute;
  z-index: -1;
}

.utp__item-icon:before {
  top: -20px;
  left: -20px;
}

.utp__item-icon:after {
  bottom: -16px;
  right: -20px;
  rotate: 180deg;
}

.utp__item-icon img {
  position: relative;
  z-index: 1;
}

.utp__item-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-1);
  margin: 36px auto 0;
}

.utp__item:nth-child(1) .utp__item-title {
  max-width: 250px;
}

.utp__item:nth-child(2) .utp__item-title {
  max-width: 260px;
}

.trusted__wrapper {
  margin-top: 85px;
}

.trusted__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.trusted__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-radius: 20px;
  padding: 14px;
  background-color: #fff;
  box-shadow: 0 12px 80px 0 #00000012;
}

.trusted__awards {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  margin-top: 43px;
}

.cta__wrapper {
  margin-top: 90px;
}

.cta {
  display: grid;
  grid-template-columns: 490px 249px;
  grid-template-areas:
    'title btn'
    'subtitle btn';
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 40px;
  padding: 50px 60px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0A083B 31.73%, #040099 65.87%, #0A083B 93.27%);
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta__title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.8px;
  margin: 0 0 20px;
  grid-area: title;
}

.cta__subtitle {
 font-size: 20px;
  line-height: 1.25;
  margin: 0;
  grid-area: subtitle;
}

.cta__btn {
  --btn-width: 249px;
  --bg-hover: linear-gradient(83deg, #07036e 33.04%, #09083b 74.86%);

  margin-top: 19px;
  column-gap: 10px;
  grid-area: btn;
}

.cta__image {
  position: absolute;
  top: -72px;
  right: 85px;
  z-index: -1;
}

.footer__wrapper {
  padding: 88px 0 50px;
}

.footer__line {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}

.footer__logo {
  transition: opacity .3s;
}

.footer__awards {
  display: flex;
  column-gap: 11px;
}

.footer__top-middle {
  position: relative;
  top: 40px;
  left: 40px;
}

.footer__top-middle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background-color: #AECEE8;
  width: 1400px;
  translate: -50% -50%;
  margin-top: -2px;
  z-index: -1;
}

.footer__bottom {
  margin-top: 45px;
}

.footer__copyright {
  font-size: 14px;
  color: #5A5A5A;
  margin: 0;
}

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

.footer__nav-item {
  font-size: 14px;
  color: #282828;
  transition: opacity .3s;
}


@media (min-width: 1024px) {
  .btn:hover {
    --text-color: #FF880F;
    --before-bg: var(--bg-hover);
  }

  .footer__logo:hover {
    opacity: .7;
  }

  .footer__nav-item:hover {
    opacity: .7;
    text-decoration: none;
  }
}

@media (min-width: 1550px) {
  .step:nth-child(1) {
    flex-basis: 368px;
  }

  .step:nth-child(2) {
    flex-basis: 369px;
  }

  .step:nth-child(3) {
    flex-basis: 349px;
  }

  .step:nth-child(3) .step__list {
    max-width: 245px;
  }

  .step:nth-child(4) {
    flex-basis: 313px;
    padding-right: 0;
  }

  .step:nth-child(4) .step__title {
    max-width: 100%;
  }

  .footer__awards {
    margin-right: 3px;
  }
}

@media (max-width: 1730px) {
  .bg-big {
    max-width: calc(100vw - 40px);
  }
}

@media (max-width: 1480px) {
  .footer__top-middle  {
    left: 0;
  }

  .footer__top-middle:before {
    width: calc(100vw - 80px);
    margin-left: 37px;
  }

  .footer__top-middle img {
    width: 480px;
    height: auto;
  }
}

@media (max-width: 1366px) {
  h1 {
    font-size: 85px;
  }

  h2 {
    font-size: 46px;
  }

  .subtitle {
    font-size: 28px;
  }

  .fs__subtitle {
    font-size: 27px;
  }

  .step {
    padding: 5px 15px;
  }

  .utp__list {
    column-gap: 25px;
  }

  .utp__item-title {
    font-size: 22px;
  }

  .trusted__list {
    flex-wrap: wrap;
    max-width: 920px;
    margin: 50px auto 0;
  }

  .trusted__item {
    flex: 1 1 205px;
    max-width: 205px;
  }

  .cta {
    justify-content: flex-start;
  }

  .cta__btn {
    margin-top: auto;
  }

  .cta__image {
    right: -230px;
  }
}

@media (max-width: 1280px) {
  .cta__image {
    top: -112px;
    right: -320px;
  }
}

@media (max-width: 1023px) {
  h1 {
    font-size: 65px;
  }

  .btn {
    padding: 12px 15px;
    font-size: 20px;
  }

  .fs__wrapper {
    padding: 33px 0;
    margin-top: 20px;
  }

  .fs__content {
    flex-basis: 320px;
  }

  .fs__logo {
    width: 370px;
  }

  .fs__subtitle {
    font-size: 20px;
  }

  .fs__form {
    padding: 43px 30px 40px;
  }

  .fs__form-title {
    font-size: 28px;
  }

  .steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .step {
    flex: 0 0 45%;
    padding: 10px 20px;
  }

  .step__title,
  .step__list {
    max-width: 100%;
  }

  .utp__list {
    flex-wrap: wrap;
    row-gap: 50px;
  }

  .utp__item {
    flex: 0 0 45%;
  }

  .cta {
    background: linear-gradient(90deg, #0A083B 47.73%, #040099 81.87%, #0A083B 103.27%);
    grid-template-columns: 340px 249px;
    justify-content: space-between;
    padding: 40px;
  }

  .cta__title {
    font-size: 36px;
  }

  .cta__subtitle {
    font-size: 18px;
  }

  .cta__btn {
    --btn-width: 225px;
  }

  .footer__logo svg {
    width: 153px;
    height: auto;
  }

  .footer__top-middle img {
    width: 320px;
  }

  .footer__awards img {
    width: auto;
    height: 50px;
  }
}

@media (max-width: 840px) {
  .fs__wrapper {
    padding-bottom: 0;
  }

  .fs__wrapper .bg-big {
    height: 786px;
  }

  .fs {
    display: block;
    text-align: center;
  }

  .fs__logo,
  h1 {
    margin-left: 0;
  }

  .fs__subtitle {
    max-width: 400px;
    margin: 0 auto;
  }

  .fs__form {
    margin: 37px auto 0;
  }
}

@media (min-width: 768px) and (max-width: 840px) {
  .footer__line {
    column-gap: 15px;
  }

  .footer__logo svg {
    width: 130px;
  }

  .footer__awards img {
    height: 45px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }

  .container {
    padding: 0 20px;
  }

  .subtitle {
    font-size: 22px;
  }

  .fs {
    padding: 0 11px;
  }

  .steps__wrapper {
    margin-top: 60px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 9px;
  }

  .step {
    flex: unset;
    max-width: 380px;
    padding: 40px 0 34px;
    border-left: none;
  }

  .step:not(:last-of-type) {
    border-bottom: 2px solid #AECEE8;
  }

  .utp__wrapper {
    margin-top: 80px;
    padding: 56px 0 53px;
  }

  .utp__wrapper h2,
  .utp__wrapper .subtitle {
    padding: 0 18px;
  }

  .utp__logos-first {
    width: 130px;
    height: auto;
  }

  .utp__logos span {
    font-size: 34px;
    margin: -9px 11px 0 11px;
  }

  .utp__logos-second {
    width: 190px;
    height: auto;
  }

  .cta {
    display: block;
    padding-bottom: 260px;
    background: linear-gradient(164.76deg, #0A083B 24.22%, #040099 76.54%, #0A083B 105.09%);
  }

  .cta__btn {
    margin: 30px auto 0;
  }

  .cta__image {
    right: unset;
    top: unset;
    bottom: -90px;
    left: 50%;
    translate: -50% 0;
    width: 690px;
    height: auto;
    rotate: -12deg;
  }

  .footer__wrapper {
    padding: 60px 0 40px;
  }

  .footer__line {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }

  .footer__top-middle {
    top: 0;
  }

  .footer__top-middle:before {
    margin-left: 0;
    width: calc(100vw - 40px);
  }

  .footer__nav {
    column-gap: 15px;
  }
}

@media (max-width: 576px) {
  h1 {
    margin: 15px 0 15px -3px;
  }

  .btn {
    font-size: 22px;
    padding: 10px;
  }

  .fs__subtitle {
    line-height: 1.2;
  }

  .bg-big {
    max-width: calc(100vw - 22px);
    border-radius: 20px;
  }

  .fs__wrapper {
    margin-top: 12px;
  }

  .fs__logo {
    margin-left: -21px;
  }

  .fs__subtitle {
    max-width: 320px;
  }

  .fs__form-title {
    font-size: 32px;
  }

  .steps__wrapper {
    margin-top: 49px;
  }

  .step {
    max-width: 324px;
  }

  .steps__btn {
    --btn-width: 326px;
    margin-top: 10px;
  }

  .steps__btn span {
    flex: 0 1 183px;
    text-align: center;
  }

  .steps__btn svg {
    position: relative;
    right: -10px;
  }

  .utp__wrapper {
    margin-top: 50px;
  }

  .utp__wrapper h2 {
    line-height: 1.07;
  }

  .utp__logos-first {
    width: 108px;
  }

  .utp__logos-second {
    width: 151px;
  }

  .utp__item {
    flex-basis: 100%;
  }

  .utp__item-title {
    font-size: 24px;
  }

  .utp__list {
    row-gap: 70px;
  }

  .utp__item:nth-child(1) .utp__item-title,
  .utp__item:nth-child(2) .utp__item-title {
    position: relative;
    left: -7px;
  }

  .utp__item:nth-child(3) .utp__item-title {
    max-width: 312px;
  }

  .trusted__wrapper {
    margin-top: 50px;
  }

  .trusted__list {
    gap: 12px;
    margin: 33px -6px 0;
  }

  .trusted__item {
    flex-basis: 175px;
    max-width: 175px;
    border-radius: 16px;
    height: 84px;
  }

  .trusted__item:nth-child(1) img {
    width: 112px;
  }

  .trusted__item:nth-child(2) img {
    width: 110px;
  }

  .trusted__item:nth-child(3) img {
    width: 50px;
  }

  .trusted__item:nth-child(4) img {
    width: 138px;
  }

  .trusted__item:nth-child(5) img {
    width: 118px;
  }

  .trusted__item:nth-child(6) img {
    width: 85px;
  }

  .trusted__awards {
    gap: 27px;
    margin-top: 36px;
  }

  .trusted__awards img {
    width: auto;
    height: 72px;
  }

  .cta__wrapper {
    margin-top: 53px;
  }

  .cta {
    padding: 40px 20px 288px;
    border-radius: 16px;
    margin: 0 -10px;
  }

  .cta__title {
    font-size: 38px;
    line-height: 1.05;
  }

  .cta__subtitle {
    font-size: 22px;
    line-height: 1.2;
    margin-right: 1px;
  }

  .cta__btn {
    --btn-width: 325px;

    margin-top: 23px;
    padding: 15px;
  }

  .cta__image {
    width: 687px;
    bottom: -67px;
    margin-left: -5px;
    rotate: -5deg;
  }

  .footer__wrapper {
    padding: 44px 0 40px;
  }

  .footer__line {
    row-gap: 15px;
  }

  .footer__top-middle:before {
    height: 1px;
    width: calc(100vw - 20px);
  }

  .footer__top-middle img {
    width: 209px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    margin-top: 27px;
  }

  .footer__nav-item {
    font-size: 12px;
  }

  .footer__copyright {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 389px) {
  .trusted__awards {
    flex-wrap: wrap;
  }
}