@charset "UTF-8";
/* @import 'fonts'; */
.container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1360px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding-top: 144px;
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 114px;
  }
}

.content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
  margin-bottom: 30px;
}
.content__page p {
  margin-bottom: 30px;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #0E3A53;
  background: #EDEEE6;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.header {
  position: fixed;
  width: 100%;
  top: 30px;
  left: 0;
  z-index: 100;
}

.header__row {
  background: #FBFBFB;
  border-radius: 16px;
  padding: 20px 30px;
  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;
}
@media screen and (max-width: 600px) {
  .header__row {
    padding: 20px 10px;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  .logo {
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .logo img {
    width: 150px;
  }
}

.header__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu .menu .menu-item {
  margin-right: 32px;
  position: relative;
}
.header__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.header__menu .menu .menu-item a {
  color: #0E3A53;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__menu .menu .menu-item-has-children a::after {
  content: "";
  min-width: 10px;
  min-height: 6px;
  width: 10px;
  height: 6px;
  background: url("../img/lang__arrow.svg") no-repeat;
  background-size: cover;
  display: block;
  margin-left: 5px;
}
.header__menu .menu .menu-item-has-children .sub-menu {
  position: absolute;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 35px 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 330px;
  -webkit-box-shadow: 0px 27px 18.8px rgba(14, 58, 83, 0.27);
          box-shadow: 0px 27px 18.8px rgba(14, 58, 83, 0.27);
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item {
  margin-right: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(14, 58, 83, 0.1098039216);
  margin-bottom: 17px;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  padding-left: 20px;
  margin-top: 18px;
  width: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item {
  padding-bottom: 0px;
  border-bottom: 0px solid rgba(14, 58, 83, 0.1098039216);
  margin-bottom: 0px;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item a {
  font-weight: 500;
  font-size: 14px;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children a::after {
  display: block;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu {
  margin-top: 10px;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu .menu-item a {
  font-weight: 300;
  color: #CDA78F;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item-has-children a::after {
  content: "";
  min-width: 14px;
  min-height: 8px;
  width: 14px;
  height: 8px;
  background: url("../img/arrow__sub__menu.svg") no-repeat;
  background-size: cover;
  display: block;
  margin-left: 5px;
}

#lang a {
  color: #0E3A53 !important;
}

.lang__arrow {
  margin-left: 6px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.current__lang {
  font-weight: 600;
  font-size: 15px;
  color: #0E3A53;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lang-item {
  font-size: 15px;
  color: #0E3A53;
}

.lang__hover {
  color: #0E3A53;
  background: #e5f3ff;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
}
.lang__hover li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
  margin-left: 30px;
}
@media screen and (max-width: 1200px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .burger__button {
    margin-left: 15px;
  }
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
  margin-right: 11px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  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;
  width: 22px;
  height: 22px;
  position: relative;
}
.burger span {
  width: 22px;
  height: 2px;
  margin-bottom: 4px;
  background: #0E3A53;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger span:nth-child(1) {
  width: 15px;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 22px;
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.back {
  background: rgba(18, 18, 18, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 60px;
}
@media screen and (max-width: 1440px) {
  .socials {
    margin-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .socials {
    margin-left: 15px;
  }
}

.social__link {
  margin-right: 17px;
}
@media screen and (max-width: 600px) {
  .social__link {
    margin-right: 10px;
  }
}
.social__link:nth-last-child(1) {
  margin-right: 0;
}

.mobile {
  position: fixed;
  top: 120px;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .mobile {
    width: 100%;
    overflow-y: scroll;
  }
}

.mobile__menu {
  background: #FBFBFB;
  padding: 20px 15px;
  height: 400px;
  border-radius: 12px;
  overflow-x: scroll;
}
.mobile__menu .socials {
  margin-top: 30px;
  margin-left: 0;
}
.mobile__menu .header__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.mobile__menu .header__menu .menu .menu-item {
  margin-right: 32px;
  position: relative;
}
.mobile__menu .header__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.mobile__menu .header__menu .menu .menu-item a {
  color: #0E3A53;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile__menu .header__menu .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile__menu .header__menu .menu .menu-item-has-children a::after {
  content: "";
  min-width: 10px;
  min-height: 6px;
  width: 10px;
  height: 6px;
  background: url("../img/lang__arrow.svg") no-repeat;
  background-size: cover;
  display: block;
  margin-left: 5px;
  display: none !important;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu {
  position: relative;
  background: transparent;
  border-radius: 0px;
  padding: 0px 0px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  -webkit-box-shadow: 0px 0px 0px rgba(14, 58, 83, 0.27);
          box-shadow: 0px 0px 0px rgba(14, 58, 83, 0.27);
  padding-left: 20px;
  display: block !important;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item {
  margin-right: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(14, 58, 83, 0.1098039216);
  margin-bottom: 17px;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  padding-left: 20px;
  margin-top: 5px;
  width: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item {
  padding-bottom: 0px;
  border-bottom: 0px solid rgba(14, 58, 83, 0.1098039216);
  margin-bottom: 0px;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item a {
  font-weight: 500;
  font-size: 16px;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children a::after {
  display: block;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu {
  margin-top: 10px;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu .menu-item a {
  font-weight: 300;
  color: #CDA78F;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile__menu .header__menu .menu .menu-item-has-children .sub-menu .menu-item-has-children a::after {
  content: "";
  min-width: 14px;
  min-height: 8px;
  width: 14px;
  height: 8px;
  background: url("../img/arrow__sub__menu.svg") no-repeat;
  background-size: cover;
  display: block;
  margin-left: 5px;
}

.mobile__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.section1 {
  margin-top: 111px;
  position: relative;
}

.section1__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section1__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section1__left {
  width: 65%;
  padding: 65px 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section1__left {
    width: 100%;
    padding: 15px;
  }
}

.section1__right {
  width: 35%;
}
.section1__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .section1__right {
    width: 100%;
  }
}

.section1__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 26px;
    line-height: 120%;
  }
}

.section1__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 27px;
}
@media screen and (max-width: 1024px) {
  .section1__txt {
    font-size: 16px;
    line-height: 120%;
  }
  .section1__txt br {
    display: none;
  }
}
.section1__txt strong {
  font-weight: 900;
  text-transform: uppercase;
}
.section1__txt::before {
  content: "";
  min-height: 24px;
  min-width: 24px;
  background: url("../img/red__arrow.svg") no-repeat;
  display: block;
  margin-right: 14px;
}

.section1__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.section1__buttons .button1 {
  margin-right: 14px;
}
@media screen and (max-width: 1024px) {
  .section1__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section1__buttons .button1 {
    margin-right: 0px;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .section1__buttons .button2 {
    max-width: 100%;
  }
}

.button1 {
  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: 1px solid #DA2F37;
  border-radius: 111px;
  text-decoration: none;
  color: #DA2F37;
  font-size: 15px;
  font-weight: 600;
  padding: 21px 20px;
  max-width: 266px;
  width: 100%;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button1:hover {
  background: #DA2F37;
  color: #fff;
}

.button2 {
  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: 1px solid #0E3A53;
  border-radius: 111px;
  text-decoration: none;
  color: #0E3A53;
  font-size: 15px;
  font-weight: 600;
  padding: 21px 20px;
  max-width: 266px;
  width: 100%;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button2:hover {
  background: #0E3A53;
  color: #fff;
}

.comment__block {
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(15.15px);
          backdrop-filter: blur(15.15px);
  border-radius: 12px;
  width: 280px;
  position: absolute;
  bottom: 50px;
  right: -100px;
  padding: 12px;
}
@media screen and (max-width: 1300px) {
  .comment__block {
    bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .comment__block {
    width: 300px;
    right: -250px;
  }
}
@media screen and (max-width: 1024px) {
  .comment__block {
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
  }
}

.comment {
  border: 1px solid #CDA78F;
  border-radius: 12px;
  padding-top: 40px;
  padding-left: 30px;
  padding-bottom: 30px;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1200px) {
  .comment {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.comment::before {
  content: "";
  width: 24px;
  height: 19px;
  background: url("../img/comment.svg") no-repeat;
  display: block;
  margin-bottom: 10px;
}

.section2 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section2 {
    margin-top: 40px;
  }
}

.section2__title {
  font-weight: 600;
  font-size: 39.4226px;
  line-height: 49px;
  letter-spacing: -0.02em;
  color: #0E3A53;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .section2__title {
    font-size: 26px;
    line-height: 120%;
  }
  .section2__title br {
    display: none;
  }
}

.section2__txt {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #0E3A53;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .section2__txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.section2__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section2__item {
  background: #FBFBFB;
  border-radius: 12px;
  padding: 35px 45px;
}
@media screen and (max-width: 1024px) {
  .section2__item {
    padding: 15px;
  }
}

.section2__item__img {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section2__item__img {
    margin-bottom: 20px;
  }
}

.section2__item__txt {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #0E3A53;
}

.section3 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    margin-top: 40px;
  }
}

.section4 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section4 {
    margin-top: 40px;
  }
}

.section4__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .section4__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section4__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.section4__right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
}

.section4__item {
  background: rgba(255, 255, 255, 0.63);
  -webkit-backdrop-filter: blur(27.5px);
          backdrop-filter: blur(27.5px);
  border-radius: 20px;
  padding: 50px 35px;
}

.section4__item__txt {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}

.section5 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    margin-top: 40px;
  }
}

.section5__title {
  font-weight: 400;
}
.section5__title span {
  font-weight: 600;
}

.blog-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main__cat {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .main__cat {
    margin-bottom: 30px;
  }
}

.cat {
  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;
  text-decoration: none;
  border: 1px solid #CDA78F;
  border-radius: 43px;
  padding: 16px 25px;
  font-weight: 600;
  color: #0E3A53;
  margin-right: 12px;
  margin-bottom: 12px;
}
.cat:nth-last-child(1) {
  margin-right: 0;
}

.section6 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section6 {
    margin-top: 40px;
  }
}

.section6__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section6__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}

.section6__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section6__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section6__right {
  width: 48%;
  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;
}
@media screen and (max-width: 1024px) {
  .section6__right {
    width: 100%;
    -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: flex-start;
  }
}

.google__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .google__block {
    margin-bottom: 30px;
  }
}

.google__numbers {
  font-weight: 900;
  margin: 0 20px;
}

.review-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}

.google__col {
  color: rgba(17, 17, 17, 0.5019607843);
  font-weight: 300;
}

.reviews {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13px 1fr 13px 1fr 13px 1fr 13px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 13px;
  grid-row-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .reviews {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.review__item {
  background: #F6F6F8;
  border-radius: 8px;
  font-family: "Arimo";
}

.rev__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.rev__img {
  position: relative;
  margin-right: 12px;
}

.r__img {
  width: 40px;
  height: 40px;
  border-radius: 100px;
}

.rev__google {
  position: absolute;
  bottom: -8px;
  right: -5px;
}

.rev__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: bold;
}
.rev__name img {
  margin-left: 5px;
}

.rev__date {
  font-size: 12px;
  color: rgba(17, 17, 17, 0.5019607843);
}

.rev__stars {
  margin-bottom: 10px;
}

.rev__txt {
  line-height: 23px;
  margin-bottom: 10px;
}

.rev__read__more {
  color: #197BFF;
  text-decoration: none;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 300;
}
.breadcrumbs a {
  text-decoration: none;
  color: #0E3A53;
}

.single__left {
  padding-top: 20px;
}

.single__right {
  min-height: 500px;
}
@media screen and (max-width: 1024px) {
  .single__right {
    min-height: auto;
  }
}
.single__right img {
  border-radius: 20px;
}

.single__title {
  font-weight: 600;
  font-size: 56.545px;
  line-height: 68px;
  letter-spacing: -0.02em;
  color: #0E3A53;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .single__title {
    font-size: 26px;
    line-height: 120%;
  }
}

.single__desc {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #0E3A53;
}
@media screen and (max-width: 1024px) {
  .single__desc {
    font-size: 16px;
    line-height: 120%;
  }
}

.single__section2__title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .single__section2__title {
    margin-bottom: 30px;
  }
}

.tarifs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}
@media screen and (max-width: 1024px) {
  .tarifs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.tarif__item {
  border: 1px solid #CDA78F;
  border-radius: 20px;
  padding: 12px 15px;
}

.tarif__title {
  background: -webkit-gradient(linear, left bottom, left top, from(#EBE5D3), to(#EBE5D3)), #FFFFFF;
  background: linear-gradient(0deg, #EBE5D3, #EBE5D3), #FFFFFF;
  border-radius: 20px;
  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;
  font-weight: 600;
  font-size: 20px;
  padding: 27px 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .tarif__title {
    font-size: 18px;
    padding: 20px 15px;
  }
}

.tarif__desc {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
  text-align: center;
}

.tarif__content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px 25px;
}
@media screen and (max-width: 1024px) {
  .tarif__content {
    padding: 25px 15px;
  }
}
.tarif__content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .tarif__content h3 {
    font-size: 18px;
  }
}
.tarif__content p {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .tarif__content p {
    font-size: 15px;
  }
}
.tarif__content p:nth-last-child(1) {
  margin-bottom: 0;
}
.tarif__content .button1 {
  max-width: 100%;
  margin-bottom: 12px;
}
.tarif__content .button2 {
  max-width: 100%;
}

.tarifs__pay {
  text-align: center;
  background: #D9D9D9;
  padding: 20px 15px;
  margin-top: 20px;
}

.single__section3 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .single__section3 {
    margin-top: 40px;
  }
}

.single__section4 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .single__section4 {
    margin-top: 40px;
  }
}

.single__section4__content h2 {
  font-weight: 600;
  font-size: 39.4226px;
  line-height: 49px;
  letter-spacing: -0.02em;
  color: #0E3A53;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .single__section4__content h2 {
    font-size: 26px;
    line-height: 120%;
  }
  .single__section4__content h2 br {
    display: none;
  }
}
.single__section4__content h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.single__section4__content p {
  margin-bottom: 30px;
  font-weight: 500;
}

.single__section5 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .single__section5 {
    margin-top: 40px;
  }
}

.single__section5__main {
  background: #EBE5D3;
  border-radius: 20px;
  padding: 15px;
}

.single__section5__block {
  border: 1px solid #CDA78F;
  border-radius: 20px;
  padding: 60px;
}
@media screen and (max-width: 1024px) {
  .single__section5__block {
    padding: 15px;
  }
}

.single__section5__title {
  font-weight: 600;
  font-size: 39.4226px;
  line-height: 49px;
  letter-spacing: -0.02em;
  color: #0E3A53;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .single__section5__title {
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 30px;
  }
  .single__section5__title br {
    display: none;
  }
}

.single__section5__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .single__section5__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }
}

.single__section5__item {
  background: #EDEEE6;
  border-radius: 12px;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .single__section5__item {
    padding: 15px;
  }
}

.number {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #DA2F37;
  margin-bottom: 20px;
}

.tekst {
  font-weight: 500;
}

.single__section5__text {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .single__section5__text {
    font-size: 16px;
  }
}

.single__section6 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .single__section6 {
    margin-top: 40px;
  }
}

.single__section6__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .single__section6__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.single__section6__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .single__section6__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.single__section6__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .single__section6__right {
    width: 100%;
  }
}

.start__item {
  background: #FBFBFB;
  border-radius: 12px;
  padding: 15px 30px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .start__item {
    padding: 15px 15px;
    font-size: 18px;
  }
}
.start__item img {
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .start__item img {
    margin-right: 15px;
  }
}
.start__item:nth-last-child(1) {
  margin-bottom: 0;
}

.start__content {
  margin-bottom: 30px;
  font-weight: 500;
}

.single__section7 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .single__section7 {
    margin-top: 40px;
  }
}

.single__section7__title {
  text-align: center;
}

.question__item {
  background: #FBFBFB;
  border-radius: 12px;
  margin-bottom: 6px;
  padding: 12px;
  padding-left: 40px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .question__item {
    padding-left: 12px;
  }
}
.question__item:nth-last-child(1) {
  margin-bottom: 0;
}

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

.question__text {
  font-weight: 600;
  font-size: 22px;
  line-height: 49px;
  color: #0E3A53;
}
@media screen and (max-width: 1024px) {
  .question__text {
    font-size: 18px;
  }
}

.question__plus {
  background: #EBE5D3;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  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;
}
.question__plus::before {
  content: "+";
  display: block;
  font-weight: 600;
  font-size: 22px;
  line-height: 49px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #DA2F37;
}

.active2 .question__plus::before {
  content: "-";
}

.kurs__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 14px 1fr 14px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 14px;
  grid-row-gap: 17px;
}
@media screen and (max-width: 1024px) {
  .kurs__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.kurs__item {
  border: 1px solid #CDA78F;
  border-radius: 20px;
  padding: 12px 15px;
}

.kurs__img {
  position: relative;
  margin-bottom: 12px;
}
.kurs__img img {
  height: 220px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.kurs__content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 25px;
  padding-top: 40px;
}
.kurs__content .button1 {
  max-width: 100%;
}

.kurs__title {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}

.kurs__desc {
  font-weight: 500;
  margin-bottom: 40px;
}

.yarlik {
  background: #DA2F37;
  border-radius: 11111px;
  font-size: 15px;
  font-weight: 600;
  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;
  padding: 5px 20px;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  right: 20px;
  top: -20px;
}

.blog__title {
  font-size: 56.54px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .blog__title {
    font-size: 26px;
  }
}

.custom-taxonomy-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}
@media screen and (max-width: 1024px) {
  .custom-taxonomy-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.category__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #EBECE3;
  border: 1px solid #CDA78F;
  border-radius: 20px;
  padding: 6px;
  text-decoration: none;
  color: #0E3A53;
}
.category__item img {
  border-radius: 20px;
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
.category__item:hover .category__title {
  color: #CDA78F;
}

.category__title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  padding: 0 15px;
  padding-bottom: 20px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.blog__categories {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .blog__categories {
    margin-bottom: 40px;
  }
}

.category-title {
  margin-bottom: 40px;
}

.blog-posts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .blog-posts {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.blog-category-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .blog-category-section {
    margin-bottom: 40px;
  }
}

.blog-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #0E3A53;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 12px;
}
.blog-post-item:hover .post__title {
  color: #CDA78F;
}
.blog-post-item .button1 {
  max-width: 100%;
  margin-bottom: 20px;
}

.post__image {
  margin-bottom: 30px;
}
.post__image img {
  border-radius: 20px;
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .post__title {
    font-size: 18px;
  }
}

.post__description {
  font-weight: 500;
  line-height: 22px;
  padding: 0 20px;
  margin-bottom: 30px;
}

.post__main {
  position: relative;
  border-radius: 20px;
}
.post__main img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .post__main img {
    max-height: 200px;
    height: 200px;
  }
}

.post__main__header {
  position: absolute;
  bottom: 0;
  background: url("../img/single__back.png") no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 100px 40px;
  padding-bottom: 70px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .post__main__header {
    position: relative;
    margin-top: 30px;
    background: transparent;
    padding: 0;
  }
}

.post__main__title {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .post__main__title {
    color: #0E3A53;
  }
}

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

.post__main__left {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .post__main__left {
    color: #0E3A53;
  }
}

.post-category {
  border: 1px solid #CDA78F;
  border-radius: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .post-category {
    color: #0E3A53;
  }
}

.post__content {
  margin-top: 80px;
}
.post__content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post__content h2 {
    font-size: 24px;
  }
}
.post__content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post__content h3 {
    font-size: 20px;
  }
}
.post__content h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .post__content h4 {
    font-size: 18px;
  }
}
.post__content p {
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 30px;
}
.post__content a {
  color: #DA2F37;
}
.post__content img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .post__content img {
    height: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .post__content {
    margin-top: 40px;
  }
}

.others {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .others {
    margin-top: 20px;
  }
}

.single__lessons__title {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .single__lessons__title {
    margin-bottom: 35px;
  }
}

.section2__item__title {
  margin: 25px 0;
  font-size: 18px;
  font-weight: 600;
}

.lessons__single {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.lessons__single .zagolovok {
  font-weight: 600;
  font-size: 18px;
  margin: 25px 0;
}
@media screen and (max-width: 1024px) {
  .lessons__single {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.buttons3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13px 1fr 13px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  width: 80%;
  margin: 0 auto;
}
.buttons3 .button1 {
  max-width: 100%;
}
.buttons3 .button2 {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .buttons3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.lessons__content {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .lessons__content {
    margin-top: 40px;
  }
}

.lessons__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.lessons__row:nth-last-child(1) {
  margin-bottom: 0;
}
.lessons__row:nth-child(2n) .lessons__left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 1024px) {
  .lessons__row:nth-child(2n) .lessons__left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.lessons__row:nth-child(2n) .lessons__right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 1024px) {
  .lessons__row:nth-child(2n) .lessons__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 1024px) {
  .lessons__row {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.lessons__left {
  width: 48%;
}
.lessons__left h2 {
  font-weight: 600;
  font-size: 39.4226px;
  line-height: 49px;
  letter-spacing: -0.02em;
  color: #0E3A53;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .lessons__left h2 {
    font-size: 26px;
    line-height: 120%;
  }
  .lessons__left h2 br {
    display: none;
  }
}
.lessons__left p {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 30px;
}
.lessons__left p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lessons__left {
    width: 100%;
  }
}

.lessons__right {
  width: 48%;
}
.lessons__right img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .lessons__right {
    width: 100%;
    margin-top: 30px;
  }
}

.about__content {
  margin-top: 80px;
}
.about__content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .about__content h2 {
    font-size: 24px;
  }
}
.about__content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .about__content h3 {
    font-size: 20px;
  }
}
.about__content h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .about__content h4 {
    font-size: 18px;
  }
}
.about__content p {
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 30px;
}
.about__content a {
  color: #DA2F37;
}
@media screen and (max-width: 1024px) {
  .about__content {
    margin-top: 40px;
  }
}

.page__content h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page__content h1 {
    font-size: 26px;
  }
}
.page__content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page__content h2 {
    font-size: 24px;
  }
}
.page__content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page__content h3 {
    font-size: 20px;
  }
}
.page__content h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .page__content h4 {
    font-size: 18px;
  }
}
.page__content p {
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 30px;
}
.page__content a {
  color: #DA2F37;
}

.title__404 {
  text-align: center;
  font-size: 200px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .title__404 {
    font-size: 100px;
  }
}

.text__404 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.footer {
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 45px;
  }
}

.footer__block1 {
  background: url("../img/footer.webp") no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding: 115px 30px;
}
@media screen and (max-width: 1024px) {
  .footer__block1 {
    padding: 30px 15px;
  }
}

.footer__form1 {
  background: rgba(255, 255, 255, 0.59);
  -webkit-backdrop-filter: blur(29.25px);
          backdrop-filter: blur(29.25px);
  border-radius: 12px;
  padding: 15px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.footer__form2 {
  border: 1px solid #CDA78F;
  border-radius: 12px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .footer__form2 {
    padding: 15px;
  }
}

.form1__title {
  font-style: normal;
  font-weight: 600;
  font-size: 39.4226px;
  line-height: 49px;
  letter-spacing: -0.02em;
  color: #0E3A53;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .form1__title {
    font-size: 26px;
    line-height: 120%;
  }
}

.form1__txt {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #0E3A53;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .form1__txt {
    font-size: 15px;
  }
}

.form1__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 3px 1fr;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 3px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .form1__row {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
  }
}

.form1__input {
  position: relative;
}
.form1__input input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CDA78F;
  border-radius: 6px;
  padding: 18px;
  outline: none;
  padding-left: 50px;
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.form1__input input::-webkit-input-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.form1__input input::-moz-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.form1__input input:-ms-input-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.form1__input input::-ms-input-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.form1__input input::placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.form1__input::before {
  content: "";
  width: 19px;
  height: 15px;
  display: block;
  background: url("../img/mail__ico.svg") no-repeat;
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 18px;
}

.form1__button {
  background: #DA2F37;
  border: 1px solid #DA2F37;
  border-radius: 6px;
  padding: 0px 55px;
  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;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .form1__button {
    padding: 18px 20px;
  }
}
.form1__button:hover {
  opacity: 0.6;
}

.block2 {
  background: rgba(255, 255, 255, 0.5607843137);
  border-radius: 30px;
  margin-top: 60px;
}

.footer__block2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 50px;
}
@media screen and (max-width: 1024px) {
  .footer__block2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
}

.block2__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .block2__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.block2__right {
  width: 48%;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.block2__right .form1__button {
  padding: 18px 55px;
}
.block2__right .form1__input {
  margin-bottom: 12px;
}
.block2__right .form1__input input {
  padding-left: 30px;
}
.block2__right .form1__input textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CDA78F;
  border-radius: 6px;
  padding: 18px;
  outline: none;
  padding-left: 30px;
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
  height: 130px;
}
.block2__right .form1__input textarea::-webkit-input-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.block2__right .form1__input textarea::-moz-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.block2__right .form1__input textarea:-ms-input-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.block2__right .form1__input textarea::-ms-input-placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.block2__right .form1__input textarea::placeholder {
  color: #0E3A53;
  font-weight: 500;
  font-size: 15px;
}
.block2__right .form1__input::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  .block2__right {
    width: 100%;
  }
}

.block2__title {
  font-weight: 600;
  font-size: 39.4226px;
  line-height: 49px;
  letter-spacing: -0.02em;
  color: #0E3A53;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .block2__title {
    font-size: 26px;
    line-height: 120%;
  }
}

.block2__txt {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 50px;
  color: #0E3A53;
}
@media screen and (max-width: 1024px) {
  .block2__txt {
    font-size: 16px;
  }
}

.adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  color: rgba(14, 58, 83, 0.8);
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .adress {
    font-size: 15px;
  }
}
.adress img {
  margin-right: 25px;
}

.block2__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  color: rgba(14, 58, 83, 0.8);
  text-decoration: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .block2__link {
    font-size: 15px;
  }
}
.block2__link:nth-last-child(1) {
  margin-bottom: 0;
}
.block2__link img {
  margin-right: 25px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 30px;
  background: #fff;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
}

.copy {
  font-size: 15px;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__socials {
    margin: 30px 0;
  }
}

.footer__social {
  margin-right: 12px;
}
.footer__social:nth-last-child(1) {
  margin-right: 0;
}

.link__footer {
  font-size: 15px;
  text-decoration: none;
  color: #0E3A53;
}