@font-face {
  font-family: "enthalpy298regular";
  src: url("./enthalpy298regular.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #eeeef0;
}

.wrapper {
  position: relative;
}

.form__group {
    position: relative;
}

.form__services-row input[type="checkbox"] {
border: 1px solid #2552a7;
border-radius: 2px;
width: 15px;
height: 15px;
background: #fff;
accent-color: #2552a7;
}

input {
    padding-right: 30px;
}

/* Иконки */
.icon-status {
    position: absolute;
    right: 10px;
    top: 22px;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0;
    transition: .2s;
}

.icon-status.success {
    color: green;
}

.icon-status.error {
    color: red;
    font-size: 10px;
}

/* Ошибки */
.error-text {
    color: red;
    font-size: 12px;
    margin-top: 3px;
    opacity: 0;
    transform: translateY(-5px);
    transition: .2s;
}

.error-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Границы */
input.error {
    border: 2px solid red;
}

input.success {
    border: 2px solid green;
}


.header__mobile {
  display: none;
}

.overlays {
  background: #111827;
  opacity: 0.8;
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  display: none;
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.header__top-line {
  overflow: hidden;
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee__inner span {
  padding-right: 40px;
  font-weight: 600;
}

.header__top-line {
  background: #2552a7;
  height: 50px;
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 37px;
  overflow: hidden;
}

.header__top-line .marquee {

  animation: marquee 35s linear infinite;

}

/*@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}*/

.header__top-line span {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.header__top-line span::after {
  content: "";
  position: absolute;
  left: -22px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
}

.header__main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.header__main-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 47px;
}

.header__main-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 83px;
}

.header__burger {
  display: none;
}

.header__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.header__social {
  list-style: none;
}

.header__social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  border-radius: 100%;
}
.header__social a:hover {
  opacity: 0.9;
}

.header__phone  {
  list-style: none;
}

.header__phone a {
   font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.header__menu ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-right: 0px;
}

.header__menu ul li {
  list-style: none;
}

.header__menu ul li a {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.header__menu ul li a:hover {
  opacity: 0.7;
}

.header__login a {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  color: #2552a7;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.header__login a span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  border-radius: 100%;
}

.header__popup {
  border: none;
  cursor: pointer;
  background: #2552a7;
  border-radius: 5px;
  width: max-content;
  height: 35px;
  font-weight: 700;
  font-size: 10px;
  line-height: 130%;
  color: #fff;
  padding: 0px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.header__popup:hover {
  background: #fff;
  border: 1px solid #2552a7;
  color: #2552a7;
  transition: 0.2s ease;
}

.main {
  background: url("../img/main-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 703px;
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}

.main__bals {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.main__bals img {
  animation: ballRotate 60.2s linear infinite;
}

@keyframes ballRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.containers {
  padding: 0px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main__content {
  display: flex;
  flex-direction: column;
  width: 75%;
  position: relative;
  z-index: 99;
}

.main__content h1 {
  font-family: "enthalpy298regular";
  font-weight: 400;
  font-size: 90px;
  line-height: 100%;
  color: #000;
}

.main__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000;
  width: 50%;
}

.main__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.btn__blue {
  border: none;
  cursor: pointer;
  background: #2552a7;
  border-radius: 10px;
  width: max-content;
  height: 50px;
  font-weight: 700;
  font-size: 13px;
  line-height: 130%;
  color: #fff;
  padding: 0px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
    border: 1px solid #2552a7;
	 user-select:none;
}

.btn__blue:hover {
  background: #fff;
  color: #2552a7;
    border: 1px solid #2552a7;
  transition: 0.2s ease;
}

.awards__block-btns .btn__blue {
  border: 1px solid rgba(255, 255, 255, 0.5);

}


.awards__block-btns .btn__white {
  border: 1px solid rgba(255, 255, 255, 0.5);

}


.btn__white {
  border: none;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  width: max-content;
  height: 50px;
  font-weight: 700;
  font-size: 13px;
  line-height: 130%;
  text-align: center;
  color: #2552a7;
  padding: 0px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #fff;
  user-select:none;
}

.btn__white:hover {
  background: #2552a7;
  color: #fff;
  transition: 0.2s ease;
  border: 1px solid #fff;
}

.main__right {
  width: 17%;
  display: flex;
  flex-direction: column;
  gap: 97px;
  position: relative;
  z-index: 9;
}

.main__rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main__item {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.main__item span {
  font-weight: 700;
  font-family: "enthalpy298regular";
  font-size: 90px;
  line-height: 90%;
  color: #2552a7;
}

.main__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #2552a7;
  margin: 0;
}

.counter {
  font-weight: 700;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.counter.active {
  opacity: 1;
  transform: translateY(0);
}

.btn__tren {
  border: none;
  cursor: pointer;
  background: #2552a7;
  border-radius: 10px;
  width: max-content;
  height: 48px;
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  color: #fff;
  padding: 0px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  border: 1px solid #2552a7;
  position: fixed;
  z-index: 999;
  right: 42px;
  bottom: 10px;
}

.btn__tren:hover {
  border: 1px solid #2552a7;
  background: #fff;
  color: #2552a7;
}

.btn__tren:hover svg path {
  fill: #2552a7;
}

.obyevlenie {
  background: #2552a7;
  border-radius: 20px 20px 0px 0px;
  padding: 30px 0px 100px 0px;
}

.obyevlenie__top h2 {
  font-weight: 500;
  font-size: 11px;
  line-height: 50%;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-left: 14px;
}

.obyevlenie__top h2::after {
  position: absolute;
  top: -3px;
  left: -2px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  animation: pulseDot 1.4s ease-in-out infinite;
  content: "";
}

.obyevlenie__slider-block {
  margin-top: 20px;
  position: relative;
  padding: 0px 70px;
}

.obyevlenie__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.obyevlenie__slide {
  height: 120px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.obyevlenie__slide p {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000;
  padding: 27px 23px 0px 23px;
}

.obyevlenie__slide span {
  font-weight: 400;
  font-size: 13px;
  line-height: 50%;
  color: #000;
  opacity: 0.5;
  padding: 0px 23px 30px 23px;
}

.swiper-button-prevOb {
  width: 50px;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: absolute;
  top: 30%;
  left: 0px;
  z-index: 2;
  cursor: pointer;
  border: 1px solid #ffffff;
}

.swiper-button-prevOb:hover {
  background: #2552a7;
  border: 1px solid #ffffff;
}

.swiper-button-prevOb:hover svg path{
  stroke: #ffffff;
}

.swiper-button-nextOb {
  position: absolute;
  z-index: 2;
  top: 30%;
  cursor: pointer;
  right: 0px;
  width: 50px;
  height: 50px;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
    border: 1px solid #ffffff;
}

.swiper-button-nextOb:hover {
  background: #2552a7;
  border: 1px solid #ffffff;
}

.swiper-button-nextOb:hover svg path{
  stroke: #ffffff;
}


.container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0px 10px;
}

.about {
  border-radius: 20px;
  background: #fff;
  padding-top: 80px;
  padding-bottom: 221px;
  margin-top: -60px;
}

.about__container {
  display: flex;
  flex-direction: row;
  gap: 120px;
}

.about__image {
  width: 45%;
  position: relative;
}

.about__image-big {
  width: 468px;
}

.about__image-mini {
  position: absolute;
  right: -20px;
  bottom: -170px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about__image-mini.active {
  opacity: 1;
  transform: translateY(0);
  animation: smoothFloat 4s ease-in-out infinite;
}
@keyframes smoothFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-1.5deg);
  }
  50% {
    transform: translateY(0) rotate(1.5deg);
  }
  75% {
    transform: translateY(3px) rotate(-1.5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.about__image img {
  max-width: 100%;
}

.about__content {
  width: 55%;
  padding-top: 120px;
}

.title__toch {
  font-weight: 500;
  font-size: 11px;
  line-height: 50%;
  text-transform: uppercase;
  color: #000;
  position: relative;
  padding-left: 14px;
}

.title__toch::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 100%;
  animation: pulseDot 1.4s ease-in-out infinite;
}

.about__title {
  font-weight: 400;
  font-size: 65px;
  line-height: 100%;
  color: #000;
  font-family: "enthalpy298regular";
  margin-top: 13px;
}

.about__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
  margin-top: 14px;
}

.about__row {
  display: flex;
  flex-direction: row;
  margin-top: 27px;
}

.about__item {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 16px;
}

.about__item-icon {
  background: #2552a7;
  border-radius: 20px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__item-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #000;
}

.filosof {
  background: #fff;
  padding: 80px 0px;
}

.filosof__container {
  display: flex;
  flex-direction: row;
  gap: 53px;
}

.filosof__content {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 14px;
  padding-top: 111px;
}

.filosof__image {
  width: 50%;
  position: relative;
  padding-bottom: 120px;
  display: flex;
  justify-content: flex-end;
  padding-right: 70px;
}

.filosof__image img {
  max-width: 100%;
}

.filosof__image-big {
  width: 468px;
}

.filosof__image-mini {
  position: absolute;
  left: -10px;
  bottom: -20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.filosof__image-mini.active {
  opacity: 1;
  transform: translateY(0);
  animation: smoothFloat 4s ease-in-out infinite;
}
@keyframes smoothFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-1.5deg);
  }
  50% {
    transform: translateY(0) rotate(1.5deg);
  }
  75% {
    transform: translateY(3px) rotate(-1.5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.filosof__title {
  font-weight: 500;
  font-size: 11px;
  line-height: 50%;
  text-transform: uppercase;
  color: #000;
}

.filosof__name {
  font-weight: 400;
  font-size: 75px;
  line-height: 100%;
  font-family: "enthalpy298regular";
  color: #000;
}

.filosof__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.filosof__list {
  display: flex;
  flex-direction: column;
  margin-top: 75px;
  gap: 24px;
}

.filosof__item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.filosof__item:nth-of-type(2) {
  direction: rtl;
}

.filosof__item:nth-of-type(2) > * {
  direction: ltr; /* чтобы текст не стал RTL */
}

.filosof__item-image {
  border-radius: 20px;
  display: block;
  overflow: hidden;
}

.filosof__item-image {
  border-radius: 20px;
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filosof__item-image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.filosof__item-content {
  background: #eeeef0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding-top: 61px;
  padding-left: 50px;
  padding-bottom: 40px;
  padding-right: 83px;
  position: relative;
  overflow: hidden;
}

.filosof__item-content h4 {
  font-weight: 700;
  font-size: 21px;
  line-height: 130%;
  color: #000;
  margin-top: 35px;
  margin-bottom: 24px;
}

.filosof__item-fio {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
  position: absolute;
  bottom: 40px;
  left: 51px;
  z-index: 99;
}

.filosof__item-pechat {
  position: absolute;
  left: -80px;
  bottom: -80px;
  z-index: 1;
  width: 260px;
  height: 260px;
}

.filosof__item-pechat img {
  max-width: 100%;
}

.filosof__item-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
  position: relative;
  z-index: 2;
}

.social {
  /*background: url("../img/social-bg.png");*/
  background: url("../img/soc-oblozhka.png"); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.social__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 700px;
}

.social__name {
  font-weight: 400;
  font-size: 75px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  font-family: "enthalpy298regular";
  margin-bottom: 17px;
}

.social__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.social__btns {
  margin-top: 27px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.social__btn-tg {
  background: #35a9e6;
  border-radius: 20px;
  height: 70px;
  width: max-content;
  padding: 0px 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 10px;
}

.social__btn-vk {
  background: #3574f9;
  border-radius: 20px;
  height: 70px;
  width: max-content;
  padding: 0px 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 10px;
}

.social__btn-max {
  background: linear-gradient(270deg, #8b4ce6 0%, #324cf0 50%, #4ac2fd 100%);
  border-radius: 20px;
  height: 70px;
  width: max-content;
  padding: 0px 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 10px;
}

.schedule {
  background: #2552a7;
  border-radius: 0px 0px 20px 20px;
  padding: 100px 0px 40px 0px;
}

.schedule__top {
}

.schedule__top h2 {
  font-weight: 500;
  font-size: 11px;
  line-height: 50%;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-left: 14px;
}

.schedule__top h2::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  animation: pulseDot 1.4s ease-in-out infinite;
}

.schedule__top h3 {
  font-weight: 400;
  font-size: 65px;
  line-height: 100%;
  color: #fff;
  font-family: "enthalpy298regular";
  margin-top: 13px;
}

.schedule__top p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}

.schedule__tab-next {
  width: 50px;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  top: 0%;
  left: 0px;
  z-index: 2;
  cursor: pointer;
  border: 1px solid #ffffff;
}

.schedule__tab-next:hover {
  background: #2552a7;
  border: 1px solid #ffffff;
}

.schedule__tab-next:hover svg path{
  stroke: #ffffff;
}

.schedule__tab-prev {
  z-index: 2;
  top: 0%;
  cursor: pointer;
  right: 0px;
  width: 50px;
  height: 50px;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #ffffff;
}

.schedule__tab-prev:hover {
  background: #2552a7;
  border: 1px solid #ffffff;
}

.schedule__tab-prev:hover svg path{
  stroke: #ffffff;
}

.schedule__contents {
  display: flex;
  flex-direction: column;
}

.schedule__content {
  display: none;
}

.schedule__content--active {
  display: block;
  position: relative;
}

.schedule__tabs {
  display: flex;
  flex-direction: column;
  margin-top: 37px;
}

.schedule__tab-lists {
  max-width: 94%;
margin: 0 auto;
padding: 0px 0px;
display: flex;
flex-direction: row;
overflow-x: scroll;
gap: 15px;
  /* Скрыть scrollbar */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;   
}
.schedule__tab-lists::-webkit-scrollbar {
  display: none;                /* Chrome / Safari */
}

.schedule__tab {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 23px;
  margin-bottom: 30px;
}

.schedule__tab-btn {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeef0;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #2552a7;
  border: 1px solid #eeeef0;
  border-radius: 55px;
  height: 50px;
  padding: 0px 32px;
  transition: 0.2s ease;
  width: max-content;
min-width: max-content;
}

.schedule__tab-btn:hover {
  border: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 55px;
  background: #2552a7;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  height: 50px;
  padding: 0px 32px;
  transition: 0.2s ease;
}

.schedule__tab-btn--active {
  border: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 55px;
  background: #2552a7;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  height: 50px;
  padding: 0px 32px;
}

.schedule__block {
  border-radius: 15px;
  background: #fff;
  padding: 20px 20px;
}

.schedule__block-header {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  border: 1px solid #9d9c9c;
  padding: 18px 0px;
}

.schedule__header-item:nth-of-type(1) {
  width: 20%;
}

.schedule__header-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: capitalize;
  text-align: center;
  color: #000;
  width: 15%;
}

.schedule__block-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.schedule__content-list {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  padding: 20px 20px;
  background: #ececed;
  gap: 23px;
}

.schedule__list-item {
  width: 15%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  height: 100px;
}

.schedule__list-item span {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #000;
  display: block;
  padding: 20px 20px 10px 20px;
}

.schedule__list-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #000;
  display: block;
  padding: 10px 20px 20px 20px;
}

.schedule__list-item:nth-of-type(1) {
  width: 20%;
}

.schedule__list-item--null {
  background: #ececed !important;
}

.filials__top {
  background: #eeeef0;
  padding: 120px 0px;
  padding-bottom: 17px;
}

.section__top {
  position: relative;
}

.section__top h2 {
  font-weight: 500;
  font-size: 11px;
  line-height: 50%;
  text-transform: uppercase;
  color: #000;
  position: relative;
  padding-left: 14px;
}

.section__top h2::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 100%;
  animation: pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.section__top h3 {
  font-weight: 400;
  font-size: 65px;
  line-height: 100%;
  color: #000;
  font-family: "enthalpy298regular";
  margin-top: 13px;
  width: 68%;
}

.filials__container {
  background: #2552a7;
  border-radius: 20px 20px 0px 0px;
  padding: 30px 0px;
}

.filials__tabs {
  display: flex;
  flex-direction: column;
}

.filials__tab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
  margin-bottom: 30px;
}

.filials__tab-btn {
  border: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 80px;
  background: #2552a7;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  height: 70px;
  transition: 0.2s ease;
}

.filials__tab-btn:hover {
  background: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #2552a7;
  transition: 0.2s ease;
}

.filials__tab-btn--active {
  background: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #2552a7;
}

.filials__contents {
  display: flex;
  flex-direction: column;
}

.filials__content {
  display: none;
}

.filials__content--active {
  display: flex;
  flex-direction: column;
}

.filials__maps-block {
  width: 100%;
  height: 609px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.filials__maps-block img {
  max-width: 100%;
  height: 100%;
  width: 100%;
}

.filials__maps-list {
  display: flex;
  flex-direction: column;
  width: 50%;
  position: absolute;
  left: 40px;
  top: 40px;
  /*gap: 20px;*/
  gap: 10px;
}

.filials__maps-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  /*padding: 15px 20px;*/
  padding: 8px 8px;
}

.maps-item__num {
  width: 30px;
  height: 30px;
  background: #255598;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
  color: #fff;
}

.maps-item__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 80%;
}

.maps-item__content span {
  font-weight: 700;
  font-size: 17px;
  line-height: 110%;
  color: #255598;
}

.maps-item__content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #255598;
}

.filials__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 38px;
}

.filials__load {
  border: none;
  display: flex;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
  background: #2552a7;
}

.filials__item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.filials__item-show--btn {
  background: #2552a7;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  cursor: pointer;
  border: 1px solid #2552a7;
  z-index:2;
}

.filials__item-show--btn:hover {
  border: 1px solid #2552a7;
  background: #fff;
}

.filials__item-show--btn:hover svg path{

  fill: #2552a7;
}

.filials__item-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
}

.filials__item-image {
  border-radius: 15px;
  height: 200px;
  display: block;
  overflow: hidden;
}

.filials__item-image img {
  max-width: 100%;
  width: 100%;
  display: block;
}

.filials__item-title {
  font-weight: 400;
  font-size: 65px;
  font-family: "enthalpy298regular";
  line-height: 100%;
  color: #2552a7;
  margin-top: 15px;
}

.filials__item-adres {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #2552a7;
}

.filials__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 11px;
  margin-top: 10px;
}

.filials__item-tag {
  font-weight: 700;
  background: rgba(0, 57, 135, 0.1);
  font-size: 9px;
  line-height: 130%;
  text-transform: uppercase;
  color: #255598;
  border-radius: 35px;
  padding: 0px 11px;
  width: max-content;
  display: flex;
  align-items: center;
  height: 20px;
}

.filials__item-bottom {
  padding-top: 29px;
  padding-bottom: 21px;
  padding-left: 20px;
  display: none;
    transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.filials__item.open .filials__item-show--btn {
  transform: rotate(45deg); /* превращаем + в × */
}

.filials__item.open .filials__item-bottom {
  display: flex;
    transform: translateY(0);
  opacity: 1;

}

.filials__item.open .filials__item-image {
  padding-top: 20px;
  padding-left: 20px;
  border-radius: 20px;
  display: block;
  overflow: hidden;
}

.filials__item.open .filials__item-image img {
  border-radius: 20px;
  display: block;
  overflow: hidden;
}

.open.filials__item-bottom {
  display: flex;
}

.filials__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.filials__item-sliders {
  position: relative;
}

.filials__slider-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 102px;
  gap: 1px;
  position: absolute;
  right: 0;
  bottom: 0px;
}

.swiper-button-prevf {
  width: 50px;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  z-index: 2;
  cursor: pointer;
}

.swiper-button-nextf {
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
}

.filials-slide img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
}

.filials__item-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
  width: 100%;
}

.filials__item-texts {
}

.filials__item-texts p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.filials__item-texts h4 {
  font-weight: 600;
  font-size: 17px;
  line-height: 130%;
  color: #000;
  margin-bottom: 20px;
}

.filials__item-texts ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.filials__item-texts ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.filials__item-bottom--adres {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
  margin-bottom: 20px;
  width: 80%;
}

.filials__item-bottom--trener {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
  margin-bottom: 20px;
}

.filials__item-bottom--sait {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.blocks {
  background: url("../img/advantage-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  min-height: 870px;
  margin-top: -240px;
}

.blocks::after {
  position: absolute;
  content: "";
  height: 100px;
  background: linear-gradient(180deg, rgba(244, 246, 243, 0) 0%, #eeeef0 100%);
  transform: rotate(180deg);
  top: 0px;
  width: 100%;
  z-index: 2;
}

.btn-popup__block {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.blocks__blue {
  border-radius: 10px;
  width: 545px;
  background: url("../img/blue-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  height: 410px;
  padding: 50px 50px 50px 59px;
  float: right;
  margin-top: 302px;
  position: relative;
}

.blocks__blue h3 {
  font-weight: 400;
  font-size: 75px;
  line-height: 100%;
  font-family: "enthalpy298regular";
  color: #fff;
  margin-bottom: 22px;
  width: 70%;
}

.blocks__blue p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  width: 70%;
}

.advantages {
  padding: 25px 0px;
  background: #eeeef0;
}

.advantages__lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
  margin-top: 34px;
  position: relative;
  z-index: 9;
}

.advantages__item {
  height: 290px;
  perspective: 1000px; /* Задаём перспективу для 3D */
  position: relative;
}

.advantages__item-vid {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d; /* Включаем 3D для детей */
  position: relative;
}

.advantages__item:hover .advantages__item-vid {
  transform: rotateY(180deg);
}

/* Общие стили для front и back */
.advantages__item-vid--front,
.advantages__item-vid--back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden; /* Скрываем "заднюю" сторону при повороте */
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  box-sizing: border-box;
}

/* Передняя сторона */
.advantages__item-vid--front {
  background: #fff;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 2;
}

/* Задняя сторона */
.advantages__item-vid--back {
  background: url("../img/blue-bg.png") no-repeat center/cover;
  transform: rotateY(180deg); /* Поворачиваем заднюю сторону на 180° */
  align-items: flex-start;
  justify-content: flex-start;
}

.advantages__item-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.advantages__item-descr {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}

.advantages__item-link a {
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
  float: right;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.advantages__item-num {
  position: absolute;
  left: 20px;
  top: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #000;
}

.advantages__item-image {
  border-radius: 10px;
  width: 208px;
  height: 175px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 20px;
  right: 20px;
}

.advantages__item-image img {
  max-width: 100%;
  width: 100%;
height: 100%;
object-fit: cover;
}

.advantages__item-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000;
  text-align: left !important;
  float: left !important;
  width: 100%;
}

.struct {
  padding: 120px 0px 60px 0px;
}

.struct__list {
  display: flex;
  flex-direction: column;
  max-width: 901px;
  margin: 47px auto 0 auto;
  gap: 22px;
  padding: 0px 66px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.struct__item {
  display: flex;
  flex-direction: row;
  height: 82px;
  border-radius: 20px;
  overflow: hidden;
  max-width: 769px;
  width: 100%;
}

.struct__item:nth-of-type(1) {
  height: 193px;
  border-radius: 20px;
}

.struct__item:nth-of-type(1) .struct__item-text {
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  font-family: "enthalpy298regular";
}

.struct__item:nth-of-type(1) .struct__item-title {
  background: #fff;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.struct__item:nth-of-type(1) .struct__item-title span {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #2552a7;
  position: absolute;
  left: 20px;
  top: 20px;
}

.struct__item:nth-of-type(3)::after {
  content: "";
  position: absolute;
  background: url("../img/line-l.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 112px;
  bottom: 350px;
  left: 66px;
  display: block;
  z-index: 999;
}

.struct__item:nth-of-type(5)::after {
  content: "";
  position: absolute;
  background: url("../img/line-l.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 112px;
  bottom: 150px;
  left: 66px;
  display: block;
  z-index: 999;
}

.struct__item:nth-of-type(2)::after {
  content: "";
  position: absolute;
  background: url("../img/line-r-big.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 159px;
  bottom: 450px;
  right: 66px;
  display: block;
  z-index: 999;
}

.struct__item:nth-of-type(4)::after {
  content: "";
  position: absolute;
  background: url("../img/line-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 112px;
  bottom: 250px;
  right: 66px;
  display: block;
  z-index: 999;
}

.struct__item:nth-of-type(6)::after {
  content: "";
  position: absolute;
  background: url("../img/line-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 112px;
  bottom: 30px;
  right: 66px;
  display: block;
  z-index: 999;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, opacity;
}

.is-visible.struct__item:nth-of-type(6)::after {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .struct__item:nth-of-type(6)::after {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.struct__item-title {
  background: #2552a7;
  border-right: 1px solid #eeeef0;
  width: 34%;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  padding-left: 22px;
}

.struct__item-text {
  background: url("../img/bg-str.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 66%;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  padding-left: 34px;
}

.treners {
  padding: 60px 0px 80px 0px;
  overflow: hidden;
}

.treners__tabs {
  display: flex;
  flex-direction: column;
  margin-top: 37px;
}

.treners__tab {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 23px;
  margin-bottom: 30px;
}

.treners__tab-lists {
  max-width: 94%;
  margin: 0 auto;
  padding: 0px 0px;
  display: flex;
flex-direction: row;
overflow-x: scroll;
gap: 15px;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none; 
}

.schedule__tab-lists::-webkit-scrollbar {
  display: none;                /* Chrome / Safari */
}

.treners__tab-btn {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #2552a7;
  border: 1px solid #fff;
  border-radius: 55px;
  height: 50px;
  padding: 0px 32px;
  transition: 0.2s ease;
  width: max-content;
  min-width: max-content;
}

.treners__tab-btn:hover {
  border: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 55px;
  background: #2552a7;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  height: 50px;
  padding: 0px 32px;
  transition: 0.2s ease;
}

.treners__tab-btn--active {
  border: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 55px;
  background: #2552a7;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  height: 50px;
  padding: 0px 32px;
}

.treners__slider-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 102px;
  gap: 1px;
  position: absolute;
  right: 0;
  bottom: -70px;
}

.swiper-button-prevTr {
  width: 50px;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  z-index: 2;
  cursor: pointer;
  border: 1px solid rgb(37, 82, 167);
}

.swiper-button-prevTr:hover {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(37, 82, 167);
}

.swiper-button-prevTr:hover svg path {
stroke: #2552a7;
}

.swiper-button-nextTr {
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  border: 1px solid rgb(37, 82, 167);
}

.swiper-button-nextTr:hover svg path {
stroke: #2552a7;
}

.swiper-button-nextTr:hover {
  background: rgb(255, 255, 255);
  border: 1px solid rgb(37, 82, 167);
}

.treners__slider {
  width: 100%;
  height: 100%;
}

.treners__contents {
  display: flex;
  flex-direction: column;
}

.treners__content {
  display: none;
}

.treners__content--active {
  display: block;
  position: relative;
}

.treners__slide-image {
  display: block;
  min-height: 369px;
  max-height: 370px;
  height: 370px;
}

.treners__slide-image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  max-height: 381px;
  display: block;
  border-radius: 15px 15px 0px 0px;
}

.treners__slide-content {
  padding: 29px 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.treners__slide-text {
}

.treners__slide-text span {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #fff;
}

.treners__slide-text ul {
}

.treners__slide-text ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: -0.04em;
  color: #fff;
  list-style: none;
  position: relative;
}

.treners__slide-fio {
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  font-family: "enthalpy298regular";
  color: #fff;
}

.treners__slide-dol {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.04em;
  color: #fff;
}

.treners__slide {
  background: #2552a7;
  border-radius: 25px;
}

.gallery {
  padding-top: 120px;
  background: #fff;
}

.gallerys__tab-next {
  width: 50px;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  top: 0%;
  left: 0px;
  z-index: 2;
  cursor: pointer;
  border: 1px solid #2552a7;
}

.gallerys__tab-next:hover {
background: #fff;
border: 1px solid #2552a7;
}

.gallerys__tab-next:hover svg path {
stroke: #2552a7;
}

.gallerys__tab-prev {
  z-index: 2;
  top: 0%;
  cursor: pointer;
  right: 0px;
  width: 50px;
  height: 50px;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  border: 1px solid #2552a7;
}

.gallerys__tab-prev:hover {
background: #fff;
border: 1px solid #2552a7;
}

.gallerys__tab-prev:hover svg path {
stroke: #2552a7;
}

.gallerys__contents {
  display: flex;
  flex-direction: column;
}

.gallerys__content {
  display: none;
}

.gallerys__content--active {
  display: block;
  position: relative;
}

.gallerys__tabs {
  display: flex;
  flex-direction: column;
  margin-top: 37px;
}

.gallerys__tab-lists {
  max-width: 94%;
  margin: 0 auto;
  padding: 0px 0px;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  gap: 15px;
    scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none; 
}

.gallerys__tab-lists::-webkit-scrollbar {
  display: none;                /* Chrome / Safari */
}
.gallerys__tab {
  display: flex;
  flex-direction: row;
  gap: 23px;
  margin-bottom: 30px;
}

.gallerys__tab-btn {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeef0;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #2552a7;
  border: 1px solid #eeeef0;
  border-radius: 55px;
  height: 50px;
  padding: 0px 32px;
  transition: 0.2s ease;
  width: max-content;
min-width: max-content;
}

.gallerys__tab-btn:hover {
  border: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 55px;
  background: #2552a7;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  height: 50px;
  padding: 0px 32px;
  transition: 0.2s ease;
}

.gallerys__tab-btn--active {
  border: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 55px;
  background: #2552a7;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  height: 50px;
  padding: 0px 32px;
}

.treners__tab-next {
  width: 60px;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  top: 0%;
  left: 0px;
  z-index: 2;
  cursor: pointer;
  border: 1px solid #2552a7;
}

.treners__tab-next:hover {
  background: #fff;
  border: 1px solid #2552a7;
}

.treners__tab-next:hover svg path{
  stroke: #2552a7;
}

.treners__tab-prev {
  z-index: 2;
  top: 0%;
  cursor: pointer;
  right: 0px;
  width: 60px;
  height: 50px;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  border: 1px solid #2552a7;
}

.treners__tab-prev:hover {
  background: #fff;
  border: 1px solid #2552a7;
}

.treners__tab-prev:hover svg path{
  stroke: #2552a7;
}

.gallerys {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 230px;
}

.gallerys div {
  border-radius: 10px;
  overflow: hidden;
}

.gallerys img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transform: rotate(1);
  transition: 0.2s ease;
}

.gallerys img:hover {
  transform: rotate(1.1);
  transition: 0.2s ease;
}

.i1 {
  grid-column: span 4; /* половина от 8 колонок */
  grid-row: span 2; /* 480px = 240px * 2 */
  height: 480px; /* твоя высота */
}

.i2,
.i3,
.i4,
.i5 {
  grid-column: span 2; /* 2 колонки */
  grid-row: span 1; /* высота = 240px */
}

.i6,
.i7,
.i8,
.i9,
.i10,
.i11,
.i12,
.i13 {
  grid-column: span 1; /* 1/8 ширины */
  grid-row: 3; /* ВСЕ в ОДНУ строку */
  height: 120px; /* как высота одной строки */
}

.awards {
  padding: 80px 0px;
  position: relative;
}

.awards__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}

.awards__image {
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.awards__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.awards__block-blue {
  border-radius: 10px;
  width: 545px;
  background: url("../img/blue-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  height: 410px;
  padding: 50px 50px 50px 59px;
  float: right;
  position: relative;
}

.awards__block-blue h3 {
  font-weight: 400;
  font-size: 75px;
  line-height: 100%;
  font-family: "enthalpy298regular";
  color: #fff;
  margin-bottom: 22px;
}

.awards__block-blue p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  margin: 15px 0px;
}

.awards__block-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.awards__slider-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 102px;
  gap: 1px;
  position: absolute;
  right: 0;
  bottom: 0px;
}

.swiper-button-prevPa {
  width: 50px;
  height: 50px;
  border-radius: 15px 0px 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  z-index: 2;
  cursor: pointer;
  border: 1px solid #2552a7;
}

.swiper-button-prevPa:hover {
  background: #fff;
  border: 1px solid #2552a7;
}

.swiper-button-prevPa:hover svg path {
  stroke: #2552a7;
}

.swiper-button-nextPa {
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2552a7;
  border: 1px solid #2552a7;
}

.swiper-button-nextPa:hover {
  background: #fff;
  border: 1px solid #2552a7;
}

.swiper-button-nextPa:hover svg path {
  stroke: #2552a7;
}

.awards__swiper {
  width: 100%;
  margin-top: 39px;
  margin-bottom: 119px;
  overflow: hidden;
}

.awards__slide {
  background: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding-top: 20px;
  padding-bottom: 28px;
  gap: 5px;
}
.awards__slide img {
  margin-bottom: 20px;
}

.awards__slide p {
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  opacity: 0.5;
}

.awards__slide span {
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  display: mt10px;
}

.blog {
  padding: 85px 0px 60px 0px;
  background: #eeeef0;
}

.blog__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
  margin-top: 36px;
  margin-bottom: 49px;
}

.blog__item {
  background: #fff;
  border-radius: 20px;
  height: 443px;
}

.blog__item-image {
  height: 248px;
  display: block;
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
}

.blog__item-title {
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #000;
  padding: 26px 36px 10px 36px;
}

.blog__item-descr {

    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #000;
    padding: 6px 36px 20px 36px;

    display: -webkit-box;
    -webkit-line-clamp: 3;     /* сколько строк оставить */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;


}

.blog__load {
  border: none;
  display: flex;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #2552a7;
  background: transparent;
}

.faq {
  background: #eeeef0;
  padding-bottom: 121px;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.faq::after {
  content: "";
  position: absolute;
  background: url("../img/ball-faq.png");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0px;
  bottom: -300px;
  width: 727px;
  height: 727px;
}

.faq .section__top h3 {
  width: 80%;
}

.faq__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px;
  position: relative;
  z-index: 2;
}

.questions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: auto;
  margin-top: 40px;
  gap: 16px;
  max-width: 1130px;
  margin: 0 auto;
}

.questions-item {
  list-style: none;
  width: 100%;

  margin-right: 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.questions-item__title {
  font-weight: 700;
  font-size: 17px;
  line-height: 130%;
  color: #fff;
  text-align: left;
  margin: 0;
  width: 90%;
  font-weight: 500;
  display: flex;
  padding-left: 24px;
  flex-direction: row;
  align-items: center;
}

.questions-item__title span {
  font-weight: 700;
  font-size: 17px;
  line-height: 130%;
  color: #fff;
}

.questions-item__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  width: 100%;
  background: 0 0;
  border: none;
  height: 80px;
  padding: 30px 40px;
  cursor: pointer;
  padding-left: 0px;
  transition: all 0.5s;
  flex-direction: row;
  transition: 0.3s;
  transition: 0.5s ease-in-out;
}

.questions-item__control {
  font-weight: 700;
  font-size: 17px;
  line-height: 130%;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 30px;
  background: #2552a7;
  border-radius: 15px;

  /* 30.8px */
}

.questions-item__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  left: 0px;
  transition: 0.5s;
  background: #fff;
}

.questions-item__icon:hover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  right: 0px;
  transition: all 0.5s;
}

.questions-item__icon:hover svg path {
  stroke: #fff;
}

.open-accordeon .questions-item__icon {
  transition: all 0.5s;
  transform: rotate(45deg);
  width: 33px;
  height: 33px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}

.questions-item:hover .questions-item__icon {
  transition: all 0.5s;
  transform: rotate(45deg);
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.open-accordeon .questions-item__icon svg path {
  stroke: #fff;
}

.questions-item:hover .questions-item__icon svg path {
  stroke: #fff;
}

.questions__list .open-accordeon .questions-item__title {
  width: 91%;
}

.questions-item__content {
  padding: 20px;
  display: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.questions__list .open-accordeon .questions-item__content {
  display: block;
  transition: 0.5s ease-in-out;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
  overflow: hidden;
  will-change: max-height;
  opacity: 1;
  animation: ani 1s forwards;
  backdrop-filter: blur(16px);
  background: #fff;
  border-radius: 15px;
  margin-top: 20px;
  padding: 20px 20px;
}

.block__content-faqs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.block__man {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 30%;
}

.block__man img {
  max-width: 100%;
  width: 90px;
  height: 90px;
  border-radius: 100px;
  display: flex;
}

.block__man span {
  font-weight: 700 !important;
  font-size: 11px !important;
  line-height: 120%;
  color: #000;
  text-align: left;
  padding-left: 0px !important;
}

.block__texts {
  background: #eeeef0;
  border-radius: 10px;
  padding: 20px 20px;
  width: 70%;
  font-size: 14px;
}

.footer {
  background: #1f479c;
  padding-top: 51px;
}

.footer__container {
  max-width: 1840px;
  margin: 0 auto;
  padding: 0px 10px;
}

.footer__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 170px;
  padding-right: 70px;
}

.footer__menus {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__menus span {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.5;
}

.footer__menus ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__menus ul li {
  list-style: none;
}

.footer__menus ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
}

.footer__menus ul li a:hover {
  opacity: 0.7;
}

.footer__line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 110px;
}

.footer__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer__rating span {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
}

.footer__rating a {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
}

.footer__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer__social {
  list-style: none;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
}

.footer__social a:hover {
  background: #eeeef0;
}

.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 21px 0px 24px 0px;
  margin-top: 13px;
}

.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 110%;
  color: #fff;
  opacity: 0.5;
}

.footer__links a {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #fff;
  opacity: 0.5;
}

/* Модалка */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.modal.is-open {
  display: flex;
}

.modal__dialog {
  width: min(580px, calc(100% - 12px));
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  animation: show 0.16s ease-out forwards;
}
.modal__blue {
  width: min(580px, calc(100% - 12px)) !important;
  background: url("../img/blue-bg.png");
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  animation: show 0.16s ease-out forwards;
}
.modal__white {
  width: min(700px, calc(100% - 12px)) !important;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  animation: show 0.16s ease-out forwards;
}

.modal__blog {
  width: min(1000px, calc(100% - 12px)) !important;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  animation: show 0.16s ease-out forwards;
}
@keyframes show {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 65px 20px 16px 20px;
}

.modal__title {
  margin: 0;
  font-weight: 400;
  font-size: 55px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  font-family: "enthalpy298regular";
}
.modal__review .modal__header {
  padding: 60px 20px 0px 20px;
}
.modal__review .modal__title {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #37577b;
}

.modal__header p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  width: 70%;
}
.modal__close {
  border: 0;
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  outline: none;
}
.modal__close:hover {
  background: #f2f2f2;
}

.modal__body {
  padding: 20px;
  line-height: 1.6;
}
.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid #eee;
}

.modal__content-image img {
  max-width: 100%;
}

.modal__content-text {
  display: flex;
  flex-direction: column;
  gap: 19px;
  overflow-y: scroll;
  max-height: 550px;
}

.modal__white .modal__body {
  padding: 0px 41px 41px 41px;
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.modal__content h2 {
  font-weight: 400;
  font-size: 55px;
  line-height: 100%;
  color: #000;
  font-family: "enthalpy298regular";
}

.modal__content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #000;
}

.modal__content-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 41px;
}

.modal__content-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.modal__content-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.5);
}

.form__blokc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 286px;
  margin: 0 auto;
  gap: 9px;
  padding-bottom: 58px;
}

.form__control {
  width: 246px;
  height: 40px;
  background: #1e469d;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 0px 20px;
  color: #fff;
  font-size: 12px;
  outline: none;
}

.form__control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.btn.secondary {
  background: #e9e9e9;
  color: #111;
}

/* Блокировка скролла страницы при открытой модалке */
body.modal-open {
  overflow: hidden;
}

.btn-popup {
  margin: 0 auto;
}

.checkbox-label {
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 17px 0px 24px 0px;
  &>span{
	  align-self:center;
  }
}
.checkbox-label a {
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.popup__services-btn {
  box-shadow: 0 10px 16px 0 rgba(255, 69, 44, 0.24),
    0 4px 4px 0 rgba(0, 0, 0, 0.09), 0 -3px 14px 0 rgba(255, 111, 22, 0.36),
    inset 0 0 14px 0 rgba(255, 126, 66, 0.5);
  background: linear-gradient(134deg, #ff7d1a 0%, #d92400 100%);
  border-radius: 16px;
  width: 100%;
  height: 56px;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.review__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.yandex-reviews-block {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 760px;
  height: 800px;
  overflow: hidden;
  position: relative;
}

.yandex-reviews-block iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-sizing: border-box;
}

.yandex-reviews-block body {
  background: transparent;
}

.yandex-reviews-block .badge {
  margin: 0 auto;
  max-width: 100% !important;
}

.scroll-animation {
  opacity: 0; /* Исходное состояние - скрыто */
  transform: translateX(100px); /* Смещение вправо */
  transition: all 1.2s ease-out; /* Плавный переход */
  will-change: transform, opacity;
}

.scroll-animation.left {
  transform: translateX(-100px); /* Смещение влево */
}

.scroll-animation.top {
  transform: translateY(100px); /* Смещение влево */
}

.scroll-animation.bottom {
  transform: translateY(-100px); /* Смещение влево */
}

.scroll-animation.visible {
  opacity: 1; /* Делает элемент видимым */
  transform: translateX(0); /* Возвращает в исходное положение */
}

.filials__item-bottom--call {
  position: absolute;
right: 30px;
bottom: 40px;
}

.filials__item-bottom--sait a {
  font-weight: 400;
color: #2552a7;
text-decoration: none;
margin-left: 10px;
}

@media (max-width: 1580px) {
  .main__right {
    width: 20%;
  }
}

@media (max-width: 1380px) {
  .main__right {
    width: 22%;
  }
  .container {
    padding: 0px 40px;
  }
  .main {
    height: 603px;
  }
  .main__bals img {
    width: 75%;
  }
  .main__content h1 {
    font-size: 70px;
  }
  .main__item span {
    font-size: 65px;
  }
  .main__right {
    width: 21%;
    gap: 76px;
  }
  .btn__tren {
    height: 50px;
    margin-right: 0px;
  }
  .header__menu ul {
    margin-right: 5px;
  }
  .filials__top {
    padding: 88px 0px 17px 0px;
  }
  .filials__item-image img {
    height: 100%;
  }
  .filials__item-title {
    font-size: 55px;
  }
  .section__top h3 {
    font-size: 55px;
  }
  .filosof__name {
    font-size: 55px;
  }
  .blocks__blue h3 {
    font-size: 65px;
  }
  .blocks {
    min-height: 728px;
    margin-top: -110px;
  }
  .footer__row {
    gap: 58px;
    padding-right: 50px;
  }
  .awards__image img {
    max-width: 100%;
  }
  .awards__block-blue {
    width: 505px;
  }
  .blocks__blue {
    margin-top: 182px;
  }
  .blocks__blue h3 {
    width: 67%;
  }
  .blog__item-image {
    border-radius: 15px 15px 0px 0px;
  }
}

@media (max-width: 1310px) {
  .awards__block-blue {
    width: 485px;
  }
  .header__main-right {
    gap: 30px;
  }
  .header__menu ul {
    gap: 20px;
    margin-right: 15px;
  }
  .main {
    padding-top: 140px;
    height: 553px;
  }
}

@media (max-width: 1110px) {
  .container {
    padding: 0px 20px;
  }
  .containers {
    padding: 0px 20px;
  }
  .header__main {
    padding: 15px 20px;
  }
  .main__content h1 {
    font-size: 65px;
  }
  .main__content p {
    font-size: 14px;
    width: 40%;
  }
  .struct .section__top h3 {
    width: 80%;
  }
  .filosof__item-image {
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .filosof__item-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    min-height: 480px;
  }
  .filosof__item-content {
    padding-top: 42px;
    padding-left: 35px;
    padding-bottom: 40px;
    padding-right: 35px;
  }
  .blocks__blue {
    width: 382px;
    height: 390px;
    z-index: 99;
  }
  .blocks__blue h3 {
    width: 85%;
  }
  .header__main-right {
    gap: 20px;
  }
  .containers {
    height: 100%;
  }
  .main__bals {
    top: 55%;
  }
  .btn__tren {
    position: absolute;
    bottom: 10px;
    margin-right: 0px;
    right: 10px;
  }
  .about__image-mini {
    right: -80px;
    bottom: -110px;
    width: 80%;
  }
  .about__content {
    padding-top: 0;
  }
  .filosof__content {
    padding-top: 59px;
  }
  .advantages__item-image {
    border-radius: 10px;
    width: 148px;
    height: 145px;
  }
  .advantages__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .blocks {
    background: url("../img/advantage-bg-tablet.png");
    height: 554px;
    background-repeat: no-repeat;
    min-height: 554px;
    margin-top: 0px;
    padding-top: 0px;
  }
  .blocks__blue p {
    width: 95%;
  }
  .blocks__blue {
    margin-top: 40px;
  }
  .gallerys {
    gap: 22px;
  }
  .schedule__tabs {
    /* width: 100%;
    overflow-x: scroll; */
  }
  .schedule__content--active {
    display: block;
    position: relative;
    width: 1400px;
    overflow-x: scroll;
  }
  .schedule__tab {
    width: 100%;
    overflow-x: scroll;
    padding: 0px 60px;
    position: relative;
  }
  .schedule__tab-next {
    position: absolute;
  }
  .schedule__tab-prev {
    position: absolute;
  }
  .awards__block-blue {
    width: auto;
  }
  .awards__image img {
    object-fit: cover;
  }
  .struct__list {
    max-width: 787px;
  }
  .struct__item:nth-of-type(2)::after {
    right: 55px;
  }
  .struct__item:nth-of-type(3)::after {
    left: 55px;
  }
  .struct__item:nth-of-type(4)::after {
    right: 55px;
  }
  .struct__item:nth-of-type(5)::after {
    left: 55px;
  }
  .struct__item:nth-of-type(6)::after {
    right: 55px;
  }
  .struct__item {
    width: 675px;
  }
  .faq .section__top h3 {
    width: 95%;
  }
  .faq::after {
    left: -60px;
    bottom: -300px;
    width: 627px;
    height: 627px;
  }
  .blog__item-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .blog__item-image {
    height: 248px;
    display: block;
    border-radius: 15px 15px 0px 0px;
    overflow: hidden;
  }
  .social__name {
    font-size: 65px;
  }
}

@media (max-width: 1080px) {
  .schedule__block {
    width: auto;
  }
  .schedule__tabs {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
  }
  .schedule__content--active {
    display: block;
    position: relative;
    width: 1400px;
    overflow-x: scroll;
  }
  .filosof__image-mini {
    left: auto;
    right: 50px;
  }
  .gallerys__tab-next {
    display: none;
  }
  .gallerys__tab-prev {
    display: none;
  }
  .about {
    padding-bottom: 160px;
  }
  .treners__tab-next {
    display: none;
  }
  .treners__tab-prev {
    display: none;
  }
  .gallerys__tab {
    overflow-x: scroll;
  }
  .gallerys__tab::-webkit-scrollbar {
    display: none;
  }

  /* Firefox */
  .gallerys__tab {
    scrollbar-width: none;
  }

  /* IE, Edge */
  .gallerys__tab {
    -ms-overflow-style: none;
  }
}

@media (max-width: 880px) {
  .filosof__image-mini {
    width: 200px;
  }
  .filosof__item-image img {
    height: 100%;
  }
  .struct__item {
    width: 535px;
  }
  .awards__block-blue {
    padding: 20px 30px;
  }
  .awards__block-blue h3 {
    font-size: 45px;
  }
  .gallerys {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 115px;
  }
  .i1 {
    grid-column: span 4;
    grid-row: span 2;
    height: 244px;
  }
  .i6,
  .i7,
  .i8,
  .i9,
  .i10,
  .i11,
  .i12,
  .i13 {
    grid-column: span 1;
    grid-row: 3;
    height: 58px;
  }
  .btn__white {
    font-size: 10px;
    height: 40px;
    padding: 0px 15px;
  }
  .btn__blue {
    font-size: 10px;
    height: 40px;
    padding: 0px 15px;
  }
  .awards__block-btns {
    right: 30px;
    bottom: 20px;
  }
  .blog__item-image {
    height: 168px;
  }
  .blog__item {
    background: #fff;
    border-radius: 20px;
    height: 383px;
  }
  .yandex-reviews-block {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 760px;
    height: 550px;
    overflow: hidden;
    position: relative;
  }
  .header__mobile {
    display: block;
    height: 100vh;
    width: 70%;
    position: absolute;
    top: 0;
    right: -1500px; /* Изначально блок скрыт за экраном слева */
    transition: transform 0.5s ease; /* Плавная анимация */
    background: #2552a7;
    z-index: 9999999;
    display: none;
  }
  .header__mobile-close {
    border: none;
    position: absolute;
    right: 20px;
    top: auto;
    cursor: pointer;
    background: transparent;
  }
  .header__mobile.open {
    display: block;
    z-index: 9999;
    right: 0;
    transform: translateX(0px);
  }
  .header__mobile-container {
    display: flex;
    flex-direction: column;
    padding: 0px 0px 0px 0px;
  }
  .header__mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header__mobile-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0px 30px;
  }
  .header__mobile-bottom {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 0px;
    gap: 30px;
    bottom: 30px;
    left: 22px;
  }
  .header__mobile-menu {
    padding-top: 82px;
  }
  .header__mobile-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px 0px;
    padding: 0px 15px 0px 22px;
  }
  .header__mobile-menu ul li {
    list-style: none;
  }
  .header__mobile-menu ul li a {
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }
  .header__loginmob {
    display: flex;
    padding-left: 22px;
    padding-top: 49px;
  }
  .header__loginmob a span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100%;
  }
  .header__loginmob a {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-decoration: none;
  }
  .header__popupmob {
    display: flex;
    border: none;
    cursor: pointer;
    background: #fff;
    border-radius: 5px;
    width: max-content;
    height: 35px;
    font-weight: 700;
    font-size: 10px;
    line-height: 130%;
    text-align: center;
    color: #2552a7;
    padding: 0px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__socialsmob {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .header__socialsmob .header__social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2552a7;
    border: 1px solid #fff;
    border-radius: 100%;
  }
  .header__main {
    padding: 15px 20px;
  }
  .header__socials {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .header__login {
    display: none;
  }
  .header__popup {
    display: none;
  }
  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2552a7;
    border-radius: 100%;
    border: none;
    cursor: pointer;
  }
  .schedule__tab-next {
    display: none;
  }
  .schedule__tab-prev {
    display: none;
  }
  .schedule__tab {
    padding: 0px 0px;
  }
  .schedule__tab::-webkit-scrollbar {
    display: none;
  }

  /* Firefox */
  .schedule__tab {
    scrollbar-width: none;
  }

  /* IE, Edge */
  .schedule__tab {
    -ms-overflow-style: none;
  }
  .filosof__item:nth-of-type(2) {
    direction: rtl;
  }

  .filials__item-image {
    border-radius: 15px;
    height: 220px;
    display: block;
    overflow: hidden;
  }
  .filials__item-title {
    font-size: 45px;
  }
  .blog__load {
    display: none;
  }
  .blog__container {
    width: auto;
    overflow-x: scroll;
  }
  .blog__container {
    scrollbar-width: none;
  }
  .blog__list {
    height: 363px;
    margin-top: 36px;
    margin-bottom: 0px;
  }
  .blog__list {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: scroll;
    min-width: 1200px;
  }
  .blog__item {
    width: 48%;
    height: 335px;
    border-radius: 20px;
    overflow: hidden;
  }
  .footer {
    padding-top: 17px;
  }

  .footer__content {
    flex-direction: column;
    position: relative;
  }

  .footer__container {
    position: relative;
  }

  .footer__socials {
    position: absolute;
    top: 120px;
  }

  .footer__logo {
    margin-bottom: 100px;
  }

  .footer__row {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: 20px;
    padding-right: 0px;
  }

  .footer__menus {
    width: 46%;
  }
  .footer__line {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 35px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .header__mobile {
    display: block;
    height: 100vh;
    width: 70%;
    position: absolute;
    top: 0;
    right: -1500px; /* Изначально блок скрыт за экраном слева */
    transition: transform 0.5s ease; /* Плавная анимация */
    background: #2552a7;
    z-index: 9999999;
    display: none;
  }
  .header__mobile-close {
    border: none;
    position: absolute;
    right: 20px;
    top: auto;
    cursor: pointer;
    background: transparent;
  }
  .header__mobile.open {
    display: block;
    z-index: 9999;
    right: 0;
    transform: translateX(0px);
  }
  .header__mobile-container {
    display: flex;
    flex-direction: column;
    padding: 0px 0px 0px 0px;
  }
  .header__mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header__mobile-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0px 30px;
  }
  .header__mobile-bottom {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 0px;
    gap: 30px;
    bottom: 30px;
    left: 22px;
  }
  .header__mobile-menu {
    padding-top: 82px;
  }
  .header__mobile-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px 0px;
    padding: 0px 15px 0px 22px;
  }
  .header__mobile-menu ul li {
    list-style: none;
  }
  .header__mobile-menu ul li a {
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }
  .header__loginmob {
    display: flex;
    padding-left: 22px;
    padding-top: 49px;
  }
  .header__loginmob a span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100%;
  }
  .header__loginmob a {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-decoration: none;
  }
  .header__popupmob {
    display: flex;
    border: none;
    cursor: pointer;
    background: #fff;
    border-radius: 5px;
    width: max-content;
    height: 35px;
    font-weight: 700;
    font-size: 10px;
    line-height: 130%;
    text-align: center;
    color: #2552a7;
    padding: 0px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__socialsmob {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .header__socialsmob .header__social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2552a7;
    border: 1px solid #fff;
    border-radius: 100%;
  }
  .header__main {
    padding: 15px 20px;
  }
  .header__socials {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .header__login {
    display: none;
  }
  .header__popup {
    display: none;
  }
  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2552a7;
    border-radius: 100%;
    border: none;
    cursor: pointer;
  }

  .main__bals {
    width: 470px;
    top: 80%;
  }

  .main__bals img {
    max-width: 100%;
  }

  .containers {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 20px;
  }

  .main {
    height: 600px;
    padding-top: 160px;
  }

  .main__content {
    width: auto;
  }

  .main__content h1 {
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 11px;
  }

  .main__content p {
    width: auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: #000;
  }

  .main__btn {
    margin: 16px auto 0 auto;
  }

  .btn__tren {
    display: none;
  }

  .main__right {
    width: auto;
    margin-top: 32px;
    position: relative;
    z-index: 19;
  }

  .main__rows {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }

  .main__item span {
    font-weight: 400;
    font-size: 45px;
    line-height: 100%;
    color: #2552a7;
  }

  .main__item p {
    font-weight: 400;
    font-size: 10px;
    line-height: 110%;
    color: #2552a7;
  }

  .swiper-button-prevOb,
  .swiper-button-nextOb {
    display: none;
  }

  .obyevlenie {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
  }

  .obyevlenie__slider-block {
    padding: 0px 0px;
  }

  .about {
    padding-top: 60px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    margin-top: -20px;
  }
  .about__container {
    flex-direction: column;
    gap: 20px;
  }
  .about__image {
    width: 80%;
    margin: 0 auto;
  }
  .about__content {
    width: auto;
    padding-top: 20px;
  }

  .about__row {
    gap: 10px;
  }

  .about__title {
    font-size: 35px;
  }

  .about__text {
    font-size: 12px;
  }

  .about__item-icon {
    width: 55px;
    height: 55px;
  }

  .about__item-icon img {
    max-width: 100%;
    width: 30px;
  }

  .about__item-text {
    font-size: 10px;
  }

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

  .section__top h3 {
    font-size: 35px;
  }

  .filials__tab {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }

  .filials__item-bottom {
    padding-right: 20px;
  }

  .filials__item-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .filials__tab-btn {
    font-size: 12px;
    height: 50px;
  }

  .filials__item-top {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px;
  }

  .filials__item-image {
    height: 110px;
  }

  .filials__item-title {
    font-size: 35px;
  }

  .filials__item-tags {
    margin-top: 17px;
  }

  .filials__item-tag {
    font-size: 8px;
  }

  .filials__item-info {
    padding: 16px 20px;
  }

  .filials__item-show--btn {
    width: 40px;
    height: 40px;
    right: 20px;
    top: auto;
    bottom: 20px;
  }

  .filials__maps-list {
    display: flex;
    flex-direction: column;
    width: auto;
    position: relative;
    left: 0px;
    top: 40px;
    gap: 10px;
  }

  .filials__maps-block img {
    height: 411px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
  }

  .filials__maps-block {
    height: auto;
    overflow: unset;
  }

  .schedule__top h3 {
    font-size: 35px;
  }

  .schedule__tab-btn {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #2552a7;
    height: 45px;
  }

  .schedule__tab-btn:hover {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    height: 45px;
    color: #fff;
  }

  .schedule__tab-btn--active {
    color: #fff;
  }

  .schedule__tab-next {
    display: none;
  }

  .schedule__tab-prev {
    display: none;
  }

  .schedule__tabs {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
  }

  .schedule__tab {
    width: 1200px;
    gap: 10px;
    padding: 0px 0px;
    justify-content: flex-start;
  }

  .schedule__block {
    width: 1200px;
  }

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

  .filosof__image {
    width: 80%;
    margin: 0 auto;
  }

  .filosof__image-big {
    max-width: 100%;
    width: 228px;
  }

  .filosof__image-mini {
    width: 165px;
    left: auto;
    right: 20px;
    bottom: -35px;
  }

  .filosof__image {
    padding-bottom: 60px;
  }

  .filosof__content {
    padding-top: 0px;
    width: auto;
  }

  .filials__item-image img {
    width: 100%;
  }

  .filosof__name {
    font-size: 35px;
    line-height: 100%;
  }
  .filosof__text {
    font-size: 12px;
  }

  .filosof__item-fio {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }
  .container {
    padding: 0px 20px;
  }

  .filosof__item-pechat {
    width: 160px;
    height: 160px;
    left: -30px;
    bottom: -30px;
  }

  .filosof__item-pechat img {
    max-width: 100%;
  }

  .filosof__item {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .filosof__item:nth-of-type(2) {
    flex-direction: column-reverse;
  }

  .filosof__item-image {
    height: 280px;
  }

  .filosof__item-image img {
    max-width: 100%;
  }

  .filosof__item-content {
    padding-top: 21px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 13px;
  }

  .filosof__item-content svg {
    height: 20px !important;
    width: 23px !important;
  }

  .filosof__item-content h4 {
    font-size: 12px;
    line-height: 130%;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .filosof__item-content p {
    font-size: 12px;
    line-height: 130%;
    position: relative;
    z-index: 3;
  }

  .advantages__lists {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .advantages__item {
    height: 165px;
  }

  .advantages__item-title {
    font-size: 12px;
  }

  .advantages__item-descr {
    font-size: 10px;
  }

  .advantages__item-image {
    border-radius: 10px;
    width: 114px;
    height: 80px;
  }

  .advantages__item-text {
    font-size: 12px;
  }

  .struct__list {
    padding: 0px 10px;
  }

  .struct__list {
    max-width: 100%;
  }

  .struct__item:nth-of-type(2)::after {
    height: 115px;
    right: 10px;
  }

  .struct__item {
    width: 70%;
  }

  .struct__item:nth-of-type(1) {
    flex-direction: row;
  }

  .struct__item:nth-of-type(1) .struct__item-text {
    font-size: 20px;
    line-height: 120%;
    padding-left: 22px;
  }

  .struct__item:nth-of-type(1) {
    height: 114px;
  }

  .struct__item {
    background: url("../img/bg-str.png");
    height: 42px;
    flex-direction: column;
    padding: 19px 0px;
    gap: 7px;
  }

  .struct__item-text {
    width: auto;
    padding-left: 0;
    font-size: 12px;
    padding: 0px 19px;
  }

  .struct__item-title {
    background: transparent;
    width: auto;
    padding-left: 0px;
    border-right: 0;
    font-size: 12px;
    padding: 0px 19px;
  }

  .struct__item:nth-of-type(1) {
    padding: 0;
  }

  .struct__item:nth-of-type(1) .struct__item-title {
    background: #fff;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36%;
    padding-left: 22px;
  }

  .struct__item:nth-of-type(1) .struct__item-title img {
    max-width: 100%;
    width: 50px;
    height: auto;
  }

  .blocks__blue {
    width: auto;
    height: auto;
    padding: 26px 30px 26px 29px;
    margin-top: 202px;
  }

  .blocks__blue h3 {
    font-size: 35px;
    line-height: 100%;
  }

  .blocks__blue p {
    font-size: 12px;
    line-height: 130%;
  }

  .blocks {
    height: 550px;
    min-height: 570px;
    margin-top: -40px;
  }

  .gallerys {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 115px;
  }

  .gallerys div {
    border-radius: 10px;
    overflow: hidden;
  }

  .gallerys img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
    transform: rotate(1);
    transition: 0.2s ease;
    max-width: 100%;
  }

  .gallerys img:hover {
    transform: rotate(1.1);
    transition: 0.2s ease;
  }

  .i1 {
    grid-column: span 4; /* половина от 8 колонок */
    grid-row: span 2; /* 480px = 240px * 2 */
    height: 244px; /* твоя высота */
  }

  .i2,
  .i3,
  .i4,
  .i5 {
    grid-column: span 2; /* 2 колонки */
    grid-row: span 1; /* высота = 240px */
  }

  .i6,
  .i7,
  .i8,
  .i9,
  .i10,
  .i11,
  .i12,
  .i13 {
    grid-column: span 1; /* 1/8 ширины */
    grid-row: 3; /* ВСЕ в ОДНУ строку */
    height: 58px; /* как высота одной строки */
  }

  .btn-popup__block {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 26px;
  }

  .treners__tab-next,
  .treners__tab-prev {
    display: none;
  }

  .treners__tab {
    width: 100%;
    overflow-x: scroll;
    gap: 10px;
  }

  .treners__tab-btn {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #2552a7;
    height: 45px;
  }

  .treners__tab-btn:hover {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    height: 45px;
  }

  .treners__tab-btn--active {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    height: 45px;
    color: #fff;
  }

  .treners__slide-content {
    padding: 24px 22px 22px 26px;
  }

  .treners__slide-fio {
    font-size: 20px;
  }

  .treners__slide-dol {
    font-size: 12px;
  }

  .treners__slide-text span {
    font-size: 12px;
  }

  .treners__slide-text ul li {
    font-size: 12px;
  }

  .treners__slider-nav {
    display: none;
  }

  .awards__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .awards__image {
    height: 254px;
  }

  .awards__image img {
    max-width: 100%;
  }

  .awards__block-blue {
    width: auto;
    padding: 26px 30px 26px 29px;
    height: auto;
  }

  .awards__block-blue h3 {
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    color: #fff;
  }

  .awards__block-blue p {
    font-size: 12px;
  }

  .awards__block-btns {
    position: relative;
    flex-direction: column;
    right: 0px;
    bottom: 0px;
    gap: 10px;
  }

  .awards__block-btns .btn {
    width: 100%;
    padding: 0px 0px;
    height: 45px;
  }

  .awards__block-btns .btn__white {
    font-weight: 700;
    font-size: 11px;
    line-height: 130%;
  }

  .awards__block-btns .btn__blue {
    border: 1px solid #fff;
    font-weight: 700;
    font-size: 11px;
    line-height: 130%;
  }

  .blog {
    padding: 35px 0px 60px 0px;
  }

  .blog__item-image img {
    max-width: 100%;
    height: 100%;
    width: 100%;
  }

  .blog__list {
    height: 453px;
  }

  .blog__load {
    display: none;
  }

  .awards__slider-nav {
    display: none;
  }

  .faq::after {
    width: 427px;
    height: 427px;
  }

  .faq__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .section__top h3 {
    width: 80%;
  }

  .questions-item__control {
    height: 70px;
  }

  .questions-item__title {
    font-size: 12px;
  }

  .social__name {
    font-size: 35px;
  }

  .social__btns {
    flex-direction: column;
  }

  .social__btn {
    width: 100%;
  }

  .blog__list {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: scroll;
    min-width: 1200px;
  }



  .blog__item {
    width: 68%;
  }

  .questions__list {
    gap: 10px;
  }

  .questions-item {
    margin-bottom: 0px;
  }

  .awards {
    padding: 40px 0px 40px 0px;
  }

  .blog__item-title {
    font-size: 12px;
    padding: 20px 22px 10px 22px;
  }

  .blog__item-descr {
    font-size: 12px;
    padding: 7px 22px 10px 22px;
  }

  .gallerys__tab-next {
    display: none;
  }

  .gallerys__tab-prev {
    display: none;
  }

  .gallerys__tab-btn {
    font-size: 12px;
  }
  .gallerys {
    max-width: 1200px;
    width: 1200px;
    overflow-x: scroll;
  }
  .gallerys__tabs {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
  }
  .footer {
    padding-top: 17px;
  }

  .footer__content {
    flex-direction: column;
    position: relative;
  }

  .footer__container {
    position: relative;
  }

  .footer__socials {
    position: absolute;
    top: 120px;
  }

  .footer__logo {
    margin-bottom: 100px;
  }

  .footer__row {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: 20px;
    padding-right: 0px;
  }

  .footer__menus {
    width: 46%;
  }
  .footer__line {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 35px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .modal__content h2 {
    font-size: 35px;
  }
  .modal__content-rows {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  .modal__content {
    display: flex;
    flex-direction: column;
    gap: 19px;
    overflow-y: scroll;
    height: 700px;
  }
  .awards__block-blue {
    border-radius: 20px;
  }
  .blocks__blue {
    border-radius: 20px;
  }
  .schedule__block {
    width: auto;
  }
  .yandex-reviews-block {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 760px;
    height: 600px;
    overflow: hidden;
    position: relative;
  }
  .gallery {
    padding-top: 80px;
    background: #fff;
    border-radius: 0px 0px 20px 20px;
  }
  .gallerys::-webkit-scrollbar {
    display: none;
  }
  /* Firefox */
  .gallerys {
    scrollbar-width: none;
  }

  /* IE, Edge */
  .gallerys {
    -ms-overflow-style: none;
  }

  .treners__tab::-webkit-scrollbar {
    display: none;
  }

  /* Firefox */
  .treners__tab {
    scrollbar-width: none;
  }

  /* IE, Edge */
  .treners__tab {
    -ms-overflow-style: none;
  }
  .blog__container {
    width: auto;
    overflow-x: scroll;
  }
  .blog__container::-webkit-scrollbar {
    display: none;
  }

  .blog__item {
    height: 305px;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Firefox */
  .blog__container {
    scrollbar-width: none;
  }
  .blog__item-image {
    height: 153px;
  }

  .blog__list {
    height: 363px;
    margin-top: 36px;
    margin-bottom: 0px;
  }

  /* IE, Edge */
  .blog__container {
    -ms-overflow-style: none;
  }
  .schedule {
    padding: 60px 0px 40px 0px;
  }
  .schedule__tab-lists {
    padding: 0px;
    max-width: 100%;
    margin: 0;
  }
  .filosof__containers {
    -ms-overflow-style: none;
  }
  .filosof__containers::-webkit-scrollbar {
    display: none;
  }
  .filosof__item {
    gap: 10px;
  }
  .filosof__list {
    flex-direction: row;
    width: 100%;
    gap: 10px;
    overflow-x: scroll;
    min-width: 600px;
  }
  .filosof__item:nth-of-type(2) {
    flex-direction: column;
  }
  .filosof__item-image img {
    min-height: 280px;
  }
  .filosof__containers {
    width: auto;
    overflow-x: scroll;
  }
  .blocks {
    background: url("../img/advantage-bg-mob.png");
    height: 684px;
    background-repeat: no-repeat;
    min-height: 554px;
    margin-top: 0px;
    padding-top: 0px;
    background-size: cover;
  }
  .blocks__blue {
    padding-top: 230px;
  }
  .treners__contents {
    padding-left: 20px;
  }
  .treners__tab-lists {
    max-width: 100%;
    gap: 10px;
  }
  .social {
    background: url("../img/social-bg-mob.png");
    background-position: top center;
    border-radius: 10px 10px 0px 0px; 
    overflow: hidden;
    height: 700px;
  }
  .filials__item.open .filials__item-image {
    padding-right: 20px;
  }
  .awards .container {
    padding: 0px 0px;
  }
  .awards .section__top {
    padding: 0px 20px;
  }
  .awards .awards__slider-block {
    padding: 0px 0px 0px 20px;
  }
  .awards .awards__container {
    padding: 0px 20px;
  }
  .obyevlenie .container {
    padding: 0px 0px;
  }
  .obyevlenie .obyevlenie__top {
    padding: 0px 20px;
  }
  .obyevlenie .obyevlenie__slider-block {
    padding: 0px 0px 0px 20px;
  }
  .schedule .container {
    padding: 0px 0px;
  }
  .schedule .schedule__top {
    padding: 0px 20px;
  }
  .schedule .schedule__tabs {
    padding: 0px 0px 0px 20px;
  }
  .blog .container {
    padding: 0px 0px;
  }
  .blog .section__top {
    padding: 0px 20px;
  }
  .blog .blog__container {
    padding: 0px 0px 0px 20px;
  }
}

@media (max-width: 520px) {
  .treners__tab-lists {
    max-width: 100%;
    gap: 10px;
  }
  .header__mobile {
    display: block;
    height: 100vh;
    width: 70%;
    position: absolute;
    top: 0;
    right: -1500px; /* Изначально блок скрыт за экраном слева */
    transition: transform 0.5s ease; /* Плавная анимация */
    background: #2552a7;
    z-index: 9999999;
    display: none;
  }
  .header__mobile-close {
    border: none;
    position: absolute;
    right: 20px;
    top: auto;
    cursor: pointer;
    background: transparent;
  }
  .header__mobile.open {
    display: block;
    z-index: 9999;
    right: 0;
    transform: translateX(0px);
  }
  .header__mobile-container {
    display: flex;
    flex-direction: column;
    padding: 0px 0px 0px 0px;
  }
  .header__mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header__mobile-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0px 30px;
  }
  .header__mobile-bottom {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 0px;
    gap: 30px;
    bottom: 30px;
    left: 22px;
  }
  .header__mobile-menu {
    padding-top: 0px;
  }
  .header__mobile-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px 0px;
    padding: 0px 15px 0px 22px;
  }
  .header__mobile-menu ul li {
    list-style: none;
  }
  .header__mobile-menu ul li a {
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }
  .header__loginmob {
    display: flex;
    padding-left: 22px;
    padding-top: 49px;
  }
  .header__loginmob a span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100%;
  }
  .header__loginmob a {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-decoration: none;
  }
  .header__popupmob {
    display: flex;
    border: none;
    cursor: pointer;
    background: #fff;
    border-radius: 5px;
    width: max-content;
    height: 35px;
    font-weight: 700;
    font-size: 10px;
    line-height: 130%;
    text-align: center;
    color: #2552a7;
    padding: 0px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__socialsmob {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .header__socialsmob .header__social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2552a7;
    border: 1px solid #fff;
    border-radius: 100%;
  }
  .header__main {
    padding: 15px 20px;
  }
  .header__socials {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .header__login {
    display: none;
  }
  .header__popup {
    display: none;
  }
  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2552a7;
    border-radius: 100%;
    border: none;
    cursor: pointer;
  }

  .main__bals {
    width: 520px;
    top: 65%;
    left: -11%;
  }

  .main__bals img {
    width: 100%;
  }

  .main__bals img {
    max-width: 100%;
  }

  .containers {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 20px;
  }

  .filosof .container {
    padding: 0;
  }

  .filosof .filosof__container {
    padding: 0px 20px;
  }

  .filosof .filosof__containers {
    padding: 0px 0px 0px 20px;
  }

  .main {
    height: 600px;
    padding-top: 160px;
  }

  .main__content {
    width: auto;
  }

  .main__content h1 {
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 11px;
  }

  .main__content p {
    width: auto;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: #000;
  }

  .main__btn {
    margin: 16px auto 0 auto;
  }

  .btn__tren {
    display: none;
  }

  .main__right {
    width: auto;
    margin-top: 32px;
    position: relative;
    z-index: 19;
  }

  .main__rows {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }

  .main__item span {
    font-weight: 400;
    font-size: 45px;
    line-height: 100%;
    color: #2552a7;
  }

  .main__item p {
    font-weight: 400;
    font-size: 10px;
    line-height: 110%;
    color: #2552a7;
  }

  .swiper-button-prevOb,
  .swiper-button-nextOb {
    display: none;
  }

  .obyevlenie {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
  }

  .obyevlenie__slider-block {
    padding: 0px 0px;
  }

  .about {
    padding-top: 60px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    margin-top: -20px;
    padding-bottom: 61px;
  }
  .about__container {
    flex-direction: column;
    gap: 20px;
  }
  .about__image {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .about__image-big {
    width: 228px;
  }
  .about__image-mini {
    width: 155px;
    right: -10px;
    bottom: -80px;
  }
  .about__content {
    width: auto;
    padding-top: 60px;
  }

  .about__row {
    gap: 10px;
  }

  .about__title {
    font-size: 35px;
  }

  .about__text {
    font-size: 12px;
  }

  .about__item-icon {
    width: 55px;
    height: 55px;
  }

  .about__item-icon img {
    max-width: 100%;
    width: 30px;
  }

  .about__item-text {
    font-size: 10px;
  }

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

  .section__top h3 {
    font-size: 35px;
  }

  .filials__tab {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }

  .filials__tab-btn {
    font-size: 12px;
    height: 50px;
  }

  .filials__item-top {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0px;
  }

  .filials__item-image {
    height: 110px;
  }

  .filials__item-title {
    font-size: 35px;
  }

  .filials__item-tags {
    margin-top: 17px;
  }

  .filials__item-tag {
    font-size: 8px;
  }

  .filials__item-info {
    padding: 16px 20px;
  }

  .filials__item-show--btn {
    width: 40px;
    height: 40px;
    right: 20px;
    top: auto;
    bottom: 20px;
  }

  .schedule__top h3 {
    font-size: 35px;
  }

  .schedule__tab-btn {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #2552a7;
    height: 45px;
  }

  .schedule__tab-btn:hover {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    height: 45px;
    color: #fff;
  }

  .schedule__tab-btn--active {
    color: #fff;
  }

  .schedule__tab-next {
    display: none;
  }

  .schedule__tab-prev {
    display: none;
  }

  .schedule__tabs {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
  }

  .schedule__tab {
    width: 1200px;
    gap: 10px;
    padding: 0px 0px;
    justify-content: flex-start;
  }

  .schedule__block {
    width: auto;
  }

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

  .filosof__image {
    width: 80%;
    margin: 0 auto;
  }

  .filosof__image img {
    max-width: 100%;
  }

  .filosof__content {
    padding-top: 0px;
    width: auto;
  }

  .filials__item-image img {
    width: 100%;
  }

  .filials__tab-btn:hover {
    font-size: 12px;
  }

  .treners__contents {
    padding-left: 20px;
  }

  .filosof__name {
    font-size: 35px;
    line-height: 100%;
  }
  .filosof__text {
    font-size: 12px;
  }

  .filosof__item-fio {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }
  .container {
    padding: 0px 20px;
  }

  .filosof__item-pechat {
    width: 160px;
    height: 160px;
    left: -30px;
    bottom: -30px;
  }

  .filosof__item-pechat img {
    max-width: 100%;
  }

  .filosof__item {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .filosof__item:nth-of-type(2) {
    flex-direction: column-reverse;
  }

  .filosof__item-image {
    height: 280px;
  }

  .filosof__item-image img {
    max-width: 100%;
  }

  .filosof__item-content {
    padding-top: 21px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 13px;
  }

  .filosof__item-content svg {
    height: 20px !important;
    width: 23px !important;
  }

  .filosof__item-content h4 {
    font-size: 12px;
    line-height: 130%;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .filosof__item-content p {
    font-size: 12px;
    line-height: 130%;
    position: relative;
    z-index: 3;
  }

  .advantages__lists {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .advantages__item {
    height: 165px;
  }

  .advantages__item-title {
    font-size: 12px;
  }

  .advantages__item-descr {
    font-size: 10px;
  }

  .advantages__item-image {
    border-radius: 10px;
    width: 114px;
    height: 80px;
  }

  .advantages__item-text {
    font-size: 12px;
  }

  .struct__list {
    padding: 0px 10px;
  }

  .struct__list {
    max-width: 100%;
  }

  .filosof {
    padding: 80px 0px 20px 0px;
    border-radius: 0px 0px 20px 20px;
  }
  .struct {
    padding: 120px 0px 40px 0px;
  }
  .treners {
    padding: 40px 0px;
    overflow: hidden;
  }

  .struct__item:nth-of-type(2)::after {
    height: 106px;
    right: -20px;
    content: "";
    position: absolute;
    background: url("../img/line-r-big--mob.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .struct__item:nth-of-type(3)::after {
    position: absolute;
    background: url("../img/line-l--mob.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 98px;
    width: 22px;
    left: 25px;
  }
  .struct__item:nth-of-type(4)::after {
    position: absolute;
    background: url("../img/line-r--mob.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 98px;
    width: 22px;
    right: 25px;
  }
  .struct__item:nth-of-type(5)::after {
    position: absolute;
    background: url("../img/line-l--mob.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 98px;
    width: 22px;
    left: 25px;
  }
  .struct__item:nth-of-type(6)::after {
    position: absolute;
    background: url("../img/line-r--mob.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 98px;
    width: 22px;
    bottom: 50px;
    right: 25px;
  }
  .struct .section__top h3 {
    width: 85%;
  }

  .struct__item {
    width: 80%;
  }

  .struct__item:nth-of-type(1) {
    flex-direction: row;
  }

  .struct__item:nth-of-type(1) .struct__item-text {
    font-size: 20px;
    line-height: 120%;
    padding-left: 22px;
  }

  .struct__item:nth-of-type(1) {
    height: 114px;
  }

  .struct__item {
    background: url("../img/bg-str.png");
    height: 42px;
    flex-direction: column;
    padding: 19px 0px;
    gap: 7px;
  }

  .struct__item-text {
    width: auto;
    padding-left: 0;
    font-size: 12px;
    padding: 0px 19px;
  }

  .struct__item-title {
    background: transparent;
    width: auto;
    padding-left: 0px;
    border-right: 0;
    font-size: 12px;
    padding: 0px 19px;
  }

  .struct__item:nth-of-type(1) {
    padding: 0;
  }

  .struct__item:nth-of-type(1) .struct__item-title {
    background: #fff;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36%;
    padding-left: 22px;
  }

  .struct__item:nth-of-type(1) .struct__item-title img {
    max-width: 100%;
    width: 50px;
    height: auto;
  }

  .blocks__blue {
    width: auto;
    height: auto;
    padding: 26px 30px 26px 29px;
    margin-top: 282px;
  }

  .blocks__blue h3 {
    font-size: 35px;
    line-height: 100%;
  }

  .blocks__blue p {
    font-size: 12px;
    line-height: 130%;
  }

  .blocks {
    height: 550px;
    min-height: 570px;
    margin-top: -40px;
  }

  .gallerys {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 117px;
  }

  .gallerys div {
    border-radius: 10px;
    overflow: hidden;
  }

  .gallerys img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
    transform: rotate(1);
    transition: 0.2s ease;
    max-width: 100%;
  }

  .gallerys img:hover {
    transform: rotate(1.1);
    transition: 0.2s ease;
  }

  .i1 {
    grid-column: span 4; /* половина от 8 колонок */
    grid-row: span 2; /* 480px = 240px * 2 */
    height: 244px; /* твоя высота */
  }

  .i2,
  .i3,
  .i4,
  .i5 {
    grid-column: span 2; /* 2 колонки */
    grid-row: span 1; /* высота = 240px */
  }

  .i6,
  .i7,
  .i8,
  .i9,
  .i10,
  .i11,
  .i12,
  .i13 {
    grid-column: span 1; /* 1/8 ширины */
    grid-row: 3; /* ВСЕ в ОДНУ строку */
    height: 58px; /* как высота одной строки */
  }

  .btn-popup__block {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 26px;
  }

  .treners__tab-next,
  .treners__tab-prev {
    display: none;
  }

  .treners__tab {
    width: 100%;
    overflow-x: scroll;
    gap: 10px;
  }

  .treners__tab-btn {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #2552a7;
    height: 45px;
  }

  .treners__tab-btn:hover {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    height: 45px;
  }

  .treners__tab-btn--active {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    height: 45px;
    color: #fff;
  }

  .treners__slide-content {
    padding: 24px 22px 22px 26px;
  }

  .treners__slide-fio {
    font-size: 20px;
  }

  .treners__slide-dol {
    font-size: 12px;
  }

  .treners__slide-text span {
    font-size: 12px;
  }

  .treners__slide-text ul li {
    font-size: 12px;
  }

  .treners__slider-nav {
    display: none;
  }

  .awards__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .awards__image {
    height: 254px;
  }

  .awards__image img {
    max-width: 100%;
  }

  .awards__block-blue {
    width: auto;
    padding: 26px 30px 26px 29px;
    height: auto;
  }

  .awards__block-blue h3 {
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    color: #fff;
  }

  .awards__block-blue p {
    font-size: 12px;
  }

  .awards__block-btns {
    position: relative;
    flex-direction: column;
    right: 0px;
    bottom: 0px;
    gap: 10px;
  }

  .awards__block-btns .btn {
    width: 100%;
    padding: 0px 0px;
    height: 45px;
  }

  .awards__block-btns .btn__white {
    font-weight: 700;
    font-size: 11px;
    line-height: 130%;
  }

  .awards__block-btns .btn__blue {
    border: 1px solid #fff;
    font-weight: 700;
    font-size: 11px;
    line-height: 130%;
  }

  .blog {
    padding: 40px 0px 10px 0px;
  }

  .blog__item-image img {
    max-width: 100%;
    height: 100%;
    width: 100%;
  }

  .blog__list {
    height: 453px;
  }

  .blog__load {
    display: none;
  }

  .awards__slider-nav {
    display: none;
  }

  .faq {
    padding-top: 20px;
  }

  .faq::after {
    width: 427px;
    height: 427px;
  }

  .faq__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .section__top h3 {
    width: 80%;
  }

  .questions-item__control {
    height: 70px;
  }

  .questions-item__title {
    font-size: 12px;
  }

  .social__name {
    font-size: 35px;
  }

  .social__btns {
    flex-direction: column;
  }

  .social__btn {
    width: 100%;
  }

  .blog__list {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: scroll;
    min-width: 1200px;
  }

  .blog__item {
    width: 68%;
  }

  .gallerys__tab-next {
    display: none;
  }

  .gallerys__tab-prev {
    display: none;
  }

  .gallerys__tab-btn {
    font-size: 12px;
  }
  .gallerys {
    max-width: 1200px;
    width: 1200px;
    overflow-x: scroll;
  }
  .gallerys__tabs {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
  }
  .footer {
    padding-top: 17px;
  }

  .footer__content {
    flex-direction: column;
    position: relative;
  }

  .footer__container {
    position: relative;
  }

  .footer__socials {
    position: absolute;
    top: 120px;
  }

  .footer__logo {
    margin-bottom: 100px;
  }

  .footer__row {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: 20px;
    padding-right: 0px;
  }

  .footer__menus {
    width: 46%;
  }
  .footer__line {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 35px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .gallerys::-webkit-scrollbar {
    display: none;
  }
  /* Firefox */
  .gallerys {
    scrollbar-width: none;
  }

  /* IE, Edge */
  .gallerys {
    -ms-overflow-style: none;
  }

  .treners__tab::-webkit-scrollbar {
    display: none;
  }

  /* Firefox */
  .treners__tab {
    scrollbar-width: none;
  }

  /* IE, Edge */
  .treners__tab {
    -ms-overflow-style: none;
  }
  .blog__container {
    width: auto;
    overflow-x: scroll;
  }
  .blog__container::-webkit-scrollbar {
    display: none;
  }

  .blog__item {
    height: 305px;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Firefox */
  .blog__container {
    scrollbar-width: none;
  }
  .blog__item-image {
    height: 153px;
  }

  .blog__list {
    height: 363px;
    margin-top: 36px;
    margin-bottom: 0px;
  }

  /* IE, Edge */
  .blog__container {
    -ms-overflow-style: none;
  }
  .btn__blue {
    font-size: 10px;
    height: 40px;
  }
  .btn__white {
    font-size: 10px;
    height: 40px;
  }
  .obyevlenie__slide p {
    font-size: 12px;
  }
   .filosof__item:nth-of-type(2) {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .main__bals {
    width: 400px;
    top: 70%;
    left: -4%;
  }
   .filosof__item:nth-of-type(2) {
    flex-direction: column;
  }
  .blocks__blue h3 {
    width: auto;
  }
  .blocks__blue {
    margin-top: 262px;
  }
  .blog__list {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: scroll;
    min-width: 1050px;
  }
  .questions-item__control {
    padding: 30px 20px 30px 0px;
  }
  .questions-item__icon {
    width: 40px;
  }
  .struct .section__top h3 {
    width: 98%;
  }
}

:root{
	--accent: #2552a7;
}

html{
	scroll-padding-top:30px;
	overflow:hidden scroll;
	&:has(.header__mobile.open){
		overflow:hidden;
	}
	&:has(.modal.is-open){
		overflow:hidden;
	}
}

body{
	overflow:hidden;
	min-width:360px;
}

.header{
	min-width:360px;
}

.header__mobile{
	position:fixed;
	bottom:0;
	height:auto;
}

.cover-img {
  display: flex;
  overflow: hidden;
  will-change: transform;
  picture,
  img,
  video,
  canvas {
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
}

.filials__slider{
	margin:0;
	width:auto;
	overflow:hidden;
	border-radius:20px;
	will-change:transform;
}

.filials__item.open .filials__item-image img{
	border-radius:0;
}

.swiper-button-prevf,
.swiper-button-nextf{
	border:solid 1px transparent;
	&:hover{
		background-color:#fff;
		border-color:var(--accent);
		path{
			stroke:var(--accent);
		}
	}
}

.schedule__tab-prev,
.schedule__tab-next,
.treners__tab-prev,
.treners__tab-next,
.gallerys__tab-prev,
.gallerys__tab-next{
	user-select:none;
}

.advantages-modal{
	display:none;
}

.awards{
	overflow:hidden;
}

.awards__swiper{
	overflow:visible;
}

.awards__slide{
	width:260px;
}

.modal{
	overflow:hidden auto;
	flex-direction:column;
	align-items:unset;
	justify-content:unset;
	padding:20px 0;
}

.modal__dialog{
	margin:auto;
	flex:none;
}

.modal__content-text{
	overflow:visible;
	max-height:unset;
}

.questions-item__icon{
	flex:none;
	height:auto;
	aspect-ratio:1;
}

.faq{
	&:after{
		    animation: ballRotate 60.2s linear infinite;
			 background-position:center;
	}
}

.social__btn-tg{
	&:hover{
		background-color:#1080ba;
	}
}

.social__btn-vk{
	&:hover{
		background-color:#1d4caf;
	}
}

.social__btn-max{
	&:hover{
		background:linear-gradient(130deg, #8b4ce6 0%, #324cf0 50%, #4ac2fd 100%)
	}
}

.footer__menus ul li a{
	&:hover{
		text-decoration:underline;
	}
}

.header__login{
	@media (width > 1440px){
		margin-right:22px;
	}
}

.form__control{
	box-sizing:border-box;
	width:100%;
}

.checkbox-label{
	display:inline-flex;
	align-items:flex-start;
	gap:8px;
}

.form__blokc{
	width:304px;
	max-width:100%;
}

.modal__close{
	@media (width < 768px){
		svg{
			width:32px;
			height:32px;
		}
	}
}

.filials__item-tags{
	margin:10px 0;
}

.filials__item-texts{
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	gap:16px;
	padding-right:20px;
	@media (width < 1024px){
		flex-direction:column;
		align-items:flex-start;
	}
}

.filials__item-bottom--call{
	position:static;
}

.schedule__tabs,
.gallerys__tabs{
	overflow:visible;
	box-sizing:border-box;
}

.treners__tabs{
	display:block;
}

.schedule__tab,
.treners__tab,
.gallerys__tab{
	box-sizing:border-box;
	overflow:visible!important;
	width:auto!important;
}

.schedule__tab-btn{
	flex:none;
}

.schedule__contents,
.gallerys__content{
	overflow-x:auto;
	box-sizing:border-box;
	
	@media (width < 1111px){
		margin-left:-20px;
		margin-right:-20px;
		padding-left:20px;
		padding-right:20px;
	}
}

.gallerys__content{
	  padding-bottom:30px;
	-ms-overflow-style: none;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.schedule__tab-lists,
.treners__tab-lists,
.gallerys__tab-lists{
	@media (width < 881px){
		width:auto;
		box-sizing:border-box;
		margin:0 -20px;
		padding:0 20px;
		overflow-x:auto;
		max-width:unset;
		
	}
}

.header__main-left{
	@media (width < 1200px){
		gap:10px;
	}
}

.header__popup{
	@media (width < 1024px){
		padding:0 12px;
	}
}

.header__phone a,
.header__menu ul li a{
	@media (width < 1024px){
		font-size:11px;
		white-space:nowrap;
	}
}

.header__login a{
	@media (width < 1024px){
		font-size:0;
		gap:0;
	}
}

.header__main-right{
	@media (width < 1024px){
		gap:10px;
	}
}

.header__menu ul{
	@media (width < 1024px){
		margin:0;
		gap:10px;
	}
}

.struct__list{
	@media (width < 881px){
		padding:0;
	}
}

.struct__item{
	@media (width < 1024px){
		max-width:unset!important;
		width:calc(100% - 108px);
	}
	@media (width < 521px){
		width:calc(100% - 20px);
	}
}

.struct__item:nth-of-type(1) .struct__item-title{
	@media (width < 881px){
		font-size:0;
	}
}

.struct__item{
	position:relative;
	overflow:visible;
	&:nth-child(even){
		&:after{
			right:unset!important;
			left:100%!important;
			bottom:50%!important;
		}
	}
	&:nth-child(odd){
		&:after{
			left:unset!important;
			right:100%!important;
			bottom:50%!important;
		}
	}
}

.struct__item-title{
	border-radius:20px 0 0 20px;
	box-sizing:border-box;
}

.struct__item-text{
	border-radius:0 20px 20px 0;
	padding-right:16px;
	box-sizing:border-box;
}

.treners__slider{
	overflow:visible;
}

.treners__slide{
	width:430px;
	@media (width < 1024px){
		width:256px;
	}
}

.treners__contents{
	padding:0!important;
}

.advantages__item-image{
	max-width:calc(100% - 24px);
	position:static;
}

.advantages__item-vid--front{
	justify-content:space-between;
	padding-top:20px;
}

.filials__item-sliders{
	.filials__item-image-slide{
		aspect-ratio:520/450;
	}
}

.filials__maps-item{
	cursor:pointer;
}

.filosof__containers{
	@media (width < 621px){
		overflow:visible;
	}
}


.filosof__list{
	@media (width < 621px){
		width:auto;
		min-width:0;
		display:flex;
		box-sizing:border-box;
		margin-left:-20px;
		margin-right:-20px;
		padding-left:20px;
		padding-right:20px;
		-ms-overflow-style: none;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
	}
}

.filosof__item{
	@media (width < 621px){
		flex:none;
		width:256px;
	}
}

.filosof__item-content{
	@media (width < 621px){
		flex:auto;
	}
}

.footer__social{
	a{
		&:hover{
			opacity:.7;
		}
	}
}

.footer__links{
	margin:0 auto;
}

.main__content{
	h1{
		margin-bottom:22px;
	}
}

.g-recaptcha {
  display: flex;
  position: relative;
  width: fit-content;
  & > div {
    & > div {
      display: flex;
    }
  }
}

.g-recaptcha-response {
  display: block !important;
  position: absolute !important;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
}