@media (max-width: 992px) {
    .nav {
        align-items: normal;
    }

    .text,
    .faq__content ul li {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .header__nav_burger {
        display: block;
        position: relative;
        width: 40px;
        height: 30px;
        cursor: pointer;
    }

    .header__nav_burger span {
        position: absolute;
        left: 0;
        background-color: #0078d4;
        width: 100%;
        height: 5px;
        border-radius: 10px;
    }

    .header__nav_burger span:nth-child(2) {
        top: 12.2px;
    }

    .header__nav_burger span:nth-child(3) {
        bottom: 0;
    }

    .nav {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav__list {
        margin-top: 20px;
        justify-content: center;
    }

    .nav__item {
        margin: 0 10px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 450px) {

    .text,
    .faq__content ul li {
        font-size: 16px;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .nav__link {
        font-size: 18px;
    }

    .hero__title,
    .title,
    .article__main h2 {
        font-size: 26px;
    }

    .subtitle,
    .article__main h3 {
        font-size: 24px;
    }

    .article__main img {
        border-radius: 5px;
    }

    .article__main ul,
    .article__main ol {
        padding-left: 20px;
    }

    .blog__item {
        width: 100%;
        padding: 20px;
    }
}