body {
  background: white;
}

.wrap {
  font-family: var(--inter), sans-serif;
  max-width: 100vw;
  min-height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  color: var(--color-black);
  overflow: hidden;
}

.wrap__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-top: 8rem;
}

.wrap.hidden {
  height: 100vh;
}

.container {
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 8.9rem;
}

.section__btn {
  letter-spacing: -0.3px;
  white-space: nowrap;
  text-align: center;
  border-radius: 3.6rem;
  padding: 0.7rem 4.1rem;
  color: var(--color-white);
  background: var(--color-black);
  font: 700 1.7rem/3.2rem var(--inter);
  transition: 0.4s ease;
  display: block;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.section__btn:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
}

.section__btn.arrow {
  padding-right: 4.2rem;
  padding-left: 2.1rem;
}

.section__btn.arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  transition: 0.2s ease;
  background: url(../img/arr.svg) center/1.5rem 1.5rem no-repeat;
}

.section__btn.arrow:hover:before {
  transform: translateY(-50%) scale(1.15);
}

.section__btn.white {
  background: var(--color-white);
  color: var(--color-black);
  position: relative;
}

.section__grey {
  background: var(--color-grey);
}

.section__title {
  font: 700 4rem/5.8rem var(--inter);
  letter-spacing: -0.18rem;
}

.section__title.center {
  text-align: center;
  margin: 0 auto;
}

.section__subtitle {
  font: 500 2.4rem/124% var(--inter);
}

.section__text {
  font: 400 1.6rem/2.4rem var(--is);
}

.section__text.center {
  text-align: center;
}

.section__form {
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  max-width: 59.2rem;
  width: 100%;
}

.section__input {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.section__input input, .section__input textarea {
  width: 100%;
  padding: 0.7rem 3.6rem;
  border-radius: 3.6rem;
  font: 700 1.6rem/3.2rem var(--inter);
  background: rgba(67, 100, 139, 0.0784313725);
  border: none;
  color: var(--color-black);
}

.section__input input:-ms-input-placeholder, .section__input textarea:-ms-input-placeholder {
  color: #8a8b8d;
}

.section__input input::placeholder, .section__input textarea::placeholder {
  color: #8a8b8d;
}

.section__input textarea {
  padding: 1.6rem 2.8rem;
  resize: none;
  height: 20rem;
}

.section__flex {
  display: -ms-flexbox;
  display: flex;
}

.section__circle {
  position: relative;
  z-index: 1;
}

.section__circle:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(50% 50% at 50% 50%, #E1615D 0%, rgba(255, 255, 255, 0.3) 100%);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.section__gallery {
  width: 100%;
  max-width: 58.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 1.5rem) / 2) calc((100% - 1.5rem) / 2);
  grid-template-columns: calc((100% - 1.5rem) / 2) calc((100% - 1.5rem) / 2);
  gap: 1.5rem;
}

.section__col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.section__col .img {
  overflow: hidden;
}

.section__col .img1 {
  aspect-ratio: 285/206;
  border-top-left-radius: 3.6rem;
}

.section__col .img2 {
  aspect-ratio: 285/311;
  border-bottom-right-radius: 3.6rem;
}

.section__col .img3 {
  aspect-ratio: 285/346;
  border-top-right-radius: 3.6rem;
}

.section__col .img4 {
  aspect-ratio: 285/171;
  border-bottom-right-radius: 3.6rem;
}

.header {
  background: transparent;
  width: 100%;
  top: 0;
  z-index: 4;
  left: 0;
  position: fixed;
}

.header__place {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

.header.scroll {
  background: white;
}

.header .container {
  padding: 1.6rem 8.9rem;
}

.header__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.header__logo {
  margin-top: -1.4rem;
  display: block;
  width: 14.3rem;
  min-width: 14.3rem;
}

.header__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
}

.header__menu-item {
  position: relative;
  cursor: pointer;
}

.header__menu-item > a {
  white-space: nowrap;
  padding: 0.6rem 1.2rem;
  position: relative;
  display: block;
  transition: 0.2s ease;
  font: 700 1.5rem/2.6rem var(--inter);
  color: black;
}

.header__menu-item > a:after {
  transition: 0.2s ease;
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.2rem;
  background: var(--color-black);
  width: 0;
}

.header__menu-item > a:hover:after {
  width: calc(100% - 2.4rem);
}

.header__menu-item.active:after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.2rem;
  background: var(--color-primary);
  width: calc(100% - 2.4rem);
}

.header__burger {
  display: none;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 2.4rem;
  height: 2.4rem;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
  transition: 0.2s ease;
}

.header__burger span {
  transition: 0.2s ease;
  background-color: var(--color-black);
  width: 1.8rem;
  height: 0.2rem;
  border-radius: 0.2rem;
}

.header__burger-open span {
  display: block;
  position: absolute;
  top: 50%;
  margin: 0;
  transition: 0.2s ease;
}

.header__burger-open span:nth-child(1) {
  background: var(--color-black);
  transform: rotate(-45deg);
}

.header__burger-open span:nth-child(2) {
  background: var(--color-black);
  transform: rotate(45deg);
}

.header__burger-open span:nth-child(3) {
  display: none;
}

.main .container {
  padding: 12.3rem 8.9rem 9.6rem;
}

.main__block {
  position: relative;
  gap: 2.4rem;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main__info {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 1.7rem;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 57.6rem;
}

.main__button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.1rem;
  margin-top: 2rem;
}

.main__title {
  font: 700 4rem/5.3rem var(--inter);
}

.main__text {
  font: 400 1.9rem/3.2rem var(--inter);
}

.main__gallery {
  max-width: 58.5rem;
}

.main__gallery .img1 {
  aspect-ratio: 285/147;
}

.main__gallery .img2 {
  aspect-ratio: 285/226;
}

.main__gallery .img3 {
  aspect-ratio: 285/251;
}

.main__gallery .img4 {
  aspect-ratio: 285/122;
}

.main:before {
  height: 130%;
}

.why .container {
  padding: 8.5rem 8.9rem 10.5rem;
}

.why__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8.9rem;
  -ms-flex-align: center;
  align-items: center;
}

.why__list {
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}

.why__item {
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - 12rem) / 3);
}

.why__img {
  width: 9rem;
  min-width: 9rem;
}

.why__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.7rem;
}

.why__text h3 {
  font: 500 3.2rem/124% var(--is);
}

.why__text p {
  font: 400 1.6rem/2.4rem var(--is);
}

.strategy .container {
  padding: 14rem 8.9rem 13rem;
}

.strategy__block {
  max-width: 109.6rem;
  width: 100%;
  margin: 3.8rem auto 0;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.strategy__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4.8rem;
  counter-reset: strategy;
}

.strategy__item {
  padding-left: 6.3rem;
  counter-increment: strategy;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}

.strategy__item:after {
  content: counter(strategy);
  position: absolute;
  left: 0;
  top: 0;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  background: rgba(103, 61, 255, 0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font: 400 1.6rem/124% var(--is);
  color: #5b4cf0;
}

.strategy__title {
  font: 600 2.4rem/4rem var(--inter);
  margin: 0;
}

.strategy__text {
  font: 400 1.6rem/2.4rem var(--is);
}

.strategy__link {
  display: block;
  font: 400 1.7rem/3.2rem var(--inter);
  padding-right: 2.5rem;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}

.strategy__link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1rem;
  height: 1rem;
  filter: brightness(0%);
  transition: 0.2s ease;
  background: url(../img/arr.svg) center/1rem 1rem no-repeat;
}

.strategy__gallery .img1 {
  aspect-ratio: 285/206;
}

.strategy__gallery .img2 {
  aspect-ratio: 285/311;
}

.strategy__gallery .img3 {
  aspect-ratio: 285/346;
}

.strategy__gallery .img4 {
  aspect-ratio: 285/171;
}

.events:before {
  height: 70%;
  transform: none;
  top: 0;
  left: 0;
}

.events .container {
  padding: 8.2rem 8.9rem 12.2rem;
}

.events__block {
  max-width: 108.4rem;
  width: 100%;
  margin: 0 auto;
  gap: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.events__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.events__item {
  z-index: 1;
  color: white;
  position: relative;
  width: calc(50% - 1rem);
  aspect-ratio: 532/294;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 5.6rem;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0px 34px 33px -23px rgba(22, 28, 45, 0.1294117647);
}

.events__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.3;
  z-index: -1;
}

.events__item p {
  font: 500 1.5rem/124% var(--inter);
  letter-spacing: -0.01rem;
}

.events__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.events__title {
  font: 700 2.1rem/124% var(--inter);
  letter-spacing: -0.05rem;
}

.events__link {
  margin-top: 3.2rem;
  font: 700 1.7rem/124% var(--inter);
  letter-spacing: -0.06rem;
  padding-right: 2.3rem;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}

.events__link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.2s ease;
  background: url(../img/arr.svg) center/1.2rem 1.2rem no-repeat;
}

.tab__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.2rem 2.3rem;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 4.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tab__header-item {
  font: 400 1.7rem/3.2rem var(--inter);
  position: relative;
  white-space: nowrap;
  padding: 0.2rem 3.3rem;
  border-radius: 100rem;
  color: #BDBDBD;
  letter-spacing: -0.06rem;
  border: 0.2rem solid #BDBDBD;
}

.tab__header-item.active {
  color: var(--color-black);
  font-weight: bold;
  border: 0.2rem solid var(--color-black);
}

.tab__content-item {
  display: none;
}

.tab__content-item:first-child {
  display: block;
}

.initiator {
  padding: 10rem 1.6rem;
}

.initiator .section__title {
  max-width: 63rem;
  margin: 0 auto;
}

.initiator__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.initiator__list .img {
  width: auto;
}

.allies .container {
  padding: 10rem 8.9rem 7rem;
}

.allies .section__title {
  font: 500 3.6rem/100% var(--is);
  letter-spacing: 0;
}

.allies__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.4rem;
}

.allies__gallery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 6.7rem 4.5rem;
  max-width: 76.4rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.allies__img {
  overflow: hidden;
  width: calc((100% - 9rem) / 3);
  aspect-ratio: 225/187;
  border-radius: 1.2rem;
}

.allies__img:nth-child(2), .allies__img:nth-child(5) {
  margin-top: -18rem;
}

.allies__img:nth-child(3), .allies__img:nth-child(6) {
  margin-top: -8rem;
}

.allies__info {
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  -ms-flex-direction: column;
  flex-direction: column;
}

.allies__counter {
  margin-top: auto;
  font: 500 12.8rem/100% var(--inter);
  color: #979797;
}

.course .container {
  padding: 11.1rem 8.9rem 15.2rem;
}

.course .tab__header {
  margin-bottom: 8.6rem;
}

.course__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.6rem;
}

.course__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5rem;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.course__item {
  height: 6.5rem;
  width: auto;
}

.course .section__text {
  margin-bottom: 3.8rem;
}

.course .section__btn {
  margin: 5.4rem auto 0;
}

.course .tab__header-item {
  letter-spacing: -0.6px;
  padding: 0.2rem 1.8rem;
}

.course .tab__header {
  gap: 4.2rem 1.4rem;
}

.number .container {
  padding: 5.5rem 8.9rem 8.9rem;
}

.number__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.7rem;
}

.number__list {
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-top: 4.3rem;
}

.number__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - 3.8rem) / 4);
}

.number__title {
  font: 500 7.5rem/100% var(--inter);
  margin-bottom: 0.5rem;
}

.number__text {
  font: 400 1.9rem/124% var(--inter);
}

.blog .container {
  padding: 8.7rem 7.1rem 19.5rem;
}

.blog__list .swiper-wrapper {
  -ms-flex-align: stretch;
      align-items: stretch;
}

.blog__list .swiper-slide {
  height: auto;
  display: -ms-flexbox;
  display: flex;
}

.blog__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.3rem;
  max-width: 112rem;
  width: 100%;
  margin: 0 auto;
  -ms-flex-align: center;
  align-items: center;
}

.blog__list {
  width: 100%;
  max-width: 112rem;
  padding: 0 0.5rem 1rem;
  overflow: hidden;
}

.blog__item {
  -ms-flex-direction: column;
  flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 1.2rem;
  overflow: hidden;
  height: 100%;
}

.blog__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 3.2rem 5rem;
}

.blog__img {
  overflow: hidden;
  aspect-ratio: 6/5;
}

.blog__category {
  font: 500 1.5rem/2.6rem var(--inter);
}

.blog__title {
  font: 700 2.1rem/3.2rem var(--inter);
}

.blog .section__text {
  max-width: 50rem;
  margin: 0 auto 5rem;
}

.blog .section__btn {
  margin-top: 4rem;
}

.subs .container {
  padding: 11.5rem 8.8rem 11.5rem;
}

.subs__block {
  max-width: 112.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
}

.subs__flex {
  gap: 4rem;
  margin-top: 8rem;
}

.subs__title {
  position: relative;
  z-index: 1;
  font: 700 3.2rem/4.4rem var(--inter);
  margin-bottom: 0.5rem;
}

.subs__text {
  font: 400 1.9rem/3.2rem var(--inter);
}

.partner .container {
  padding: 4rem 8.9rem 5.5rem;
}

.partner__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.6rem;
  margin: 0 auto;
  -ms-flex-align: center;
  align-items: center;
  max-width: 115.8rem;
}

.partner__subtitle {
  text-align: center;
  color: #161C2D;
  opacity: 0.7;
  font: 400 1.6rem/2.4rem var(--is);
  max-width: 99.7rem;
  margin: 0 auto 1rem;
  letter-spacing: 0.5px;
}

.partner__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}

.partner__item {
  width: calc((100% - 9rem) / 4);
}

.partner__item-last {
  padding: 3.6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4.8rem;
}

.partner__item-last .section__btn {
  background: transparent;
  filter: brightness(0);
}

.partner__item p {
  color: #161C2D;
  opacity: 0.7;
  font: 500 1.5rem/2.6rem var(--inter);
}

.partner__img {
  overflow: hidden;
  aspect-ratio: 267/356;
  border-top-left-radius: 3.6rem;
  margin-bottom: 3rem;
}

.partner__title {
  font: 700 2.1rem/3.2rem var(--inter);
  margin-bottom: 0.4rem;
}

.partner__title-top {
  margin: 4.6rem auto 5.6rem !important;
}

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

.footer .container {
  padding: 12.2rem 8.9rem;
}

.footer__block {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5rem;
}

.footer__left-text {
  color: white;
  opacity: 0.65;
  font: 400 1.6rem/2.4rem var(--is);
}

.footer__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  min-width: 16.1rem;
}

.footer__menu > * {
  color: var(--color-white);
  font: 400 1.6rem/2.4rem var(--is);
  transition: 0.2s ease;
  white-space: nowrap;
}

.footer__menu > *:hover {
  color: var(--color-grey);
}

.footer__menu-item > p {
  color: var(--color-white);
  opacity: 0.65;
  font: 400 1.6rem/2.4rem var(--inter);
  margin-bottom: 2.2rem;
}

.footer__menu-wrap {
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}

.footer__logo {
  font: 700 2.8rem/124% var(--inter);
  color: var(--color-white);
}

.footer__social {
  margin-top: 1.2rem;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3rem;
  -ms-flex-align: center;
  align-items: center;
}

.footer__social > * {
  width: 1.8rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: 0.2s ease;
}

.footer__social > *:hover {
  filter: brightness(0) saturate(100%) invert(40%) sepia(44%) saturate(885%) hue-rotate(313deg) brightness(110%) contrast(78%);
}

.footer__right {
  width: 55%;
}

.footer__right-img {
  max-width: 15.6rem;
  width: 100%;
  margin-top: 2rem;
}

.fadein__block {
  opacity: 0;
  transition: 1s ease;
}

.fadein__block.visible {
  opacity: 1;
}

label.error {
  color: #B00000;
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  font: 400 1.2rem/100% var(--inter);
}

.modal {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.modal__close {
  position: absolute;
  top: 4.55rem;
  right: 4rem;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
  z-index: 5;
}

.modal__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.2s ease;
  background: url(../img/x.svg) center/100% 100% no-repeat;
}

.modal__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal__wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(23, 23, 23, 0.4);
  top: 0;
  left: 0;
}

.modal__content {
  max-width: 83.5rem;
  width: 100%;
  overflow: hidden;
  border-radius: 2.8rem;
  background-color: white;
  position: absolute;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  max-height: 95vh;
  transform: translate(-50%, -50%);
  z-index: 6;
}

.modal__content.small {
  max-width: 57.6rem;
}

.modal__content.big {
  max-width: 85.1rem;
}

.modal__overflow {
  padding: 4rem;
  width: 100%;
  max-height: 95vh;
  overflow: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}

.modal__overflow::-webkit-scrollbar {
  background-color: transparent;
  width: 0.4rem;
}

.modal__overflow::-webkit-scrollbar-thumb {
  background-color: var(--color-black);
}

.modal__btn {
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}

.modal__btn-close {
  background-color: var(--color-grey);
}

.modal__btn > * {
  width: calc(50% - 1.2rem);
}

.modal__title {
  font: 600 2.8rem/100% var(--inter);
  text-align: center;
}

.modal__text {
  font: 400 1.6rem/2.8rem var(--inter);
  text-align: center;
}

.content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}

.content p, .content p > *, .content span, .content li {
  font: 400 1.8rem/140% var(--is);
}

.content ol, .content ul {
  padding-left: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}

.content ul li {
  position: relative;
}

.content ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.5rem;
  width: 0.2rem;
  height: 0.2rem;
  background-color: #171717;
  border-radius: 50%;
  pointer-events: none;
}

.content strong {
  font-weight: 700;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
  font: 600 2.2rem/130% var(--inter);
}

.content a {
  text-decoration: underline;
}

.notfound {
  padding: 10rem 6.4rem;
}

.notfound__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

section {
  padding: 0;
}

.course__img-banner {
  width: 100%;
}

.course__page {
  background: #fff;
}

.course__logo {
  /*display: flex;*/
  /*flex-direction: column;*/
  /*gap:5rem;*/
  margin-top: 5rem;
}

.tab__content-item > div {
  scroll-margin-top: 75px;
}

.lshowcase-logos > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.section__filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2rem;
}
.section__filter-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.8rem;
}
.section__filter-row .select2-container {
  min-width: 13.4rem;
}
.section__filter-row .select2-container--default .select2-selection--multiple .select2-selection__choice {
  display: none !important;
}
.section__filter-row .select2-container {
  cursor: pointer;
}
.section__filter-row .select2-container--default .select2-selection--multiple .select2-selection__rendered::before {
  content: attr(data-placeholder);
  color: #000;
  font: 500 1.2rem/3.2rem var(--inter);
}
.section__filter-row .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0 5.3rem 0 1.3rem;
}
.section__filter-row .select2-container--default .select2-selection--multiple {
  border-radius: 1.2rem;
  background: rgba(246, 75, 75, 0.1019607843);
  height: 3.2rem;
  min-height: auto;
  border: none;
  position: relative;
}
.section__filter-row .select2-container--default .select2-selection--multiple:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translate(-50%, -50%);
  width: 0.7rem;
  height: 0.7rem;
  transition: 0.2s ease;
  background: url(../img/tri.svg) center/0.7rem 0.7rem no-repeat;
}
.section__view {
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  -ms-flex-align: center;
      align-items: center;
}
.section__view-item {
  cursor: pointer;
}
.section__view-item.active svg rect {
  fill: #5A85AA;
}
.section__tags {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1.1rem;
}
.section__more.arrow {
  margin: 0 auto;
  padding-right: 5.2rem;
  padding-left: 2.3rem;
}
.section__more.arrow:before {
  transform: translateY(-50%) rotate(90deg);
}
.section__more.arrow:hover:before {
  transform: translateY(-50%) rotate(90deg) scale(1.15);
}
.section__sort {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}
.section__sort .select2-container--open:not(.select2){
  left: unset!important;
  right: 0;
}
.section__sort .select2-container--open .select2-dropdown {
  left: auto !important;
  right: 0 !important;
}
.section__sort .select2-dropdown {
  left: unset!important;
  right: -100%!important;
}
.section__sort  .select2-dropdown{
  min-width: 170px!important;
}
.section__sort span {
  font: 700 1.5rem/3.2rem var(--inter);
  white-space: nowrap;
}
.section__sort .select2-container {
  width: -moz-max-content !important;
  width: max-content !important;
}
.section__sort .select2-container--default .select2-selection--single {
  background: transparent;
  border: none;
}
.section__sort .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #E1615D transparent transparent transparent;
}
.section__sort .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #E1615D transparent;
}
.section__sort .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: auto;
}

.tag__text {
  margin-top: 2.5rem;
  color: #BDBDBD;
  font: 700 1.2rem/2.4rem var(--inter);
  border: 0.155rem solid #BDBDBD;
  padding: 0 0.8rem 0 1.2rem;
  border-radius: 2.8rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.tag__button {
  margin-left: 2.4rem;
  width: 1.2rem;
  height: 1.2rem;
  display: inline;
  position: relative;
  padding: 0;
}
.tag__button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.2s ease;
  background: url(../img/delete.svg) center/1.2rem 1.2rem no-repeat;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: transparent;
  position: relative;
}
.select2-container--default .select2-results__option[aria-selected=true]:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.2s ease;
  background: url(../img/check.svg) center/1.2rem 1.2rem no-repeat;
}



.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #000;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]:after {
  filter: brightness(0) invert(1);
}

.select2-container--default .select2-results > .select2-results__options {
  scrollbar-width: thin;
  scrollbar-color: #000 #000;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 4px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: #000;
  border-radius: 4px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 4px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.select2-container--open .select2-dropdown--below {
  border: 1px solid #000;
  border-radius: 4px;
}

.select2-results__option {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-right: 2.4rem;
  font: 700 1.4rem/3.2rem var(--inter);
}

.select2-search {
  display: none;
}

.initiators .container {
  padding-top: 4.5rem;
  padding-bottom: 7.5rem;
  max-width: 139.4rem;
  position: relative;
  z-index: 1;
}


.initiators__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.8rem;
}
.initiators__item {
  width: 100%;
  padding: 2rem;
  background: #fff;
  border-radius: 1.8rem;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  position: relative;
  min-width: 0;
}
.initiators__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.3rem;
  -ms-flex-positive: 1;
      flex-grow: 1;
  min-width: 0;
  width: 100%;
}
.initiators__info-name {
  margin: 0;
  font: 700 2.4rem/100% var(--inter);
}
.initiators__info-position {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  gap: 3.6rem;
}
.initiators__info-position > * {
  font: 400 1.6rem/100% var(--inter);
  position: relative;
  margin: 0;
}
.initiators__info-position > *:not(:first-child):after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.9rem;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #FEEDED;
  border-radius: 50%;
  pointer-events: none;
}
.initiators__info-text {
  color: #707070;
  font: 400 1.4rem/100% var(--inter);
  max-width: 46rem;
}
.initiators__info-contact {
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-top: 0.9rem;
  min-width: 0;
  width: 100%;
}
.initiators__info-contact > * {
  background: rgba(0, 151, 251, 0.1019607843);
  border-radius: 0.8rem;
  font: 400 1.2rem/100% var(--inter);
  color: #161C2D;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 0.7rem 1.4rem;
  transition: all 0.2s ease;
  min-width: 0;
  overflow: hidden;
  max-width: -moz-max-content;
  max-width: max-content;
}
.initiators__info-contact > *:hover {
  transition: all 0.2s ease;
  background: rgba(0, 151, 251, 0.1647058824);
}
.initiators__info-contact span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.initiators__info-contact img {
  width: 1.2rem;
  height: 1.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.initiators__img {
  aspect-ratio: 138/175;
  overflow: hidden;
  min-width: 11.7%;
  width: 11.7%;
}
.initiators__logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.initiators__logo-wrapper {
  height: 6.8rem;
  width: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.initiators .section__more {
  margin-top: 5rem;
}
.initiators__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.8rem;
}
.initiators__list.grid {
  gap: 3.2rem 2.6rem;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.initiators__list.grid .initiators__info-name, .initiators__list.grid .initiators__info-position {
  max-width: 60%;
}
.initiators__list.grid .initiators__item {
  width: calc(50% - 1.3rem);
  padding: 1.6rem;
  gap: 2.2rem;
}
.initiators__list.grid .initiators__logo-wrapper {
  height: 5rem;
  position: absolute;
  right: 2.4rem;
  top: 1.6rem;
}
.initiators__list.grid .initiators__info-contact {
  -ms-flex-direction: column;
      flex-direction: column;
}
.initiators__list.grid .initiators__info-contact > * {
  width: -moz-max-content;
  width: max-content;
}
.initiators__list.grid .initiators__info-position > *:last-child {
  display: none;
}
.initiators__list.grid .initiators__img {
  aspect-ratio: 185/235;
  width: 31.5%;
  min-width: 31.5%;
}

.select2-container--open .select2-dropdown {
}

.select2-results__options li{
  margin: 0;
}
.gallery{
 margin: 0;
}
.gallery .container {
  padding: 0 1.7rem;
  max-width: 100%;
}
.gallery__slider-img {
  height: 20.2rem;
  width: auto;
  border-radius: 0.8rem;
  overflow: hidden;
}
.gallery__slider .swiper-slide {
  width: auto;
}
.gallery .partner__subtitle {
  margin: 10.8rem auto;
  max-width: 80rem;
  color: #000;
}

.about .container {
  padding: 10.8rem 1.6rem 7rem;
  max-width: 160rem;
}
.about .partner__subtitle {
  margin-bottom: 13.2rem;
  max-width: 80rem;
}
.about__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 9.2rem;
}
.about__img {
  aspect-ratio: 651/365;
  overflow: hidden;
  border-radius: 1.2rem;
  width: 41.6%;
}
.about__text {
  width: 43%;
}
.about__text h2 {
  font: 500 7.4rem/7.1rem var(--inter);
  margin: 0 0 1.6rem;
}
.about__text h2 span {
  display: block;
  font: 500 5.3rem/5.6rem var(--inter);
}
.about__text p {
  font: 400 1.6rem/140% var(--is);
  margin: 0;
}
.about__row {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -ms-flex-align: end;
      align-items: flex-end;
}
.about__row.reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  position: relative;
  z-index: 1;
}
.about__row:nth-child(2):after {
  content: "";
  position: absolute;
  width: 28%;
  height: auto;
  top: -35%;
  left: 0;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(50% 50% at 50% 50%, #E1615D 0%, rgba(255, 255, 255, 0.3) 100%);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.about__row:nth-child(2):before {
  content: "";
  position: absolute;
  width: 44%;
  height: auto;
  bottom: -90%;
  left: 35%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(50% 50% at 50% 50%, #A6A1FF 23.08%, rgba(255, 255, 255, 0.3) 100%);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.about__row:nth-child(4):after {
  content: "";
  position: absolute;
  width: 28%;
  height: auto;
  bottom: -52%;
  left: 43%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(50% 50% at 50% 50%, #E1615D 0%, rgba(255, 255, 255, 0.3) 100%);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.contact .container {
  padding-top: 2.3rem;
  padding-bottom: 7rem;
}
.contact__form {
  width: 100%;
  max-width: 44.8rem;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.8rem;
}
.contact__note {
  text-align: center;
  font: 700 1.4rem/3.2rem var(--inter);
  color: rgba(225, 97, 93, 0.7019607843);
  margin-bottom: 0.5rem;
}
.contact__input, .contact__textarea {
  width: 100%;
  padding: 0.7rem 1.4rem;
  font: 700 1.4rem/3.2rem var(--inter);
  color: #1a1a1a;
  background: rgba(67, 100, 139, 0.0784313725);
  border: none;
  border-radius: 3.6rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.contact__input:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact__input:focus, .contact__textarea:focus {
  border-color: rgba(0, 0, 0, 0.35);
}
.contact__textarea {
  border-radius: 3.2rem;
  resize: vertical;
  min-height: 18rem;
  padding: 1.3rem 2rem;
}
.contact__confirm {
  font: 400 1.4rem/1.9rem var(--inter);
  color: rgba(0, 0, 0, 0.4);
  max-width: 36rem;
  margin: 0 auto;
  width: 100%;
}
.contact .section__btn {
  margin: 2rem auto 0;
}
.contact .error {
  position: unset !important;
}
.contact .ui-datepicker {
  font-size: 14px;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px;
}
.contact .ui-datepicker-header {
  background: #111;
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 8px 4px;
}
.contact .ui-state-active {
  background: #111 !important;
  color: #fff !important;
  border: none !important;
}

.upcoming .container {
  max-width: 139.4rem;
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.upcoming__list {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  margin-top: 7rem;
}
.upcoming__item {
  position: relative;
  aspect-ratio: 384/213;
  overflow: hidden;
  border-radius: 1.2rem;
  width: calc((100% - 6.4rem) / 3);
}
.upcoming__img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.upcoming__info {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 29.33%, rgba(102, 102, 102, 0) 100%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 0.9rem 2.3rem;
  -ms-flex-pack: end;
      justify-content: flex-end;
  height: 100%;
  color: white;
}
.upcoming__info > * {
  margin: 0;
}
.upcoming__link {
  color: #000;
  font: 700 1.7rem/3.2rem var(--inter);
  padding-right: 2.4rem;
  margin-left: auto;
  margin-top: 4.2rem;
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.upcoming__link:before {
  content: "";
  position: absolute;
  top: 50%;
  filter: brightness(0%);
  transform: translateY(-50%);
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  transition: 0.2s ease;
  background: url(../img/arr.svg) center/1.2rem 1.2rem no-repeat;
}
.event{
  position: relative;
}
.event .container {
  padding-top: 2.6rem;
  padding-bottom: 9.8rem;
  max-width: 139.4rem;
  position: relative;
  z-index: 1;
}


.event .container:before, .initiators .container:before {
  content: "";
  position: absolute;
  width: 46%;
  height: auto;
  top: 10%;
  right: -10%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(50% 50% at 50% 50%, #E1615D 0%, rgba(255, 255, 255, 0.3) 100%);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.event .container:after, .initiators .container:after {
  content: "";
  position: absolute;
  width: 46%;
  height: auto;
  bottom: -5%;
  left: -10%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(50% 50% at 50% 50%, #A6A1FF 23.08%, rgba(255, 255, 255, 0.3) 100%);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.event__list {
  margin-top: 2.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.7rem;
}
.event__item {
  display: -ms-flexbox;
  display: flex;
  padding: 1.4rem;
  border-radius: 1.8rem;
  background: #fff;
  gap: 2.3rem;
}
.event__item .section__btn {
  font-size: 1.2rem;
  padding-top: 0;
  padding-bottom: 0;
}
.event__img {
  border-radius: 1.2rem;
  width: 25.7%;
  overflow: hidden;
  aspect-ratio: 304/208;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.2rem;
}
.event__info-name {
  font: 700 2.4rem/3.2rem var(--inter);
  letter-spacing: -0.06rem;
  margin: 0;
}
.event__info-text {
  color: #7D818D;
  font: 400 1.5rem/2rem var(--inter);
  letter-spacing: -0.06rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}
.event__desc {
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.event__desc span {
  font: 700 1.5rem/2.1rem var(--inter);
  letter-spacing: -0.06rem;
}
.event__desc p {
  font: 500 1.5rem/2.1rem var(--inter);
  letter-spacing: -0.06rem;
  margin: 0;
}
.event__bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: auto;
  border-top: 0.1rem solid #979797;
  padding-top: 1.8rem;
}
.event__bottom-desc {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 6rem;
}
.event .section__btn-submit {
  margin: 9.2rem auto 0;
  padding-right: 6rem;
}
.empty-list{
  font: 700 2.5rem/2.5rem var(--inter);
  margin: 3rem auto 0;
}


@media only screen and (max-width: 1280px) {
  .container {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  .header__menu {
    gap: 0;
  }
}
@media only screen and (max-width: 666px) {
  .wrap__main {
    padding-top: 5.2rem;
  }
  .wrap__main .container {
    padding: 4rem 1.6rem !important;
  }
  .section__title {
    font-size: 2.4rem;
    line-height: 124%;
  }
  .section__text {
    font-size: 1.4rem;
    line-height: 124%;
  }
  .section__flex {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  section .section__flex > * {
    width: 100%;
    max-width: 100%;
  }
  .section__btn {
    font-size: 1.5rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .section__subtitle {
    font-size: 1.4rem;
  }
  .header .container {
    padding: 1.6rem !important;
  }
  .header__logo {
    width: 12rem;
    min-width: 12rem;
  }
  .header.white {
    background-color: white;
  }
  .header__menu-wrap {
    left: -100%;
    position: absolute;
    transition: all 0.2s ease;
    width: 0;
    padding: 4rem 1.6rem 6rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.2rem;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    top: 5.2rem;
    background: var(--color-white);
    min-height: calc(100vh - 5.2rem);
    z-index: 6;
  }
  .header__menu-wrap.active {
    left: 0;
    width: 100%;
  }
  .header__menu {
    color: black;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.4rem;
  }
  .header__menu-item:after {
    display: none !important;
  }
  .header__menu-item {
    width: 100%;
  }
  .header__menu-item > a {
    font-size: 2rem;
    width: 100%;
    padding: 0;
    text-align: center;
    font-weight: 600;
  }
  .header__burger {
    display: -ms-flexbox;
    display: flex;
  }
  .header__info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
  }
  .header .section__btn.arrow {
    padding-top: 0;
    padding-bottom: 0;
  }
  .modal__overflow {
    padding: 2.4rem;
  }
  .modal__overflow .section__title {
    font-size: 1.6rem;
  }
  .modal__close {
    top: 2.4rem;
    right: 2.4rem;
    width: 2rem;
    height: 2rem;
  }
  .modal__content {
    max-width: calc(100% - 3.2rem);
  }
  .footer .container {
    padding: 4.4rem 1.6rem;
  }
  .footer__block {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6rem;
    margin-bottom: 6rem;
  }
  .footer__menu-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem 2rem;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__menu > * {
    font-size: 1.6rem;
  }
  .footer__menu-item {
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .footer__right-img {
    margin: 3rem auto 0;
  }
  .footer__menu-item > p {
    margin-bottom: 1rem;
  }
  .footer__contact {
    max-width: 100%;
    margin: 0;
    gap: 1.2rem;
    width: 100%;
    text-align: center;
  }
  .footer__phone {
    font-size: 2rem;
  }
  .footer__social {
    margin-top: 2rem;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__bottom > *:not(:last-child):after {
    display: none;
  }
  .footer__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.6rem;
    padding: 0;
  }
  .footer__bottom-link, .footer__bottom p {
    font-size: 1.2rem;
  }
  .footer .container {
    padding: 4.4rem 1.6rem 2.8rem;
  }
  .footer__address {
    font-size: 1.2rem;
  }
  .main__block {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .main__title {
    font-size: 2.8rem;
    line-height: 124%;
  }
  .main__text {
    font-size: 1.7rem;
    line-height: 124%;
  }
  .main__info {
    gap: 1.2rem;
  }
  .main__button {
    gap: 1.6rem;
  }
  .initiator {
    padding: 4rem 1.6rem;
  }
  .allies .section__title {
    font-size: 2.4rem;
    line-height: 124%;
  }
  .allies__info {
    gap: 3rem;
  }
  .allies__counter {
    font-size: 6.5rem;
  }
  .allies__gallery {
    gap: 1.6rem;
    margin-top: 3rem;
  }
  .allies__img {
    width: calc((100% - 3.2rem) / 3);
  }
  .allies__img:nth-child(2), .allies__img:nth-child(5) {
    margin-top: -8rem;
  }
  .allies__img:nth-child(3), .allies__img:nth-child(6) {
    margin-top: -4rem;
  }
  .why__block {
    gap: 2.4rem;
  }
  .why__list {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.2rem;
  }
  .why__list > * {
    width: 100%;
  }
  .why__text h3 {
    font-size: 2.4rem;
  }
  .why__text p {
    font-size: 1.4rem;
    line-height: 124%;
  }
  .why__img {
    width: 6.4rem;
    min-width: 6.4rem;
  }
  .why__item {
    gap: 1.6rem;
  }
  .strategy__block {
    margin-top: 1.6rem;
  }
  .strategy__item {
    padding-left: 4.2rem;
  }
  .strategy__item:after {
    font-size: 1.4rem;
    width: 3.2rem;
    height: 3.2rem;
    margin-top: 0.6rem;
  }
  .strategy__title {
    font-size: 2.2rem;
    line-height: 124%;
  }
  .strategy__list {
    gap: 2.8rem;
  }
  .strategy__link {
    font-size: 1.5rem;
  }
  .events__list {
    gap: 1.6rem;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .events__title {
    font-size: 1.9rem;
  }
  .events__item {
    padding: 2rem;
    width: 100%;
  }
  .events__item p {
    font-size: 1.4rem;
  }
  .events__link {
    font-size: 1.6rem;
    width: -moz-max-content;
    width: max-content;
  }
  .events__block {
    gap: 1.6rem;
  }
  .course .tab__header, .tab__header {
    gap: 1.2rem 1.6rem;
  }
  .tab__header-item {
    font-size: 1.6rem;
    line-height: 160%;
  }
  .course .section__text {
    margin-bottom: 1.6rem;
  }
  .course .tab__header {
    margin-bottom: 4rem;
  }
  .number__list {
    margin-top: 2rem;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .number__list > * {
    width: 100%;
  }
  .number__item {
    gap: 1rem;
  }
  .number__title {
    font-size: 5.4rem;
  }
  .number__text {
    font-size: 1.6rem;
  }
  .subs__title {
    font-size: 2.4rem;
    line-height: 124%;
  }
  .section__form {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section__form > * {
    width: 100%;
  }
  .section__input input, .section__input textarea {
    padding: 0.2rem 2.4rem;
  }
  .partner__title-top {
    margin: 1rem auto !important;
  }
  .partner__block {
    gap: 2rem;
  }
  .partner__list {
    gap: 1.6rem;
  }
  .partner__item {
    width: calc(50% - 0.8rem);
  }
  .partner__img {
    margin-bottom: 1rem;
  }
  .partner__title {
    font-size: 2rem;
    line-height: 124%;
  }
  .partner__subtitle {
    font-size: 1.4rem;
    line-height: 140%;
  }
  .blog .section__btn {
    margin-top: 2rem;
    display: none;
  }
  .blog__list {
    max-width: calc(100vw - 3.2rem);
  }
  .footer__left-text {
    text-align: center;
  }
  .gallery .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .about .partner__subtitle {
    margin-bottom: 4rem;
  }
  .about__row, .about__row.reverse {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .about__row > *, .about__row.reverse > * {
    width: 100%;
  }
  .about__block {
    gap: 6rem;
  }
  .about__text h2 {
    font-size: 3.6rem;
    line-height: 4rem;
  }
  .about__text h2 span {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
  .about__text p {
    font-size: 1.4rem;
  }
  .subs__block {
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .initiators__info-position {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 0.8rem;
  }
  .initiators__info-position > *:not(:first-child):after {
    display: none;
  }
  .initiators__item {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 1.6rem;
    padding: 1.6rem;
  }
  .initiators__logo-wrapper {
    position: absolute;
    top: 1.6rem;
    height: 5rem;
    right: 1.6rem;
  }
  .initiators__img {
    width: 13.5rem;
  }
  .initiators__info-contact {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.2rem;
  }
  .initiators__list.grid {
    gap: 1.2rem;
  }
  .initiators__list.grid .initiators__item {
    padding: 1.2rem;
    width: calc(50% - 0.6rem);
  }
  .initiators__list.grid .initiators__logo-wrapper {
    right: 1.2rem;
    top: 1.2rem;
    height: 3rem;
  }
  .initiators__info-contact > * {
    padding: 0.7rem;
  }
  .initiators__info {
    gap: 1rem;
  }
  .initiators__list.grid .initiators__info-name, .initiators__list.grid .initiators__info-position {
    max-width: 100%;
  }
  .initiators__list.grid .initiators__img {
    width: 50%;
    min-width: 50%;
  }
  .initiators__list.grid .initiators__info-contact > * {
    width: 100%;
  }
  .initiators .section__more {
    margin-top: 2rem;
  }
  .initiators__list.grid .initiators__item {
    gap: 1.6rem;
  }
  .initiators__info-contact {
    margin-top: auto;
  }
  .upcoming__list {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-top: 3rem;
    gap: 1.6rem;
  }
  .upcoming__list > * {
    width: 100%;
  }
  .event__block .section__filter {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .section__filter-row {
    gap: 1.6rem;
    width: 100%;
  }
  .section__filter-row .select2-container {
    width: calc((100% - 3.2rem) / 3) !important;
  }
  .tag__text {
    margin-top: 2rem;
  }
  .event__list {
    margin-top: 2rem;
  }
  .event__bottom {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 1.6rem;
  }
  .event__item {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1.6rem;
  }
  .event__img {
    width: 70%;
  }
  .event__bottom-desc {
    gap: 3rem;
  }
  .event .section__btn-submit {
    margin-top: 4rem;
  }
  .upcoming__link {
    margin-top: 3.2rem;
  }
  .gallery .partner__subtitle {
    margin: 4rem auto;
  }
  .event .container:after, .event .container:before, .initiators .container:after, .initiators .container:before,
  .about__row:nth-child(4):after,.about__row:nth-child(2):after,.about__row:nth-child(2):before {
    display: none;
  }
}