@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css?family=Inter:700");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -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;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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: 400;
}

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff"), url("../fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
body {
  font-family: "Gilroy", "Inter";
}

body._lock {
  overflow: hidden;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

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

[class*=__sub-container] {
  max-width: 1310px;
  /* padding: 0 15px; */
  margin: 0 auto;
}

.header {
  position: relative;
  z-index: 15;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.header__body {
  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: 66.5px 0;
}
.header__logo {
  margin-right: 10px;
}
.header__logo svg {
  width: 100%;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__item:not(:last-child) {
  margin: 0 30px 0 0;
}
.header__link {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #3d3d50;
}
.header__button {
  display: none;
}
.header__menu-icon {
  display: none;
}
@media (max-width: 1070px) {
  .header .header__menu-icon {
    display: block;
    z-index: 100;
    position: relative;
    top: 0;
    left: 0;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
  .header .header__menu-icon span, .header .header__menu-icon::before, .header .header__menu-icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 2px solid #3d3d50;
    background: #3d3d50;
    border-radius: 10px;
  }
  .header .header__menu-icon::before, .header .header__menu-icon::after {
    content: "";
  }
  .header .header__menu-icon::before {
    top: 0;
  }
  .header .header__menu-icon::after {
    width: 100%;
    bottom: 0;
  }
  .header .header__menu-icon span {
    top: 50%;
    width: 100%;
    -webkit-transform: scale(1) translate(0px, -50%);
        -ms-transform: scale(1) translate(0px, -50%);
            transform: scale(1) translate(0px, -50%);
  }
  .header .header__menu-icon._active span {
    -webkit-transform: scale(0) translate(0px, -50%);
        -ms-transform: scale(0) translate(0px, -50%);
            transform: scale(0) translate(0px, -50%);
  }
  .header .header__menu-icon._active::before {
    top: 45%;
    -webkit-transform: rotate(-45deg) translate(0px, -50%);
        -ms-transform: rotate(-45deg) translate(0px, -50%);
            transform: rotate(-45deg) translate(0px, -50%);
  }
  .header .header__menu-icon._active::after {
    width: 100%;
    bottom: 50%;
    -webkit-transform: rotate(45deg) translate(0px, 50%);
        -ms-transform: rotate(45deg) translate(0px, 50%);
            transform: rotate(45deg) translate(0px, 50%);
  }
  .header .header__list {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    z-index: 90;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    top: 0;
    right: -100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header .header__list._active {
    right: 0%;
  }
  .header__item:not(:last-child) {
    margin: 0 0 30px 0;
  }
  .header__link {
    font-size: 30px;
  }
  .header__menu {
    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;
  }
  .header__button {
    display: block;
    margin-right: 30px;
  }
  .header__btn {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #3d3d50;
    padding: 10px 20px;
    border: 1px solid rgba(61, 61, 80, 0.4);
    border-radius: 50px;
  }
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.main-block__container-background {
  background: #d2eaf0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 200px;
}
.main-block__container-background::before {
  content: "";
  display: block;
  position: absolute;
  top: -36%;
  left: 73%;
  width: 780px;
  height: 780px;
  background: #3d3d50;
  border-radius: 50%;
}
.main-block__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 900px));
  padding: 120px 0;
}
.main-block__title {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 120%;
  color: #3d3d50;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.main-block__link {
  display: inline-block;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #3d3d50;
  margin-top: 66px;
  padding: 20px 40px;
  border-radius: 50px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}
.main-block__image {
  position: relative;
}
.main-block__image img {
  position: absolute;
  max-width: 100%;
  max-width: 720px;
  height: 100%;
  top: 0;
  left: -50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 50px 0 0;
}

@media (max-width: 1439px) {
  .main-block__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
  .main-block__column {
    grid-row: 1/2;
    grid-column: 1/span 2;
  }
  .main-block__title {
    font-size: calc(30px + 50 * (100vw - 320px) / 1120);
  }
  .main-block__image {
    position: relative;
    grid-column: 2/2;
    grid-row: 1/span 2;
  }
  .main-block__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 768px) {
  .main-block__body {
    padding: 30px 0;
  }
  .main-block__container-background {
    background: #d2eaf0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
  }
  .main-block__container-background::before {
    content: "";
    display: block;
    position: absolute;
    top: -36%;
    left: 71%;
    width: 431px;
    height: 431px;
    background: #3d3d50;
    border-radius: 50%;
  }
}
@media (max-width: 767px) {
  .main-block__body {
    display: grid;
    grid-template-columns: minmax(auto, 1fr);
    grid-template-rows: repeat(2, minmax(auto, 1fr));
    row-gap: 20px;
  }
  .main-block__container-background {
    background: #d2eaf0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
  }
  .main-block__container-background::before {
    content: "";
    display: block;
    position: absolute;
    top: -26%;
    left: 47%;
    width: 431px;
    height: 431px;
    background: #3d3d50;
    border-radius: 50%;
  }
  .main-block__column {
    grid-row: 2/2;
    grid-column: 1/span 2;
  }
  .main-block__image {
    position: relative;
    grid-row: 1/2;
    grid-column: 1/span 2;
  }
  .main-block__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 375px) {
  .main-block__body {
    row-gap: 0;
  }
  .main-block__container {
    padding: 0;
  }
  .main-block__container-background {
    border-radius: 0;
  }
}
.second-block__title {
  text-align: center;
}
.second-block__image {
  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;
}
.second-block__image img {
  width: 100%;
  height: 100%;
}
.second-block__body-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 1280px;
  margin: -100px auto 200px;
}
.second-block__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  background: #ffffff;
  -webkit-box-shadow: 0px 40px 60px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 40px 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.second-block__column:not(:last-child) {
  margin-right: 30px;
}
.second-block__column:nth-child(2) {
  margin-top: 162px;
}
.second-block__item {
  padding: 50px;
}
.second-block__title-h4 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #17172f;
}
.second-block__text {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #6f6f82;
  margin-top: 20px;
}

.title-h2 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 100px;
  line-height: 110%;
  color: #3d3d50;
}

@media (max-width: 1439px) {
  .title-h2 {
    font-size: calc(35px + 65 * (100vw - 320px) / 1120);
  }
}
@media (max-width: 1024px) {
  .second-block__body-flex {
    margin: -40px auto 80px;
  }
  .second-block__item {
    padding: 30px;
  }
}
.swiper {
  display: none;
}

@media (max-width: 767px) {
  .second-block__body-flex {
    display: none;
  }
  .swiper {
    display: block;
  }
  .second-block__pagination .swiper-pagination-bullet {
    background: #3d3d50;
    margin-right: 20px !important;
  }
  .second-block__swiper {
    margin-bottom: 60px;
  }
  .second-block__wrapper {
    padding-bottom: 35px;
  }
  .second-block__slide {
    padding: 0px 0;
    height: auto;
  }
  .second-block__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    height: auto !important;
  }
  .second-block__column:nth-child(2) {
    margin-top: 0;
  }
  .second-block__column:not(:last-child) {
    margin: 0;
  }
}
.third-block__sub-container {
  position: relative;
}
.third-block__header {
  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;
  position: relative;
}
.third-block__image {
  position: relative;
  width: 550px;
  min-height: 550px;
}
.third-block__image img {
  position: absolute;
  max-width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  -o-object-fit: cover;
     object-fit: cover;
}
.third-block__title-h4 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #3d3d50;
}
.third-block__title-h4_white {
  color: #ffffff;
}
.third-block__body-flex {
  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;
  margin-top: -80px;
  margin-bottom: 80px;
}
.third-block__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  border-radius: 20px;
}
.third-block__column:not(:last-child) {
  margin-right: 30px;
}
.third-block__column:nth-child(1) {
  background: #f7f7f8;
}
.third-block__column:nth-child(2) {
  background: #3973af;
}
.third-block__column:nth-child(3) {
  background: #eee0da;
}
.third-block__card {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px;
}
.third-block__card-top {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.third-block__sub-title {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 50px;
}
.third-block__sub-title_apricot {
  color: #ee786b;
}
.third-block__sub-title_white {
  color: #ffffff;
}
.third-block__sub-title_blue {
  color: #3973af;
}
.third-block__item {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #3d3d50;
  position: relative;
  margin-left: 10px;
}
.third-block__item_white {
  color: #ffffff;
}
.third-block__item:not(:last-child) {
  margin-bottom: 20px;
}
.third-block__item::before {
  content: "";
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 5px;
  left: -25px;
  width: 14px;
  height: 14px;
  background: #89cbdb;
  -webkit-transform: matrix(1, 0, -0.21, 0.98, 0, 0);
      -ms-transform: matrix(1, 0, -0.21, 0.98, 0, 0);
          transform: matrix(1, 0, -0.21, 0.98, 0, 0);
}
.third-block__item_apricot::before {
  content: "";
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 5px;
  left: -25px;
  width: 14px;
  height: 14px;
  background: #ee786b;
  -webkit-transform: matrix(1, 0, -0.21, 0.98, 0, 0);
      -ms-transform: matrix(1, 0, -0.21, 0.98, 0, 0);
          transform: matrix(1, 0, -0.21, 0.98, 0, 0);
}
.third-block__button {
  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;
  margin-bottom: 200px;
}
.third-block__btn {
  display: inline-block;
  padding: 20px 40px;
  background: #3d3d50;
  border-radius: 50px;
  gap: 10px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .third-block__body-flex {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    margin: -40px 0 80px 0;
    row-gap: 20px;
  }
  .third-block__column:not(:last-child) {
    margin: 0 0 0px 0;
  }
  .third-block__column:nth-child(1) {
    grid-row: 3/3;
  }
  .third-block__card {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px 30px;
  }
  .third-block__card-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .third-block__image {
    position: relative;
  }
  .third-block__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .third-block__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .third-block__body-flex {
    margin: 0 0 80px 0;
  }
  .third-block__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .third-block__card-top {
    margin: 0;
  }
  .third-block__button {
    margin-bottom: 80px;
  }
}
.fourth-block__title {
  text-align: center;
}
.fourth-block__body-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 100px 0 200px 0;
}
.fourth-block__column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  background: #f7f7f8;
  border-radius: 20px;
  min-height: 326px;
}
.fourth-block__column:not(:last-child) {
  margin-right: 30px;
}
.fourth-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 0 0 40px;
}
.fourth-block__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.fourth-block__title-h4 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #3d3d50;
  margin: 20px 0 10px 0;
}
.fourth-block__text {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #6f6f82;
}

@media (max-width: 1023px) {
  .fourth-block__body-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }
  .fourth-block__column:not(:last-child) {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .fourth-block__body-flex {
    margin: 40px 0 80px 0;
  }
}
.fourth-block__swiper {
  display: none;
}

@media (max-width: 767px) {
  .fourth-block__body-flex {
    display: none;
  }
  .fourth-block__swiper {
    display: block;
  }
  .fourth-block__swiper {
    display: block;
  }
  .fourth-block__swiper {
    margin-bottom: 60px;
  }
  .fourth-block__slide {
    padding: 30px 0;
  }
  .fourth-block__pagination .swiper-pagination-bullet {
    background: #3d3d50;
    margin-right: 20px !important;
  }
}
.fifth-block__container-background {
  background: #eee0da;
  border-radius: 20px;
}
.fifth-block__body {
  padding: 120px 0;
  margin-bottom: 200px;
}
.fifth-block__title {
  margin-bottom: 80px;
}
.fifth-block__grid-header {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 360px));
  grid-template-rows: repeat(1, minmax(auto, 505px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}
.fifth-block__grid-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 360px));
  grid-template-rows: repeat(2, minmax(auto, 505px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  row-gap: 80px;
}
.fifth-block__grid-card_opacity {
  opacity: 0;
}
.fifth-block__grid-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.fifth-block hr {
  max-width: 1280px;
  height: 0px;
  opacity: 0.2;
  border: 2px solid #3d3d50;
  margin: 80px 0;
}
.fifth-block__title-h5 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #3d3d50;
  margin: 30px 0 10px 0;
}
.fifth-block__sub-title-h6 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ee786b;
}
.fifth-block__swiper {
  display: none;
}

@media (max-width: 1360px) {
  .fifth-block__grid-header {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .fifth-block__grid-footer {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 40px;
  }
  .fifth-block hr {
    margin: 40px 0;
  }
}
@media (max-width: 768px) {
  .fifth-block__body {
    padding: 30px 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .fifth-block__title {
    text-align: center;
    margin: 0;
  }
  .fifth-block__body-grid {
    display: none;
  }
  .fifth-block__swiper {
    display: block;
    margin-bottom: 60px;
  }
  .fifth-block__slide {
    padding: 30px 0;
  }
  .fifth-block__grid-image {
    position: relative;
    height: 356px;
  }
  .fifth-block__grid-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
  .fifth-block__pagination .swiper-pagination-bullet {
    background: #3d3d50;
    margin-right: 20px !important;
  }
}
.page__sixth-block {
  margin-bottom: 200px;
}

.sixth-block__header {
  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;
}
.sixth-block__image {
  position: relative;
  max-width: 600px;
  width: 100%;
  min-height: 600px;
}
.sixth-block__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sixth-block__body-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(auto, 300px));
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  row-gap: 80px;
}
.sixth-block__column-grid:nth-child(2) {
  grid-column: 2/span 3;
}
.sixth-block__box-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.sixth-block__box-number::after {
  content: "";
  margin-left: 20px;
  width: 100%;
  opacity: 0.2;
  border: 2px solid #6f6f82;
}
.sixth-block__number {
  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;
  width: 80px;
  height: 80px;
  background: #ee786b;
  border-radius: 80px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #ffffff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.sixth-block__title-h5 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #3d3d50;
}
.sixth-block__text-h6 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #3d3d50;
  margin: 10px 0 30px 0;
}
.sixth-block__btn {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #3d3d50;
  border: 1px solid rgba(61, 61, 80, 0.4);
  border-radius: 50px;
  padding: 15px 20px;
  position: relative;
}
.sixth-block__btn_load {
  padding: 15px 20px 15px 40px;
}
.sixth-block__btn_load::before {
  content: url(../img/IconLoad.png);
  position: absolute;
  top: 60%;
  left: 0px;
  margin: 0 10px 0 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sixth-block__box-bottom-video {
  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-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.sixth-block__body-bottom_video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sixth-block__video-container {
  margin-left: 50px;
  position: relative;
  top: 0;
  left: 0;
  width: 200px;
  height: 113px;
}
.sixth-block__video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  border-radius: 20px;
}

/* .sixth-block {
	// .sixth-block__container

	&__container {
	}

	// .sixth-block__sub-container

	&__sub-container {
	}

	// .sixth-block__body

	&__body {
		margin-bottom: 200px;
	}

	// .sixth-block__header

	&__header {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	// .sixth-block__title

	&__title {
	}

	// .sixth-block__image

	&__image {
		position: relative;
		max-width: 600px;
		width: 100%;
		min-height: 600px;
		img {
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0%;
			left: 0%;
			object-fit: contain;
		}
	}

	// .sixth-block__body-grid

	&__body-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(auto, 360px));
		grid-template-rows: repeat(2, 1fr);
		column-gap: 100px;
		row-gap: 80px;
	}

	// .sixth-block__column-grid

	// .sixth-block__number

	&__box-number {
		position: relative;
		overflow: hidden;
		margin-bottom: 30px;
	}

	&__number {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 80px;
		height: 80px;
		background: #ee786b;
		border-radius: 80px;
		font-family: "Gilroy";
		font-style: normal;
		font-weight: 600;
		font-size: 30px;
		line-height: 140%;
		color: #ffffff;
		overflow: hidden;
		&::after {
			content: "";
			display: block;
			position: absolute;
			top: 50%;
			left: 100px;
			width: 100%;
			opacity: 0.2;
			border: 2px solid #6f6f82;
		}
	}

	&__box-number {
		display: flex;
		align-items: center;
		&::after {
			content: "";
			margin-left: 20px;
			width: 100%;
			opacity: 0.2;
			border: 2px solid #6f6f82;
		}
	}

	// .sixth-block__number

	&__number {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 80px;
		height: 80px;
		background: #ee786b;
		border-radius: 80px;
		font-family: "Gilroy";
		font-style: normal;
		font-weight: 600;
		font-size: 30px;
		line-height: 140%;
		color: #ffffff;
		flex: 0 0 auto;
	}

	.grid-column-video {
		grid-column: span 2;
	}

	&__video-block {
		display: flex;
		justify-content: space-evenly;
		align-items: start;
	}

	// .sixth-block__title-h5

	&__title-h5 {
		font-family: "Gilroy";
		font-style: normal;
		font-weight: 600;
		font-size: 30px;
		line-height: 140%;
		color: #3d3d50;
		margin-bottom: 10px;
	}

	// .sixth-block__text

	&__text {
		font-family: "Gilroy";
		font-style: normal;
		font-weight: 500;
		font-size: 17px;
		line-height: 150%;
		color: #3d3d50;
		margin-bottom: 30px;
	}

	// .sixth-block__button

	&__button {
		display: inline-block;
		font-family: "Gilroy";
		font-style: normal;
		font-weight: 500;
		font-size: 17px;
		line-height: 150%;
		color: #3d3d50;
		padding: 15px 20px;
		border: 1px solid rgba(61, 61, 80, 0.4);
		border-radius: 50px;
		position: relative;
		&_load {
			padding: 15px 20px 15px 54px;
			&::before {
				content: url(../img/download-02.svg);
				display: block;
				transform: translate(-50%, 50%);
				position: absolute;
				top: 0;
				left: 25%;
			}
		}
	}

	// .sixth-block__video

	&__video {
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
		border-radius: 20px;
	}
} */
@media (max-width: 992px) {
  .sixth-block__body-grid {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media (max-width: 768px) {
  .sixth-block__body-grid {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    row-gap: 40px;
  }
  .sixth-block__title-text {
    margin-right: 50px;
  }
  .sixth-block__body {
    margin-bottom: 80px;
  }
  .sixth-block__number {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .sixth-block__title-h5 {
    font-size: 20px;
  }
  .sixth-block__text {
    font-size: 15px;
  }
  .sixth-block__video-container {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .sixth-block__body-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }
  .sixth-block__column-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    grid-column: 1/1;
  }
  .sixth-block__column-grid:nth-child(2) {
    grid-column: 1/1;
    grid-row: 2/span 2;
  }
  .sixth-block__video-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sixth-block__body-bottom {
    margin-left: 20px;
  }
  .sixth-block__box-bottom-video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sixth-block__box-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .sixth-block__box-number::after {
    content: "";
    width: 100%;
    -webkit-transform: rotate(90deg) translateX(60%);
        -ms-transform: rotate(90deg) translateX(60%);
            transform: rotate(90deg) translateX(60%);
    opacity: 0.2;
    border: 2px solid #6f6f82;
  }
  .sixth-block__body-bottom_video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  .sixth-block__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sixth-block__number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .sixth-block__title-h5 {
    font-size: 20px;
  }
  .sixth-block__text {
    font-size: 14px;
  }
  .sixth-block__image {
    position: relative;
    max-width: 350px;
    width: 100%;
    min-height: 350px;
  }
  .sixth-block__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.page__seventh-block {
  margin-bottom: 200px;
}

.seventh-block__container-background {
  overflow: hidden;
  background: #d2eaf0;
  border-radius: 20px;
}
.seventh-block__body {
  padding: 120px 0;
}
.seventh-block__title {
  text-align: center;
  position: relative;
  z-index: 100;
  margin-bottom: 80px;
}
.seventh-block__header {
  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;
  position: relative;
  z-index: 10;
  gap: 100px;
}
.seventh-block__header::after {
  content: "";
  width: 1080px;
  height: 1080px;
  position: absolute;
  top: -80%;
  left: 58%;
  background: #89cbdb;
  border-radius: 50%;
  z-index: -5;
}
.seventh-block__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}
.seventh-block__title-h3 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 120%;
  color: #3d3d50;
}
.seventh-block__sub-title {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #3d3d50;
  margin: 20px 0 40px 0;
}
.seventh-block__item {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #3d3d50;
  margin-bottom: 10px;
  position: relative;
  margin-left: 20px;
}
.seventh-block__item::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -25px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #89cbdb;
  -webkit-transform: matrix(1, 0, -0.21, 0.98, 0, 0);
      -ms-transform: matrix(1, 0, -0.21, 0.98, 0, 0);
          transform: matrix(1, 0, -0.21, 0.98, 0, 0);
}
.seventh-block__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 100px;
  margin-top: 80px;
  position: relative;
  z-index: 10;
}
.seventh-block__footer::before {
  content: "";
  width: 850px;
  height: 850px;
  position: absolute;
  top: 0%;
  left: -33%;
  background: #89cbdb;
  border-radius: 50%;
  z-index: -5;
}

@media (max-width: 1280px) {
  .seventh-block__header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 20px;
  }
  .seventh-block__image-top img {
    position: absolute;
    top: 0;
    left: 30%;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .seventh-block__footer {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 60px 0;
  }
  .seventh-block__footer::before {
    content: "";
    width: 450px;
    height: 450px;
    position: absolute;
    top: 0%;
    left: -23%;
    background: #89cbdb;
    border-radius: 50%;
    z-index: -5;
  }
  .seventh-block__image-bottom img {
    position: absolute;
    top: 0;
    right: 30%;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 992px) {
  .seventh-block__body {
    padding: 30px 0;
  }
  .seventh-block__header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 20px;
  }
  .seventh-block__header::after {
    content: "";
    width: 500px;
    height: 500px;
    position: absolute;
    top: -20%;
    left: 58%;
    background: #89cbdb;
    border-radius: 50%;
    z-index: -5;
  }
  .seventh-block__image-top img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 70%;
    height: 70%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .seventh-block__footer {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  .seventh-block__footer::before {
    content: "";
    width: 450px;
    height: 450px;
    position: absolute;
    top: 0%;
    left: -33%;
    background: #89cbdb;
    border-radius: 50%;
    z-index: -5;
  }
  .seventh-block__image-bottom img {
    position: absolute;
    top: 5%;
    right: 60%;
    width: 70%;
    height: 70%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .seventh-block__title-h3 {
    font-size: 35px;
  }
  .seventh-block__sub-title {
    font-size: 20px;
  }
  .seventh-block__item {
    font-size: 15px;
  }
}
@media (max-width: 690px) {
  .seventh-block__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .seventh-block__header::after {
    content: "";
    width: 500px;
    height: 500px;
    position: absolute;
    top: -30%;
    left: 48%;
    background: #89cbdb;
    border-radius: 50%;
    z-index: -5;
  }
  .seventh-block__image-top img {
    position: relative;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .seventh-block__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .seventh-block__footer::before {
    content: "";
    width: 450px;
    height: 450px;
    position: absolute;
    top: 0%;
    left: -43%;
    background: #89cbdb;
    border-radius: 50%;
    z-index: -5;
  }
  .seventh-block__image-bottom img {
    position: relative;
    top: 5%;
    right: 0%;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .seventh-block__title-h3 {
    font-size: 28px;
  }
  .seventh-block__item {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .seventh-block__container {
    padding: 0;
  }
  .seventh-block__container-background {
    border-radius: 0;
  }
}
.eighth-block {
  /* &__box-number {
  	position: relative;
  	overflow: hidden;
  	margin-bottom: 30px;
  } */
}
.eighth-block__body {
  margin-bottom: 200px;
}
.eighth-block__header {
  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;
}
.eighth-block__image {
  position: relative;
  width: 600px;
  height: 600px;
}
.eighth-block__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eighth-block__body-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 290px));
  grid-template-rows: 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.eighth-block__box-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.eighth-block__box-number::after {
  content: "";
  margin-left: 20px;
  width: 100%;
  opacity: 0.2;
  border: 2px solid #6f6f82;
}
.eighth-block__number {
  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;
  width: 80px;
  height: 80px;
  background: #89cbdb;
  border-radius: 80px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #ffffff;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.eighth-block__title-h5 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #3d3d50;
  margin-bottom: 10px;
}
.eighth-block__text {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #3d3d50;
  margin-bottom: 30px;
}

@media (max-width: 1120px) {
  .eighth-block__body-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    row-gap: 40px;
  }
}
@media (max-width: 767px) {
  .eighth-block__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .eighth-block__title br {
    display: none;
  }
  .eighth-block__body-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    row-gap: 40px;
  }
  .eighth-block__column-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .eighth-block__column-grid-bottom {
    margin-left: 20px;
  }
  .eighth-block__image {
    width: 350px;
    height: 350px;
  }
  .eighth-block__box-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    overflow: visible;
  }
  .eighth-block__box-number::after {
    content: "";
    width: 100%;
    margin-top: 10px;
    -webkit-transform: rotate(90deg) translateX(40%);
        -ms-transform: rotate(90deg) translateX(40%);
            transform: rotate(90deg) translateX(40%);
    opacity: 0.2;
    border: 2px solid #6f6f82;
  }
}
.form-block__container-background {
  background: #ee786b;
  border-radius: 20px;
}
.form-block__body {
  padding: 120px 0;
  margin-bottom: 200px;
}
.form-block__title {
  text-align: center;
}
.form-block__form-top {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.form-block__name {
  grid-column: span 2;
  padding: 15px 23px;
  border: 1px solid #dfe1ee;
  border-radius: 50px;
  background: #ffffff;
}
.form-block__name input {
  width: 100%;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #6f6f82;
  opacity: 0.5;
}
.form-block__phone {
  padding: 15px 23px;
  border: 1px solid #dfe1ee;
  border-radius: 50px;
  background: #ffffff;
}
.form-block__phone input {
  width: 100%;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #6f6f82;
  opacity: 0.5;
}
.form-block__mail {
  padding: 15px 23px;
  border: 1px solid #dfe1ee;
  border-radius: 50px;
  background: #ffffff;
}
.form-block__mail input {
  width: 100%;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #6f6f82;
  opacity: 0.5;
}
.form-block__block-link {
  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;
  gap: 30px;
  margin-bottom: 80px;
}
.form-block__block-link_pink {
  background: #eee0da;
  border-radius: 20px;
  padding: 40px;
}
.form-block__block-link_green {
  background: #d2eaf0;
  border-radius: 20px;
  padding: 40px;
}
.form-block__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 585px;
}
.form-block__title-h5 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 140%;
  color: #3d3d50;
}
.form-block__title-h6 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #3d3d50;
  margin: 10px 0;
}
.form-block__button {
  display: inline-block;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #3d3d50;
  padding: 15px 20px;
  border: 1px solid rgba(61, 61, 80, 0.4);
  border-radius: 50px;
  position: relative;
}
.form-block__button_load {
  padding: 15px 20px 15px 54px;
}
.form-block__button_load::before {
  content: url(../img/download-02.svg);
  display: block;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  position: absolute;
  top: 0;
  left: 25%;
}
.form-block__input-link {
  padding: 15px 23px;
  border: 1px solid #dfe1ee;
  border-radius: 50px;
  background: #ffffff;
  margin-top: 30px;
}
.form-block__input-link input {
  width: 100%;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #6f6f82;
  opacity: 0.5;
}
@media (max-width: 425px) {
  .form-block__input-link input {
    font-size: 14px;
  }
}
.form-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.form-block__submit {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.form-block__button-submit {
  background: #3d3d50;
  border: 1px solid rgba(61, 61, 80, 0.4);
  border-radius: 50px;
  padding: 15px 23px;
  max-width: 625px;
  width: 100%;
  text-align: center;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
.form-block__text-h6 {
  text-align: center;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #dfe1ee;
}

@media (max-width: 767px) {
  .form-block__form-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-block__block-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .form-block__body {
    padding: 30px 0;
  }
  .form-block__block-link {
    margin-bottom: 30px;
  }
  .form-block__body-accordion {
    margin-bottom: 80px;
  }
  .form-block__form-top {
    padding: 30px 0;
  }
}
@media (max-width: 375px) {
  .form-block__container {
    padding: 0;
  }
  .form-block__container-background {
    border-radius: 0;
  }
}
.tenth-block__title {
  margin-bottom: 60px;
}
.tenth-block__body-accordion {
  margin-bottom: 200px;
}

.accordion-body__accordion {
  background: #f9f9fa;
  border-radius: 20px;
  padding: 30px 40px;
}
.accordion-body__accordion:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .accordion-body__accordion {
    padding: 30px 60px 30px 20px;
  }
}
.accordion-body__accordion-label {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  color: #3d3d50;
  position: relative;
  cursor: pointer;
}
.accordion-body__accordion-label::before {
  content: url(../img/angle.png);
  position: absolute;
  top: 50%;
  right: -25px;
  font-size: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 576px) {
  .accordion-body__accordion-label::before {
    right: -35px;
  }
}
.accordion-body__accordion-label.active::before {
  content: url(../img/angle.png);
  font-size: 30px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-body__accordion-content {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #6f6f82;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  height: 0;
}
.accordion-body__accordion-content.active {
  height: 100px;
}

@media (max-width: 1440px) {
  .accordion-body__accordion-label {
    font-size: calc(20px + 10 * (100vw - 320px) / 1280);
  }
  .accordion-body__accordion-content {
    font-size: calc(14px + 3 * (100vw - 320px) / 1280);
  }
}
@media (max-width: 585px) {
  .tenth-block__accordion-label {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 140%;
    color: #3d3d50;
    position: relative;
    cursor: pointer;
  }
  .tenth-block__accordion-label::before {
    content: url(../img/angle.png);
    position: absolute;
    top: 50%;
    right: -85px;
    font-size: 30px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.footer__content {
  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;
  background-color: #3d3d50;
}
.footer__content::before {
  content: url(../img/footer-png01.png);
  margin-top: 54px;
}
.footer__content::after {
  content: url(../img/footer-png02.png);
  margin-top: 64px;
}
.footer__body {
  padding: 60px 0;
  max-width: 1400px;
  width: 100%;
}
.footer__body-logo-nav {
  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;
  margin-bottom: 36px;
}
.footer__logo {
  position: relative;
}
.footer__logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__list {
  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;
}
.footer__item:not(:last-child) {
  margin-right: 30px;
}
.footer__link {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
.footer__bottom {
  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;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #6f6f82;
}
.footer__bottom-block {
  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__list-rules {
  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;
  margin-right: 20px;
}
.footer__item-rules:not(:last-child) {
  margin-right: 20px;
}
.footer__link-rules {
  color: #6f6f82;
}
.footer__list-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__item-social {
  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;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #6f6f82;
}
.footer__item-social:not(:last-child) {
  margin-right: 20px;
}
.footer__link-social {
  color: #3d3d50;
}

@media (max-width: 1360px) {
  .footer__logo {
    margin-bottom: 30px;
  }
  .footer__body-logo-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .footer__item {
    margin-bottom: 30px;
  }
  .footer__content {
    padding: 41px 34px;
    position: relative;
  }
  .footer__content::before {
    display: none;
  }
  .footer__content::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 40%;
    left: 80%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer__bottom-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .footer__list-rules {
    margin: 20px 0;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 768px) {
  .footer__link-rules {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .footer__item {
    margin-bottom: 16px;
  }
  .footer__list-rules {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin: 24px 0;
  }
  .footer__item-rules:not(:last-child) {
    margin: 0 0 16px 0;
  }
  .footer__content {
    position: relative;
  }
  .footer__content::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 70%;
    left: 62%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}