:root {
  --color-primary: #F6F6F6;
  --color-text: #000000;
  --color-form: #76929C;
  --color-title: #ADEDF3;
  --color-white: #FFFFFF;
  --bg: #f3f3f8;
  --bg-btn: #ffe535;
  --modal-bg: #99EBF3;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.4;
}

.main__bg--1, .main__bg--2, .main__bg--3 {
  position: absolute;
}

.main__bg--1 {
  top: 70%;
}

.main__bg--2 {
  top: 413%;
  right: 0;
}

.main__bg--3 {
  top: 588%;
}

@media (max-width: 1750px) {
  .main__bg--1, .main__bg--2, .main__bg--3 {
    width: 250px;
  }
}

@media (max-width: 1440px) {
  .main__bg--1, .main__bg--2, .main__bg--3 {
    width: 150px;
  }
}

@media (max-width: 1024px) {
  .main__bg--1, .main__bg--2, .main__bg--3 {
    display: none;
  }
}

.container {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.burger-menu_button {
  position: absolute;
  z-index: 1030;
  width: 30px;
  height: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #00A0FA;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: '';
  top: -10px;
}

.burger-menu_lines::after {
  content: '';
  top: 10px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.burger-menu_nav {
  padding-top: 85px;
  position: fixed;
  top: 0;
  z-index: 1020;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100%;
  background-color: var(--bg);
  overflow-y: auto;
  left: -100%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_link {
  padding: 18px 35px;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  color: #000000;
}

.burger-menu_link:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.title--h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
  text-align: center;
}

@media (max-width: 720px) {
  .title--h2 {
    font-size: calc(24px + 24 * ((100vw - 320px) / 400));
  }
}

.title--h2 span {
  display: block;
  font-weight: 500;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  max-width: 340px;
  height: 94px;
  width: 100%;
  background-color: #00A0FA;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  font-family: 'Quicksand', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-white);
  border: none;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .btn {
    max-width: calc(270px + 70 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .btn {
    height: calc(52px + 42 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .btn {
    font-size: calc(16px + 9 * ((100vw - 320px) / 400));
  }
}

.box-form {
  background-color: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 720px) {
  .box-form {
    padding-top: calc(60px + 40 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .box-form {
    padding-bottom: calc(60px + 40 * ((100vw - 320px) / 400));
  }
}

.form {
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
  max-width: 1170px;
  width: 100%;
  position: relative;
  padding: 10px;
  margin: 0 auto;
}

.form::after {
  position: absolute;
  content: '';
  left: -100px;
  top: -50px;
  background-image: url(../img/form-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 240px;
  height: 240px;
}

@media (max-width: 720px) {
  .form::after {
    left: calc(-25px + -75 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form::after {
    top: calc(-40px + -10 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form::after {
    width: calc(120px + 120 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form::after {
    height: calc(120px + 120 * ((100vw - 320px) / 400));
  }
}

.form__box {
  border-radius: 25px;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
  background: var(--color-white);
  padding: 55px;
}

@media (max-width: 720px) {
  .form__box {
    padding: calc(20px + 35 * ((100vw - 320px) / 400));
  }
}

.form__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 110%;
  color: var(--color-text);
  text-align: center;
}

@media (max-width: 720px) {
  .form__title {
    font-size: calc(20px + 16 * ((100vw - 320px) / 400));
  }
}

.form__subtitle {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 35px;
  line-height: 110%;
  color: var(--color-text);
  text-align: center;
}

@media (max-width: 720px) {
  .form__subtitle {
    font-size: calc(20px + 16 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form__subtitle {
    margin-bottom: calc(20px + 15 * ((100vw - 320px) / 400));
  }
}

.form__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 20px;
  justify-items: center;
}

.form__item {
  position: relative;
  max-width: 340px;
  width: 100%;
}

@media (max-width: 720px) {
  .form__item {
    max-width: calc(270px + 70 * ((100vw - 320px) / 400));
  }
}

.form__item img {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 15px;
}

.form__item-select::after {
  content: '';
  position: absolute;
  background-image: url(../img/arrow-select.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 53%;
  right: 5%;
}

.form__select {
  width: 100%;
  max-width: 340px;
  height: 94px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 5px 30px 5px 10px;
  font-size: 20px;
  position: relative;
  text-transform: uppercase;
  color: var(--color-form);
}

@media (max-width: 720px) {
  .form__select {
    max-width: calc(270px + 70 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form__select {
    height: calc(52px + 42 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form__select {
    font-size: calc(16px + 4 * ((100vw - 320px) / 400));
  }
}

.form__input {
  width: 100%;
  max-width: 340px;
  height: 94px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 20px;
}

@media (max-width: 720px) {
  .form__input {
    max-width: calc(270px + 70 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form__input {
    height: calc(52px + 42 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .form__input {
    font-size: calc(16px + 4 * ((100vw - 320px) / 400));
  }
}

.form__input::-webkit-input-placeholder {
  color: var(--color-form);
}

.form__input:-ms-input-placeholder {
  color: var(--color-form);
}

.form__input::-ms-input-placeholder {
  color: var(--color-form);
}

.form__input::placeholder {
  color: var(--color-form);
}

@media (max-width: 1024px) {
  .form__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
    justify-items: center;
  }
}

.header {
  padding-top: 30px;
  padding-bottom: 120px;
  position: relative;
}

@media (max-width: 720px) {
  .header {
    padding-top: calc(15px + 15 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .header {
    padding-bottom: calc(60px + 60 * ((100vw - 320px) / 400));
  }
}

.header::after {
  position: absolute;
  content: '';
  background-image: url(../img/header-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: right top;
  right: 0;
  top: 0;
  width: 1920px;
  height: 1200px;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
  position: relative;
  z-index: 50;
}

@media (max-width: 720px) {
  .header__top {
    padding-bottom: calc(15px + 15 * ((100vw - 320px) / 400));
  }
}

.header__burger {
  cursor: pointer;
  width: 40px;
  height: 20px;
  display: none;
}

.header__nav-link {
  font-size: 18px;
  color: #000000;
}

@media (max-width: 720px) {
  .header__nav-link {
    font-size: calc(16px + 2 * ((100vw - 320px) / 400));
  }
}

.header__nav-link:not(:last-child) {
  margin-right: 20px;
}

.header__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

.header__location img {
  margin-right: 8px;
}

.header__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__wrapper {
  display: none;
}

.header__subtitle {
  font-size: 44px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .header__subtitle {
    font-size: calc(18px + 26 * ((100vw - 320px) / 400));
  }
}

.header__title {
  font-size: 64px;
  font-weight: 500;
  max-width: 100%;
  width: 100%;
  line-height: 110%;
  margin-bottom: 40px;
  padding-top: 100px;
}

@media (max-width: 720px) {
  .header__title {
    font-size: calc(26px + 38 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .header__title {
    margin-bottom: calc(20px + 20 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .header__title {
    padding-top: calc(20px + 80 * ((100vw - 320px) / 400));
  }
}

.header__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 720px) {
  .header__list {
    margin-bottom: calc(30px + 30 * ((100vw - 320px) / 400));
  }
}

.header__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[2];
      grid-template-rows: repeat(2, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  justify-items: center;
}

.header__item p {
  text-align: center;
}

.header__item img {
  width: 150px;
}

.header__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #00A0FA;
  border-radius: 10px;
  padding-top: 23px;
  padding-bottom: 23px;
  padding-right: 30px;
  padding-left: 30px;
  max-width: 300px;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .header__price {
    font-size: calc(16px + 6 * ((100vw - 320px) / 400));
  }
}

.header__price-old {
  opacity: .4;
  margin-left: 10px;
  text-decoration: line-through;
}

.header__right-box {
  position: relative;
  z-index: 10;
}

.header__right-box::after {
  position: absolute;
  content: '';
  background-image: url(../img/product-header-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 500px;
  height: 700px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 1440px) {
  .header__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[3];
        grid-template-rows: repeat(3, auto);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-bottom: 60px;
    max-width: 500px;
  }
}

@media (max-width: 1440px) and (max-width: 720px) {
  .header__list {
    margin-bottom: calc(30px + 30 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 1440px) {
  .header__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: start;
  }
  .header__item p {
    max-width: 320px;
    text-align: start;
    font-size: 18px;
  }
}

@media (max-width: 1440px) and (max-width: 720px) {
  .header__item p {
    font-size: calc(16px + 2 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 1440px) {
  .header__item img {
    width: 150px;
  }
}

@media (max-width: 1024px) {
  .header__right-box::after {
    width: 450px;
    height: 500px;
  }
  .header__item img {
    width: 115px;
  }
}

@media (max-width: 768px) {
  .header::after {
    background-size: cover;
    width: 100%;
    height: 70%;
  }
  .header__title {
    text-align: center;
  }
  .header__nav {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__product img {
    width: 425px;
  }
  .header__price {
    margin: 0 auto;
  }
  .header__item img {
    width: 150px;
    max-width: 150px;
  }
}

@media (max-width: 768px) and (max-width: 720px) {
  .header__item img {
    width: calc(100px + 50 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 768px) and (max-width: 720px) {
  .header__item img {
    max-width: calc(100px + 50 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 768px) {
  .header__top .header__location {
    width: 90px;
  }
  .header__top .header__location img {
    width: 15px;
  }
  .header__top .header__location p {
   font-size: 12px;
  }
}

@media (max-width: 525px) {
  .header__logo {
    max-width: 60px;
  }
  .header__right-box::after {
    width: 320px;
    height: 400px;
  }
  .header__product img {
    width: 375px;
  }
}

.info {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../img/info-bg.png);
  background-position: 80% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}

@media (max-width: 720px) {
  .info {
    padding-top: calc(30px + 70 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .info {
    padding-bottom: calc(80px + 20 * ((100vw - 320px) / 400));
  }
}

.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info__title {
  line-height: 110%;
  max-width: 600px;
  width: 100%;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 48px;
  margin-bottom: 60px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .info__title {
    font-size: calc(24px + 24 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .info__title {
    margin-bottom: calc(30px + 30 * ((100vw - 320px) / 400));
  }
}

.info__title span {
  font-size: 27px;
  font-weight: 400;
  display: block;
}

@media (max-width: 720px) {
  .info__title span {
    font-size: calc(18px + 9 * ((100vw - 320px) / 400));
  }
}

.info__left {
  max-width: 630px;
}

.info__left-item {
  position: relative;
  padding-left: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 24px;
}

@media (max-width: 720px) {
  .info__left-item {
    font-size: calc(16px + 8 * ((100vw - 320px) / 400));
  }
}

.info__left-item::after {
  position: absolute;
  content: '';
  background-image: url(../img/info-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 49px;
  height: 49px;
}

.info__left-title {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-primary);
}

@media (max-width: 720px) {
  .info__left-title {
    font-size: calc(18px + 2 * ((100vw - 320px) / 400));
  }
}

.info__left-text {
  font-size: 24px;
  margin-bottom: 30px;
}

@media (max-width: 720px) {
  .info__left-text {
    font-size: calc(18px + 6 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .info__left-text {
    margin-bottom: calc(15px + 15 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 1366px) {
  .info {
    background-position: 90% 50%;
    background-size: 50%;
  }
}

@media (max-width: 1024px) {
  .info {
    background: none;
  }
  .info__left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .info__title {
    text-align: center;
  }
}

@media (max-width: 425px) {
  .info__left-text {
    text-align: center;
  }
  .info__left-item {
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .info__left-item::after {
    width: 35px;
    height: 35px;
  }
}

.course {
  position: relative;
  z-index: 10;
  padding-top: 50px;
  padding-bottom: 30px;
}

@media (max-width: 720px) {
  .course {
    padding-top: calc(50px + 0 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .course {
    padding-bottom: calc(30px + 0 * ((100vw - 320px) / 400));
  }
}

.course__right-title {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
}

@media (max-width: 720px) {
  .course__right-title {
    margin-bottom: calc(15px + 15 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .course__right-title {
    font-size: calc(24px + 24 * ((100vw - 320px) / 400));
  }
}

.course__right-subtitle {
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
}

@media (max-width: 720px) {
  .course__right-subtitle {
    font-size: calc(18px + 6 * ((100vw - 320px) / 400));
  }
}

.course__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.course__right {
  margin-left: 55px;
}

@media (max-width: 768px) {
  .course__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .course__right-title, .course__right-subtitle {
    text-align: center;
  }
  .course__right {
    margin-left: 0px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) and (max-width: 720px) {
  .course__right {
    margin-bottom: calc(15px + 15 * ((100vw - 320px) / 400));
  }
}

.about {
  padding-top: 120px;
  padding-bottom: 320px;
  position: relative;
}

@media (max-width: 720px) {
  .about {
    padding-top: calc(60px + 60 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .about {
    padding-bottom: calc(120px + 200 * ((100vw - 320px) / 400));
  }
}

.about::before {
  position: absolute;
  background-image: url(../img/about-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 1800px;
}

.about::after {
  position: absolute;
  background-image: url(../img/about-img.png);
  background-size: 100%;
  background-repeat: no-repeat;
  content: '';
  left: 0;
  top: 0;
  width: 800px;
  height: 800px;
}

.about__wrapper {
  width: 70%;
  margin-left: auto;
  padding-top: 120px;
}

@media (max-width: 720px) {
  .about__wrapper {
    padding-top: calc(60px + 60 * ((100vw - 320px) / 400));
  }
}

.about__title {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
}

@media (max-width: 720px) {
  .about__title {
    margin-bottom: calc(20px + 20 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .about__title {
    font-size: calc(24px + 24 * ((100vw - 320px) / 400));
  }
}

.about__subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
}

@media (max-width: 720px) {
  .about__subtitle {
    font-size: calc(18px + 10 * ((100vw - 320px) / 400));
  }
}

.about__text {
  font-size: 21px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .about__text {
    font-size: calc(18px + 3 * ((100vw - 320px) / 400));
  }
}

.about__text p + p {
  margin-top: 30px;
}

@media (max-width: 1600px) {
  .about::before {
    background-size: contain;
    height: 1600px;
  }
  .about::after {
    width: 600px;
    height: 600px;
  }
}

@media (max-width: 1300px) {
  .about::before {
    background-size: contain;
    height: 1300px;
  }
  .about::after {
    width: 600px;
    height: 600px;
    top: -10%;
  }
}

@media (max-width: 1024px) {
  .about {
    padding-top: 200px;
  }
  .about::before {
    height: 100%;
  }
  .about::after {
    width: 500px;
    height: 500px;
    top: -5%;
  }
}

@media (max-width: 768px) {
  .about {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) and (max-width: 720px) {
  .about {
    padding-bottom: calc(60px + 40 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 768px) {
  .about::before {
    background-image: url(../img/about-bg-mob.png);
    background-size: cover;
  }
  .about::after {
    width: 350px;
    height: 350px;
    top: -10%;
  }
  .about__wrapper {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .about::after {
    width: 320px;
    height: 320px;
  }
  .about::before {
    height: 425px;
  }
  .about__title, .about__subtitle {
    text-align: center;
  }
}

.result {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .result {
    padding-top: calc(60px + 60 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .result {
    padding-bottom: calc(60px + 60 * ((100vw - 320px) / 400));
  }
}

.result__title {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 720px) {
  .result__title {
    margin-bottom: calc(15px + 15 * ((100vw - 320px) / 400));
  }
}

.result__subtitle {
  text-align: center;
  margin-bottom: 100px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .result__subtitle {
    margin-bottom: calc(30px + 70 * ((100vw - 320px) / 400));
  }
}

.result__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.result__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 570px;
  width: 100%;
  font-size: 24px;
}

@media (max-width: 720px) {
  .result__left {
    font-size: calc(20px + 4 * ((100vw - 320px) / 400));
  }
}

.result__list {
  margin-bottom: 38px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (1fr)[4];
      grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 17px;
  grid-row-gap: 17px;
}

@media (max-width: 720px) {
  .result__list {
    margin-bottom: calc(15px + 23 * ((100vw - 320px) / 400));
  }
}

.result__item {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 25px 35px;
  font-size: 20px;
}

@media (max-width: 720px) {
  .result__item {
    font-size: calc(16px + 4 * ((100vw - 320px) / 400));
  }
}

.result__item span {
  color: #00A0FA;
}

.result__opinion-img {
  position: relative;
}

.result__opinion-img::after {
  position: absolute;
  content: '';
  background-image: url(../img/result-product-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 550px;
  height: 700px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.result__opinion-img img {
  max-width: 521px;
}

.result__left-text {
  font-size: 20px;
}

@media (max-width: 720px) {
  .result__left-text {
    font-size: calc(16px + 4 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 1200px) {
  .result__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .result__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .result__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .result__opinion-img::after {
    width: 400px;
    height: 500px;
  }
  .result__opinion-img img {
    max-width: 400px;
  }
}

@media (max-width: 550px) {
  .result__opinion-img::after {
    width: 350px;
    height: 375px;
  }
  .result__opinion-img img {
    max-width: 375px;
  }
}

@media (max-width: 375px) {
  .result__item {
    padding: 15px 25px;
    border-radius: 10px;
  }
  .result__list {
    -ms-grid-rows: (auto)[4];
        grid-template-rows: repeat(4, auto);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .result__opinion-img::after {
    width: 300px;
    height: 350px;
  }
  .result__opinion-img img {
    max-width: 300px;
  }
}

.slider {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 720px) {
  .slider {
    padding-top: calc(30px + 30 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .slider {
    padding-bottom: calc(30px + 30 * ((100vw - 320px) / 400));
  }
}

.slider__wrapper {
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
  max-width: 1125px;
  width: 100%;
  position: relative;
  padding: 10px;
  margin: 0 auto;
}

.slider__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
  background: var(--color-white);
  padding: 40px;
  position: relative;
}

@media (max-width: 720px) {
  .slider__inner {
    padding: calc(20px + 20 * ((100vw - 320px) / 400));
  }
}

.slider__opinion-img {
  position: relative;
}

.slider__opinion-img::after {
  position: absolute;
  content: '';
  background-image: url(../img/slider-product-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 450px;
  height: 450px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-62%, -50%);
          transform: translate(-62%, -50%);
}

.slider__opinion-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-62%, -50%);
          transform: translate(-62%, -50%);
  max-width: 521px;
}

.slider__opinion-box {
  max-width: 700px;
  width: 100%;
}

.slider__opinion-item {
  position: relative;
  padding-left: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 720px) {
  .slider__opinion-item {
    padding-left: calc(35px + 15 * ((100vw - 320px) / 400));
  }
}

.slider__opinion-item::after {
  position: absolute;
  content: '';
  background-image: url(../img/slider-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
}

@media (max-width: 720px) {
  .slider__opinion-item::after {
    width: calc(22px + 13 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .slider__opinion-item::after {
    height: calc(22px + 13 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 1400px) {
  .slider {
    padding-top: 420px;
  }
  .slider__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 25px;
    -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
    background: var(--color-white);
    position: relative;
  }
  .slider__opinion-img {
    position: relative;
  }
  .slider__opinion-img::after {
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
  .slider__opinion-img img {
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }
}

@media (max-width: 768px) {
  .slider {
    padding-top: 400px;
  }
  .slider__opinion-img {
    position: relative;
  }
  .slider__opinion-img::after {
    width: 400px;
    height: 400px;
  }
  .slider__opinion-img img {
    max-width: 400px;
  }
}

@media (max-width: 550px) {
  .slider {
    padding-top: 300px;
  }
  .slider__opinion-img {
    position: relative;
  }
  .slider__opinion-img::after {
    width: 320px;
    height: 320px;
  }
  .slider__opinion-img img {
    max-width: 320px;
  }
}

.comments {
  padding-top: 50px;
  padding-bottom: 50px;
}

.comments__container {
  max-width: 1700px;
}

.comments__title {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 720px) {
  .comments__title {
    margin-bottom: calc(20px + 30 * ((100vw - 320px) / 400));
  }
}

.comments__opinion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.comments__opinion .slick-next,
.comments__opinion .slick-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  width: 53px;
  height: 53px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  cursor: pointer;
}

.comments__opinion .slick-next {
  left: -54px;
}

.comments__opinion .slick-prev {
  right: -54px;
}

.comments__opinion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media (max-width: 1450px) {
  .comments__opinion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }
  .comments__opinion .slick-next,
  .comments__opinion .slick-prev {
    z-index: 5;
    width: 16px;
    height: 28px;
    padding: 0;
  }
  .comments__opinion .slick-next {
    left: -9px;
  }
  .comments__opinion .slick-prev {
    right: -9px;
  }
}

@media (max-width: 800px) {
  .comments {
    padding-top: 15px;
    padding-bottom: 0px;
  }
  .comments__title {
    margin-bottom: 100px;
  }
}

@media (max-width: 600px) {
  .comments__title {
    margin-bottom: 50px;
  }
}

@media (max-width: 376px) {
  .comments__title {
    margin-bottom: 10px;
  }
  .comments__opinion-content {
    margin: 50px 15px 58px 15px;
  }
}

.expert {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (max-width: 720px) {
  .expert {
    padding-top: calc(30px + 30 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .expert {
    padding-bottom: calc(30px + 30 * ((100vw - 320px) / 400));
  }
}

.expert__bg {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.expert__wrapper {
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
  max-width: 1125px;
  width: 100%;
  position: relative;
  padding: 10px;
  margin: 0 auto;
}

.expert__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  -webkit-box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 90px rgba(0, 0, 0, 0.05);
  background: var(--color-white);
  padding: 25px;
}

.expert__img {
  position: relative;
}

.expert__img::after {
  position: absolute;
  content: '';
  background: url(../img/expert-product-bg.png);
  background-size: contain;
  width: 420px;
  height: 400px;
  left: 0;
  top: 0;
}

@media (max-width: 720px) {
  .expert__img::after {
    width: calc(300px + 120 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .expert__img::after {
    height: calc(280px + 120 * ((100vw - 320px) / 400));
  }
}

.expert__img img {
  max-width: 460px;
  max-width: 460px;
  position: relative;
}

@media (max-width: 720px) {
  .expert__img img {
    max-width: calc(300px + 160 * ((100vw - 320px) / 400));
  }
}

.expert__box {
  max-width: 645px;
  width: 100%;
}

.expert__title {
  font-weight: 500;
  font-size: 45px;
  margin-bottom: 40px;
}

@media (max-width: 720px) {
  .expert__title {
    font-size: calc(20px + 25 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .expert__title {
    margin-bottom: calc(20px + 20 * ((100vw - 320px) / 400));
  }
}

.expert__text {
  font-size: 21px;
}

@media (max-width: 720px) {
  .expert__text {
    font-size: calc(18px + 3 * ((100vw - 320px) / 400));
  }
}

.expert__text span {
  font-size: 45px;
  font-weight: 900;
  margin-top: 30px;
  display: block;
}

@media (max-width: 720px) {
  .expert__text span {
    font-size: calc(18px + 27 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 1024px) {
  .expert__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expert__img {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.order {
  background-color: var(--color-white);
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 720px) {
  .order {
    padding-top: calc(60px + 60 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .order {
    padding-bottom: calc(60px + 60 * ((100vw - 320px) / 400));
  }
}

.order__title {
  padding-bottom: 140px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .order__title {
    padding-bottom: calc(100px + 40 * ((100vw - 320px) / 400));
  }
}

.order__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order__item {
  position: relative;
  padding-top: 130px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  max-width: 277px;
  height: 234px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 720px) {
  .order__item {
    padding-top: calc(130px + 0 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .order__item {
    padding-bottom: calc(15px + 10 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .order__item {
    padding-left: calc(15px + 10 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .order__item {
    padding-right: calc(15px + 10 * ((100vw - 320px) / 400));
  }
}

.order__img {
  position: absolute;
  z-index: 10;
  top: 15%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.order__text {
  text-align: center;
}

@media (max-width: 900px) {
  .order__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .order__item:not(:last-child) {
    margin-bottom: 80px;
  }
}

.footer {
  background: var(--color-primary);
  color: var(--color-text);
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 49px;
  border-bottom: 2px solid #c5c5c5;
}

.footer-top__contact {
  max-width: 400px;
}

.footer-top__title {
  font-size: 30px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-top__nav {
  max-width: 400px;
}

.footer-top__list {
  margin: 0;
}

.footer-top__item + .footer-top__item {
  margin-left: 10px;
}

.footer-top__item-link + .footer-top__item-link {
  margin-top: 20px;
}

.footer-top__link {
  display: block;
  color: inherit;
}

.footer-top__link + .footer-top__link {
  margin-top: 20px;
}

.footer-top__item-cards {
  display: none;
}

.footer-top__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 260px;
  width: 100%;
}

.footer-top__card + .footer-top__card {
  margin-left: 43px;
}

.footer-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 720px) {
  .footer-bottom {
    padding-top: calc(20px + 20 * ((100vw - 320px) / 400));
  }
}

@media (max-width: 720px) {
  .footer-bottom {
    padding-bottom: calc(20px + 20 * ((100vw - 320px) / 400));
  }
}

.footer-bottom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-bottom__copy {
  color: var(--color-text);
}

@media (max-width: 1000px) {
  .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-top__item + .footer-top__item {
    margin-left: 0px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .footer-bottom__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-bottom__copy {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 10px;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .footer-top {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer-top__title {
    font-size: 20px;
  }
  .footer-top__phone, .footer-top__email, .footer-top__address {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .footer-top__link + .footer-top__link {
    margin-top: 10px;
  }
  .footer-top__item-link + .footer-top__item-link {
    margin-top: 10px;
  }
}

@media (max-width: 376px) {
  .footer-bottom__copy {
    text-align: center;
  }
}