* {
  font-family: "Gilroy";
}

@font-face {
  font-family: "Gilroy";
  src: url(/layout1/Gilroy/Gilroy-Thin.ttf);
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url(/layout1/Gilroy/Gilroy-UltraLight.ttf);
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url(/layout1/Gilroy/Gilroy-Light.ttf);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url(/layout1/Gilroy/Gilroy-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url(/layout1/Gilroy/Gilroy-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url(/layout1/Gilroy/Gilroy-ExtraBold.ttf);
  font-weight: 800;
  font-style: normal;
}
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

:focus,
:active {
  outline: none;
}

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

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

a:hover {
  color: inherit;
  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;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 2;
  visibility: hidden;
}

.overlay.add_overlay {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

.header {
  display: flex;
  padding: 54px 0 115px 0;
}
@media (max-width: 1040px) {
  .header {
    display: none;
  }
}
.header__phone {
  position: relative;
  margin: auto 0 auto 100px;
  font-style: normal;
  font-weight: normal;
  font-size: calc(10px + 8 * ((100vw - 320px) / 1600));
  line-height: 122.8%;
  /* or 22px */
  text-transform: uppercase;
  color: #FFFFFF;
}
.header__phone::before {
  content: url(./images/header/phone-icon.svg);
  position: absolute;
  top: -7px;
  left: -43px;
}

.burger {
  margin-bottom: 20px;
  margin-top: 40px;
  position: relative;
  display: none;
  width: 40px;
  height: 20px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.burger span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  transform: translateY(50%);
  background-color: white;
  width: 100%;
  height: 2px;
}
.burger:before, .burger:after {
  background: white;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.burger:after {
  top: 100%;
  left: 0;
}
@media (max-width: 1040px) {
  .burger {
    display: block;
  }
}

.section {
  padding: 0px calc(10px + 310 * ((100vw - 320px) / 1600)) 0px calc(10px + 310 * ((100vw - 320px) / 1600));
}
.section_blue {
  background: url(./images/header/bgvectors.svg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.section_blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #F2F2F4 url(./images/header/bg.png) center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.section_white {
  padding-top: 85px;
  background-color: #F2F2F4;
}
.section_white__title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(40px + 5 * ((100vw - 320px) / 1600));
  line-height: 99.8%;
  /* identical to box height, or 45px */
  text-align: center;
  color: #111111;
  margin-bottom: 25px;
}
.section_white__description {
  font-style: normal;
  font-weight: 400;
  font-size: calc(17px + 5 * ((100vw - 320px) / 1600));
  line-height: 22px;
  /* identical to box height, or 100% */
  text-align: center;
  color: #333333;
  margin-bottom: 42px;
}

.nav-list {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}
.nav-list_burger {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  padding: 50px calc(20px + 80 * ((100vw - 320px) / 1600)) 0px calc(20px + 80 * ((100vw - 320px) / 1600));
  width: 60%;
  gap: 20px;
  max-width: 400px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  background-color: #2e2f69;
  box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
  transform: translateX(0);
}
.nav-list_burger__logo {
  margin-bottom: 80px;
}
.nav-list_burger__phone {
  margin-top: 20px;
  margin-left: 30px;
}
.nav-list_burger.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.3s;
}
.nav-list__item {
  font-style: normal;
  font-weight: normal;
  font-size: calc(11px + 5 * ((100vw - 320px) / 1600));
  line-height: 122.8%;
  color: #969AF7;
}

.about {
  display: flex;
  gap: 100px;
  padding-bottom: 189px;
}
@media (max-width: 1040px) {
  .about {
    flex-direction: column;
  }
}
.about__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(50px + 19.23 * ((100vw - 320px) / 1600));
  line-height: 99.8%;
  color: #FFFFFF;
  text-transform: uppercase;
}
.about__title_colored {
  display: block;
  font-size: calc(47px + 11 * ((100vw - 320px) / 1600));
  text-transform: lowercase;
  color: #969AF7;
}
.about__description {
  margin-bottom: 27px;
  font-style: normal;
  font-weight: 400;
  font-size: calc(18px + 5 * ((100vw - 320px) / 1600));
  line-height: 129.8%;
  /* or 30px */
  color: #969AF7;
}
.about__benefits-list {
  padding: 34px 31px;
  position: relative;
}
.about__benefits-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #969AF7 1.34%, rgba(150, 154, 247, 0) 96.66%);
  opacity: 0.3;
  border-radius: 10px;
}
.about__benefits-list .benefits-list__item {
  list-style-image: url(./images/about/check.svg);
  list-style-position: inside;
  font-style: normal;
  font-weight: 400;
  font-size: calc(17px + 5 * ((100vw - 320px) / 1600));
  line-height: 129.8%;
  /* identical to box height, or 29px */
  color: #FFFFFF;
}
.about__benefits-list .benefits-list__item:not(:last-child) {
  margin-bottom: 5px;
}

.form {
  min-width: 380px;
}
@media (max-width: 440px) {
  .form {
    min-width: 200px;
  }
}
.form__header {
  padding: 32px 0 24px;
  background: linear-gradient(180deg, #6A32B4 0%, #552693 100%);
  border-radius: 10px 10px 0px 0px;
  text-align: center;
}
.form__title {
  font-style: normal;
  font-weight: 700;
  font-size: calc(18px + 5 * ((100vw - 320px) / 1600));
  line-height: 27px;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.form__body {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding: 30px 40px 36px 40px;
  background: #FFFFFF;
  border: 1px solid #F2F3F5;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}
.form__group {
  font-style: normal;
  font-weight: 400;
  font-size: calc(13px + 5 * ((100vw - 320px) / 1600));
  line-height: 128.91%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* or 23px */
  /* gray_2 */
  color: #626366;
}
.form__input {
  padding: 21px 20px;
  width: 100%;
  height: 55px;
  background: #F5F3FF;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.form__input_::-moz-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15px + 5 * ((100vw - 320px) / 1600));
  line-height: 128.91%;
  color: #BCBFC4;
}
.form__input_:-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15px + 5 * ((100vw - 320px) / 1600));
  line-height: 128.91%;
  color: #BCBFC4;
}
.form__input_::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15px + 5 * ((100vw - 320px) / 1600));
  line-height: 128.91%;
  color: #BCBFC4;
}
.form__button {
  margin-top: 25px;
  padding: 19px 0;
  background: #FFA500;
  border-radius: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: calc(13px + 5 * ((100vw - 320px) / 1600));
  line-height: 19px;
  /* identical to box height, or 106% */
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.privacy {
  display: flex;
  gap: 10px;
}
.privacy__text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(7px + 5 * ((100vw - 320px) / 1600));
  line-height: 16px;
  color: #C0C0C0;
}

.cards-container {
  display: grid;
}
.cards-container_advantages {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 42px;
}
@media (max-width: 768px) {
  .cards-container_advantages {
    gap: 20px 30px;
    grid-template-columns: auto;
  }
}

.card_advantages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  gap: 40px;
  padding: 40px calc(10px + 22 * ((100vw - 320px) / 1600)) 15px calc(10px + 22 * ((100vw - 320px) / 1600));
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .card_advantages {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: unset;
    justify-content: unset;
    gap: 5px;
  }
}
.card_advantages::before {
  content: "";
  position: absolute;
  bottom: -330px;
  right: -180px;
  width: 441.52px;
  height: 441.52px;
  background: #5172C4;
  opacity: 0.07;
  border-radius: 30px;
  transform: rotate(45deg);
}
.card__icon {
  align-self: center;
}
.card__content-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card__title {
  margin-top: 30px;
  font-style: normal;
  font-weight: 700;
  font-size: calc(15px + 5 * ((100vw - 320px) / 1600));
  line-height: 23px;
  color: #2A336C;
}
.card__description {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15px + 5 * ((100vw - 320px) / 1600));
  line-height: 22px;
  color: #555555;
}/*# sourceMappingURL=main.css.map */