@charset "UTF-8";
@import url("./fonts/stylesheet.css");
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  list-style: none;
}

a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
}

button {
  border: none;
  padding: 0;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
}

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

img {
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
}

.container {
  max-width: 1035px;
  width: 100%;
  margin: 0 auto;
}

.calendar-box {
  position: fixed;
  bottom: 32px;
  right: 25px;
  width: 79px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2aa953;
  border-radius: 50%;
  transition: transform 0.2s ease;
  z-index: 888;
}
.calendar-box:hover {
  transform: scale(1.05);
}

.title {
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
}

.sub-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.btn--black {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  background-color: #262626;
  border-radius: 7px;
  height: 40px;
  cursor: pointer;
}

.btn--green,
.btn--gray {
  color: #fff;
  padding: 10px 17px;
  background-color: #2fae52;
  border-radius: 7px;
  text-align: center;
  font-size: 12px;
  line-height: 100%;
  cursor: pointer;
}

.btn--gray {
  background-color: #eeeeee;
  color: #202020;
}

.badge {
  padding: 9px 16px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: #ffffff;
}
.badge.badge--success {
  background-color: #2fae52;
}
.badge.badge--info {
  background-color: #3976bc;
}

.filter-panel {
  display: flex;
  gap: 16px;
}
.filter-panel .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.filter-panel .bordred {
  border: 5px solid #eeeeee;
  border-radius: 8px;
  height: 44px;
  padding: 0 15px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.filter-panel button {
  background: transparent;
}
.filter-panel__chips {
  display: flex;
  gap: 16px;
  flex: 1;
}
.filter-panel__chips .chip {
  font-weight: 700;
  font-size: 12px;
  line-height: 25.06px;
  color: #000;
}
.filter-panel__search {
  max-width: 680px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.filter-panel__search input {
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 25.06px;
}
.filter-panel__search input::placeholder {
  color: #000000;
}
.filter-panel__search-btn {
  background: transparent;
  display: flex;
}

.header {
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.4);
  padding: 19px 0 17px 0;
  position: relative;
  z-index: 100;
}
.header .menu-btn {
  display: none;
  width: 29px;
  height: 29px;
  background-color: #262626;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.header .menu-btn .chevron-up {
  display: none;
}
.header .menu-btn .hamburger-icon {
  width: 15px;
  height: 13px;
}
.header .menu-btn.active .hamburger-icon {
  display: none;
}
.header .menu-btn.active .chevron-up {
  display: block;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 29px;
}
.header__menu-link {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: #000000;
  text-align: center;
}
.header__menu .dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.header__menu .dropdown img {
  transition: transform 0.2s linear;
}
.header__menu .dropdown.active img {
  transform: rotate(180deg);
}
.header__menu .underline {
  text-decoration: underline;
}
.header__social {
  display: flex;
  gap: 8px;
}
.header__social-box {
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #262626;
  border-radius: 5px;
}
.header .dropdown-menu {
  position: absolute;
  top: 88px;
  left: 0;
  background: rgba(23, 21, 21, 0.2);
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.4);
  backdrop-filter: blur(15px);
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  z-index: 99;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s linear;
  animation: fade 0.2s linear;
}
.header .dropdown-menu.show {
  transform: scaleY(1);
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header .dropdown-menu__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.header .dropdown-menu__container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 232px 270px 127px;
  gap: 87px;
}
.header .dropdown-menu__title {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 20px;
}
.header .dropdown-menu__sub-title {
  text-decoration: underline;
  font-weight: 600;
}
.header .dropdown-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header .dropdown-menu ul a {
  font-size: 12px;
  line-height: 100%;
  color: white;
}

.navigation {
  position: absolute;
  top: 83px;
  width: 100%;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.4);
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.2);
  padding: 38px 0;
  z-index: 100;
}
.navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation__link {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: #fff;
}

.footer {
  background-color: #202020;
  position: relative;
  z-index: 10;
  padding: 49px 0 27px 0;
  color: #fff;
}
.footer a {
  color: #ffffff;
}
.footer .container {
  display: flex;
  gap: 34px;
  justify-content: space-between;
}
.footer__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 17.95px;
  margin-bottom: 14px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__link {
  font-weight: 400;
  font-size: 12px;
  line-height: 15.08px;
}
.footer-brand {
  width: 203px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-brand__desc {
  font-weight: 500;
  font-size: 10px;
  line-height: 15.08px;
  text-transform: uppercase;
  margin: 14px 0;
}
.footer-brand__tel, .footer-brand__mail {
  font-weight: 700;
  font-size: 16px;
  line-height: 15.08px;
}
.footer-brand__socials {
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
}
.footer-brand__socials a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #262626;
  border-radius: 7.69px;
}
.footer-brand__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 15.08px;
  margin-bottom: 13px;
}
.footer-brand__contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-brand__copy {
  font-weight: 500;
  font-size: 10px;
  line-height: 15.08px;
  margin-top: 34px;
}
.footer-form {
  min-width: 460px;
  max-width: 460px;
}
.footer-form__row {
  display: flex;
  gap: 20px;
}
.footer-form__field {
  margin-top: 10px;
}
.footer-form__submit {
  margin-left: auto;
  display: block;
}
.footer-form label {
  width: 100%;
  display: block;
  font-weight: 700;
  font-style: Bold;
  font-size: 10px;
  line-height: 100%;
}
.footer-form input,
.footer-form textarea {
  display: block;
  width: 100%;
  border: 2px solid #d1d5db;
  background: #fff;
  border-radius: 5px;
  height: 35px;
  outline: none;
  padding: 10px;
  margin-top: 8px;
}
.footer-form textarea {
  height: 104px;
  margin-bottom: 29px;
  resize: none;
}
.footer-form .site-footer__bottom {
  margin-top: 18px;
  text-align: right;
}
.footer-form .site-footer__bottom a {
  font-weight: 500;
  font-size: 10px;
  line-height: 15.08px;
}
.footer-form__status {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.4;
}
.footer-form__status--success {
  color: #16a34a;
}
.footer-form input.is-invalid,
.footer-form textarea.is-invalid {
  border-color: #dc2626;
}
.footer-form__status--error {
  position: absolute;
  font-size: 12px;
  color: #e04f4f;
  font-weight: 400;
  bottom: 103px;
}

.hero--promo .container {
  max-width: 1200px;
}

.show-content-btn {
  display: none;
  width: fit-content;
}
.show-content-btn img {
  transition: all 0.2s linear;
}
.show-content-btn.active img {
  transform: rotate(180deg);
}

#news-swiper.hide, #new-cards.hide {
  display: none;
}

.news-swiper .swiper-wrapper .card:hover .card__img {
  transform: none;
  box-shadow: none;
  background: inherit;
}
.news-swiper .card__link {
  cursor: grab;
}
.news-swiper .card__link .card__cta {
  cursor: pointer;
}

.error-404 {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.error-404__text {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.error-404__img {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}
.error-404 h1 {
  font-size: 30px;
}
.error-404 p {
  font-size: 14px;
  margin-top: 35px;
}

.bottom-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 69px;
  position: relative;
}
.bottom-news .paignation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bottom-news .paignation button {
  background: transparent;
  padding: 0;
}
.bottom-news .paignation button svg {
  width: 30px;
}
.bottom-news .show-more__news-btn {
  margin-top: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero {
  width: 100%;
  height: 566px;
  position: relative;
  z-index: 1;
}
.hero .container {
  height: 100%;
}
.hero.hero--overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.4);
}
.hero.hero--overlay .hero__content {
  z-index: 3;
  position: relative;
}
.hero.hero--overlay .hero__slider img {
  z-index: -2;
}
.hero.hero--overlay .hero__slider .swiper-slide {
  position: relative;
}
.hero.hero--overlay .hero__slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
  opacity: 0.8;
}
.hero.only--content .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  padding-bottom: 103px;
}
.hero--promo .hero__content {
  max-width: 932px;
  margin: 0 auto;
  padding-bottom: 81px;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.hero__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 43.5px;
  text-align: center;
  color: #fff;
}
.hero__slider {
  width: 100%;
  height: 100%;
}
.hero__slider .swiper-slide {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.hero__slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}
.hero__slider .swiper-pagination {
  bottom: 36px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.hero__slider .swiper-pagination-bullet {
  width: 180px;
  margin: 0;
  height: 3px;
  background-color: rgba(242, 243, 247, 0.5019607843);
  border-radius: 5px;
  opacity: 1;
}
.hero__slider .swiper-pagination-bullet-active {
  background-color: #ffffff;
}
.hero.hero--school {
  background: url("../images/evening-school-bg.webp") no-repeat;
  background-size: cover;
  padding-top: 54px;
  color: #fff;
  position: relative;
}
.hero.hero--school .hero__title {
  font-weight: 700;
  font-size: 20.85px;
  line-height: 35.24px;
  text-align: center;
}
.hero.hero--school .hero__hat {
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero.hero--school .hero__desc {
  font-weight: 400;
  font-size: 18.53px;
  line-height: 28.73px;
  text-align: center;
  margin: 15px auto 32px auto;
  max-width: 754px;
}
.hero.hero--school .hero__btn {
  padding: 19px 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202020;
  border-radius: 11.95px;
  height: 68px;
  font-weight: 400;
  font-size: 23.9px;
  color: #fff;
  line-height: 100%;
  text-align: center;
  margin: 0 auto;
}
.hero.hero--school .hero__year {
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 185.68px;
  line-height: 188.28px;
  position: absolute;
  bottom: 0;
  right: 22px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
}
.modal.active {
  display: flex;
}
.modal__content {
  border-color: #fff;
  box-shadow: 0px 8.29px 20.72px 0px rgba(32, 32, 32, 0.4);
  border: 5px solid rgba(255, 255, 255, 0.4);
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal__content #modal-events {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.news-modal {
  overflow-y: auto;
  padding: 20px 0;
}
.news-modal.active {
  display: block;
}
.news-modal .modal__content {
  margin: 0 auto;
  max-width: 1034px;
  padding: 0;
  border: none;
  overflow: hidden;
}
.news-modal .modal__banner {
  position: relative;
  width: 100%;
  height: 445px;
}
.news-modal .modal__banner::after {
  content: "";
  position: absolute;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-bottom: 0;
}
.news-modal .modal__banner img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.news-modal .modal__title {
  font-weight: 700;
  font-size: 29.96px;
  line-height: 29.64px;
}
.news-modal .modal__sub-title {
  font-size: 20.72px;
  line-height: 31.25px;
}
.news-modal .modal__date {
  font-size: 24.87px;
  line-height: 29.01px;
  letter-spacing: -0.29px;
}
.news-modal .modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 31px 29px 0 29px;
  max-width: 965px;
}
.news-modal .modal__text {
  font-size: 16px;
  line-height: 20px;
}
.news-modal .btn--black {
  width: fit-content;
  margin-left: auto;
  margin-top: 11px;
  margin-bottom: 38px;
  margin-right: 40px;
}
.news-modal a {
  color: #202020;
}

.video-modal .video-content {
  max-width: 800px;
  width: 100%;
  height: 500px;
  position: relative;
}
.video-modal .video-close {
  background: transparent;
  position: absolute;
  top: -55px;
  right: -55px;
}
.video-modal .video-close svg {
  width: 50px;
}
.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.info-modal .modal__close {
  width: 30px;
  background: transparent;
}
.info-modal .modal__close path {
  stroke: #000;
}
.info-modal .modal__content {
  max-width: 600px;
  width: 100%;
}
.info-modal .modal__headline {
  margin-bottom: 14px;
}

.cart-modal .modal__content {
  max-width: 811px;
  padding: 52px;
  width: 100%;
  border-radius: 51.93px;
  border: 8.76px solid #eeeeee;
  box-shadow: 0px 14.52px 36.3px 0px rgba(32, 32, 32, 0.4);
}
.cart-modal .head {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-modal .head h3 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-size: 35.03px;
  line-height: 100%;
}
.cart-modal .table-head {
  display: flex;
  align-items: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  font-size: 17.52px;
  line-height: 100%;
  letter-spacing: 0.88px;
  text-align: center;
  gap: 40px;
}
.cart-modal .table-head span:nth-child(2) {
  margin-left: auto;
}
.cart-modal .product {
  border-top: 5px solid #eeeeee;
  border-bottom: 5px solid #eeeeee;
  padding: 18px 0;
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-modal .product .img-box {
  box-shadow: 0px 3.01px 7.53px 0px rgba(32, 32, 32, 0.4);
  border: 1.82px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
  width: 117px;
  border-radius: 10.77px;
  height: 117px;
}
.cart-modal .product .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-modal .product .left-box {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cart-modal .product .left-box h4 {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0%;
  color: #000;
  width: 138px;
}
.cart-modal .product .price {
  font-weight: 700;
  font-size: 12px;
  line-height: 25.06px;
  margin-left: auto;
}
.cart-modal .product .price:first-child {
  margin-left: 63px;
}
.cart-modal .product .count {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-left: 38px;
}
.cart-modal .product .count .bnt {
  width: 65px;
}
.cart-modal .product {
  margin-bottom: 24px;
}
.cart-modal .bnt {
  font-weight: 700;
  font-size: 12px;
  line-height: 25.06px;
  height: 35px;
  border: 5px solid #eeeeee;
  border-radius: 10px;
  background: transparent;
  width: 167px;
  text-align: center;
  margin: 0 auto;
}
.cart-modal .foot {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
}
.cart-modal .foot button {
  padding: 17px 30px;
  width: fit-content;
  font-size: 21.02px;
  height: 61px;
  border-radius: 12.26px;
}
.cart-modal .foot .red_btn {
  background-color: #FA4E4A;
  color: #fff;
}

.thanks-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}
.thanks-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.thanks-modal__dialog {
  width: 600px;
  height: 400px;
  max-width: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.thanks-modal__logo {
  width: 140px;
  height: auto;
  margin-bottom: 18px;
}
.thanks-modal__title {
  margin: 0 0 6px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: #4b4b4b;
}
.thanks-modal__text {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  color: #6a6a6a;
}
.thanks-modal__img {
  width: 180px;
  height: auto;
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .thanks-modal__dialog {
    width: 100%;
    height: auto;
    min-height: 260px;
  }
}
.about {
  padding: 62px 0 93px 0;
}
.about .about__cards {
  display: flex;
  flex-direction: column;
  gap: 47px;
}
.about .about__card {
  border-radius: 16px;
  min-height: 695px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about .about__card.green--card {
  padding: 35px 0 0 59px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), linear-gradient(180deg, rgba(42, 169, 83, 0) 0%, rgba(42, 169, 83, 0.2) 100%);
  box-shadow: 0px 8.33px 20.82px 0px rgba(32, 32, 32, 0.2509803922);
}
.about .about__card.green--card .about__card-img {
  right: -284px;
  width: 568px;
  height: 578px;
  z-index: -1;
}
.about .about__card.green--card .about__card-desc {
  margin-bottom: 49px;
}
.about .about__card.green--card .about__card-sub-title {
  color: #2aa953;
}
.about .about__card.green--card .about__card-bg {
  right: 0;
  bottom: 0;
  z-index: -2;
}
.about .about__card.blue--card {
  padding: 35px 52px 0 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(57, 118, 188, 0.2) 100%);
  box-shadow: 0px 8.34px 20.84px 0px rgba(32, 32, 32, 0.2509803922);
}
.about .about__card.blue--card .about__card-content {
  margin-left: auto;
  max-width: 547px;
}
.about .about__card.blue--card .box {
  max-width: 504px;
}
.about .about__card.blue--card .about__card-sub-title {
  color: #3976bc;
}
.about .about__card.blue--card .about__card-desc {
  margin-bottom: 28px;
}
.about .about__card.blue--card .about__card-img {
  width: 532px;
  height: 592px;
  left: -170px;
  z-index: -1;
}
.about .about__card.blue--card .about__card-bg {
  left: 0;
  z-index: -2;
  bottom: 0;
}
.about .about__card .about__card-bg {
  position: absolute;
  z-index: -1;
}
.about .about__card .about__card-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.about .about__card-content {
  max-width: 510px;
}
.about .about__card .box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about .about__card-title {
  font-weight: 700;
  font-size: 34.57px;
  line-height: 100%;
  margin-bottom: 21px;
}
.about .about__card-sub-title {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 17.95px;
  letter-spacing: 0%;
  margin-bottom: 30px;
}
.about .about__card-list {
  gap: 10px;
  display: flex;
  flex-direction: column;
  padding-left: 11px;
}
.about .about__card-list-item {
  font-size: 12px;
  list-style: disc;
  line-height: 15.08px;
}

.news {
  margin-bottom: 69px;
}
.news__title {
  margin-bottom: 59px;
  text-align: center;
}
.news .card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.4);
  overflow: hidden;
  height: 385px;
}
.news .card:hover .card__img {
  transform: scale(1.1);
}
.news .card__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.14px;
}
.news .card__link {
  color: #202020;
  width: 100%;
}
.news .card__media {
  height: 212px;
  width: 100%;
  overflow: hidden;
}
.news .card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.2s linear;
}
.news .card__body {
  padding: 15px 21px 0 14px;
  margin-bottom: 22px;
}
.news .card__title {
  font-weight: 700;
  font-size: 14.46px;
  line-height: 14.31px;
  margin-bottom: 8px;
}
.news .card__text {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
}
.news .card__footer {
  padding: 0 21px 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-swiper .card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-swiper .card__body {
  flex: 1 1 auto;
}
.news-swiper .card__footer {
  margin-top: auto;
}
.news .show-more__news-btn {
  margin: 59px auto 0 auto;
  width: fit-content;
}
.news .show-more__news-btn img {
  display: none;
}

.our-projects {
  background-color: #f9fafb;
  padding: 44px 0 64px 0;
}
.our-projects__page {
  background: #fff;
}
.our-projects__page .title {
  margin-top: 54px;
}
.our-projects__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 43px;
}
.our-projects__title {
  margin-bottom: 69px;
}
.our-projects .card {
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.2509803922);
  padding: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 340px;
}
.our-projects .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.2509803922);
}
.our-projects .card__link {
  color: #fff;
  width: 100%;
  height: 100%;
}
.our-projects .card__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
}
.our-projects .card__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 17.95px;
  letter-spacing: 0%;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.our-projects .card__text {
  font-size: 12px;
  margin: 14px 0;
  line-height: 15.08px;
  max-width: 284px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
.our-projects .card__cta {
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.our-projects .show-more__projects-btn {
  margin: 69px auto 0 auto;
  width: fit-content;
}
.our-projects .show-more__projects-btn img {
  display: none;
}

.our-partners {
  padding: 62px 0 98px 0;
}
.our-partners__title {
  margin-bottom: 60px;
}
.our-partners__link {
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-partners__link img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.contact {
  background-color: #f9fafb;
  padding: 27px 0 69px 0;
  z-index: 1;
  position: relative;
}
.contact.contact--page {
  background-color: transparent;
  padding: 56px 0 95px 0;
}
.contact__bg {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -150px;
}
.contact__cards {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}
.contact__cards > * {
  flex: 1 1 calc(50% - 40px);
}
.contact__map {
  overflow: hidden;
  height: 260px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.2509803922);
}
.contact__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__card {
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.2509803922);
  background-color: #fff;
  border-radius: 8px;
  padding: 23px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.contact__card-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 17.95px;
}
.contact__card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15.08px;
  letter-spacing: 0%;
  color: #202020;
}
.contact__card-link-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__card-link span {
  display: block;
}

.document {
  background-color: #f9fafb;
  padding: 58px 0 111px 0;
}
.document__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 65px;
}
.document__card {
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.2509803922);
  padding: 33px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 8px;
}

.calendar {
  margin-top: 24px;
  background-color: #f9fafb;
  padding: 32px 0 83px 0;
}
.calendar__title {
  margin-bottom: 42px;
}
.calendar__head {
  display: flex;
  gap: 17px;
}
.calendar__head .calendar__year,
.calendar__head .calendar__month {
  border: 5px solid #eeeeee;
  height: 44px;
  border-radius: 8px;
}
.calendar__year {
  width: 88px;
  font-weight: 700;
  font-size: 12px;
  line-height: 25.06px;
  padding: 0 7px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  background: url("../images/icons/chevron-down.svg") no-repeat 85%/contain;
  background-size: 12px 6px;
  outline: none;
}
.calendar__month {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  flex: 1;
  font-weight: 700;
  font-size: 12px;
  line-height: 25.06px;
  color: #000;
}
.calendar__month span {
  cursor: pointer;
}
.calendar__month .active {
  color: #2aa953;
}
.calendar__weekdays {
  padding: 0 77px 0 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 42px 0;
}
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin: 0 auto;
}
.calendar__day {
  height: 132px;
  border-radius: 3px;
  background-color: #fff;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
}
.calendar__day.disabled {
  background-color: #e2e2e2;
}
.calendar__day.active .calendar__num {
  background-color: #2aa953;
  border-radius: 50%;
  height: 37px;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.calendar__dots {
  display: flex;
  height: fit-content;
  gap: 5px;
}
.calendar__dots span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.calendar-modal__content {
  width: 300px;
}

.services {
  padding: 54px 0 92px 0;
}
.services__sub-title {
  margin: 26px auto 70px auto;
  max-width: 735px;
}
.services__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 31px;
}
.services .card__service-poster {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  height: 325px;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.2509803922);
}
.services .card__service-poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.4);
}
.services .card__service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
}
.services .card__service-list {
  padding-left: 15px;
}
.services .card__service-list li {
  font-size: 10px;
  line-height: 15.08px;
  list-style: disc;
}
.services .card__service-count {
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 160.3px;
  line-height: 162.55px;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 14px;
}
.services .card__service-title {
  text-align: center;
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 17.95px;
  text-align: center;
  margin: 70px 0 30px 0;
  color: #2aa953;
}
.services .card__service-text {
  font-size: 10px;
  line-height: 15.08px;
}

.products-sec {
  background-color: #f9fafb;
  padding: 86px 0 53px 0;
}
.products-sec .product__cards {
  gap: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.products-sec .card.expend .card__top {
  height: fit-content;
}
.products-sec .card__top {
  box-shadow: 0px 8.29px 20.72px 0px rgba(32, 32, 32, 0.4);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 43px;
  height: 447px;
}
.products-sec .card__media {
  height: 330px;
  position: relative;
  position: relative;
}
.products-sec .card__media::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-bottom: none;
}
.products-sec .card__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.products-sec .card__two .card__img {
  object-position: top;
}
.products-sec .card__body {
  padding: 15px 19px 31px 19px;
}
.products-sec .card__title {
  font-weight: 700;
  font-size: 12px;
  line-height: 14.31px;
}
.products-sec .card__text {
  font-size: 10px;
  line-height: 15.08px;
  margin-top: 9px;
}
.products-sec .card__footer {
  text-align: center;
}
.products-sec .card__price {
  font-weight: 700;
  font-size: 20px;
  line-height: 15px;
  color: #2fae52;
  margin: 28px 0 20px 0;
}

.examples-work {
  padding: 122px 0 70px 0;
}
.examples-work__sub-title {
  max-width: 500px;
  margin: 28px auto 62px auto;
}
.examples-work__cards {
  gap: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-bottom: 0;
}
.examples-work .card {
  min-height: 385px;
}
.examples-work .card__body {
  padding: 22px 14px;
}
.examples-work .card__text {
  font-size: 12px;
}
.examples-work .card__title {
  margin-bottom: 20px;
}

.gallery {
  background-color: #f9fafb;
  padding-top: 93px;
  margin-bottom: 115px;
}
.gallery__sub-title {
  max-width: 622px;
  margin: 28px auto 83px auto;
}
.gallery-swiper {
  box-sizing: border-box;
}
.gallery-swiper .swiper-wrapper {
  align-items: stretch;
}
.gallery-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.gallery-swiper .sub-images {
  display: flex;
  height: 336px;
  box-sizing: border-box;
}
.gallery-swiper .sub-images img {
  width: 49%;
}
.gallery-swiper .sub-images img:last-child {
  margin-left: auto;
}
.gallery__img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.gallery__img-top {
  height: 873px;
}

.delivery {
  padding-bottom: 75px;
}
.delivery__sub-title {
  padding: 35px 0 85px 0;
}
.delivery__cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.delivery__card {
  text-align: center;
}
.delivery__card-title {
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 17.95px;
  color: #2fae52;
  margin-top: 74px;
}
.delivery__card-text {
  font-size: 14px;
  line-height: 100%;
  margin: 20px 0;
}
.delivery__card-price {
  font-weight: 700;
  font-size: 20px;
  line-height: 15px;
  color: #2fae52;
}

.faq {
  background-color: #f9fafb;
  padding: 42px 0 65px 0;
}
.faq .accordions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 52px;
}
.faq .accordion {
  border: 3px solid rgba(200, 200, 200, 0.5019607843);
  border-radius: 20px;
  overflow: hidden;
}
.faq .accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 32px 19px;
  cursor: pointer;
  text-align: left;
}
.faq .accordion-header__title {
  font-weight: 700;
  font-size: 18px;
  color: #141415;
}
.faq .accordion-header__icon {
  transition: transform 0.3s ease;
}
.faq .accordion-header.active .accordion-header__icon {
  transform: rotate(180deg);
}
.faq .accordion-content {
  padding: 0 32px 0 19px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq .accordion-content p {
  padding-bottom: 25px;
}
.faq .accordion.open .accordion-content {
  padding-bottom: 32px;
  max-height: 500px;
}

.anti-hookah {
  position: relative;
  z-index: 1;
  padding: 54px 0 27px 0;
}
.anti-hookah__bg {
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  top: -310px;
  pointer-events: none;
}
.anti-hookah__sub-title {
  max-width: 652px;
  margin: 26px auto 90px auto;
}
.anti-hookah__cards {
  display: flex;
  flex-direction: column;
  gap: 69px;
}
.anti-hookah__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.anti-hookah__card-poster {
  max-width: 463px;
  width: 100%;
  height: 354px;
  box-shadow: 0px 8.29px 20.72px 0px rgba(32, 32, 32, 0.4);
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.anti-hookah__card-poster::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
}
.anti-hookah__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.anti-hookah__card-content {
  max-width: 405px;
}
.anti-hookah__card-title {
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 20px;
  color: #2aa953;
}
.anti-hookah__card-text {
  font-weight: 400;
  font-size: 14px;
}
.anti-hookah__pay-btn {
  margin: 100px auto 0 auto;
}

.anti-hookah__page .products-sec__one {
  padding: 55px 0 39px 0;
}
.anti-hookah__page .products-sec__one .container, .anti-hookah__page .products-sec__one section {
  position: relative;
  z-index: 1;
}
.anti-hookah__page .products-sec__one .product__cards {
  max-width: 678px;
  margin: 0 auto;
}
.anti-hookah__page .products-sec__two {
  background: transparent;
  padding: 75px 0 63px 0;
}
.anti-hookah__page .products-sec .card__img {
  object-position: 50% 10%;
}

.gallery-swiper .swiper-pagination {
  display: none;
}

.storage-devices__page .contact {
  padding: 65px 0 84px 0;
}
.storage-devices__page .products-sec {
  background: #fff;
  padding: 62px 0;
}
.storage-devices__page .products-sec__title {
  margin-bottom: 59px;
}
.storage-devices__page .document {
  background: #fff;
}
.storage-devices__page .header .dropdown-menu__container {
  margin-top: 77px;
}

.grid-energy {
  padding-top: 65px;
  background-color: #f9fafb;
}
.grid-energy__sub-title {
  max-width: 610px;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  margin: 0 auto;
}
.grid-energy__title {
  margin: 65px 0 58px 0;
}
.grid-energy__img {
  width: 100%;
  height: 675px;
  object-fit: cover;
}
.grid-energy__scroller {
  max-width: 1200px;
  margin: auto;
}

.roadmap {
  padding-top: 58px;
  background: #f9fafb;
}
.roadmap .scroll-box {
  position: relative;
  width: 100%;
}
.roadmap__content {
  position: relative;
  min-width: 1035px;
  display: inline-block;
  margin-top: 57px;
  background: url("../images/line.svg") no-repeat;
  min-height: 500px;
  background-position: 0 130px;
  background-size: 100% auto;
  position: relative;
}
.roadmap__content-boxes {
  display: flex;
  justify-content: space-between;
}
.roadmap__content-boxes.bottom .star-box::before {
  top: unset;
  bottom: -100%;
}
.roadmap__content-boxes.bottom .star-box {
  margin-bottom: 17px;
}
.roadmap__content-boxes.bottom .roadmap__content-box:first-child {
  transform: translateX(149px);
  width: 230px;
}
.roadmap__content-boxes.bottom .roadmap__content-box:nth-child(2) {
  transform: translateX(111px);
  width: 200px;
}
.roadmap__content-boxes.bottom .roadmap__content-box:last-child {
  transform: translateX(53px);
  width: 254px;
}
.roadmap__content-boxes.bottom .roadmap__content-text {
  margin-top: 60px;
}
.roadmap__content-box {
  width: 300px;
  text-align: center;
}
.roadmap__content-box:first-child {
  width: 203px;
  transform: translateX(-16px);
}
.roadmap__content-box:nth-child(2) {
  width: 281px;
  transform: translateX(-55px);
}
.roadmap__content-box:last-child {
  width: 260px;
  transform: translateX(-125px);
}
.roadmap__content-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #7d7d7d;
}
.roadmap__content .star-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202020;
  margin: 77px auto 0 auto;
  position: relative;
}
.roadmap__content .star-box::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: url(../images/icons/dashed-border.svg) no-repeat;
  border-radius: 5px;
  height: 57px;
}
.roadmap__content-years {
  display: flex;
  gap: 266px;
  justify-content: end;
  position: absolute;
}
.roadmap__content-years.top {
  top: 107px;
  right: 41px;
}
.roadmap__content-years.bottom {
  bottom: 195px;
  left: 45px;
  gap: 272px;
}
.roadmap__content-year {
  width: 79px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2aa953;
  font-weight: 700;
  font-size: 19.05px;
  color: #fff;
  line-height: 100%;
}

.potential-projects {
  padding: 74px 0;
  background-color: #f9fafb;
}
.potential-projects .card__cta {
  margin-top: 14px;
}

.gallery-two {
  padding: 58px 0 94px 0;
}
.gallery-two__swiper {
  margin-top: 60px;
}
.gallery-two__swiper .swiper-pagination {
  display: none;
}
.gallery-two__poster {
  height: 385px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(32, 32, 32, 0.4);
}
.gallery-two__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news__page .news {
  padding: 54px 0;
  margin-bottom: 0;
}
.news__page .news .filter-panel {
  margin-bottom: 53px;
}
.news__page .news__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.news__page .news .show-more__news-btn {
  margin-top: 69px;
}
.news__page .card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news__page .card__body {
  flex: 1 1 auto;
}
.news__page .card__footer {
  margin-top: auto;
}
.news__page .our-projects {
  padding: 54px 0 58px 0;
}
.news__page .our-projects .show-more__projects-btn {
  margin-top: 58px;
}
.news__page .hero--overlay:before {
  background: none;
}
.news__page .header {
  box-shadow: none;
}
.news__page .show-content-btn {
  display: flex;
}

/* Прячем лишние карточки */
.news__item--hidden {
  display: none;
}

.multimedia {
  padding: 57px 0 63px 0;
}
.multimedia .filter-panel {
  margin: 41px 0 76px 0;
}
.multimedia__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 17px;
}
.multimedia .card {
  display: flex;
  flex-direction: column;
  gap: 17px 35px;
}
.multimedia .card__image {
  position: relative;
  width: 100%;
  height: 190px;
  box-shadow: 0px 2.54px 6.35px 0px rgba(32, 32, 32, 0.4);
  border-radius: 9px;
  overflow: hidden;
}
.multimedia .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: -1;
}
.multimedia .card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.multimedia .card__title {
  font-weight: 700;
  font-size: 14.46px;
  line-height: 14.31px;
}
.multimedia .card__date {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.14px;
  color: #323232;
}
.multimedia__page .header {
  box-shadow: none;
}
.multimedia__page .hero--overlay:before {
  background: none;
}

.competitions {
  padding: 54px 0;
}
.competitions__filter {
  display: flex;
  gap: 5px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.competitions__filter-item {
  padding: 3px 8px;
  border: 5px solid #eeeeee;
  background: #eeeeee;
  border-radius: 8.8px;
  font-weight: 500;
  font-size: 10px;
  line-height: 25.06px;
  color: #000;
  display: flex;
  align-items: center;
}
.competitions__sub-title {
  margin: 33px 0 36px 0;
}
.competitions__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.competitions__card {
  padding: 24px 21px 24px 32px;
  border-radius: 8.8px;
  border: 5px solid #eeeeee;
}
.competitions__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.competitions__card-body {
  margin: 30px 0 39px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.competitions__card-body.three-block {
  grid-template-columns: 1fr 1fr 1fr;
}
.competitions__card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 14.31px;
  color: #000;
}
.competitions__card-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #959595;
  margin-bottom: 12px;
}
.competitions__card-date {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}
.competitions__card-footer {
  display: flex;
  gap: 15px;
}
.competitions__card-footer button {
  width: 180px;
}
.competitions .badge-item {
  padding: 6px 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 17.95px;
  letter-spacing: 0%;
  vertical-align: middle;
  border-radius: 10px;
}
.competitions .badge--success-faint {
  background-color: rgba(42, 169, 83, 0.5019607843);
  color: #1f8a42;
}
.competitions .badge--error-faint {
  background-color: rgba(255, 0, 50, 0.5019607843);
  color: #bd0227;
}

.evening-school__page .news {
  margin-bottom: 93px;
}
.evening-school__page .our-partners {
  padding: 59px 0 75px 0;
}
.evening-school__page .our-partners__title {
  margin-bottom: 44px;
}
.evening-school__page .services {
  padding: 54px 0 37px 0;
}
.evening-school__page .services__title {
  margin-bottom: 54px;
}
.evening-school__page .services .card__service-poster::before {
  display: none;
}
.evening-school__page .services .card__service p {
  font-size: 10px;
  line-height: 15.08px;
  padding-left: 20px;
}
.evening-school__page .services .card__service-title {
  margin-bottom: 38px;
}

.video {
  padding: 96px 0 43px 0;
  background-color: #f9fafb;
}
.video .title {
  margin-bottom: 59px;
}
.video__box {
  max-width: 774px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8.29px 20.72px 0px rgba(32, 32, 32, 0.4);
  border: 5px solid rgba(255, 255, 255, 0.4);
  background: #202020;
  height: 447px;
  border-radius: 29.64px;
}
.video__box button {
  cursor: pointer;
  background: transparent;
}
.video__title {
  margin-top: 38px;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  line-height: 15px;
  color: #2fae52;
}
.video.video--results {
  background: #fff;
  padding: 54px 0 92px 0;
}
.video .video__box {
  height: auto;
  padding: 0;
  overflow: hidden;
}
.video .epizod__link {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}
.video .epizod__link iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.advantages-school {
  padding: 51px 0 84px 0;
}
.advantages-school__title {
  margin-bottom: 79px;
}
.advantages-school__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 84px 20px;
}
.advantages-school__card {
  text-align: center;
}
.advantages-school__card img {
  width: 125px;
  height: 125px;
  object-fit: contain;
}
.advantages-school__card-title {
  font-family: "Montserrat Alternates", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 17.95px;
  text-align: center;
  color: #2aa953;
  margin-top: 42px;
  width: 210px;
  margin: 42px auto 0 auto;
}

.timeline {
  background-color: #f9fafb;
  padding: 59px 0 115px 0;
}
.timeline__title {
  margin-bottom: 45px;
}
.timeline__cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.timeline__card-head {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.timeline__card-head::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 5px;
  background: #c1b9b9;
}
.timeline__card .star-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #202020;
}
.timeline__card-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.timeline__card-title {
  font-weight: 700;
  font-size: 19.05px;
  line-height: 100%;
  color: #2aa953;
  margin: 26px 0 19px 0;
}
.timeline__card-sub-title {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  margin-bottom: 19px;
}
.timeline__card-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #7d7d7d;
}

.our-projects--about-us {
  background: #fff;
  padding-top: 0;
}
.our-projects--about-us .card--project-overlay {
  position: relative;
  z-index: 1;
}
.our-projects--about-us .card--project-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.our-projects--about-us .our-projects__title {
  margin-bottom: 59px;
}
.our-projects--about-us .card__text {
  margin: 0;
  max-width: 426px;
}
.our-projects--about-us .show-more__projects-btn {
  margin-top: 58px;
}

@media (min-width: 1024px) {
  .products-sec__one .product__cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .products-sec__one .product__cards > .card {
    max-width: 360px;
  }
  .swiper-container {
    overflow: hidden;
    margin-left: -12px;
    padding-left: 12px;
  }
}
@media (min-width: 768px) {
  .news__page .smi-about .show-more__projects-btn {
    display: none;
  }
}
@media (max-width: 1439px) {
  .error-404 {
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .header__container {
    max-width: calc(100% - 40px);
  }
  .header .dropdown-menu__container {
    padding-inline: 20px;
  }
}
@media (max-width: 1050px) {
  .container {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 1023px) {
  .about .about__card.green--card {
    padding: 30px 20px 27px 20px;
  }
  .about .about__card.green--card .about__card-img {
    width: 110px;
    height: 100px;
    left: 20px;
    top: 30px;
    transform: none;
  }
  .about .about__card.green--card .about__card-title {
    margin-left: 144px;
  }
  .about .about__card.blue--card {
    padding: 21px 20px 17px 20px;
  }
  .about .about__card.blue--card .about__card-img {
    width: 110px;
    height: auto;
    top: 14px;
    left: 20px;
    transform: none;
  }
  .about .about__card.blue--card .about__card-title {
    margin-left: 125px;
  }
  .about .about__card.blue--card .about__card-content {
    margin-left: 0;
  }
  .error-404__img {
    bottom: -7.5vw;
  }
  .footer .container {
    flex-wrap: wrap;
  }
  .footer .site-footer__bottom {
    text-align: center;
    margin-top: 30px;
  }
  .footer-form {
    min-width: 100%;
    max-width: 100%;
  }
  .footer-form__submit {
    margin: 0 auto;
  }
  .gallery-swiper .swiper-slide.reverse {
    flex-direction: column-reverse;
  }
  .grid-energy__scroller {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .grid-energy__scroller::-webkit-scrollbar {
    display: none;
  }
  .grid-energy__img {
    max-width: none;
    width: auto;
    height: auto;
  }
  .header__menu, .header__social,
  .header .dropdown-menu {
    display: none;
  }
  .header .menu-btn {
    display: flex;
  }
  .header__logo {
    width: 65px;
    height: 31px;
  }
  .header__logo img {
    width: 100%;
    height: 100%;
  }
  .header .dropdown-menu {
    opacity: 1;
    transform: scale(1);
    background: rgba(48, 48, 48, 0.8980392157);
    overflow-y: auto;
    height: calc(100vh - 57px);
    backdrop-filter: none;
    top: 67px;
    box-shadow: none;
    padding: 30px 28px 37px 28px;
  }
  .header .dropdown-menu.active {
    display: block;
  }
  .header .dropdown-menu__img {
    display: none;
  }
  .header .dropdown-menu__container {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 40px;
    margin: 0;
    width: 100%;
    padding: 0;
  }
  .header .dropdown-menu__title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .header .dropdown-menu ul {
    gap: 15px;
  }
  .hero__content {
    padding-inline: 20px;
  }
  .hero__slider .swiper-pagination {
    padding-inline: 20px;
    gap: 10px;
    bottom: 40px;
  }
  .hero.hero--school .hero__hat {
    display: none;
  }
  .news__page .news__cards {
    gap: 20px;
  }
  .roadmap .scroll-box {
    padding: 0 30px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .roadmap .scroll-box::-webkit-scrollbar {
    display: none;
  }
  .calendar__head {
    flex-direction: column;
  }
  .filter-panel__search {
    max-width: 400px;
  }
  .gallery__img-top {
    height: 500px;
  }
  .navigation {
    top: 67px;
    padding: 30px 0;
  }
  .footer-form__status--error {
    bottom: 114px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 22px 0 40px 0;
  }
  .about .about__cards {
    gap: 25px;
  }
  .about .about__card {
    border-radius: 8.8px;
    min-height: fit-content;
  }
  .about .about__card .about__card-desc {
    font-size: 10px !important;
    margin-bottom: 0 !important;
  }
  .about .about__card .about__card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .about .about__card .box {
    gap: 15px;
  }
  .about .about__card .about__card-list {
    gap: 5px;
  }
  .about .about__card .about__card-list-item {
    font-size: 8px;
    line-height: 7.97px;
  }
  .about .about__card.green--card .about__card-img {
    width: 66px;
    height: 66px;
  }
  .about .about__card.green--card .about__card-title {
    margin-left: 80px;
    margin-top: 11px;
    font-size: 15px;
    margin-bottom: 15px;
  }
  .about .about__card.green--card .about__card-bg {
    right: -116px;
    bottom: 0;
    z-index: -2;
    width: 481px;
  }
  .about .about__card.blue--card .about__card-img {
    width: 65px;
    height: 72px;
  }
  .about .about__card.blue--card .about__card-title {
    margin-left: 80px;
    margin-top: 6px;
    font-size: 15px;
    margin-bottom: 15px;
  }
  .about .about__card.blue--card .about__card-bg {
    width: 500px;
    left: -51px;
    z-index: -2;
    bottom: -60px;
  }
  .about .about__card .about__card-sub-title {
    margin-bottom: 15px;
    font-size: 9px;
    line-height: 9.49px;
  }
  .anti-hookah {
    padding: 40px 0;
  }
  .anti-hookah__pay-btn {
    margin-top: 20px;
  }
  .anti-hookah__sub-title {
    margin-bottom: 40px;
  }
  .anti-hookah__cards {
    gap: 40px;
  }
  .anti-hookah__card {
    flex-direction: column;
    gap: 30px;
  }
  .anti-hookah__card:last-child {
    flex-direction: column-reverse;
  }
  .anti-hookah__card-poster {
    max-width: 100%;
    border-radius: 20px;
    height: 300px;
  }
  .anti-hookah__card-content {
    max-width: 100%;
  }
  .calendar {
    padding: 40px 0;
    margin-top: 0;
  }
  .calendar__title {
    margin-bottom: 40px;
  }
  .calendar-box {
    display: none;
  }
  .calendar__year {
    width: 100%;
    background-position: 95% center;
  }
  .calendar__weekdays {
    padding: 0;
    font-size: 18px;
    margin: 30px 0;
  }
  .calendar__head {
    flex-direction: column;
  }
  .calendar__head .calendar__month {
    overflow-x: auto;
    padding-inline: 10px;
  }
  .calendar__head .calendar__month::-webkit-scrollbar {
    display: none;
  }
  .calendar__days {
    overflow-x: auto;
  }
  .calendar__days::-webkit-scrollbar {
    display: none;
  }
  .calendar__day {
    min-width: 100px;
    height: 70px;
    flex-direction: column;
  }
  .calendar__day.active .calendar__num {
    width: 30px;
    height: 30px;
  }
  .competitions {
    padding: 40px 0;
  }
  .competitions__card {
    padding: 20px;
  }
  .competitions__card-head {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
  }
  .competitions__card-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .competitions__card-footer {
    flex-direction: column;
  }
  .competitions__card-footer button {
    width: 100%;
  }
  .contact {
    position: relative;
    padding: 0 0 39px 0;
  }
  .contact__title {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact__bg {
    bottom: unset;
    top: 20px;
    width: 583px;
  }
  .contact__cards {
    margin-top: 36px;
    flex-direction: column;
    gap: 25px;
  }
  .contact__card {
    padding: 20px 14px;
    gap: 10px;
    flex: none;
    width: 100%;
  }
  .contact__card-title {
    font-size: 11.72px;
    line-height: 13.15px;
  }
  .contact__card-link {
    font-size: 8px;
    gap: 7px;
    line-height: 11.04px;
  }
  .contact__card-link-icon {
    width: 18px;
    height: 18px;
  }
  .contact__card-link-icon img {
    width: 80%;
  }
  .contact__map {
    height: 300px;
    flex: none;
    width: 100%;
  }
  .contact.contact--page .contact__title, .contact#contact-sec .contact__title {
    position: unset;
    transform: none;
  }
  .contact.contact--page {
    padding: 40px 0;
  }
  .delivery {
    padding: 40px 0;
  }
  .delivery__sub-title {
    padding: 20px 0 40px 0;
  }
  .delivery__cards {
    flex-direction: column;
    gap: 40px;
  }
  .delivery__card-title {
    margin-top: 20px;
  }
  .delivery__img {
    height: 116px;
    width: auto;
  }
  .cart-modal .modal__content {
    padding: 20px;
    border-radius: 20px;
  }
  .cart-modal .head {
    margin-bottom: 0;
  }
  .cart-modal .head img {
    width: 20px;
  }
  .cart-modal .head h3 {
    font-size: 20px;
  }
  .cart-modal .product {
    margin: 20px 0;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
  .cart-modal .product .price {
    margin: 0;
  }
  .cart-modal .product .count {
    margin: 0;
    flex-direction: row;
  }
  .cart-modal .table-head {
    display: none;
  }
  .cart-modal .foot {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .cart-modal .foot button {
    font-size: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .document {
    padding: 40px 0;
  }
  .document__cards {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .evening-school__page .news {
    margin-bottom: 40px;
  }
  .examples-work {
    padding: 40px 0;
  }
  .examples-work .card {
    min-height: fit-content;
  }
  .examples-work__sub-title {
    margin-bottom: 40px;
  }
  .faq {
    padding: 40px 0;
  }
  .faq .accordion {
    border-radius: 10px;
  }
  .faq .accordion-header {
    padding: 20px;
  }
  .faq .accordion-header__title {
    font-size: 16px;
  }
  .faq .accordions {
    margin-top: 40px;
  }
  .faq .accordions p {
    font-size: 12px;
  }
  .footer {
    padding: 41px 0 31px 0;
  }
  .footer-brand__contact {
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .footer-brand__copy {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .site-footer__bottom {
    margin-top: 180px;
  }
  .footer .container {
    padding-inline: 20px;
  }
  .footer-form__row {
    flex-direction: column;
  }
  .footer-form__status--error {
    bottom: 268px;
    left: 50%;
    transform: translate(-50%);
    padding: 0 20px;
    text-align: center;
    width: 100%;
  }
  .gallery {
    margin-bottom: 0;
    padding: 40px 0;
  }
  .gallery__img-top {
    height: 400px;
  }
  .gallery__sub-title {
    margin-bottom: 40px;
  }
  .gallery-swiper .sub-images {
    height: 200px;
  }
  .gallery-swiper .swiper-pagination {
    display: flex;
    justify-content: center;
    position: static;
    margin-top: 16px;
  }
  .gallery-two {
    padding: 40px 0;
  }
  .gallery-two__swiper {
    margin-top: 40px;
  }
  .gallery-two__swiper .swiper-pagination {
    display: flex;
    justify-content: center;
    position: static;
    margin-top: 16px;
  }
  .gallery-two__poster {
    height: 250px;
  }
  .grid-energy {
    padding-top: 40px;
  }
  .grid-energy__title {
    margin: 40px 0;
  }
  .grid-energy__sub-title {
    font-size: 16px;
    max-width: 100%;
  }
  .grid-energy__img {
    height: 450px;
  }
  .header {
    padding: 13px 0;
  }
  .header .dropdown-menu {
    top: 57px;
    padding-bottom: 90px;
  }
  .header__container {
    max-width: calc(100% - 30px);
  }
  .hero {
    height: 653px;
  }
  .hero__title {
    font-size: 25px;
    line-height: 30px;
    text-align: left;
  }
  .hero__slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border-radius: 50%;
  }
  .hero.hero--promo .hero__content {
    padding-bottom: 93px;
  }
  .hero.hero--school {
    background-position: center;
    height: 540px;
  }
  .hero.hero--school .hero__year {
    font-size: 100px;
    line-height: normal;
  }
  .hero.hero--school .hero__desc {
    font-size: 16px;
    line-height: normal;
  }
  .hero.hero--school .hero__title {
    font-size: 18px;
    line-height: normal;
  }
  .hero.hero--school .hero__btn {
    font-size: 16px;
    padding: 10px 20px;
    height: 45px;
  }
  .hero.only--content {
    height: 500px;
  }
  .hero.only--content .hero__content {
    padding-bottom: 40px;
  }
  .multimedia {
    padding: 40px 0;
  }
  .multimedia .filter-panel {
    margin: 40px 0;
  }
  .news {
    margin-bottom: 0;
  }
  .news .card__media {
    height: 150px;
  }
  .news .card__body {
    padding: 10px 10px 0 10px;
    margin-bottom: 27px;
  }
  .news .card__footer {
    padding: 0 10px 10px 10px;
  }
  .news .card__date {
    font-size: 8px;
    line-height: 9px;
  }
  .news-swiper .swiper-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .news .show-more__news-btn {
    display: none;
    margin-top: 24px;
    padding: 0;
    background: transparent;
  }
  .news .show-more__news-btn span {
    display: none;
  }
  .news .show-more__news-btn img {
    display: block;
    width: 30px;
    height: 15px;
  }
  .news__page .news {
    padding: 24px 0;
  }
  .news__page .news .show-more__news-btn {
    display: flex;
    margin-top: 30px;
  }
  .news__page .our-projects {
    padding-bottom: 18px;
  }
  .news__page .our-projects .show-more__projects-btn {
    margin-top: 30px;
  }
  .news__page .our-projects .show-more__projects-btn-modal {
    padding: 0;
  }
  .news__page .modal__body {
    padding: 20px;
  }
  .news__page .modal__title {
    font-size: 18px;
    line-height: normal;
  }
  .news__page .modal__sub-title,
  .news__page .modal__date {
    font-size: 16px;
  }
  .our-projects {
    padding: 40px 0 33px 0;
  }
  .our-projects__title {
    margin-bottom: 40px;
  }
  .our-projects__swiper .swiper-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .our-projects .card__title, .our-projects .card__cta {
    font-size: 17px;
  }
  .our-projects .show-more__projects-btn {
    display: block;
    background: transparent;
    padding: 0;
    margin: 25px auto 0 auto;
  }
  .our-projects .show-more__projects-btn span {
    display: none;
  }
  .our-projects .show-more__projects-btn img {
    display: block;
    width: 30px;
    height: 15px;
    transition: all 0.2s linear;
  }
  .our-projects .show-more__projects-btn.active img {
    transform: rotate(180deg);
  }
  .our-projects__page .title {
    margin: 40px 0;
  }
  .our-projects__page .our-projects__cards {
    grid-template-columns: 1fr;
  }
  .our-projects__page .card {
    height: 243px;
  }
  .our-projects__page .news .card__text {
    margin-top: 0;
  }
  .our-projects__page .news__title {
    margin-bottom: 40px;
  }
  .our-projects__page .show-more__projects-btn {
    display: none;
  }
  .products-sec {
    padding: 40px 0;
  }
  .products-sec .card__top {
    border-radius: 20px;
    height: fit-content;
  }
  .products-sec .card__media {
    height: 250px;
  }
  .products-sec .card__media::after {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .roadmap {
    padding-top: 40px;
  }
  .roadmap .container {
    max-width: 100%;
    padding-left: 20px;
  }
  .roadmap__content {
    min-height: 450px;
    height: 450px;
  }
  .roadmap__content-years.bottom {
    bottom: 145px;
  }
  .services {
    padding: 40px 0;
  }
  .services .card__service p {
    padding-left: 0;
  }
  .services .card__service-title {
    margin: 20px 0;
    text-align: left;
  }
  .services .card__service-poster {
    height: 250px;
  }
  .services .card__service-count {
    line-height: normal;
    font-size: 100px;
  }
  .timeline {
    padding: 40px 0;
  }
  .timeline__card-head {
    display: none;
  }
  .timeline__card-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px 10px;
  }
  .timeline__card-title {
    font-size: 16px;
    margin-top: 0;
  }
  .video {
    padding: 40px 0;
  }
  .video .title {
    margin-bottom: 40px;
  }
  .video__box {
    height: 350px;
  }
  .video__box button {
    width: 50px;
    height: 50px;
  }
  .video__box button img {
    width: 100%;
    height: 100%;
  }
  .advantages-school__cards {
    grid-template-columns: 1fr;
    gap: 50px 20px;
  }
  .btn--black {
    font-size: 12px;
    height: 32px;
  }
  .examples-work__cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .filter-panel {
    flex-direction: column;
  }
  .filter-panel__search {
    max-width: 100%;
  }
  .filter-panel__chips {
    width: 100%;
  }
  .media-hide-content {
    display: none;
  }
  .media-hide-content.show {
    display: block;
  }
  .navigation {
    display: none;
  }
  .our-partners {
    padding: 7px 0 40px 0;
  }
  .our-partners__title {
    margin-bottom: 40px;
  }
  .our-projects--about-us .our-projects__title {
    margin-bottom: 40px;
  }
  .services__sub-title {
    margin-bottom: 40px;
  }
  .show-content-btn img {
    transition: all 0.2s linear;
  }
  .show-content-btn.active img {
    transform: rotate(180deg);
  }
  .show-more__news-btn-media {
    display: block;
    margin: 34px auto 25px auto;
    background: transparent;
  }
  .show-more__news-btn-media img {
    width: 30px;
    height: 15px;
    transition: all 0.2s linear;
  }
  .storage-devices__page .contact,
  .anti-hookah__page .products-sec__one,
  .anti-hookah__page .products-sec__two {
    padding: 40px 0;
  }
  .title {
    font-size: 25px;
  }
  .video-modal .modal__content {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .our-projects__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 599px) {
  .news .card {
    height: fit-content;
  }
  .news__page .news__cards {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    width: 100%;
  }
  .footer-brand > div {
    width: 203px;
    margin: auto;
    text-align: center;
  }
  .footer-brand__socials {
    justify-content: center;
  }
}
@media (max-width: 431px) {
  .footer-form__status--error {
    bottom: 278px;
  }
}
@media (max-width: 409px) {
  .footer-form__status--error {
    bottom: 276px;
    line-height: 1;
    padding: 0 25px;
  }
}
@media (max-width: 359px) {
  .footer .container {
    padding: 0;
  }
}