@media (max-width: 1200px) {
  .header__container::after {
    content: none;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__massengers {
    align-items: flex-start;
  }
}

@media (max-width: 992px) {
  .nav__list {
    gap: 24px;
  }

  .approach__list {
    --columns: 2;
  }

  .form__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }

  .footer__massengers {
    align-items: flex-end;
    flex: 1;
  }

  .footer__form {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
  }

  .header__logo {
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: 50px;
  }

  .hero__descr {
    font-size: 16px;
  }

  .about__descr {
    max-width: 100%;
  }

  .program__list {
    max-width: 100%;
  }

  .program__descr {
    max-width: 100%;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__massengers {
    margin-left: auto;
  }

  .footer__form {
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 44px;
  }

  .approach__list {
    --columns: 1;
  }

  .header__container {
    flex-direction: row;
    align-items: center;
  }

  .header__logo {
    margin: 0;
  }

  .header__logo-img {
    width: 180px;
  }

  .burger {
    position: relative;
    border: 1px solid currentColor;
    border-radius: 3px;
    display: block;
    width: 44px;
    height: 44px;
    background-color: #fff;
    color: #0b3c5d;
    cursor: pointer;
    z-index: 1001;
  }

  .burger__line {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 3px;
    border-radius: inherit;
    transform: translateX(-50%);
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .burger__line:nth-child(1) {
    top: 13px;
  }

  .burger__line:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger__line:nth-child(3) {
    bottom: 13px;
  }

  .open .burger__line:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
  }

  .open .burger__line:nth-child(2) {
    opacity: 0;
  }

  .open .burger__line:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    background: #000;
    z-index: 1000;
    width: 100%;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .open .nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    padding: 20px 0;
    flex-direction: column;
    gap: 20;
  }

  .hero__title {
    font-size: 60px;
  }

  .program__btns {
    flex-direction: column;
  }

  .program__btn {
    margin-right: auto;
    min-width: 260px;
  }

  .program__item {
    padding: 20px 15px;
  }

  .footer__form {
    margin-bottom: 20px;
  }

  .footer__bottom-container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }

  .social {
    margin-left: auto;
  }

  .modal__content {
    padding: 40px 20px;
  }
}
