@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  border: 0;
  all: unset;
}

input,
textarea,
select {
  outline: none;
  border: none;
  outline: none;
  background: none;
  appearance: none;
  /* убирает стрелочку и нативный стиль */
  -webkit-appearance: none;
  /* Safari/Chrome */
  -moz-appearance: none;
  /* Firefox */
  resize: none;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

:root {
  --font-family: "Open Sans", sans-serif;
  --content-width: 1440px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
.media .swiper {
  overflow: visible;
}
.media .swiper-pagination {
  bottom: -45px;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #171717;
}

.page {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
  padding: 21px 0 21px 0;
  z-index: 1000;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  margin: 0 27px 0 0;
}
.header__logo-link {
  display: inline-block;
}
.header .menu li {
  position: relative;
}
.header .menu li a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .menu li a:hover {
  color: #00a92a;
}
.header .menu li {
  /* стрелочка возле текста */
}
.header .menu li .arrow {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}
.header .menu li .arrow svg {
  width: 10px;
  height: 6px;
  display: block;
}
.header .menu li:hover .arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #00a92a;
}
.header .menu li {
  /* подменю */
}
.header .menu li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.header .menu li .submenu li a {
  display: block;
  padding: 10px 15px;
  font-weight: 400;
}
.header .menu li .submenu li a:hover {
  background: #f0f4ff;
}
.header .menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header__menu {
  position: relative;
  top: -1px;
}
.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}
.header__menu-link {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.header__menu .header__language {
  display: none;
}
.header__menu .header__btn {
  display: none;
}
.header__language {
  position: relative;
  top: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  margin: 0 27px;
}
.header__language-item {
  border-right: 1px solid #171717;
  padding-right: 9px;
}
.header__language-item:last-child {
  border-right: none;
  padding-right: 0px;
}
.header__language-link {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.header__language-link:hover {
  color: #00a92a;
}
.header__btn {
  position: relative;
  top: -2px;
  font-weight: 400;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 9px 17px !important;
}

.footer {
  background: #111827;
  color: #fff;
  padding: 60px 0 30px;
}
.footer__top {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.footer__logo {
  margin-bottom: 37px;
}
.footer__desc {
  margin-bottom: 30px;
}
.footer__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer__detail:last-child {
  margin-bottom: 0;
}
.footer__detail span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 28px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 16px;
}
.footer__list {
  list-style: none;
  padding: 0;
}
.footer__list li + li {
  margin-top: 16px;
}
.footer__list a {
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer__list a:hover {
  opacity: 1;
}
.footer__person {
  margin-bottom: 30px;
}
.footer__person:last-child {
  margin-bottom: 0;
}
.footer__name {
  font-weight: 600;
  font-size: 22px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #00e165;
  margin-bottom: 8px;
}
.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}
.footer__contact:last-child {
  margin-bottom: 0;
}
.footer__contact:hover {
  opacity: 1;
}
.footer__text {
  margin-bottom: 10px;
}
.footer__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 51px;
  margin-bottom: 20px;
}
.footer__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 8px 0 0 8px;
  background: #1a2230;
  border-radius: 12px;
  color: #fff;
  margin-right: 10px;
}
.footer__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 193%;
  letter-spacing: -0.01em;
  color: #6a7387;
}
.footer__input::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 193%;
  letter-spacing: -0.01em;
  color: #6a7387;
}
.footer__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 193%;
  letter-spacing: -0.01em;
  color: #6a7387;
}
.footer__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 193%;
  letter-spacing: -0.01em;
  color: #6a7387;
}
.footer__input::placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 193%;
  letter-spacing: -0.01em;
  color: #6a7387;
}
.footer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #00a92a;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 20px 15px !important;
  border-radius: 12px;
  cursor: pointer;
}
.footer-title {
  margin-bottom: 10px;
}
.footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.footer__social-link {
  width: 48px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}
.footer__download {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  background: #43b04a;
  border-radius: 8px;
  color: #fff;
  padding: 20px 10px !important;
  text-decoration: none;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 13px;
}
.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto 0 54px;
}
.footer__policy a:hover {
  opacity: 1;
}
.footer__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.footer__lang a {
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 30px;
  color: #fff;
  text-decoration: none;
}
.footer__lang a:last-child {
  border-right: 0;
  padding-right: 0;
}
.footer__lang a:hover {
  opacity: 1;
}

.burger {
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1200;
}
.burger__line, .burger__line::before, .burger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.burger__line {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.burger__line::before {
  top: -8px;
}
.burger__line::after {
  top: 8px;
}
.burger.active .burger__line {
  background-color: transparent;
}
.burger.active .burger__line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger.active .burger__line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ====== адаптив ====== */
@media (max-width: 1460px) {
  .burger {
    display: block;
  }
  .header__right {
    margin-left: auto;
  }
  .header__language {
    margin-left: auto;
  }
  .header__btn {
    margin-right: 20px;
  }
  .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    padding: 100px 40px 40px;
    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: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 1100;
    -webkit-box-shadow: -10px 0 25px rgba(0, 0, 0, 0.2);
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.2);
  }
  .header__menu.menu--active {
    right: 0;
  }
  .header__menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  /* При этом кнопка и языки остаются в шапке */
  .header__language,
  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* Но если в меню будут дубли, то скрываем их */
  .header__menu .header__language,
  .header__menu .header__btn {
    display: none;
  }
}
/* ====== маленькие экраны ====== */
@media (max-width: 556px) {
  /* В шапке скрываем кнопку и языки */
  .header__language,
  .header__btn {
    display: none;
  }
  /* А в меню показываем их */
  .header__menu .header__language,
  .header__menu .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header__menu .header__btn {
    margin-top: 20px;
    background-color: #00a92a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    font-weight: 600;
  }
  .header__menu .header__language {
    margin-top: auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 8px;
    margin: auto auto 0 auto;
  }
  .header__logo {
    margin-right: auto;
  }
}
.main {
  background: #f9fafb;
}

.tabs .tabs__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;
  text-align: center;
  background: #ececf0;
  border-radius: 90px;
  padding: 4px;
  margin-bottom: 50px;
}
.tabs .tabs__nav > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tabs .tabs__nav-btn {
  width: 100%;
  padding: 10px;
}
.tabs .tabs__nav-btn--active {
  background: #fff;
  border-radius: 90px;
}
.tabs .tabs__panel {
  display: none;
}
.tabs .tabs__panel--active {
  display: block;
}

.btn {
  border-radius: 16px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 20px 32px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.btn:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.btn-green {
  background: #00a92a;
  color: #fff;
}
.btn-green:hover {
  background: #218838;
  -webkit-box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.btn-white {
  background: #fff;
}
.btn-white:hover {
  background: #E5E5E5;
  -webkit-box-shadow: 0 4px 10px rgba(211, 211, 211, 0.3);
  box-shadow: 0 4px 10px rgba(211, 211, 211, 0.3);
}

.title {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  color: #171717;
  line-height: 130%;
}

.title--two {
  font-weight: 5 0;
  font-size: 46px;
  text-align: center;
  color: #171717;
  line-height: 130%;
}

.text {
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
}

.btn-border {
  border: 2px solid #e7e7e7;
  border-radius: 16px;
}
.btn-border:hover {
  -webkit-box-shadow: 0 4px 10px rgba(211, 211, 211, 0.3);
  box-shadow: 0 4px 10px rgba(211, 211, 211, 0.3);
}

.swiper-button {
  width: 56px;
  height: 56px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 3px -1px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 3px -1px rgba(0, 0, 0, 0.12);
  background: #fff;
}
.swiper-button::after {
  content: "";
  background: url(../img/arrow-right.svg) no-repeat;
  width: 10px;
  height: 17px;
  display: block;
  position: absolute;
}
.swiper-button-prev::after {
  content: "";
  background: url(../img/arrow-left.svg) no-repeat;
  width: 10px;
  height: 17px;
  display: block;
  position: absolute;
}

/* === МЕДИА-БЛОК (независимый, переиспользуемый) === */
.media__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.media__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
.media__grid > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.media__card {
  background: #fff;
  border-radius: 8px 8px 16px 16px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.3s ease;
  transition: transform 0.2s ease, opacity 0.3s ease, -webkit-transform 0.2s ease;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  border: 1px solid #e7e7e7;
}
.media__card:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.media__card--hidden {
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  pointer-events: none;
}
.media__card .news__blog-list {
  margin-bottom: 16px;
}
.media__preview {
  position: relative;
  overflow: hidden;
}
.media__preview .media__img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.media__preview:hover .media__img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  border-radius: 8px;
}
.media__preview .media__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  background: #2060f3;
  border-radius: 12px;
  padding: 5px 20px;
}
.media__preview .media__badge--video {
  background: #ef4444;
}
.media__preview:hover .media__badge {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.media__preview .media__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.media__preview .media__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #111;
}
.media__preview .media__play:hover {
  background: #fff;
}
.media__content {
  padding: 30px 16px 44px 16px;
}
.media__title {
  font-weight: 700;
  font-size: 22px;
  color: #171717;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}
.media__text {
  font-weight: 400;
  font-size: 18px;
  color: #717171;
  line-height: 140%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 24px;
}
.media__link {
  font-weight: 600;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #3ea34b;
  gap: 10px;
}

/* === ФИЛЬТР-КНОПКИ === */
.filter-btn {
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #fff;
  border-radius: 8px;
  padding: 8px 22px;
  background: #fff;
  border: 1px solid #e7e7e7;
  color: #171717;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter-btn.active {
  background: #3ea34b;
  color: #fff;
  border-color: #3ea34b;
}
.filter-btn:hover {
  background: #e5e7eb;
}

/* === МОДАЛКА === */
.media-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.media-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.media-modal__content {
  position: relative;
  max-width: 80%;
  width: 900px;
  border-radius: 10px;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.media-modal__content img,
.media-modal__content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 10px;
  display: block;
}
.media-modal__close {
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.media-modal.active .media-modal__content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #3EA34B;
}

.impact {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 50px 55px;
  text-align: center;
  margin: 0 auto;
}
.impact__name {
  font-weight: 700;
  font-size: 42px;
  line-height: 140%;
  text-align: center;
  color: #171717;
  margin-bottom: 30px;
}
.impact__items {
  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: 50px;
}
.impact__item {
  width: 100%;
  max-width: 308px;
}
.impact__item-title {
  font-weight: 700;
  font-size: 62px;
  text-align: center;
  color: #3ea34b;
  margin-bottom: 10px;
}
.impact__item-text {
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #171717;
}

.hero {
  padding: 260px 0 51px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("../img/hero.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/hero.jpg") center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.hero__inner {
  width: 100%;
  max-width: 835px;
  margin: 0 auto;
  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;
}
.hero__title {
  font-weight: 700;
  font-size: 76px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
}
.hero__title img {
  position: relative;
  top: 5px;
}
.hero__title span {
  font-weight: 600;
  font-size: 26px;
  color: #00a92a;
}
.hero__subtitle {
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  color: #00e165;
  line-height: 130%;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
.hero__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.hero__info-item span {
  display: inline-block;
  font-weight: 500;
  font-size: 22px;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero__user {
  width: 100%;
  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;
  margin-bottom: 50px;
}
.hero__user-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.hero__user-item {
  font-size: 22px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero__user-item span {
  display: inline-block;
  font-weight: 800;
  font-size: 39px;
  color: #66db7e;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 93px;
}
.hero__buttons-btn {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  padding: 16px 35px;
}
.hero__buttons-btn--border {
  color: #66db7e;
  border: 2px solid #66db7e;
}

.participate {
  padding-top: 109px;
  background: #F9FAFB;
}
.participate__title {
  text-align: center;
  margin-bottom: 12px;
}
.participate__subtitle {
  width: 100%;
  max-width: 800px;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 auto 30px auto;
}
.participate__top {
  margin-bottom: 120px;
}
.participate__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 30px;
}
.participate__card {
  width: 100%;
  max-width: 450px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  text-align: center;
  padding: 60px 42px;
}
.participate__card img {
  margin-bottom: 53px;
}
.participate__card-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #171717;
  margin-bottom: 40px;
}
.participate__card-text {
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #171717;
}
.participate__center {
  width: 100%;
  max-width: 1236px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 50px 55px;
  text-align: center;
  margin: 0 auto 120px auto;
}
.participate__name {
  font-weight: 700;
  font-size: 42px;
  line-height: 140%;
  text-align: center;
  color: #171717;
  margin-bottom: 30px;
}
.participate__items {
  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: 50px;
}
.participate__item-title {
  font-weight: 700;
  font-size: 62px;
  text-align: center;
  color: #3ea34b;
  margin-bottom: 10px;
}
.participate__item-text {
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #171717;
}
.participate__bottom {
  padding: 82px 0;
  background: #fff;
}
.participate__conference {
  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;
  gap: 30px;
}
.participate__conference > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.participate__conference-title {
  width: 100%;
  max-width: 500px;
  font-weight: 700;
  line-height: 125%;
  font-size: 42px;
  margin-bottom: 12px;
}
.participate__conference-subtitle {
  width: 100%;
  max-width: 610px;
  font-weight: 600;
  font-size: 24px;
  line-height: 121%;
  letter-spacing: -0.01em;
  color: #3ea34b;
  margin-bottom: 12px;
}
.participate__conference-text {
  width: 100%;
  line-height: 161%;
  margin-bottom: 30px;
}
.participate__conference-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[2];
  grid-template-columns: repeat(2, 2fr);
  gap: 30px;
  margin-bottom: 30px;
}
.participate__conference-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.participate__conference-img {
  width: 42px;
  text-align: center;
}
.participate__conference-name {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 4px;
}
.participate__conference-sub {
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
}
.participate__conference-power {
  font-weight: 600;
  font-size: 24px;
  line-height: 121%;
  letter-spacing: -0.01em;
  color: #171717;
  margin-bottom: 12px;
}
.participate__conference-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.participate__conference-btns, .participate__conference-btn {
  border-radius: 16px;
  padding: 16px 32px;
}
.participate__conference-right {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 30px 30px 0 30px;
}
.participate__conference-titsl {
  font-weight: 600;
  line-height: 130%;
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}
.participate__conference-titsl::before {
  content: "";
  background: #3ea34b;
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 50%;
}
.participate__conference-liss {
  padding: 12px;
  margin-bottom: 12px;
}
.participate__conference-liss:last-child {
  margin-bottom: 0;
}
.participate__conference-liss p {
  margin-bottom: 0;
}
.participate__conference-liss:nth-child(1) {
  background: #f3fdf5;
}
.participate__conference-liss:nth-child(1) h4 {
  color: #2b6536;
}
.participate__conference-liss:nth-child(1) p {
  color: #3ea34b;
}
.participate__conference-liss:nth-child(2) {
  background: #f0f6fe;
}
.participate__conference-liss:nth-child(2) h4 {
  color: #2060f3;
}
.participate__conference-liss:nth-child(2) p {
  color: #2060f3;
}
.participate__conference-liss:nth-child(3) {
  background: #f9f6fe;
}
.participate__conference-liss:nth-child(3) h4 {
  color: #6322aa;
}
.participate__conference-liss:nth-child(3) p {
  color: #8a2ff1;
}
.participate__conference-liss:nth-child(3) {
  background: #f9f6fe;
}
.participate__conference-liss:nth-child(3) h4 {
  color: #6322aa;
}
.participate__conference-liss:nth-child(3) p {
  color: #8a2ff1;
}
.participate__conference-liss:nth-child(4) {
  background: #fef7ee;
}
.participate__conference-liss:nth-child(4) h4 {
  color: #943615;
}
.participate__conference-liss:nth-child(4) p {
  color: #e45706;
}
.participate__conference-liss:nth-child(5) {
  background: #f3fdfa;
}
.participate__conference-liss:nth-child(5) h4 {
  color: #245e5a;
}
.participate__conference-liss:nth-child(5) p {
  color: #339489;
}
.participate__conference-liss:nth-child(6) {
  background: #fcf3f3;
}
.participate__conference-liss:nth-child(6) h4 {
  color: #921f1c;
}
.participate__conference-liss:nth-child(6) p {
  color: #d52322;
}
.participate__conference-titl {
  font-weight: 600;
  font-size: 24px;
  line-height: 121%;
  letter-spacing: -0.01em;
}

.themes {
  background: linear-gradient(159deg, #e8ffed 0%, #e5f0ff 100%);
  text-align: center;
  padding: 69px 0 57px 0;
}
.themes__title {
  margin-bottom: 12px;
}
.themes__subtitle {
  margin-bottom: 30px;
}
.themes__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.themes__item {
  border-radius: 16px;
  padding: 40px 22px;
}
.themes__item:nth-child(1) {
  background: #fefcea;
  border: 1px solid #fdf094;
}
.themes__item:nth-child(2) {
  background: #f0f6fe;
  border: 1px solid #c3dbfc;
}
.themes__item:nth-child(3) {
  background: #f3fdf5;
  border: 1px solid #c6f6d2;
}
.themes__item:nth-child(4) {
  background: #f9f6fe;
  border: 1px solid #e6d6fd;
}
.themes__item-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 8px;
}
.themes__item img {
  margin-bottom: 24px;
  height: 70px;
}

.partners {
  text-align: center;
  background: #f9fafb;
  padding: 120px 0;
}
.partners__inner {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
}
.partners__title {
  margin-bottom: 12px;
}
.partners__subtitle {
  margin-bottom: 30px;
}
.partners__name {
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: #3ea34b;
  line-height: 120%;
  margin-bottom: 12px;
}
.partners__subname {
  margin-bottom: 30px;
}
.partners__logo {
  display: -ms-grid;
  display: grid;
}
.partners__logo--top {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
}
.partners__logo--bottom {
  -ms-grid-columns: (2fr)[4];
  grid-template-columns: repeat(4, 2fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.partners__policy {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #171717;
}
.partners__policy span {
  color: #3ea34b;
}

.provide {
  background: #f9fafb;
  padding: 50px 0;
  background: linear-gradient(143deg, #e8ffed 0%, #e5f0ff 100%);
  text-align: center;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}
.provide__title {
  margin-bottom: 30px;
  text-align: center;
}
.provide__list {
  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;
}
.provide__list > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.provide__item {
  padding: 30px 24px;
}
.provide__item img {
  height: 70px;
  margin-bottom: 43px;
}
.provide__item-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 8px;
}

.testimonials {
  padding: 50px 0 94px 0;
}
.testimonials__title {
  margin-bottom: 12px;
}
.testimonials__subtitle {
  width: 100%;
  max-width: 790px;
  text-align: center;
  margin: 0 auto 30px auto;
}
.testimonials__wrapper {
  gap: 30px;
}
.testimonials__items {
  width: 100%;
  max-width: 930px;
  background: #fff;
  border-radius: 24px;
  padding: 33px 24px;
  overflow: initial;
  margin: 0 auto 162px auto;
}
.testimonials__item {
  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: 24px;
}
.testimonials__item > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.testimonials__item-video {
  position: relative;
  height: 100%;
}
.testimonials__item-video img {
  border-radius: 18px;
}
.testimonials__item-video iframe {
  width: 100%;
  height: 252px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
.testimonials__item-user {
  text-align: left;
}
.testimonials__item-over {
  margin-bottom: 22px;
}
.testimonials__item-text {
  font-style: italic;
  font-weight: 500;
  color: #384152;
  margin-bottom: 34px;
}
.testimonials__item-name {
  font-weight: 800;
  font-size: 20px;
  color: #171717;
  margin-bottom: 5px;
}
.testimonials__item-descr {
  font-weight: 600;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #3ea34b;
  margin-bottom: 5px;
}
.testimonials .swiper-button-next {
  right: -38px !important;
}
.testimonials .swiper-button-prev {
  left: -38px !important;
}
.testimonials .swiper-pagination {
  bottom: -45px;
}

.participation {
  background: #fff;
  padding: 72px 0 120px 0;
}
.participation__title {
  font-size: 42px;
}
.participation__subtitle {
  text-align: center;
  margin-bottom: 12px;
}
.participation__descr {
  width: 100%;
  max-width: 530px;
  background: #3ea34b;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  padding: 6px 15px;
  margin: 0 auto 67px auto;
}
.participation__descr--blue {
  color: #1a3cb9 !important;
  background: #dbeaff !important;
}
.participation__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.participation__cards > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.participation__card {
  position: relative;
}
.participation__card .active {
  border: 3px solid #3ea34b;
  height: calc(100% + 40px);
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  z-index: 2;
}
.participation__card article {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  max-width: 450px;
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  text-align: center;
}
.participation__card-point {
  position: relative;
  top: -53px;
  left: 3px;
  border-radius: 12px;
  display: inline-block;
  width: 174px;
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  background: #3ea34b;
  padding: 6px 14px;
}
.participation__card-point span {
  display: inline-block;
  margin-left: 7px;
}
.participation__card-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 97%;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.participation__card-price {
  font-weight: 700;
  font-size: 46px;
  color: #3ea34b;
  margin-bottom: 8px;
}
.participation__card-price span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  text-decoration: line-through;
  color: #171717;
  padding-top: 10px;
}
.participation__card-text {
  width: 100%;
  max-width: 310px;
  font-weight: 500;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  margin: 0 auto 65px auto;
}
.participation__card-list {
  text-align: left;
  margin-bottom: 40px;
}
.participation__card-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #171717;
  padding-left: 42px;
  position: relative;
  margin-bottom: 16px;
}
.participation__card-item::after {
  content: "";
  background: url(../img/arrow-list.svg) no-repeat;
  display: block;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 0;
}
.participation__card-item:last-child {
  margin-bottom: 0;
}
.participation__slider {
  display: none;
}

.participation__cards--part {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.participation__cards--part > * {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
}
.participation__cards--part .participation__card-btn {
  margin-bottom: 8px;
}
.participation__cards--part .participation__card-item::after {
  background: url(../img/ticets.svg) no-repeat !important;
  top: 8px !important;
}

.services {
  background: #fff;
}
.services__inner {
  width: 100%;
  max-width: 1250px;
  background: #f6f6f6;
  padding: 50px 60px;
  border-radius: 16px;
  margin: 0 auto;
}
.services__title {
  font-size: 42px;
  margin-bottom: 40px;
}
.services__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[3];
  grid-template-columns: repeat(3, 2fr);
  gap: 16px;
  margin-bottom: 30px;
}
.services__list-item {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  padding-left: 40px;
  letter-spacing: -0.01em;
}
.services__list-item::after {
  content: "";
  background: url(../img/arrow-list.svg) no-repeat;
  display: block;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 0;
}
.services__descr {
  text-align: center;
  color: #5f5f5f;
  margin-bottom: 30px;
}
.services__buttons {
  text-align: center;
}

.benefits {
  background: #fff;
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.benefits__inner {
  width: 100%;
  max-width: 1410px;
  background: -webkit-gradient(linear, left top, right top, from(#38b94d), to(#1261ff));
  background: linear-gradient(90deg, #38b94d 0%, #1261ff 100%);
  border-radius: 18px;
  padding: 50px 120px;
}
.benefits__title {
  color: #fff;
  font-size: 42px;
  margin-bottom: 30px;
}
.benefits__list {
  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;
}
.benefits__item-title {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 4px;
}
.benefits__item-descr {
  font-weight: 500;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.benefits__text {
  font-weight: 500;
  margin-bottom: 30px;
}
.benefits__buttons-btn {
  color: #171717 !important;
}

.section-bg {
  background: linear-gradient(323deg, #f3fdf5 0%, #f0f6fe 100%);
}

.opportunities {
  padding: 50px 0;
}
.opportunities__title {
  margin-bottom: 12px;
}
.opportunities__text {
  width: 100%;
  max-width: 740px;
  text-align: center;
  margin: 0 auto 30px auto;
}
.opportunities__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
.opportunities__cards > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.opportunities__card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 30px;
}
.opportunities__card-img {
  text-align: center;
  margin-bottom: 30px;
}
.opportunities__card-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 121%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #171717;
  margin-bottom: 30px;
}
.opportunities__card-text {
  width: 100%;
  max-width: 375px;
  font-weight: 400;
  font-size: 21px;
  line-height: 138%;
  letter-spacing: -0.01em;
  margin-bottom: 38px;
}
.opportunities__card-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
}
.opportunities__card-item::after {
  content: "";
  background: #3ea34b;
  border-radius: 50%;
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 0;
}
.opportunities__card-item:last-child {
  margin-bottom: 0;
}

.matchmaking {
  padding-bottom: 50px;
}
.matchmaking__inner {
  border-radius: 18px;
  background: #fff;
  padding: 50px 42px;
  margin-bottom: 50px;
}
.matchmaking__title {
  margin-bottom: 40px;
}
.matchmaking__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}
.matchmaking__items > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.matchmaking__item-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 121%;
  letter-spacing: -0.01em;
  color: #2060f3;
  margin-bottom: 17px;
}
.matchmaking__item-point {
  margin-bottom: 17px;
}
.matchmaking__item-point:last-child {
  margin-bottom: 0;
}
.matchmaking__item-name {
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
}
.matchmaking__item-name::after {
  content: "";
  background: #2060f3;
  border-radius: 50%;
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 0;
}
.matchmaking__item-text {
  font-weight: 400;
  font-size: 19px;
  line-height: 161%;
  letter-spacing: -0.01em;
}
.matchmaking__item--green .matchmaking__item-title {
  color: #3ea34b;
}
.matchmaking__item--green .matchmaking__item-name::after {
  content: "";
  background: #3ea34b;
}
.matchmaking__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 15px;
}
.matchmaking__cards > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.matchmaking__card {
  width: 100%;
  max-width: 406px;
  text-align: center;
}
.matchmaking__card-img {
  margin-bottom: 35px;
}
.matchmaking__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 121%;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.matchmaking__card-text {
  font-weight: 400;
  font-size: 21px;
  line-height: 138%;
  letter-spacing: -0.01em;
}

.cta {
  text-align: center;
}
.cta--for {
  padding: 90px 0;
  background: #9911fa !important;
}
.cta--for .cta__buttons-btn {
  color: #9911fa !important;
  padding: 12px 32px;
  font-size: 24px;
}
.cta--fay {
  background: #5039f6 !important;
}
.cta--fay .cta__buttons-btn {
  color: #5039f6 !important;
  padding: 12px 32px;
  font-size: 24px;
}
.cta--sex {
  background: #9911fa !important;
}
.cta--sex .cta__buttons-btn {
  color: #9911fa !important;
}
.cta__inner {
  background: -webkit-gradient(linear, left top, right top, from(#1f64ee), to(#3da24d));
  background: linear-gradient(90deg, #1f64ee 0%, #3da24d 100%);
  border-radius: 18px;
  padding: 33px;
}
.cta__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}
.cta__subtitle {
  line-height: 145%;
  color: #fff;
  margin-bottom: 35px;
}
.cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}
.cta__buttons-btn {
  color: #2060f3;
}

.gallery {
  padding: 120px 0;
}
.gallery__center {
  margin: 155px 0 30px 0;
}
.gallery__title {
  margin-bottom: 10px;
}
.gallery__text {
  width: 100%;
  max-width: 622px;
  font-weight: 500;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #171717;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.gallery__item:nth-child(2) .gallery__item-title {
  color: #2060f3;
}
.gallery__item:nth-child(3) .gallery__item-title {
  color: #8a2ff1;
}
.gallery__item:nth-child(4) .gallery__item-title {
  color: #e45706;
}
.gallery__item-title {
  font-size: 50px;
}
.gallery__descr {
  text-align: center;
  font-weight: 500;
  line-height: 145%;
  color: #5f5f5f;
  margin-bottom: 16px;
}
.gallery__buttons {
  text-align: center;
}
.gallery__btn {
  background: #3ea34b;
}
.gallery .media .filter-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gallery .media .filter-btn::after {
  content: "3";
  width: 34px;
  height: 34px;
  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;
  top: 0;
  left: 0;
  color: #000;
  margin-left: 50px;
  background: #f9fafb;
  border-radius: 8px;
  padding: 2px;
}

.news {
  background: #fff;
  padding: 60px 0 120px 0;
}
.news__title {
  margin-bottom: 12px;
}
.news__subtitle {
  width: 100%;
  max-width: 696px;
  text-align: center;
  margin: 0 auto 30px auto;
}
.news__blog {
  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: 1px solid #e7e7e7;
  border-radius: 16px;
  margin-bottom: 120px;
}
.news__blog > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.news__blog-info {
  width: 100%;
  max-width: 650px;
  padding: 30px;
}
.news__blog-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.news__blog-button {
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #767676;
}
.news__blog-button.active {
  background: #e3ecff;
  border-radius: 90px;
  padding: 8px 18px;
  color: #2060f3;
}
.news__blog-title {
  font-weight: 500;
  font-size: 42px;
  color: #171717;
  line-height: 130%;
  margin-bottom: 8px;
}
.news__blog-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 154%;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.news__blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  gap: 46px;
  margin-bottom: 37px;
}
.news__blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.news__btn svg {
  margin-left: 12px;
}
.news__blog-photo {
  border-radius: 16px;
}
.news__blog-photo img {
  border-radius: 0 16px 16px 0;
  width: 100%;
}
.news .media__badge {
  left: 16px;
  right: initial;
}
.news .media__badge--one {
  color: #2b6536;
  background: #e2fbe8;
}
.news .media__badge--two {
  color: #6322aa;
  background: #f1e9fd;
}
.news .media__badge--three {
  color: #814d13;
  background: #fef9c8;
}
.news .news__blog-list {
  gap: 15px;
}
.news .news__blog-item {
  color: #767676;
  font-size: 13px;
}
.news .media__content {
  padding-bottom: 16px;
}
.news .swiper-pagination {
  bottom: -30px;
}
.news .swiper {
  overflow: initial;
}

.forms {
  padding-bottom: 120px;
  background: #fff;
}
.forms__inner {
  width: 100%;
  max-width: 1232px;
  border-radius: 18px;
  padding: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#f3fdf5), to(#f0f6fe));
  background: linear-gradient(90deg, #f3fdf5 0%, #f0f6fe 100%);
  margin: 0 auto 30px auto;
}
.forms__title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 34px;
}
.forms__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 50px;
}
.forms__form {
  margin-bottom: 20px;
}
.forms__form-wrapp {
  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;
  gap: 16px;
  height: 60px;
}
.forms__form-input {
  width: 100%;
  max-width: 530px;
  border: 1px solid #d1d6dd;
  border-radius: 16px;
  padding: 16px;
  font-weight: 500;
  font-size: 20px;
  height: 100%;
}
.forms__form-input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #706f79;
}
.forms__form-input::-moz-placeholder {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #706f79;
}
.forms__form-input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #706f79;
}
.forms__form-input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #706f79;
}
.forms__form-input::placeholder {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #706f79;
}
.forms__form-btn {
  font-size: 20px;
  height: 100%;
}
.forms__descr {
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #171717;
}
.forms__buttons {
  text-align: center;
}
.forms__btn {
  color: #00a92a;
}
.forms__btn svg {
  margin-left: 10px;
}

.intro--two {
  background: -webkit-gradient(linear, left top, right top, from(#1f3c88), to(#327f40)) !important;
  background: linear-gradient(90deg, #1f3c88 0%, #327f40 100%) !important;
}
.intro--theree {
  background: -webkit-gradient(linear, left top, right top, from(#59188d), to(#1547e6)) !important;
  background: linear-gradient(90deg, #59188d 0%, #1547e6 100%) !important;
}
.intro--theree .intro__btn {
  color: #312c86;
}
.intro--six {
  background: -webkit-gradient(linear, left top, right top, from(#111828), to(#364152)) !important;
  background: linear-gradient(90deg, #111828 0%, #364152 100%) !important;
  padding: 200px 0 161px 0;
}
.intro {
  background: -webkit-gradient(linear, left top, right top, from(#0b552c), to(#008235));
  background: linear-gradient(90deg, #0b552c 0%, #008235 100%);
  padding: 200px 0 108px 0;
  text-align: center;
}
.intro--for {
  background: -webkit-gradient(linear, left top, right top, from(#332c87), to(#8000d9)) !important;
  background: linear-gradient(90deg, #332c87 0%, #8000d9 100%) !important;
}
.intro--for .intro__btn {
  color: #312c86;
}
.intro--fay {
  background: -webkit-gradient(linear, left top, right top, from(#0b552e), to(#1248e4)) !important;
  background: linear-gradient(90deg, #0b552e 0%, #1248e4 100%) !important;
  padding: 200px 0 168px 0;
}
.intro--seven {
  background: -webkit-gradient(linear, left top, right top, from(#0b552c), to(#008235));
  background: linear-gradient(90deg, #0b552c 0%, #008235 100%);
}
.intro__title {
  font-weight: 500;
  font-size: 58px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.intro__text {
  width: 100%;
  max-width: 1171px;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #fff;
  line-height: 130%;
  margin: 0 auto 54px auto;
}
.intro__buttons {
  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;
  gap: 22px;
}
.intro__btn {
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #0f542c;
  padding: 12px 37px;
}

.features {
  background: #fff;
  padding: 88px 0 129px 0;
}
.features__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.features__info {
  width: 100%;
  max-width: 720px;
}
.features__title {
  font-weight: 500;
  font-size: 44px;
  margin-bottom: 45px;
}
.features__names {
  font-weight: 500;
  font-size: 28px;
  color: #171717;
  line-height: 120%;
  margin: 70px 0 25px 0;
}
.features__text {
  font-size: 22px;
  line-height: 145%;
  color: #4a5565;
  margin-bottom: 45px;
}
.features__list-item {
  font-size: 22px;
  line-height: 145%;
  color: #4a5565;
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}
.features__list-item:last-child {
  margin-bottom: 0;
}
.features__list-item::after {
  content: "";
  left: 0;
  top: 3px;
  display: block;
  position: absolute;
  background: url(../img/arrow-crug.svg) no-repeat;
  width: 25px;
  height: 25px;
}
.features__photo {
  width: 100%;
  max-width: 743px;
}
.features__photo img {
  border-radius: 12px;
}
.features__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[2];
  grid-template-columns: repeat(2, 2fr);
  gap: 35px;
}
.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
  margin-bottom: 24px;
}
.features__item-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.features__item-p {
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
  color: #4c5666;
}
.features__descr {
  font-weight: 500;
  font-size: 18px;
  color: #4a5565;
}
.features__elements {
  margin-bottom: 45px;
}
.features__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.features__element:last-child {
  margin-bottom: 0;
}
.features__element svg {
  width: 25px;
  text-align: center;
}
.features__btn {
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #fff;
  padding: 12px 32px;
  background: #5039f6;
}

.market {
  padding: 83px 0;
}
.market--two .market__item-img {
  background: #e0e7ff;
}
.market__title {
  margin-bottom: 64px;
}
.market__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}
.market__list > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.market__item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  text-align: center;
  padding: 32px 32px 50px 32px;
}
.market__item-img {
  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;
  max-width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #dcfce6;
  margin: 0 auto 45px auto;
}
.market__item-title {
  line-height: 130%;
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}
.market__item-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  text-align: center;
  color: #4a5565;
}
.market__content {
  background: linear-gradient(323deg, #f3fdf5 0%, #f0f6fe 100%);
  padding: 100px 15px 0 15px;
  margin-top: 83px;
}
.market__content-wrapp {
  width: 100%;
  max-width: 1410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 18px;
  border-radius: 18px;
  background: #fff;
  padding: 44px;
  gap: 56px;
  margin: 0 auto;
}
.market__content-wrapp > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.market__content-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 121%;
  letter-spacing: -0.01em;
  color: #2060f3;
  margin-bottom: 12px;
}
.market__content-text p {
  font-size: 19px;
  margin-bottom: 12px;
}
.market__content-name {
  font-weight: 600;
  font-size: 24px;
  line-height: 132%;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 26px;
  margin-bottom: 6px;
}
.market__content-name::after {
  content: "";
  background: #2060f3;
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 8px;
  left: 0;
}
.market__content-descr {
  width: 100%;
  max-width: 560px;
  font-size: 19px;
  margin-bottom: 6px;
}
.market__content-phone {
  font-size: 19px;
  margin-bottom: 6px;
}
.market__content-mail {
  font-size: 19px;
}
.market__content-right .market__content-title {
  color: #00a73d;
}
.market__content-right .market__content-name::after {
  background: #00a73d;
}

.theme {
  background: #fff;
  padding: 60px 0 100px 0;
}
.theme__title {
  margin-bottom: 64px;
}
.theme__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[3];
  grid-template-columns: repeat(3, 2fr);
  gap: 42px;
}
.theme__item {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: #fff;
  padding: 34px 34px 72px 34px;
  position: relative;
  cursor: pointer;
}
.theme__item .tooltip {
  width: 100%;
  max-width: 300px;
  position: absolute;
  bottom: -10%;
  left: 64%;
  -webkit-transform: translateX(-50%) translateY(5px);
  -ms-transform: translateX(-50%) translateY(5px);
  transform: translateX(-50%) translateY(5px);
  background: linear-gradient(143deg, #e8ffed 0%, #e5f0ff 100%);
  color: #00a73d;
  padding: 16px 16px 16px 25px;
  font-weight: 700;
  border-radius: 13px;
  font-size: 24px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}
.theme__item .tooltip span {
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.theme__item:hover .tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}
.theme__item-top {
  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;
  gap: 10px;
  margin-bottom: 50px;
}
.theme .theme__item {
  padding: 20px;
}
.theme__item-title {
  font-weight: 500;
  font-size: 24px;
  color: #171717;
}
.theme__item-point {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  background: #edeff2;
  border-radius: 10px;
  padding: 5px 13px;
}
.theme__item-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #4a5565;
}

.participation-two__descr {
  background: #000;
}
.participation__card-sub {
  font-size: 20px;
  text-align: center;
  color: #767676;
  margin-bottom: 32px;
}

.participation--two {
  background: #f9fafb;
  padding: 100px 0 86px 0;
}
.participation--two .participation__descr {
  background: #ffe2e2;
  color: #9f0812;
}
.participation--two .participation__title {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 30px;
}
.participation--two .participation__subtitle {
  font-size: 23px;
  margin-bottom: 30px;
}
.participation--two .participation__descr {
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
  text-align: center;
  color: #9f0812;
  padding: 12px 27px;
}
.participation--two .participation__card .active {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  height: 100%;
}
.participation--two .participation__card-price {
  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;
  font-size: 48px;
  font-weight: 500;
  gap: 8px;
}
.participation--two .participation__card-price span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #767676;
  position: relative;
  top: -10px;
}
.participation--two .participation__card-item {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #0a0a0a;
}
.participation--two .participation__card-item::after {
  background: url(../img/arrow-crug.svg);
  width: 25px;
  height: 25px;
  top: 2px;
}
.participation--two .participation__card-btn {
  width: 100%;
  max-width: 100%;
  padding: 12px 32px;
}

.dates {
  padding: 86px 0;
}
.dates__title {
  font-weight: 500;
  margin-bottom: 64px;
}
.dates__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}
.dates__item {
  width: 100%;
  max-width: 373px;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 37px;
  text-align: center;
  border-radius: 16px;
}
.dates__item-img {
  width: 30px;
  height: 34px;
  margin-bottom: 16px;
}
.dates__item-overtitle {
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}
.dates__item-title {
  font-weight: 500;
  font-size: 33px;
  text-align: center;
  margin-bottom: 13px;
}
.dates__item-text {
  width: 100%;
  max-width: 226px;
  text-align: center;
}

.cta--two {
  background: #00a92a;
  padding: 90px 0;
}
.cta--two .cta__title {
  font-weight: 500;
  font-size: 45px;
  text-align: center;
  line-height: 130%;
  margin-bottom: 34px;
}
.cta--two .cta__subtitle {
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #fff;
}
.cta--two .cta__buttons-btn {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #00a92a;
  padding: 12px 32px;
}

.program {
  background: #fff;
  padding: 100px 0 80px 0;
}
.program--two {
  background: #f9fafb;
}
.program__title {
  margin-bottom: 47px;
}
.program-title {
  font-weight: 500;
  font-size: 42px;
  margin-bottom: 33px;
}
.program__info {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 40px 30px;
}
.program__info-title {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 13px;
}
.program__info-descr {
  font-weight: 500;
  font-size: 18px;
  line-height: 161%;
  letter-spacing: -0.01em;
  color: #767676;
  margin-bottom: 34px;
}
.program__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 23px;
  border-radius: 12px;
  background: #f9fafb;
  padding: 20px;
  margin-bottom: 22px;
}
.program__info-item:last-child {
  margin-bottom: 0;
}
.program__info-time {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
  background: #00a73d;
  border-radius: 6px;
  padding: 10px 16px;
}
.program__info-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
}
.program__content-title {
  margin-bottom: 44px;
}
.program__item {
  border-left: 6px solid #ead5ff;
  margin-bottom: 32px;
  padding: 0 0 34px 34px;
}
.program__item:last-child {
  margin-bottom: 0;
}
.program__item-top {
  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;
  gap: 20px;
  margin-bottom: 14px;
}
.program__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.program__item-time {
  color: #6e11b1;
  background: #f3e8ff;
  border-radius: 10px;
  padding: 6px 12px;
}
.program__item-point {
  color: #9f0812;
  background: #ffe2e2;
  border-radius: 10px;
  padding: 6px 12px;
}
.program__item-span {
  border: 1px solid #e5e5e5;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #171717;
  border-radius: 10px;
  padding: 6px 12px;
}
.program__item-title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 14px;
}
.program__item-descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  font-weight: 400;
  font-size: 22px;
  color: #4a5565;
}
.program__card {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 20px;
  padding: 36px 34px;
  margin-bottom: 33px;
}
.program__card:last-child {
  margin-bottom: 0;
}
.program__card-top {
  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;
  margin-bottom: 16px;
}
.program__card-over {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 5px 14px;
}
.program__card-downkand {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  padding: 10px 14px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.program__card-downkand:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.program__card-title {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 47px;
}
.program__card-text {
  font-size: 20px;
  color: #4a5565;
}

.contacts {
  padding: 80px 0;
}
.contacts__title {
  margin-bottom: 64px;
}
.contacts__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}
.contacts__cards > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contacts__card {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  padding: 40px;
  min-width: 0;
}
.contacts__card-title {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  line-height: 130%;
  margin-bottom: 13px;
}
.contacts__card-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  color: #5039f6;
  text-align: center;
  margin-bottom: 36px;
}
.contacts__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 19px;
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  color: #5039f6;
  margin-bottom: 33px;
}
.contacts__card-link svg {
  width: 20px;
  height: 16px;
  text-align: center;
}
.contacts__card-link:last-child {
  margin-bottom: 0;
}
.contacts__card-name {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 5px 14px;
  background: #edeff2;
  border-radius: 10px;
  display: inline;
}

.section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}
.section--two .section__item-number {
  color: #5039F6;
}
.section--three {
  background: #f9fafb;
}
.section--three .section__item-number {
  color: #00a73d;
}
.section__title {
  margin-bottom: 60px;
}
.section__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[4];
  grid-template-columns: repeat(4, 2fr);
  gap: 30px;
}
.section__item-number {
  font-weight: 400;
  font-size: 46px;
  color: #9911fa;
  margin-bottom: 11px;
}
.section__items-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  letter-spacing: -0.01em;
  color: #4c5666;
}

.speakers {
  padding: 60px 0 80px 0;
}
.speakers--two {
  background: #fff;
  padding: 88px 0;
}
.speakers--two .speakers__item-subtitle {
  color: #00a73d;
  margin-bottom: 34px;
}
.speakers__title {
  margin-bottom: 60px;
}
.speakers__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}
.speakers__list > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.speakers__item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  text-align: center;
  padding: 34px 24px;
}
.speakers__item-user {
  margin-bottom: 32px;
}
.speakers__item-title {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 14px;
}
.speakers__item-subtitle {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  color: #9911fa;
  margin-bottom: 44px;
}
.speakers__item-descr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #000;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 5px 14px;
  margin: 0 auto 30px auto;
}
.speakers__item-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  color: #4a5565;
}

.allies {
  padding: 80px 0;
}
.allies__title {
  margin-bottom: 63px;
}
.allies__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[3];
  grid-template-columns: repeat(3, 2fr);
  gap: 30px;
}
.allies__card {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  padding: 42px;
  text-align: center;
}
.allies__card-text {
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  color: #364154;
  line-height: 140%;
}

.highlights {
  background: #fff;
  padding: 90px 0;
}
.highlights__wrapp {
  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;
  gap: 30px;
}
.highlights__wrapp > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.highlights__title {
  text-align: left;
  margin-bottom: 34px;
}
.highlights__items {
  width: 100%;
  max-width: 680px;
}
.highlights__item {
  margin-bottom: 42px;
}
.highlights__item:last-child {
  margin-bottom: 0;
}
.highlights__item-title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 17px;
}
.highlights__item-title svg {
  width: 24px;
  height: 24px;
  margin-right: 14px;
  position: relative;
  top: 4px;
}
.highlights__item-descr {
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  color: #4a5565;
  padding-left: 45px;
}
.highlights__photo img {
  border-radius: 12px;
}
.highlights__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.highlights__card {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px 30px 40px 50px;
}
.highlights__card-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 130%;
  margin-bottom: 47px;
}
.highlights__card-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  color: #4a5565;
  list-style: disc;
  margin-bottom: 16px;
}
.highlights__card-item:last-child {
  margin-bottom: 0;
}

.registration {
  padding: 86px 0;
}
.registration__title {
  margin-bottom: 40px;
}
.registration__cards {
  width: 100%;
  max-width: 1207px;
  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: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: #fff;
  padding: 40px;
  margin: 0 auto;
}
.registration__cards > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.registration__info-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 27px;
}
.registration__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  margin-bottom: 18px;
}
.registration__info-item svg {
  height: 25px;
  width: 25px;
  text-align: center;
}
.registration__content {
  text-align: center;
}
.registration__content-price {
  font-weight: 500;
  font-size: 48px;
  text-align: center;
  color: #9911fa;
  margin-bottom: 4px;
}
.registration__content-price span {
  font-size: 24px;
  font-weight: 400;
  text-decoration: line-through;
  color: #767676;
}
.registration__content-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #4a5565;
  margin-bottom: 32px;
}
.registration__content-btn {
  width: 100%;
  background: #9911fa;
  color: #fff;
  font-size: 24px;
  padding: 12px 32px;
  margin-bottom: 22px;
}
.registration__content-descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #4a5565;
}

.journey {
  background: #fff;
  padding: 80px 0;
}
.journey__title {
  margin-bottom: 64px;
}
.journey__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 34px;
  margin-bottom: 44px;
}
.journey__item:last-child {
  margin-bottom: 0;
}
.journey__item-namber {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: #00A73D;
  width: 85px;
  height: 85px;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
}
.journey__item-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  margin-bottom: 20px;
}
.journey__item-text {
  font-weight: 400;
  font-size: 20px;
  color: #4a5565;
}

.contacts {
  background: #fff;
  padding: 80px 0 0 0;
}
.contacts__wrapper {
  background: #f9fafb;
}
.contacts__title {
  margin-bottom: 60px;
}
.contacts__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  padding-bottom: 80px;
}
.contacts__item {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  padding: 30px;
  text-align: center;
}
.contacts__item-icon {
  background: #f3f4f6;
  border-radius: 12px;
  width: 64px;
  height: 64px;
  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: 0 auto 36px auto;
}
.contacts__item-title {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 40px;
}
.contacts__item-link {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 19px;
}
.contacts__item-link:last-child {
  margin-bottom: 0;
}
.contacts__item-decr {
  margin-top: 28px;
  line-height: 130%;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  color: #4a5565;
}
.contacts__item-text {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #101828;
  margin-bottom: 19px;
}
.contacts__item-text:last-child {
  margin-bottom: 0;
}
.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 65px;
  padding: 80px 15px;
}
.contacts__content-left {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: #fff;
  padding: 78px;
}
.contacts__content-title {
  font-weight: 500;
  font-size: 34px;
  color: #171717;
  line-height: 130%;
  margin-bottom: 14px;
}
.contacts__content-text {
  width: 100%;
  max-width: 557px;
  font-weight: 500;
  font-size: 20px;
  color: #717182;
  line-height: 140%;
  margin-bottom: 42px;
}
.contacts__form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
}
.contacts__form-item {
  margin-bottom: 30px;
}
.contacts__form-select {
  color: #717182;
}
.contacts__form-select option {
  color: #717182;
}
.contacts__form-message {
  height: 173px;
}
.contacts__btn {
  width: 100%;
  text-align: center;
  background: #101828;
  color: #fff;
  border-radius: 12px;
  padding: 15px 32px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.contacts__btn:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.contacts__adress {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 18px;
  padding: 38px 33px;
  margin-bottom: 43px;
}
.contacts__adress-title {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 16px;
}
.contacts__adress-text {
  font-weight: 500;
  font-size: 20px;
  color: #717182;
  margin-bottom: 35px;
}
.contacts__adress-maps {
  height: 381px;
  margin-bottom: 23px;
}
.contacts__adress-maps iframe {
  width: 100%;
  height: 100%;
}
.contacts__adress-descr {
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 15px;
}
.contacts__adress-descr span {
  font-weight: 700;
}
.contacts__adress-descr:last-child {
  margin-bottom: 0;
}
.contacts__loctaion {
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 18px;
  padding: 38px 33px;
}
.contacts__loctaion-photo {
  margin-top: 44px;
}
.contacts--two {
  padding: 80px 0;
}
.contacts--two .contacts__wrapper {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 77px;
}
.contacts--two .contacts__content-left {
  width: 100%;
  max-width: 588px;
  padding: 0;
  border: 0;
  margin: 0 auto;
}
.contacts--two .form__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.contacts--two .form__checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f3f3f5;
  border-radius: 12px;
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.contacts--two .form__checkbox input {
  display: none;
}
.contacts--two .form__checkbox:has(input:checked) {
  background: #00a73d;
  /* зелёный, как на скрине */
  color: #fff;
}
.contacts--two .form__checkbox:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.contacts--two .contacts__btn {
  padding: 25px 32px;
}
.contacts__upload {
  margin-top: 12px;
}
.contacts__upload-box {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 110px;
  border-radius: 12px;
  /* пунктирная зелёная рамка как в макете */
  border: 2px dashed #16a34a;
  padding: 20px;
  background: transparent;
  cursor: pointer;
  text-align: center;
  -webkit-transition: background 0.15s ease, -webkit-transform 0.08s ease;
  transition: background 0.15s ease, -webkit-transform 0.08s ease;
  transition: background 0.15s ease, transform 0.08s ease;
  transition: background 0.15s ease, transform 0.08s ease, -webkit-transform 0.08s ease;
  outline: none;
}
.contacts__upload-box:hover, .contacts__upload-box:focus {
  background: rgba(22, 163, 74, 0.04);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.contacts__upload-box {
  /* скрываем реальный input, но делаем весь label кликабельным */
}
.contacts__upload-box .contacts__upload-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contacts__upload-icon {
  color: #16a34a;
  width: 36px;
  height: 36px;
}
.contacts__upload-text {
  font-size: 15px;
  color: #101828;
}
.contacts__upload-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.contacts__upload-text .contacts__upload-sub {
  font-size: 13px;
  color: #717182;
  font-weight: 500;
}
.contacts__upload-list {
  margin-top: 10px;
  font-size: 14px;
  color: #101828;
  display: block;
  /* стили для каждого имени файла */
}
.contacts__upload-list .contacts__upload-file {
  display: inline-block;
  background: #f3f3f5;
  border-radius: 999px;
  padding: 6px 10px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 500;
}

/* подстраховка: если у тебя глобально .form__input задаёт padding/ширину, этот селектор оставляем */
.contacts__upload-input {
  /* скрываем, но делаем доступным для клавиатуры — input внутри label остаётся фокусируемым */
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form__label {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #171717;
  margin-bottom: 10px;
}
.form__input {
  width: 100%;
  background: #f3f3f5;
  font-weight: 400;
  font-size: 18px;
  border-radius: 12px;
  padding: 13px 17px;
}
.form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #717182;
}
.form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #717182;
}
.form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #717182;
}
.form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #717182;
}
.form__input::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #717182;
}
.form__select {
  width: 100%;
  background: #f3f3f5;
  font-weight: 400;
  font-size: 18px;
  border-radius: 12px;
  padding: 13px 17px;
}
.form__textarea {
  width: 100%;
  background: #f3f3f5;
  font-weight: 400;
  font-size: 18px;
  border-radius: 12px;
  padding: 13px 17px;
}
.form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  color: #717182;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__check-box {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  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;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.form__check-box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg) scale(0);
  -ms-transform: rotate(-45deg) scale(0);
  transform: rotate(-45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form__check:hover .form__check-box {
  border-color: #16a34a;
}
input:checked + .form__check-box {
  background: #16a34a;
  border-color: #16a34a;
}
input:checked + .form__check-box::after {
  -webkit-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
  opacity: 1;
}
.form__check-text {
  font-weight: 400;
  font-size: 18px;
  color: #717182;
}
.form__custom-select {
  position: relative;
  width: 100%;
  font-size: 18px;
}
.form__custom-select [data-select-trigger] {
  background: #f3f3f5;
  padding: 13px 17px;
  border-radius: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #171717;
}
.form__custom-select [data-select-trigger]::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid #171717;
  border-bottom: 2px solid #171717;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.form__custom-select [data-select-trigger].active::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.form__custom-select .form__custom-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
}
.form__custom-select .form__custom-options li {
  padding: 12px 17px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #171717;
}
.form__custom-select .form__custom-options li:hover {
  background: #f3f3f5;
}
.form__custom-select.open .form__custom-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.participation--two .participation__card-btn {
  margin-bottom: 10px;
}

.getting {
  padding: 80px 0;
  background: #fff;
}
.getting__title {
  margin-bottom: 62px;
}
.getting__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}
.getting__card {
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  padding: 34px 17px;
}
.getting__card-icon {
  width: 64px;
  height: 64px;
  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;
  background: #dbeaff;
  border-radius: 12px;
  margin: 0 auto 34px auto;
}
.getting__card-title {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 13px;
}
.getting__card-descr {
  font-weight: 500;
  font-size: 22px;
  line-height: 125%;
  color: #717182;
  margin-bottom: 41px;
}
.getting__card-list {
  text-align: left;
  padding: 0 33px;
}
.getting__card-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  list-style: outside;
  color: #4a5565;
  margin-bottom: 12px;
}
.getting__card-item::marker {
  color: #155dfc;
}
.getting__card-item:last-child {
  margin-bottom: 0;
}

.faq {
  padding: 80px 0;
}
.faq__title {
  margin-bottom: 62px;
}
.faq__items {
  background: #fff;
}
.faq__item {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 37px 33px 43px 37px;
  margin-bottom: 32px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__item-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 48px;
}
.faq__item-text {
  width: 100%;
  max-width: 1000px;
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  color: #4a5565;
}

.cta--for {
  background: #101828 !important;
}
.cta--for .cta__buttons-btn {
  color: #101828 !important;
}

.vistors__content-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 145%;
  margin-bottom: 30px;
}
.vistors__content-text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #0a0a0a;
  margin-bottom: 12px;
}
.vistors__content-text p:last-child {
  margin-bottom: 0;
}

.faq-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 145%;
  margin-bottom: 30px;
}

.faq-section {
  margin-bottom: 32px;
}

.faq-category {
  font-weight: 400;
  font-size: 26px;
  line-height: 145%;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.faq-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  color: #0a0a0a;
  padding: 16px 20px;
  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;
  text-align: left;
  cursor: pointer;
  gap: 5px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #22b14c;
  color: #fff;
  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;
  font-weight: bold;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* раскрытие внутри карточки */
.faq-answer {
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  /* если контент длиннее — увеличь это значение */
  padding: 14px 20px;
  opacity: 1;
}

.modals .graph-modal__container {
  width: 648px;
}

.graph-modal__close {
  top: 30px;
  right: 30px;
}

@media (max-width: 1300px) {
  .contacts__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .market__list {
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
  }
  .theme__items {
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
  }
  .speakers__list {
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
  }
  .contacts__list {
    gap: 20px;
  }
  .contacts__item {
    padding: 20px;
  }
  .contacts__item-icon {
    margin-bottom: 20px;
  }
  .contacts__item-title {
    margin-bottom: 20px;
  }
  .contacts__item-decr {
    margin-top: 5px;
  }
}
@media (max-width: 1000px) {
  .participate__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .participate__card {
    max-width: 100%;
  }
  .participate__conference {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .themes__items {
    -ms-grid-columns: (4fr)[2];
    grid-template-columns: repeat(2, 4fr);
  }
  .participation__cards {
    display: none;
  }
  .participation__slider {
    display: block;
  }
  .participation__item {
    height: auto;
  }
  .participation__card article {
    margin: 0 auto;
  }
  .participation__wrapper {
    padding-top: 40px;
  }
  .participation__descr {
    margin-bottom: 0;
  }
  .benefits__inner {
    padding: 30px;
  }
  .benefits__list {
    gap: 15px;
  }
  .opportunities__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .opportunities__card-text {
    max-width: 100%;
  }
  .opportunities__card-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
    gap: 15px;
  }
  .media__filters {
    overflow-x: scroll;
  }
  .news__blog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .news__blog-photo {
    width: 100%;
  }
  .news__blog-photo img {
    height: 300px;
    width: 100%;
    border-radius: 16px;
  }
  .news__blog-info {
    max-width: 100%;
  }
  .participation__card-btn {
    width: 100%;
  }
  .features__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .features__info {
    max-width: 100%;
  }
  .dates__list {
    gap: 15px;
  }
  .dates__item {
    padding: 20px;
  }
  .highlights__wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .highlights__info {
    width: 100%;
  }
  .contacts__cards {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .allies__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .highlights__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts__form-item {
    width: 100%;
  }
  .getting__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .participate,
  .themes,
  .partners,
  .provide,
  .testimonials,
  .participation,
  .services,
  .benefits,
  .opportunities,
  .matchmaking,
  .gallery,
  .news,
  .forms,
  .features,
  .market,
  .dates,
  .cta--two,
  .theme,
  .program,
  .section,
  .speakers,
  .highlights,
  .contacts,
  .journey,
  .allies,
  .contacts,
  .faq,
  .footer {
    padding: 40px 0;
  }
  .getting {
    padding: 0 0 40px 0;
  }
  .contacts__content {
    padding: 40px 0;
  }
  .contacts__list {
    padding-bottom: 40px;
  }
  .intro {
    padding: 140px 0 40px 0;
  }
  .participation {
    padding-bottom: 0;
  }
  .services {
    padding-bottom: 0;
  }
  .hero {
    padding: 130px 0 40px 0;
    display: block;
  }
  .market__content {
    padding-top: 40px;
    margin-top: 40px;
  }
  .hero__title {
    font-size: 65px;
  }
  .hero__subtitle {
    font-size: 32px;
  }
  .hero__user-item span {
    font-size: 25px;
  }
  .hero__info-item span {
    font-size: 18px;
  }
  .hero__buttons {
    display: block;
  }
  .hero__buttons-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .hero__buttons-btn:last-child {
    margin-bottom: 0;
  }
  .title,
  .title--two,
  .participate__conference-title {
    font-size: 35px;
    max-width: 100%;
  }
  .participate__top {
    margin-bottom: 60px;
  }
  .impact,
  .participate__center {
    padding: 30px;
  }
  .impact__title,
  .impact__item-title {
    font-size: 45px;
  }
  .participate__items,
  .impact__items {
    gap: 15px;
  }
  .participate__name,
  .impact__name {
    font-size: 30px;
  }
  .participate__center {
    margin-bottom: 40px;
  }
  .participate__bottom {
    padding: 40px 0;
  }
  .themes__items {
    -ms-grid-columns: (4fr)[1];
    grid-template-columns: repeat(1, 4fr);
    gap: 15px;
  }
  .themes__item-title br {
    display: none;
  }
  .provide__item {
    padding: 15px;
  }
  .testimonials__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .testimonials__item-video {
    width: 100%;
  }
  .participation__card-text {
    margin-bottom: 20px;
  }
  .services__inner {
    padding: 30px;
  }
  .services__list {
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
  }
  .benefits__item-title {
    font-size: 35px;
  }
  .benefits__item-descr {
    line-height: 130%;
  }
  .opportunities__card-text {
    font-size: 18px;
  }
  .opportunities__card-item {
    font-size: 16px;
  }
  .matchmaking__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .matchmaking__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
  .matchmaking__card {
    max-width: 100%;
  }
  .cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cta__buttons-btn {
    padding: 12px 32px;
  }
  .gallery__center {
    margin-top: 70px;
  }
  .gallery__btn {
    width: 100%;
  }
  .news__blog-title {
    font-size: 30px;
  }
  .forms__inner {
    padding: 20px;
  }
  .footer__bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer__policy {
    margin: 0 auto;
  }
  .footer__lang {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .intro__title {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .intro__text {
    font-size: 20px;
  }
  .intro__btn {
    font-size: 18px;
  }
  .features__title {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .features__text {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .features__list-item {
    font-size: 20px;
  }
  .market__content-wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .dates__list {
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
  }
  .theme__items {
    -ms-grid-columns: (2fr)[1];
    grid-template-columns: repeat(1, 2fr);
    gap: 20px;
  }
  .theme__item .tooltip {
    max-width: 206px;
    font-size: 20px;
  }
  .section__items {
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
  }
  .section--sex .section__title {
    display: none;
  }
  .speakers__item {
    padding: 20px;
  }
  .speakers__list {
    -ms-grid-columns: (4fr)[1];
    grid-template-columns: repeat(1, 4fr);
  }
  .registration__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
  }
  .registration__info-title {
    text-align: center;
  }
  .program-title {
    font-size: 35px;
  }
  .allies__card {
    padding: 20px;
  }
  .highlights__cards {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .contacts__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .getting__cards {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .faq-items {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .faq-title {
    font-size: 30px;
  }
}
@media (max-width: 560px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .hero__info-item span {
    font-size: 15px;
  }
  .hero__user-text {
    font-size: 15px;
  }
  .hero__user-top {
    margin-bottom: 0;
  }
  .hero__title img {
    width: 30px;
  }
  .hero__info {
    margin-bottom: 25px;
  }
  .hero__user {
    margin-bottom: 30px;
  }
  .hero__buttons {
    margin-bottom: 30px;
  }
  .btn {
    font-size: 16px !important;
    padding: 12px 20px !important;
  }
  .cta__buttons {
    gap: 10px;
  }
  .forms__btn svg {
    display: none;
  }
  .hero__inner {
    padding: 0;
  }
  .participate__items,
  .impact__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .provide__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .testimonials__item-video {
    height: 300px;
  }
  .testimonials__item-video iframe {
    height: 200px;
  }
  .testimonials__item img {
    height: 200px;
    width: 100%;
  }
  .testimonials__items {
    margin-bottom: 100px;
  }
  .participation__slider {
    padding: 0 0 40px 0;
    margin-bottom: 0;
  }
  .services__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .benefits__list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .benefits__item-title {
    font-size: 25px;
  }
  .benefits__item-descr {
    font-size: 14px;
  }
  .benefits__buttons-btn {
    width: 100%;
  }
  .opportunities__card-list {
    display: block;
  }
  .opportunities__card-title {
    margin-bottom: 20px;
  }
  .opportunities__card-text {
    margin-bottom: 20px;
  }
  .news__btn {
    width: 100%;
    text-align: center;
  }
  .news__blog-item {
    display: block;
  }
  .news__blog-item span {
    display: block;
  }
  .news__blog-list {
    text-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .forms__form-wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .forms__form-btn {
    width: 100%;
  }
  .forms__form-input {
    padding: 12px;
  }
  .forms__form-btn {
    margin-bottom: 20px;
  }
  .intro__title {
    font-size: 35px;
  }
  .intro__text {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .features__list-item {
    font-size: 18px;
  }
  .features__title {
    font-size: 27px;
  }
  .market__list {
    -ms-grid-columns: (2fr)[1];
    grid-template-columns: repeat(1, 2fr);
    gap: 15px;
  }
  .dates__list {
    -ms-grid-columns: (2fr)[1];
    grid-template-columns: repeat(1, 2fr);
  }
  .dates__item {
    max-width: 100%;
  }
  .features__item-title {
    font-size: 18px;
  }
  .features__item-p {
    font-size: 18px;
  }
  .features__items {
    gap: 10px;
  }
  .theme__item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme__item {
    position: relative;
  }
  .theme__item-point {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 10px;
  }
  .theme__item-title {
    margin-top: 15px;
  }
  .theme__item-title {
    margin-right: auto;
  }
  .tabs__nav {
    overflow-x: scroll;
  }
  .tabs .tabs__nav-btn {
    width: 150px;
  }
  .program__info {
    padding: 20px;
  }
  .program__item {
    padding-left: 15px;
  }
  .program__info-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .program__item-title {
    font-size: 20px;
  }
  .program__item-descr {
    font-size: 18px;
  }
  .program__item-top {
    -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;
    gap: 10px;
  }
  .program__item-info {
    margin-right: auto;
  }
  .program__item-span {
    margin-right: auto;
  }
  .program--two .tabs .tabs__nav-btn {
    width: 100%;
  }
  .program__card {
    margin-bottom: 20px;
  }
  .program__card-downkand {
    font-size: 16px;
    padding: 6px 14px;
  }
  .program__card {
    padding: 20px;
  }
  .allies__card-text {
    font-size: 20px;
  }
  .contacts__content-left {
    padding: 20px;
  }
  .contacts__adress {
    padding: 20px;
  }
  .contacts__content {
    gap: 30px;
  }
  .form__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .faq__item {
    padding: 20px;
  }
  .faq__item {
    margin-bottom: 15px;
  }
  .contacts--two .contacts__wrapper {
    padding: 20px;
  }
}
@media (max-width: 450px) {
  .hero__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .hero__info-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__title {
    font-size: 35px;
  }
  .title,
  .title--two,
  .participate__conference-title {
    font-size: 27px !important;
  }
  .participate__name,
  .impact__name {
    font-size: 25px;
  }
  .participate__subtitle,
  .impact__subtitle {
    font-size: 18px;
  }
  .participate__cards {
    gap: 15px;
  }
  .participate__card {
    padding: 30px 20px;
  }
  .participate__card img {
    margin-bottom: 10px;
  }
  .participate__card-title {
    margin-bottom: 20px;
  }
  .participate__card-text {
    font-size: 18px;
  }
  .impact__title,
  .impact__item-title {
    font-size: 30px;
  }
  .participate__conference-subtitle {
    font-size: 20px;
  }
  .text {
    font-size: 18px !important;
  }
  .participate__conference-items {
    gap: 15px;
    display: block;
  }
  .participate__conference-item {
    margin-bottom: 20px;
  }
  .participate__conference-item:last-child {
    margin-bottom: 0;
  }
  .participate__conference-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .participate__conference-btns,
  .participate__conference-btn {
    width: 100%;
    text-align: center;
  }
  .participate__conference-right {
    padding: 20px;
  }
  .participate__conference-titl {
    font-size: 20px;
  }
  .themes__item {
    padding: 20px;
  }
  .provide__title {
    margin-bottom: 0;
  }
  .provide__item img {
    margin-bottom: 15px;
  }
  .participation__card article {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    padding: 15px;
  }
  .participation__card-point {
    top: -38px;
  }
  .participation__descr {
    font-size: 12px;
  }
  .services__btn {
    width: 100%;
  }
  .benefits__title {
    margin-bottom: 20px;
  }
  .benefits__item-descr {
    margin-bottom: 20px;
  }
  .opportunities__card {
    padding: 20px;
  }
  .opportunities__card-img {
    margin-bottom: 10px;
  }
  .matchmaking__item-title {
    font-size: 22px;
  }
  .matchmaking__item-name {
    font-size: 20px;
  }
  .matchmaking__item-name::after {
    width: 8px;
    height: 8px;
  }
  .matchmaking__item-text {
    font-size: 18px;
  }
  .matchmaking__inner {
    padding: 30px;
  }
  .cta__inner {
    padding: 20px;
  }
  .cta__title {
    margin-bottom: 15px !important;
    font-size: 27px !important;
  }
  .cta__subtitle {
    margin-bottom: 20px;
  }
  .news__blog-info {
    padding: 20px;
  }
  .news__blog {
    margin-bottom: 30px;
  }
  .footer__bottom p,
  .footer__bottom a,
  .footer__bottom li,
  .footer__bottom span {
    font-size: 12px !important;
  }
  .footer__logo {
    margin-bottom: 20px;
  }
  .footer {
    padding-bottom: 20px;
  }
  .intro__title {
    font-size: 27px;
  }
  .intro__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .intro__btn {
    width: 100%;
  }
  .title--two {
    margin-bottom: 30px !important;
  }
  .market__item {
    padding: 20px;
  }
  .market__item-img {
    margin-bottom: 20px;
  }
  .market__item-title {
    margin-bottom: 10px;
  }
  .market__item-title {
    font-size: 22px;
  }
  .market__item-text {
    font-size: 18px;
  }
  .dates__item-overtitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .dates__item-title {
    font-size: 26px;
  }
  .theme__item-top {
    margin-bottom: 20px;
  }
  .theme__item-title {
    font-size: 22px;
  }
  .theme__item-text {
    font-size: 18px;
  }
  .program__info {
    padding: 20px;
  }
  .program__info-item {
    padding: 10px;
    gap: 15px;
  }
  .program__info-time {
    font-size: 16px;
    padding: 6px 10px;
  }
  .program__info-name {
    font-size: 16px;
  }
  .participation--two .participation__subtitle {
    margin-bottom: 10px;
  }
  .tabs .tabs__nav {
    margin-bottom: 15px;
  }
  .section__item-number {
    font-size: 26px;
    margin-bottom: 0px;
  }
  .section__items-text {
    font-size: 14px;
  }
  .section__items {
    gap: 20px;
  }
  .speakers__item-user {
    margin-bottom: 20px;
  }
  .speakers__item-user img {
    height: 70px;
  }
  .speakers__item-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .speakers__item-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .speakers__item-descr {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .speakers__item-text {
    font-size: 16px;
  }
  .highlights__item-title {
    font-size: 22px;
  }
  .highlights__item-descr {
    font-size: 18px;
  }
  .registration__cards {
    gap: 10px;
  }
  .registration__info-title {
    font-size: 22px;
  }
  .registration__info-item {
    font-size: 18px;
  }
  .program-title {
    font-size: 27px;
  }
  .program__card-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .program__card-downkand {
    font-size: 14px;
  }
  .program__card-over {
    font-size: 14px;
  }
  .program__card-text {
    font-size: 18px;
  }
  .contacts__card-title {
    font-size: 22px;
  }
  .contacts__card-subtitle {
    font-size: 18px;
  }
  .contacts__card-link {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .contacts__card {
    padding: 20px;
  }
  .contacts__card-subtitle {
    margin-bottom: 20px;
  }
  .features__text {
    font-size: 18px;
  }
  .features__element {
    font-size: 16px;
  }
  .journey__item-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .journey__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .journey__item-text {
    font-size: 18px;
  }
  .allies__cards {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .allies__card-text {
    font-size: 18px;
  }
  .highlights__card {
    padding: 20px 20px 20px 40px;
  }
  .contacts__item-title {
    font-size: 20px;
  }
  .contacts__item-icon {
    width: 54px;
    height: 54px;
  }
  .contacts__item-link {
    font-size: 18px;
  }
  .contacts__item-decr {
    font-size: 20px;
  }
  .contacts__content-title {
    font-size: 27px;
  }
  .contacts__content-text {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .contacts__adress-title {
    font-size: 22px;
  }
  .contacts__adress-text {
    font-size: 18px;
  }
  .contacts__adress-descr {
    font-size: 16px;
  }
  .contacts__adress {
    margin-bottom: 30px;
  }
  .getting__card {
    padding: 20px;
  }
  .getting__card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
  }
  .getting__card-descr {
    font-size: 18px;
  }
  .getting__card-list {
    padding: 0 0 0 20px;
  }
  .getting__card-descr {
    margin-bottom: 20px;
  }
  .getting__card-item {
    font-size: 16px;
  }
  .faq__item-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .faq__item-text {
    font-size: 16px;
  }
  .contacts__content-title,
  .faq-category {
    font-size: 22px;
  }
  .vistors__content-title,
  .faq-title {
    font-size: 25px;
  }
  .vistors__content-text p {
    font-size: 16px;
  }
  .faq-question {
    font-size: 18px;
  }
}/*# sourceMappingURL=main.css.map */
