@charset "UTF-8";
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  font-family: Montserrat;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: rgba(255, 255, 255, 0.0117647059);
}

input,
button,
textarea {
  font-family: Montserrat;
}

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

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
@media (max-width: 1199.98px) {
  h3 {
    line-height: 115% !important;
  }
}

.header__nav {
  position: relative;
  justify-content: center;
}

.nav__icon {
  display: none;
}

.nav__icon.active::before {
  transform: rotate(45deg);
  top: 9px;
}

.nav__icon.active::after {
  transform: rotate(-45deg);
  bottom: 9px;
}

.nav__icon.active span {
  transform: scale(0);
}

@media (max-width: 767.98px) {
  body.lock {
    overflow: hidden;
  }
  .nav__body {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-1000px);
    background-color: rgb(0, 0, 0);
    transition: all 0.3s ease;
  }
  .nav__body.active {
    transform: translate(0);
  }
}
@media (max-width: 767.98px) {
  .nav__icon {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 4;
  }
  .nav__icon::before,
  .nav__icon::after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease;
  }
  .nav__icon::before {
    top: 0;
  }
  .nav__icon::after {
    bottom: 0;
  }
  .nav__icon span {
    top: 9px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
}
.nav__list {
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 4;
  font-size: 18px;
}

@media (max-width: 767.98px) {
  .nav__list {
    align-items: center;
    padding-top: 90px;
    flex-direction: column;
  }
}
.nav__link {
  color: white;
}

.checkbox {
  display: none;
}

.conf-checbox {
  display: flex;
  gap: 15px;
  cursor: pointer;
}

.fake {
  margin: -10px 0px 0px 0px;
  display: inline-block;
  max-width: 20px;
  width: 100%;
  height: 20px;
  border: 3px solid rgb(70, 53, 243);
  border-radius: 2px;
  position: relative;
}

.fake:hover {
  cursor: pointer;
}

.fake::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: rgb(70, 53, 243);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.text {
  display: inline;
  margin: -15px 0px 0px 0px;
  font-size: 12px;
  line-height: 150%;
  color: #6D737A;
  max-width: 415px;
}

.checkbox:checked + .fake::before {
  opacity: 1;
}

.conf {
  font-weight: 400;
  color: #6D737A;
  transition: color 0.3s ease;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
}

.conf:hover {
  color: rgb(70, 53, 243);
}

.header__nav {
  position: relative;
  justify-content: center;
}

.header {
  background: url(../images/main-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.header__container {
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}
.header__top {
  align-items: center;
  display: flex;
  padding-top: 50px;
}
@media (max-width: 1199.98px) {
  .header__top {
    justify-content: space-between;
  }
}
.header__nav {
  margin: 0px 0px 0px 152px;
}
@media (max-width: 479.98px) {
  .header__nav {
    margin: 0;
  }
}
.header__body {
  margin: 96px 0px 0px 0px;
  display: flex;
  gap: 80px;
}
@media (max-width: 1199.98px) {
  .header__body {
    margin: 50px 0px 30px 0px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.header__form {
  max-width: 562px;
}
.header__title {
  font-weight: 600;
  font-size: 56px;
  line-height: 125%;
  color: #FFFFFF;
}
@media (max-width: 1199.98px) {
  .header__title {
    font-size: 46px;
  }
}
@media (max-width: 767.98px) {
  .header__title {
    font-size: 40px;
  }
}
@media (max-width: 479.98px) {
  .header__title {
    font-size: 30px;
  }
}
.header__subtitle {
  margin: 20px 0px 0px 0px;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1199.98px) {
  .header__img {
    display: none;
  }
}
.header__img img {
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width)/attr(height);
}

.nav__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.consult-form {
  margin: 34px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.consult-form input {
  max-width: 422px;
  width: 100%;
  height: 58px;
  padding-left: 15px;
  background: transparent;
  border: 1.2px solid #FFFFFF;
  border-radius: 4px;
  color: #FFFFFF;
}

.consult-btn {
  margin: 35px 0px 0px 0px;
  max-width: 422px;
  height: 58px;
  width: 100%;
  border-radius: 10px;
  background-color: rgb(70, 53, 243);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  transition: all 0.3s ease;
}
.consult-btn:hover {
  background-color: rgb(57, 44, 202);
}

.consult-btn[disabled] {
  background-color: rgba(69, 53, 243, 0.118);
  cursor: not-allowed;
}

.consult-btn[disabled]:hover {
  background-color: rgba(69, 53, 243, 0.118);
}

[class$=__container] {
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}

.info__top {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199.98px) {
  .info__top {
    align-items: center;
  }
}
.info__title {
  margin: 80px 0px 0px 0px;
  font-weight: 700;
  font-size: 35px;
  line-height: 154%;
  max-width: 870px;
  color: #0D082C;
}
@media (max-width: 1199.98px) {
  .info__title {
    margin: 50px 0px 0px 0px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .info__title {
    margin: 30px 0px 0px 0px;
  }
}
.info__text {
  margin: 30px 0px 0px 0px;
  display: inline-block;
  max-width: 798px;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: rgba(13, 8, 44, 0.6);
}
.info__cards {
  margin: 30px 0px 0px 0px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .info__cards {
    justify-content: center;
  }
}
.info__card {
  max-width: 360px;
  width: 100%;
}
.info__when {
  margin: 50px 0px 0px 0px;
}
@media (max-width: 1199.98px) {
  .info__when {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.info__when ol {
  margin: 25px 0px 0px 0px;
}
.info__when ol li {
  font-weight: 600;
  font-size: 18px;
  line-height: 150.9%;
  color: rgba(13, 8, 44, 0.6);
  margin: 0px 0px 0px 45px;
}
@media (max-width: 767.98px) {
  .info__when ol li {
    margin: 0 0 0 25px;
  }
}
.info__method {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  margin: 100px 0px 0px 0px;
}
.info__method p {
  font-size: 25px;
  line-height: 30px;
  max-width: 800px;
  color: #000000;
}
.card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  margin: 15px 0px 0px 0px;
  color: #0D082C;
}
.card__text {
  margin: 15px 0px 0px 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: rgba(13, 8, 44, 0.6);
}

.when__title {
  margin: 0px 0px 0px 30px;
  font-weight: 700;
  font-size: 30px;
  line-height: 180%;
  color: #0D082C;
}
@media (max-width: 1199.98px) {
  .when__title {
    text-align: center;
    margin: 0;
  }
}

.company {
  margin: 50px 0px 0px 0px;
}
.company__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 180%;
  color: #0D082C;
}
@media (max-width: 1199.98px) {
  .company__title {
    text-align: center;
  }
}
.company__items {
  margin: 25px 0px 0px 0px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .company__items {
    justify-content: center;
  }
}
.company__item {
  max-width: 360px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.company__item:nth-child(1) .item__top {
  background-color: #4635F3;
}
.company__item:nth-child(2) .item__top {
  background-color: #F5AC76;
}
.company__item:nth-child(3) .item__top {
  background-color: #1195BE;
}
.company__text {
  margin: 25px 0px 0px 0px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150.9%;
  max-width: 750px;
  color: #0D082C;
}

.item__top {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
  padding: 15px 0;
}
.item__text {
  padding: 25px 39px 22px 39px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #000000;
}

.how__title {
  margin: 50px 0px 0px 0px;
  font-weight: 700;
  font-size: 30px;
  line-height: 115%;
  color: #0D082C;
}
.how__text {
  margin-top: 25px;
  max-width: 660px;
  font-size: 18px;
  line-height: 150.9%;
  color: #0D082C;
}
.how__cards {
  margin: 50px 0px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
}
.how__card {
  max-width: 466px;
}

.hcard {
  position: relative;
  margin: 0px 0px 0px 65px;
}
.hcard__icon {
  position: absolute;
  top: 0;
  left: -65px;
}
.hcard__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.352941px;
  color: #000000;
}
.hcard__text {
  margin: 10px 0px 0px 0px;
  font-size: 15px;
  line-height: 167%;
  letter-spacing: 0.346154px;
  color: #000000;
}

.benefits {
  margin: 30px 0px 0px 0px;
}
.benefits__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #4636F2;
}
.benefits__cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 30px 0px 0px 0px;
  flex-wrap: wrap;
}
.benefits__card {
  max-width: 350px;
  width: 100%;
  background-color: #191919;
  border-radius: 5px;
  color: #FFFFFF;
  padding: 40px 0;
  position: relative;
}
.benefits__card::after {
  content: "^";
  text-align: center;
  padding-top: 15px;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  height: 48px;
  width: 64px;
  border-radius: 5px;
  background-color: #4635F3;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
}
.benefits__card:nth-child(2) {
  background-color: #4635F3;
}
.benefits__card:nth-child(2)::after {
  content: "^";
  text-align: center;
  padding-top: 15px;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  height: 48px;
  width: 64px;
  border-radius: 5px;
  background-color: #191919;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
}

.bcard__text {
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
}

.help {
  margin: 80px 0px 0px 0px;
  background-color: #0C0C0C;
}
@media (max-width: 991.98px) {
  .help {
    padding: 30px 0;
    text-align: center;
  }
}
.help__container {
  display: flex;
  gap: 140px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .help__container {
    gap: 0;
  }
}
.help__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  color: #FFFFFF;
}
@media (max-width: 1199.98px) {
  .help__title {
    font-size: 35px;
  }
}
@media (max-width: 767.98px) {
  .help__title {
    font-size: 30px;
  }
}
.help__text {
  margin: 30px 0px 0px 0px;
  max-width: 559px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #DFDFDF;
}
@media (max-width: 1199.98px) {
  .help__img img {
    max-width: 100%;
    height: auto;
    aspect-ratio: attr(width)/attr(height);
  }
}
@media (max-width: 991.98px) {
  .help__img img {
    display: none;
  }
}

.revs {
  padding: 50px 0;
}
.revs__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 115%;
  letter-spacing: 0.3px;
  color: #000000;
}
@media (max-width: 1199.98px) {
  .revs__title {
    text-align: center;
  }
}
.revs__items {
  margin: 80px 0px 0px 0px;
  display: flex;
  gap: 66px;
  justify-content: center;
  flex-wrap: wrap;
}
.revs__item {
  max-width: 373px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
  padding: 50px 25px;
  border-radius: 12px;
}

.ritem__top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ritem__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.ritem__text {
  font-weight: 400;
  font-size: 13px;
  margin: 26px 0px 0px 0px;
  line-height: 150%;
}

.footer {
  background: #0C0C0C;
  color: #FFFFFF;
  padding: 50px 0 30px 0;
}
.footer__body {
  margin: 36px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .footer__body {
    flex-direction: column;
    align-items: center;
  }
}
.footer__text {
  max-width: 528px;
  font-weight: 400;
  font-size: 15px;
  line-height: 170%;
}
.footer__date {
  margin: 25px 0px 0px 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 170%;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
}
@media (max-width: 991.98px) {
  .footer__nav ul {
    margin: 25px 0px 0px 0px;
    align-items: center;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 20px 0;
  }
}
.footer__nav li a {
  color: #FFFFFF;
}