@charset "UTF-8";

/* Указываем box sizing */
*,
*::before,
*::after {
  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 {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

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

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

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

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --main-color: #4FCB9B;
  --main-color-2: #b8eb59;
  --bg-color: #f5f8ed;
  --bg-color-2: #f3fff2;
  --text-color: #737373;
  --text-color-2: #252B42;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 160%;
  color: var(--text-color);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

button {
  cursor: pointer;
}

a {
  transition: color 0.3s ease 0s;
}

a:hover {
  color: var(--main-color);
}

.no-scroll {
  overflow: hidden;
}

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

.btn {
  border-radius: 5px;
  background-color: var(--main-color);
  padding: 15px 40px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
}

.btn:hover {
  background-color: var(--main-color-2);
  color: #fff;
}

.btn_2 {
  background: none;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.btn_2:hover {
  background-color: var(--main-color);
  color: #fff;
}

.title {
  padding-top: 35px;
  font-size: 42px;
  line-height: 120%;
  font-weight: 700;
  position: relative;
  color: var(--text-color-2);
}

.title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 5px;
  background-color: var(--main-color-2);
}

.breadcrumbs {
  padding: 20px 0;
}

.breadcrumbs__nav {
  max-width: 100%;
}

.breadcrumbs__list {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  scroll-snap-type: both mandatory;
  scrollbar-width: none;
}

.breadcrumbs__item {
  position: relative;
  display: inline;
}

.breadcrumbs__item:not(:last-child) {
  margin-right: 35px;
}

.breadcrumbs__item:not(:last-child)::before {
  content: "/";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-47%);
  font-size: 12px;
}

.breadcrumbs__link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
}

.breadcrumbs__text {
  font-size: 14px;
  color: #999CAC;
}

/* Стартовий стан: прозорий і трохи зміщений */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.from-left {
  transform: translateX(-40px);
}

.from-right {
  transform: translateX(40px);
}

.from-bottom {
  transform: translateY(40px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: none !important;
    transform: none !important;
  }
}

.header {
  background-color: #fff;
  padding: 20px 0;
  max-height: 90px;
  position: relative;
  z-index: 20;
}

.header_fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  animation-name: show_header;
  animation-duration: 0.5s;
  z-index: 20;
  box-shadow: 0 13px 19px 0 rgba(0, 0, 0, 0.07);
  padding: 10px 0;
}

.header__logo {
  margin-right: 70px;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__content {
  display: flex;
  align-items: center;
}

.header__list {
  display: flex;
  align-items: center;
}

.header__item:not(:last-child) {
  margin-right: 40px;
}

.header__link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease 0s;
  z-index: 1;
}

.header__link:hover {
  color: var(--main-color-2);
}

.header__tools {
  display: flex;
  align-items: center;
}

.header__btn {
  z-index: 2;
  text-transform: uppercase;
  padding: 15px 25px;
  line-height: 20px;
}

.header__btn::after {
  content: url("../icons/arrow-right.svg");
  margin-left: 15px;
}

.hamburger {
  display: none;
}

@keyframes show_header {
  0% {
    opacity: 0;
    top: -20px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

.main {
  background-color: var(--bg-color);
  position: relative;
}

.main::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 0;
  background-color: #ffffff;
  width: 43%;
  height: 600px;
  z-index: 1;
  border-radius: 0 0 0 200px;
}

.main::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 25%;
  height: 300px;
  z-index: 0;
}

.main__wrapper {
  display: flex;
  justify-content: space-between;
  min-height: 500px;
}

.main__img {
  z-index: 1;
  margin-right: -100px;
  display: flex;
  align-items: flex-end;
}

.main__content {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  padding: 80px 0 120px 0;
}

.main__suptitle {
  padding-left: 2px;
  color: var(--main-color-2);
  font-weight: 700;
}

.main__title {
  margin-top: 25px;
  font-size: 51px;
  line-height: 140%;
  font-weight: 700;
  color: var(--text-color-2);
  text-transform: uppercase;
}

.main__descr {
  margin-top: 35px;
  color: var(--text-color);
  max-width: 600px;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}

.main__btn {
  margin-top: 50px;
}

.about {
  padding: 0 0 100px 0;
  margin-top: -60px;
  z-index: 2;
  position: relative;
}

.about__wrapper {
  display: flex;
  justify-content: space-around;
}

.about__item {
  padding: 40px 35px;
  background-color: #fff;
  box-shadow: 0 13px 19px 0 rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  width: calc(25% - 15px);
}

.about__item:not(:last-child) {
  margin-right: 30px;
}

.about__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 100%;
  color: var(--text-color-2);
  position: relative;
  padding-bottom: 20px;
}

.about__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--main-color-2);
}

.about__descr {
  margin-top: 20px;
  color: var(--text-color);
  font-weight: 500;
}

.how {
  padding: 100px 0 120px 0;
}

.how__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.how__content {
  width: calc(65% - 100px);
}

.how__title {
  max-width: 800px;
}

.how__text {
  margin-top: 40px;
  max-height: 208px;
  overflow-y: auto;
  padding-right: 40px;
}

.how__text::-webkit-scrollbar {
  width: 5px;
}

.how__text::-webkit-scrollbar-track {
  background: #fff;
}

.how__text::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  border-radius: 20px;
}

.how__text p:not(:last-child) {
  margin-bottom: 10px;
}

.how__btn {
  margin-top: 40px;
}

.how__slider {
  position: relative;
  width: 35%;
  overflow: hidden;
  height: fit-content;
  margin-left: -15px;
}

.how__wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.how__item {
  min-width: 100%;
  padding: 15px 70px;
  position: relative;
}

.how__img img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.09);
}

.how__descr {
  position: absolute;
  display: flex;
  align-items: center;
  top: 180px;
  left: 15px;
  width: min-content;
  max-width: 300px;
  min-height: 65px;
  padding: 10px 20px 10px 55px;
  background-color: #fff;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.09);
  color: var(--text-color-2);
  font-weight: 600;
  line-height: 20px;
  overflow: hidden;
  border-radius: 4px;
}

.how__descr span {
  position: relative;
  z-index: 2;
}

.how__descr::before {
  content: "";
  background-color: rgba(112, 119, 107, 0.445);
  position: absolute;
  width: 70px;
  height: 70px;
  left: -45px;
  top: -20px;
  border-radius: 50%;
  z-index: 0;
}

.how__descr::after {
  content: "";
  background-color: rgba(151, 160, 145, 0.445);
  position: absolute;
  width: 70px;
  height: 70px;
  left: -25px;
  bottom: -20px;
  border-radius: 50%;
  z-index: 0;
}

.how__nav {
  min-width: 145px;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.09);
  padding: 7px 10px;
  position: absolute;
  bottom: 120px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}

.slider-btn {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  padding: 7px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.slider-btn::before {
  content: "";
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 2px 2px 0 0;
  display: inline-block;
  padding: 4px;
  transition: all 0.3s ease 0s;
  margin-right: 4px;
  margin-top: -3px;
}

.slider-btn:hover {
  background-color: rgba(150, 187, 124, 0.7);
}

.prev {
  left: 0;
}

.prev::before {
  border-width: 0 0 2px 2px;
  margin-right: 0;
  margin-left: 4px;
}

.next {
  right: 0;
}

.slider-counter {
  padding: 0 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color-2);
}

.slider-counter span {
  font-size: 14px;
  color: var(--text-color);
}

.format {
  padding: 120px 0;
}

.format__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.format__img {
  width: calc(50% - 130px);
  position: relative;
  z-index: 2;
}

.format__img img {
  width: 500px;
  max-width: 100%;
  max-height: 700px;
}

.format__content {
  width: 50%;
}

.format__title {
  color: var(--text-color-2);
}

.format__descr {
  margin-top: 40px;
  color: var(--text-color-2);
}

.format__btn {
  margin-top: 50px;
}

.know {
  padding: 120px 0;
}

.know__body {
  display: flex;
  justify-content: space-between;
}

.know__img {
  width: 35%;
}

.know__img img {
  object-fit: cover;
  max-height: max-content;
}

.know__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(65% - 100px);
  height: fit-content;
}

.know__title {
  margin-bottom: 40px;
}

.know__item {
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.know__item:not(:last-child) {
  margin-bottom: 30px;
}

.know__icon {
  margin-right: 20px;
  width: 70px;
  height: 70px;
  padding: 15px;
  background-color: var(--bg-color-2);
  border-radius: 20px;
}

.know__icon svg {
  width: 100%;
  height: 100%;
}

.know__icon img {
  width: 100%;
  height: 100%;
}

.know__content {
  max-width: 80%;
}

.know__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: var(--text-color-2);
}

.know__descr {
  margin-top: 10px;
  line-height: 160%;
  font-weight: 500;
}

.know__btn {
  margin-top: 40px;
}

.join {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.join__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.join__content {
  width: 50%;
}

.join__descr {
  margin-top: 40px;
}

.join__btn {
  margin-top: 50px;
}

.join__img {
  width: calc(50% - 130px);
  position: relative;
  z-index: 2;
}

.join__img img {
  width: 100%;
  max-width: 100%;
  max-height: 600px;
}

.stats {
  padding: 20px 0 90px 0;
}

/* .stats__title {
  padding-top: 0;
}

.stats__title:before {
  content: none;
} */

.stats__wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.stats__item {
  width: calc(25% - 23px);
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 13px 19px 0 rgba(0, 0, 0, 0.07);
  padding: 20px 20px 30px 20px;
  margin-bottom: 30px;
}

.stats__item:not(:nth-child(4n)) {
  margin-right: 30px;
}

.stats__item:last-child {
  margin-right: 0;
}

.stats__img {
  display: inline-block;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.stats__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats__name {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  color: var(--text-color);
}

.article {
  padding: 120px 0;
}

.article_page {
  padding: 20px 0 90px;
}

.article__thumbnail {
  margin-top: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.article__thumbnail img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.article__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article__img {
  width: 35%;
}

.article__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.article__wrapper {
  width: calc(65% - 100px);
}

.article__wrapper_page {
  width: 100% !important;
}

.article__wrapper h2 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color-2);
}

.article__wrapper p:first-child {
  margin-top: 20px;
}

.article__wrapper p:not(:last-child) {
  margin-bottom: 15px;
}

.article__wrapper h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 20px;
  color: var(--text-color-2);
}

.article__wrapper ul,
.article__wrapper ol {
  padding-left: 20px;
}

.article__wrapper li:not(:last-child) {
  margin-bottom: 10px;
}

.article__wrapper a {
  color: var(--main-color);
}

.article__text {
  margin-top: 40px;
  max-height: 370px;
  overflow-y: auto;
  padding-right: 40px;
}

.article__text::-webkit-scrollbar {
  width: 5px;
}

.article__text::-webkit-scrollbar-track {
  background: #fff;
}

.article__text::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  border-radius: 20px;
}

.faq {
  padding: 120px 0;
}

.faq__wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.faq__col {
  width: calc(50% - 15px);
}

.faq__accordion {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.09);
}

.faq__accordion:not(:last-child) {
  margin-bottom: 20px;
}

.faq__question {
  padding: 20px 70px 20px 30px;
  position: relative;
  font-size: 17px;
  line-height: 23px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-color-2);
  user-select: none;
}

.faq__question::before {
  content: "+";
  position: absolute;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  right: 25px;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 300;
  color: var(--main-color);
}

.faq__question.active::before {
  content: "-";
  font-size: 64px;
  padding-bottom: 10px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}

.faq__answer p {
  padding: 0 30px 20px 30px;
}

.popup-overlay {
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(39, 40, 43, 0.4);
  backdrop-filter: blur(2px);
  transition: all 0.2s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-overlay.active {
  overflow: visible;
  opacity: 1;
  z-index: 50;
}

.popup {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 50px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(0.9);
}

.popup__close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.popup__close span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color-2);
  border-radius: 14px;
}

.popup__close span:nth-child(1) {
  transform: rotate(45deg) translate(0px, 1px);
}

.popup__close span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}

.popup-form.active {
  transform: scale(1);
  overflow: visible;
  opacity: 1;
  z-index: 100;
}

.popup-form__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--text-color-2);
}

.popup-form__form {
  margin-top: 30px;
  width: 320px;
}

.popup-form__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.popup-form__item:not(:last-child) {
  margin-bottom: 15px;
}

.popup-form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color-2);
}

.popup-form__input {
  margin-top: 5px;
  border: 1px solid #E5E5E5;
  background-color: #F9F9F9;
  padding: 10px 20px;
  border-radius: 5px;
  outline-width: 0;
  width: 100%;
}

.popup-form__input:focus {
  border: 1px solid var(--main-color);
}

.popup-form__input::placeholder {
  font-size: 14px;
  color: var(--text-color);
}

.popup-form__btn {
  margin-top: 30px;
  width: 100%;
  padding: 15px 40px;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.popup-form__input.wpcf7-not-valid {
  border: 1px solid #dc3232;
}

.wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 10px 15px !important;
  border-width: 1px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  line-height: 150%;
  font-weight: 500;
  color: var(--text-color-2);
  text-align: center;
}

.error-404 {
  padding: 80px 0;
}

.error-404__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-404__suptitle {
  font-size: 150px;
  line-height: 150px;
  font-weight: 900;
  color: rgb(223, 12, 12);
  text-align: center;
}

.error-404__title {
  margin-top: 30px;
  font-size: 24px;
  text-align: center;
  color: var(--text-color-2);
}

.error-404__btn {
  margin-top: 30px;
}

.feedback {
  padding: 160px 0;
  background-color: var(--bg-color-2);
  text-align: center;
}

.feedback__wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.feedback__suptitle {
  color: var(--main-color);
  font-weight: 700;
}

.feedback__title {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color-2);
}

.feedback__descr {
  margin-top: 10px;
  font-weight: 500;
}

.feedback__form {
  margin-top: 60px;
}

.feedback__item {
  display: flex;
  justify-content: space-between;
}

.feedback__item:not(:last-child) {
  margin-bottom: 10px;
}

.feedback__item>.wpcf7-form-control-wrap {
  display: contents;
}

.feedback__input {
  width: calc(50% - 5px);
  border: 1px solid #E5E5E5;
  background-color: #F9F9F9;
  padding: 12px 20px;
  border-radius: 5px;
  outline-width: 0;
  font-weight: 500;
}

.feedback__input:focus {
  border: 1px solid var(--main-color);
}

.feedback__input::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

.feedback__btn {
  width: calc(50% - 5px);
  padding: 12px 20px;
  cursor: pointer;
}

.footer {
  background-color: #fff;
  padding: 50px 0;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__text {
  max-width: 400px;
}

.footer__copy {
  margin-top: 40px;
}

.footer__name {
  font-weight: 500;
}

.footer__descr {
  margin-top: 20px;
}

.footer__mail {
  color: var(--text-color);
}

.footer__nav {
  margin-top: 40px;
}

.footer__li:not(:last-child) {
  margin-bottom: 10px;
}

.footer__link {
  color: var(--text-color);
  text-decoration: none;
  font-size: 15px;
}




.language {
  margin-right: 30px;
  z-index: 3;
}

.language__list {
  display: flex;
}

.language__item:not(:last-child) {
  margin-right: 10px;
}

.language__text {
  font-weight: 600;
  color: var(--text-color-2);
  text-decoration: none;
}

a.language__text:hover {
  color: var(--main-color-2);
}

.language__text.active {
  color: var(--text-color);
}




@media (max-width: 1920px) {
  .main::before {
    width: 40%;
  }
}

@media (max-width: 1500px) {
  .container {
    max-width: 1200px;
  }

  .title {
    padding-top: 25px;
    font-size: 36px;
  }

  .hamburger {
    display: flex;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    cursor: pointer;
    z-index: 32;
    width: 48px;
    height: 48px;
    padding: 16px 13px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
    margin-left: 30px;
  }

  .hamburger span {
    transition: all 0.1s ease 0s;
    background-color: var(--text-color-2);
    width: 100%;
    height: 2px;
  }

  .hamburger.close span {
    background-color: var(--main-color-2);
  }

  .hamburger.close span:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
  }

  .hamburger.close span:nth-child(2) {
    display: none;
  }

  .hamburger.close span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
  }

  .header__menu {
    background: rgba(59, 59, 59, 0.7);
    backdrop-filter: blur(1px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: all 0.3s ease 0s;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
  }

  .header__menu.active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    width: 320px;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #fff;
    overflow-x: hidden;
    transition: all 0.2s ease 0.1s;
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px 0 100px 0;
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
  }

  .header__nav.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .header__list {
    flex-direction: column;
  }

  .header__item {
    width: 100%;
    border-bottom: 1px solid var(--bg-color);
  }

  .header__item:first-child {
    border-top: 1px solid var(--bg-color);
  }

  .header__item:not(:last-child) {
    margin-right: 0;
  }

  .header__link {
    display: block;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color-2);
  }

  .main::before {
    height: 550px;
  }

  .main__content {
    max-width: 700px;
    padding: 60px 0 100px 0;
  }

  .main__title {
    margin-top: 15px;
    font-size: 48px;
  }

  .main__descr {
    margin-top: 25px;
    font-size: 18px;
  }

  .main__img {
    max-width: 520px;
  }

  .main__btn {
    margin-top: 40px;
  }

  .about {
    padding: 0 0 70px 0;
  }

  .about__item {
    padding: 35px 25px;
  }

  .how {
    padding: 70px 0 100px 0;
  }

  .how__content {
    width: calc(60% - 50px);
  }

  .how__slider {
    width: 40%;
  }

  .how__img img {
    height: 430px;
  }

  .format {
    padding: 100px 0;
  }

  .know {
    padding: 100px 0;
  }

  .know__img {
    width: 40%;
  }

  .know__wrapper {
    width: calc(60% - 50px);
  }

  .know__name {
    font-size: 16px;
  }

  .join {
    padding: 100px 0;
  }

  .article {
    padding: 100px 0;
  }

  .article_page {
    padding: 20px 0 90px 0;
  }

  .article__wrapper {
    width: calc(60% - 50px);
  }

  .article__img {
    width: 40%;
  }

  .article__text {
    max-height: 320px;
  }

  .feedback {
    padding: 120px 0;
  }

  .stats__img {
    height: 130px;
  }
}

@media (max-width: 1200px) {
  .title {
    font-size: 32px;
  }

  .header {
    padding: 10px 0;
  }

  .header__logo {
    z-index: 70;
    width: 170px;
  }

  .header__nav {
    padding: 70px 0 100px 0;
  }

  .main__content {
    max-width: 560px;
    padding: 50px 0 100px 0;
  }

  .main__title {
    font-size: 42px;
  }

  .main__descr {
    margin-top: 15px;
    font-size: 17px;
  }

  .main__img {
    max-width: 400px;
    margin-right: -30px;
  }

  .about {
    margin-top: -45px;
  }

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

  .about__title {
    padding-bottom: 15px;
  }

  .about__descr {
    margin-top: 15px;
  }

  .how__text {
    margin-top: 30px;
  }

  .how__item {
    padding: 15px 50px;
  }

  .format__img {
    width: calc(50% - 80px);
  }

  .format__descr {
    margin-top: 30px;
  }

  .join__img {
    width: calc(50% - 80px);
  }

  .join__descr {
    margin-top: 30px;
  }

  .article__text {
    margin-top: 30px;
  }

  .stats__item {
    width: calc(25% - 15px);
  }

  .stats__item:not(:nth-child(4n)) {
    margin-right: 20px;
  }

  .stats__img {
    height: 130px;
  }

  .stats__name {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .language {
    margin-left: 0;
    margin-right: 35px;
    line-height: 20px;
  }

  .main::before {
    content: none;
  }

  .main::after {
    content: none;
  }

  .main__wrapper {
    min-height: 400px;
  }

  .main__title {
    font-size: 32px;
  }

  .main__content {
    max-width: 450px;
    padding: 50px 0 120px 0;
  }

  .main__img {
    max-width: 380px;
    margin-right: -100px;
  }

  .main__btn {
    margin-top: 30px;
  }

  .about {
    padding: 0 0 50px 0;
  }

  .about__wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .about__item {
    width: calc(50% - 10px);
    margin-bottom: 15px;
    padding: 30px 25px;
  }

  .about__item:not(:last-child) {
    margin-right: 0;
  }

  .about__title {
    font-size: 32px;
  }

  .about__descr {
    margin-top: 10px;
    font-size: 14px;
    line-height: 150%;
  }

  .how {
    padding: 50px 0 80px 0;
  }

  .how__content {
    width: calc(60% - 30px);
  }

  .how__item {
    padding: 15px 30px;
  }

  .how__img img {
    height: 370px;
    border-radius: 20px;
  }

  .how__descr {
    top: 50px;
  }

  .how__nav {
    bottom: 50px;
  }

  .how__text {
    margin-top: 20px;
    max-height: 170px;
    padding-right: 20px;
  }

  .how__btn {
    margin-top: 30px;
  }

  .title {
    font-size: 28px;
  }

  .format {
    padding: 80px 0;
  }

  .format__wrapper {
    align-items: flex-end;
  }

  .format__content {
    width: 60%;
  }

  .format__descr {
    margin-top: 20px;
  }

  .format__btn {
    margin-top: 30px;
  }

  .format__img {
    width: calc(40% - 50px);
  }

  .know {
    padding: 80px 0;
  }

  .know__wrapper {
    width: 100%;
  }

  .know__title {
    margin-bottom: 30px;
  }

  .know__img {
    display: none;
  }

  .know__btn {
    margin-top: 15px;
  }

  .join {
    padding: 80px 0;
  }

  .join__wrapper {
    align-items: flex-end;
  }

  .join__content {
    width: 60%;
  }

  .join__img {
    width: calc(40% - 50px);
  }

  .join__descr {
    margin-top: 20px;
  }

  .join__btn {
    margin-top: 30px;
  }

  .article {
    padding: 80px 0;
  }

  .article_page {
    padding: 20px 0 80px 0;
  }

  .article__wrapper {
    width: calc(60% - 30px);
  }

  .article__wrapper h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .article__wrapper h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .article__text {
    margin-top: 20px;
    max-height: 235px;
  }

  .feedback {
    padding: 100px 0;
  }

  .footer {
    padding: 50px 0;
  }

  .footer__text {
    max-width: 300px;
  }

  .faq {
    padding: 80px 0;
  }

  .faq__wrapper {
    margin-top: 30px;
    flex-direction: column;
  }

  .faq__col {
    width: 100%;
  }

  .faq__col:not(:last-child) {
    margin-bottom: 20px;
  }

  .faq__accordion:not(:last-child) {
    margin-bottom: 20px;
  }

  .stats {
    padding: 20px 0 60px 0;
  }

  .stats__wrapper {
    margin-top: 30px;
  }

  .stats__item {
    width: calc(33.33333% - 15px);
    margin-bottom: 20px;
  }

  .stats__item:not(:nth-child(4n)) {
    margin-right: 0;
  }

  .stats__item:not(:nth-child(3n)) {
    margin-right: 20px;
  }

  .stats__item:last-child {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .language {
    margin-right: 25px;
  }

  .header__logo {
    margin-right: 40px;
  }

  .header__btn {
    padding: 11px 18px !important;
  }

  .header__btn::after {
    margin-left: 6px;
  }

  .main__wrapper {
    min-height: auto;
    flex-direction: column;
  }

  .main__content {
    padding: 50px 0;
    max-width: 550px;
  }

  .main__img {
    margin-top: -100px;
    justify-content: flex-end;
    max-width: 100%;
    margin-right: 0;
  }

  .main__img img {
    max-width: 320px;
    margin-right: -100px;
  }

  .about {
    margin-top: -90px;
  }

  .about__item {
    padding: 20px 20px;
  }

  .how {
    padding: 40px 0 60px 0;
  }

  .how__body {
    flex-direction: column-reverse;
  }

  .how__slider {
    margin-top: 50px;
    width: 100%;
    margin-left: 0;
  }

  .how__descr {
    left: 1px;
  }

  .how__nav {
    right: 1px;
  }

  .how__content {
    width: 100%;
  }

  .how__text {
    max-height: 270px;
  }

  .format {
    padding: 60px 0;
  }

  .format__wrapper {
    flex-direction: column;
  }

  .format__content {
    width: 100%;
  }

  .format__img {
    width: auto;
  }

  .format__img img {
    max-width: 300px;
    max-height: 400px;
  }

  .know {
    padding: 60px 0;
  }

  .join {
    padding: 60px 0;
  }

  .join__wrapper {
    flex-direction: column;
  }

  .join__content {
    width: 100%;
  }

  .join__img {
    margin-top: 20px;
    width: auto;
  }

  .join__img img {
    max-width: 250px;
    max-height: 350px;
  }

  .article {
    padding: 60px 0;
  }

  .article_page {
    padding: 20px 0 60px 0;
  }

  .article__body {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .article__wrapper {
    width: 100%;
  }

  .article__text {
    max-height: 420px;
  }

  .article__img {
    display: none;
  }

  .faq {
    padding: 60px 0;
  }

  .faq__question {
    padding: 15px 60px 15px 20px;
    font-size: 16px;
    line-height: 21px;
  }

  .faq__question::before {
    right: 15px;
    top: 10px;
  }

  .faq__answer p {
    padding: 0 20px 20px 20px;
  }

  .feedback {
    padding: 80px 0;
  }

  .footer__wrapper {
    flex-direction: column;
  }

  .footer__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .stats__item {
    width: calc(50% - 15px);
  }

  .stats__item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .stats__item:not(:nth-child(2n)) {
    margin-right: 20px;
  }

  .stats__item:last-child {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .header__btn {
    display: none;
  }

  .language {
    margin-right: 0;
  }

  .header__logo {
    width: 140px;
    margin-right: 30px;
  }

  .header__nav {
    padding: 62px 0 100px 0;
  }

  .hamburger {
    width: 42px;
    height: 42px;
    padding: 14px 11px;
    margin-left: 20px;
  }

  .hamburger.close span:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
  }

  .hamburger.close span:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
  }

  .main__title {
    font-size: 28px;
  }

  .main__descr {
    font-size: 16px;
  }

  .main__img img {
    max-width: 280px;
  }

  .title {
    font-size: 25px;
  }

  .btn {
    padding: 13px 30px;
  }

  .stats {
    padding: 20px 0 50px 0;
  }

  .stats__wrapper {
    margin-top: 20px;
  }

  .stats__img {
    height: 100px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .header__nav {
    width: 100%;
  }

  .main__content {
    padding: 30px 0;
  }

  .main__title {
    font-size: 24px;
  }

  .main__descr {
    font-size: 15px;
  }

  .main__img {
    margin-top: 0;
  }

  .main__img img {
    margin-right: 0;
  }

  .about__item {
    width: 100%;
    padding: 15px;
  }

  .about__title {
    font-size: 28px;
    padding-bottom: 10px;
  }

  .how {
    padding: 40px 0 50px 0;
  }

  .how__text {
    max-height: 280px;
  }

  .format {
    padding: 50px 0;
  }

  .know {
    padding: 50px 0;
  }

  .know__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .know__icon {
    margin-right: 0;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
  }

  .know__content {
    max-width: 100%;
  }

  .join {
    padding: 50px 0;
  }

  .article {
    padding: 50px 0;
  }

  .article_page {
    padding: 20px 0 50px 0;
  }

  .article__text {
    max-height: 410px;
  }

  .article__wrapper h2 {
    font-size: 18px;
    line-height: 23px;
  }

  .article__wrapper h3 {
    font-size: 16px;
    line-height: 21px;
  }

  .faq {
    padding: 50px 0;
  }

  .faq__question {
    font-size: 15px;
    line-height: 20px;
  }

  .faq__col:not(:last-child) {
    margin-bottom: 10px;
  }

  .faq__accordion:not(:last-child) {
    margin-bottom: 10px;
  }

  .feedback {
    padding: 60px 0;
  }

  .feedback__form {
    margin-top: 40px;
  }

  .feedback__item {
    flex-direction: column;
  }

  .feedback__item:not(:last-child) {
    margin-bottom: 0;
  }

  .feedback__input {
    width: 100%;
    margin-bottom: 10px;
  }

  .feedback__input:not(:last-child) {
    margin-bottom: 10px;
  }

  .feedback__btn {
    width: 100%;
  }

  .footer__logo {
    width: 150px;
  }

  .stats__item {
    width: 100%;
  }

  .stats__item:not(:nth-child(2n)) {
    margin-right: 0;
  }

  .stats__img {
    height: 180px;
  }

  .popup {
    padding: 40px;
    width: calc(100% - 30px);
    max-height: calc(100% - 30px);
  }

  .popup.active {
    overflow-y: auto;
  }

  .popup-form__form {
    width: 100%;
  }
}