@media screen and (max-width: 1499px) {
  .header-logo {
    width: 130px;
  }

  .nav__link {
    font-size: 16px;
  }

  .header__phone {
    font-size: 16px;
  }

  .header__phone-call-time {
    bottom: -24px;
    font-size: 11px;
  }

  .header-container::after {
    left: 47%;
    width: 600px;
    height: 600px;
  }

  .hero__wrap::before {
    left: 58%;
  }

  .hero__wrap::after {
    left: 65%;
  }

  .page__title {
    max-width: 650px;
  }

  .page__sub-title {
    max-width: 570px;
  }

  .about-us .container::before {
    left: -500px;
  }

  .about-us .container::after {
    top: 74%;
    left: 91%;
  }

  .about-us__wrap {
    margin-left: unset;
    margin: 0 auto;
    padding: 100px 100px 0;
    width: 100%;
  }

  .about-us__wrap::before {
    display: none;
  }

  .groups__wrap {
    padding: 50px 0 0;
  }

  .groups__item-link {
    font-size: 24px;
  }

  .gallery {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(217, 59, 59, 1)), color-stop(62%, rgba(217, 59, 59, 1)), color-stop(62%, rgba(227, 194, 154, 1)), to(rgba(227, 194, 154, 1)));
    background: linear-gradient(0deg, rgba(217, 59, 59, 1) 0%, rgba(217, 59, 59, 1) 62%, rgba(227, 194, 154, 1) 62%, rgba(227, 194, 154, 1) 100%);
  }

  .gallery__wrap::before {
    width: 600px;
    height: 190px;
  }

  .gallery .container::after {
    width: 450px;
    height: 450px;
  }

  .gallery__header {
    top: 45px;
  }

  .gallery__slider {
    width: 350px;
  }

  .camp__info {
    width: 400px;
  }

  .camp__date-title,
  .camp__date {
    font-size: 68px;
  }

  .camp__request-btn {
    font-size: 34px;
  }

  .contacts {
    padding-bottom: 550px;
  }

  .contacts__info {
    width: calc(45% - 25px);
  }

  .contacts__record {
    padding: 50px 50px 30px;
    width: calc(55% - 25px);
  }

  /*.contacts__link {*/
  /*  font-size: 26px;*/
  /*}*/
  .contacts__form-title {
    font-size: 24px;
    line-height: 130%;
  }
}

@media screen and (max-width: 1199px) {
  .stop-scroll {
    padding-right: 0;
  }

  .section-title {
    font-size: 62px;
  }

  .header {
    background-color: #d93b3b;
  }

  .header-container {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header-container::after {
    display: none;
  }

  .header-logo {
    margin-right: 0;
  }

  .header__phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: unset;
  }

  .header__phone {
    padding: 0;
    font-size: 42px;
    color: #fff;
  }

  .header__phone-call-time {
    position: static;
    font-size: 22px;
    color: #fff;
  }

  .burger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 60px;
    height: 60px;
    outline: none;
    color: #fff;
    z-index: 10000;
  }

  .burger__line {
    position: absolute;
    display: block;
    height: 10px;
    background-color: #fff;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
  }

  .burger__line:nth-child(1) {
    width: 100%;
    top: 4px;
  }

  .burger__line:nth-child(2) {
    top: 45%;
    width: 77%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  .burger__line:nth-child(3) {
    width: 55%;
    bottom: 0;
  }

  .burger--active .burger__line:nth-child(2) {
    position: relative;
    top: 50%;
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  .burger--active .burger__line:nth-child(1) {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    background-color: #d93b3b;
  }

  .burger--active .burger__line:nth-child(3) {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    -webkit-transform: rotate(-315deg);
    transform: rotate(-315deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    background-color: #d93b3b;
  }

  .nav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99;
  }

  .nav.nav--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 40px 0;
    overflow-y: auto;
  }

  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    row-gap: 20px;
  }

  .nav__item {
    text-align: center;
  }

  .nav__item:not(:last-child) {
    margin-right: unset;
  }

  .nav__link {
    font-size: 52px;
    color: #fff;
  }

  .hero__container {
    padding-top: 20px;
  }

  .hero__wrap {
    padding: 0;
  }

  .page__sub-title {
    max-width: 600px;
  }

  .hero__wrap::before {
    left: 64%;
  }

  .about-us::after {
    left: 94%;
  }

  .about-us__wrap {
    padding: 100px 0 0 100px;
  }

  .advantages__item {
    width: calc((100% - 50px) / 3);
  }

  .advantages__title {
    font-size: 16px;
  }

  .groups {
    padding-bottom: 80px;
  }

  .groups__wrap {
    -ms-grid-columns: calc((100% - 2 * 25px) / 3) calc((100% - 2 * 25px) / 3) calc((100% - 2 * 25px) / 3);
    grid-template-columns: repeat(3, calc((100% - 2 * 25px) / 3));
  }

  .groups__header {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }

  .groups__header::after {
    display: none;
  }

  .groups__info {
    width: 100%;
    max-width: 100%;
  }

  .groups__item {
    width: 100%;
    height: max-content;
  }

  .groups__item--1 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / span 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .groups__item--2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .groups__item--3 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .groups__item--4 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .groups__item-title {
    background-color: #ffffffcf;
  }

  .groups__programs-item {
    font-size: 14px;
  }

  .groups__item .groups__item-link {
    display: block;
  }

  .gallery {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(217, 59, 59, 1)), color-stop(52%, rgba(217, 59, 59, 1)), color-stop(52%, rgba(227, 194, 154, 1)), to(rgba(227, 194, 154, 1)));
    background: linear-gradient(0deg, rgba(217, 59, 59, 1) 0%, rgba(217, 59, 59, 1) 52%, rgba(227, 194, 154, 1) 52%, rgba(227, 194, 154, 1) 100%);
  }

  .gallery__header {
    left: 373px;
    top: 95px;
  }

  .gallery__wrap .section-title {
    margin-right: 0;
    margin-bottom: 50px;
  }

  .gallery__slider {
    margin: 0 auto;
    width: 260px;
    -webkit-transform: unset;
    transform: unset;
  }

  .gallery__slider-prev-btn, .gallery__slider-next-btn {
    width: 74px;
    height: 29px;
  }

  .gallery__slider-prev-btn {
    left: -58px;
  }

  .gallery__slider-next-btn {
    right: -58px;
  }

  .coaches__wrap .section-title {
    margin-bottom: 25px;
  }

  .coaches__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .coaches__item {
    width: 80%;
  }

  .coaches__item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .coaches__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .coaches__title {
    margin-bottom: 10px;
  }

  .coaches__first-name {
    font-size: 18px;
  }

  .coaches__sub-title {
    font-size: 20px;
  }

  .schedule .container::before {
    height: 870px;
  }

  .schedule .section-title span {
    height: 43px;
  }

  .schedule__wrap {
    position: relative;
    padding: 50px 0 0;
    z-index: 10;
  }

  .camp::after {
    right: -18%;
    width: 300px;
    height: 300px;
  }

  .camp__wrap {
    padding: 30px 0 0;
  }

  .camp__info {
    width: 340px;
  }

  .camp__date-title, .camp__date {
    font-size: 58px;
  }

  .camp__request-btn {
    font-size: 30px;
  }

  .contacts {
    padding-bottom: 380px;
  }

  .contacts__wrap {
    padding: 50px 0 0;
  }

  .contacts__info {
    width: calc(47% - 5px);
  }

  .contacts__record {
    padding: 25px;
    width: calc(53% - 5px);
  }

  /*.contacts__link {*/
  /*  font-size: 22px;*/
  /*}*/
  .contacts__map {
    height: 400px;
  }
}

@media screen and (max-width: 874px) {
  .hero__wrap::after {
    left: 45%;
  }

  .page__title {
    font-size: 80px;
  }

  .page__sub-title {
    margin-bottom: 25px;
    max-width: 452px;
    font-size: 26px;
  }

  .hero__action {
    margin-bottom: 25px;
    gap: 20px;
  }

  .hero__btn {
    font-size: 20px;
  }

  .hero__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .hero__advantages {
    margin-right: 0;
    margin-bottom: 25px;
    max-width: 500px;
  }

  .about-us::before {
    display: none;
  }

  .about-us .container::before {
    display: none;
  }

  .about-us__wrap {
    padding: 0;
  }

  .about-us__info-wrap {
    margin-bottom: 0;
  }

  .advantages__item {
    width: calc((100% - 25px) / 2);
  }

  .groups__wrap {
    -ms-grid-columns: calc((100% - 25px) / 2) calc((100% - 25px) / 2);
    grid-template-columns: repeat(2, calc((100% - 25px) / 2));
    -ms-grid-rows: auto auto auto;
    grid-template-rows: repeat(3, auto);
  }

  .groups__wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .groups__wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .groups__wrap > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .groups__wrap > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .groups__wrap > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .groups__wrap > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }

  .groups__header {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    margin-bottom: 25px;
    gap: 25px;
  }

  .groups__info {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  /*.groups__item {*/
  /*  width: 100%;*/
  /*}*/
  .groups__item--1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .groups__item--2 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .groups__item--3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .groups__item--4 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .group__item-info {
    -webkit-transform: none;
    transform: none;
  }

  .gallery__wrap {
    padding: 10px 0 50px;
  }

  .gallery__header {
    top: 148px;
  }

  .gallery__header .section-title {
    font-size: 48px;
  }

  .coaches .container::before {
    left: -270px;
  }

  .coaches__wrap {
    padding: 0;
  }

  .schedule .container::before {
    height: 910px;
  }

  .schedule__wrap {
    padding: 0;
  }

  .camp::after {
    top: 155px;
  }

  .camp__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .camp__video {
    margin-bottom: 25px;
    width: 100%;
  }

  .camp__info {
    width: 100%;
  }

  .camp__date-title, .camp__date {
    font-size: 94px;
  }

  .camp__request-btn {
    font-size: 50px;
  }

  .contacts__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .contacts__info {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
  }

  .contacts__list {
    align-items: center;
  }

  .contacts__social-list {
    justify-content: center;
  }

  .contacts__social-link {
    filter: grayscale(0);
  }

  .contacts__record {
    padding: 48px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .modal__box {
    height: auto;
  }

  .header-logo {
    width: 100px;
  }

  .header__phone {
    font-size: 28px;
  }

  .header__phone-call-time {
    bottom: -20px;
    font-size: 16px;
  }

  .nav__link {
    font-size: 38px;
  }

  .burger {
    width: 40px;
    height: 40px;
  }

  .burger__line {
    height: 5px;
  }

  .burger__line:nth-child(3) {
    bottom: 3px;
  }

  .section-title {
    font-size: 52px;
  }

  .hero__wrap::before {
    left: 75%;
  }

  .page__title {
    max-width: 500px;
    font-size: 62px;
  }

  .page__sub-title {
    max-width: 440px;
    font-size: 24px;
  }

  .hero__btn {
    font-size: 16px
  }

  .hero__wrap .page__trial-session {
    font-size: 20px;
  }

  .hero__advantages {
    max-width: 410px;
  }

  .gallery {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(217, 59, 59, 1)), color-stop(50%, rgba(217, 59, 59, 1)), color-stop(50%, rgba(227, 194, 154, 1)), to(rgba(227, 194, 154, 1)));
    background: linear-gradient(0deg, rgba(217, 59, 59, 1) 0%, rgba(217, 59, 59, 1) 50%, rgba(227, 194, 154, 1) 50%, rgba(227, 194, 154, 1) 100%);
  }

  .gallery .container::after {
    display: none;
  }

  .gallery .container::before {
    display: none;
  }

  .gallery__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 100px;
  }

  .gallery__wrap::before {
    display: none;
  }

  .gallery__header {
    position: relative;
    top: unset;
    left: unset;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
    -webkit-transform: unset;
    transform: unset;
  }

  .gallery__header .section-title {
    text-align: center;
  }

  .gallery__video {
    width: 320px;
    -webkit-transform: none;
    transform: none;
  }

  .gallery__slider {
    width: 320px;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  .gallery__slider-prev-btn,
  .gallery__slider-next-btn {
    width: 60px;
    height: 22px;
  }

  .gallery__slider-prev-btn {
    left: -70px;
  }

  .gallery__slider-next-btn {
    right: -70px;
  }

  .about-us__info {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }

  .about-us__info:nth-child(odd) {
    margin-right: 20px;
  }

  .about-us__info-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .about-us__info-text {
    font-size: 14px;
  }

  .about-us__price-title {
    margin-right: 30px;
    font-size: 34px;
  }

  .about-us__price {
    font-size: 54px;
  }

  .about-us__price span {
    font-size: 24px;
    transform: translateY(-25px);
  }

  .about-us__price-block .page__trial-session {
    font-size: 16px;
  }

  .page__trial-session::before {
    margin-right: 5px;
  }

  .coaches .container::before {
    display: none;
  }

  .coaches .container::after {
    display: none;
  }

  .camp::after {
    display: none;
  }

  .camp__date-title, .camp__date {
    font-size: 74px;
  }

  .camp__request-btn {
    font-size: 40px;
  }

  .schedule .container::before {
    top: 80px;
  }

  .schedule .section-title span {
    height: 38px;
  }
}

@media screen and (max-width: 640px) {
  .groups__wrap {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto auto auto auto;
    grid-template-rows: repeat(5, auto);
    justify-items: center;
  }

  .groups__wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .groups__wrap > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .groups__wrap > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .groups__wrap > *:nth-child(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }

  .groups__wrap > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .groups__header {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .groups__item--1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .groups__item--2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .groups__item--3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 4;
    grid-row: 4;
  }

  .groups__item--4 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 5;
    grid-row: 5;
  }

  .groups__item {
    width: 100%;
    max-width: 400px;
  }

  .coaches__item {
    width: 85%;
  }

  .schedule__control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 0;
    gap: 0;
  }

  .schedule__control-title {
    padding: 5px;
  }

  .choices__inner {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 575px) {
  .section {
    padding: 20px 0;
  }

  .modal {
    padding: 0;
  }

  .modal__box {
    max-width: 99%;
  }

  .modal__close-btn {
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;
    z-index: 20;
  }

  .close-btn-line {
    width: 20px;
  }

  .header {
    padding: 10px 0;
  }

  .container {
    padding: 0 10px;
  }

  .header-logo {
    width: 70px;
  }

  .nav__link {
    font-size: 32px;
  }

  .header__phone {
    font-size: 18px;
  }

  .header__phone-call-time {
    bottom: -15px;
    font-size: 12px;
  }

  .burger {
    width: 30px;
    height: 30px;
  }

  .burger__line {
    height: 3px;
  }

  .hero__wrap {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .hero__wrap::before {
    display: none;
  }

  .hero__action {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }

  .hero__btn {
    width: 223px;
    text-align: center;
    font-size: 22px;
  }

  .page__trial-session {
    text-align: left;
  }

  .page__trial-session {
    text-align: center;
  }

  .page__trial-session::after {
    content: '';
    display: block;
    margin-left: 5px;
    width: 30px;
    height: 45px;
    background-image: url(../img/fire.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .hero__advantages {
    max-width: 300px;
    margin-bottom: 50px;
  }

  .hero__advantage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page__title {
    max-width: 100%;
    font-size: 42px;
  }

  .page__sub-title {
    max-width: 100%;
    font-size: 20px;
  }

  .addresses__item {
    font-size: 17px;
  }

  .hero__advantage-text {
    font-size: 17px;
  }

  /*.hero__lists {*/
  /*  gap: 50px;*/
  /*}*/

  .section-title {
    font-size: 36px;
    line-height: 100%;
  }

  .about-us__header {
    margin-bottom: 50px;
    width: 100%;
    max-width: 400px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-us__header .section-title {
    margin-bottom: 20px;
  }

  .about-us__note {
    text-align: center;
    font-size: 20px;
  }

  .about-us__note::before {
    transform: scaleX(-1);
  }

  .about-us__note::after {
    content: '';
    display: block;
    margin-left: 10px;
    width: 37px;
    height: 44px;
    background-image: url(../img/flag.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .about-us__info-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about-us__info {
    width: 100%;
    max-width: 400px;
  }

  .about-us__info:nth-child(odd) {
    margin-right: 0;
  }

  .about-us__price-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-us__price-title {
    margin-right: 0;
    font-size: 40px;
  }

  .about-us__price {
    font-size: 72px;
  }

  .about-us__price span {
    font-size: 28px;
    transform: translateY(-36px);
  }

  .about-us__price-block .page__trial-session {
    font-size: 24px;
  }

  .about-us__btn {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 17px;
  }

  .advantages__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .advantages__item {
    width: 100%;
    max-width: 400px;
  }

  .groups .section-title {
    margin-bottom: 0;
  }

  .groups__wrap {
    padding: 0 0 10px;
  }

  .groups__header {
    width: 100%;
    max-width: 400px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .groups__descr {
    font-size: 18px;
  }

  .groups__item {
    width: 100%;
    max-width: 400px;
  }

  .gallery__header {
    margin-bottom: 20px;
  }

  .gallery__header .section-title {
    font-size: 36px;
  }

  .gallery__video {
    width: 300px;
  }

  .gallery__slider {
    width: 230px;
  }

  .gallery__slider-prev-btn, .gallery__slider-next-btn {
    width: 50px;
    height: 20px;
  }

  .gallery__slider-prev-btn {
    left: -35px;
  }

  .gallery__slider-next-btn {
    right: -35px;
  }

  .coaches__list {
    row-gap: 50px;
  }

  .coaches__list .coaches__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }

  .coaches__item-image {
    width: 100%;
  }

  .coaches__last-name {
    font-size: 26px;
  }

  .coaches__first-name {
    font-size: 16px;
  }

  .coaches__sub-title {
    font-size: 16px;
  }

  .schedule {
    padding-bottom: 20px;
  }

  .schedule .container::before {
    display: none;
  }

  .schedule .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .schedule .section-title span {
    transform: rotate(90deg);
  }

  .schedule__control-title {
    font-size: 24px;
  }

  .choices__inner {
    padding-left: 5px;
    padding-right: 5px;
    min-width: 265px;
    font-size: 22px;
  }

  /*.schedule-card {*/
  /*  padding: 5px;*/
  /*  width: 285px;*/
  /*}*/
  /*.schedule-card:nth-child(1) {*/
  /*  width: 285px;*/
  /*}*/
  /*.schedule-card__title {*/
  /*  align-items: flex-start;*/
  /*  margin-bottom: 10px;*/
  /*}*/
  /*.group-name {*/
  /*  width: min-content;*/
  /*}*/
  /*.schedule-card__day {*/
  /*  width: 90px;*/
  /*  height: 90px;*/
  /*}*/
  /*.schedule-card__day-info {*/
  /*  font-size: 14px;*/
  /*}*/

  .schedule__department-coach {
    font-size: 18px;
  }

  .camp__video::before, .camp__video::after {
    display: none;
  }

  .camp__date-title, .camp__date {
    font-size: 54px;
  }

  .pdf-viewer {
    padding: 15px;
  }

  .pdf-controls {
    gap: 0;
  }

  .pdf-download .btn {
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
  }

  .camp__row:not(:last-child) {
    margin-bottom: 25px;
  }

  .camp__request-btn {
    font-size: 26px;
  }

  .news .section-title {
    margin-bottom: 25px;
  }

  /*.contacts__link {*/
  /*  font-size: 21px;*/
  /*}*/
  /*.contacts__link::before {*/
  /*  width: 35px;*/
  /*  height: 35px;*/
  /*}*/

  .contacts__wrap {
    padding: 0;
  }

  .contacts__link {
    font-size: 28px;
  }

  .contacts::after {
    display: none;
  }

  .contacts__record {
    padding: 20px;
    min-height: 420px;
  }

  .contacts__wrap .section-title {
    margin-bottom: 25px;
  }

  .contacts__form-title {
    font-size: 22px;
  }

  .contacts__form-label {
    margin-bottom: 25px;
  }

  .contacts__form-radio-label {
    padding: 5px;
  }

  .contacts__form-radio-label span {
    font-size: 12px;
  }

  .form-message {
    font-size: 20px;
  }
}
