@media (max-width: 1200px) {
    .container{
        max-width: 970px;
    }
    .intro_text{
        font-size: max(2.3vw, 16px);
    }
}
@media (max-width: 992px) {
    .container{
        max-width: 750px;
    }
}
@media (max-width: 767px) {
    .container{
        max-width: none;
    }

    .header_menu_links{
        max-height: 0;
        display: block;
        overflow: hidden;
        position: fixed;
        background-color: rgba(255, 255, 255, 0.4);
        text-align: center;
        right: 0;
        left: 0;
        margin-top: 27px;
        transition: all 0.5s;
    }

    .header_menu_links li a{
        color: rgba(0, 0, 0, 0.65);
        display: block;
        padding: 15px;
    }

    .header_menu_links li{
        transition: all 0.5s;
    }

    .header_menu_links li:hover{
        background-color: rgba(0, 0, 0, 0.35);
    }

    #checkbox_toggle:checked ~ .header_menu_links{
        display: block;
        max-height: 100%;
        transition: all 2.5s;
    }

    .hamburger{
        display: block;
        padding: 10px 0;
    }

    #checkbox_toggle:checked ~ .hamburger .hamburger_line{
        background-color: transparent;
    }

    #checkbox_toggle:checked ~ .hamburger .hamburger_line::before{
        transform: rotate(45deg);
        top: 0;
    }

    #checkbox_toggle:checked ~ .hamburger .hamburger_line::after{
        transform: rotate(-45deg);
        top: 0;
    }

    .footer_content{
        flex-direction: column;
    }

    .footer_logo, .footer_contacts, .footer_social{
        height: 30%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer_logo img{
        height: 60%;
        width: auto;
        margin: auto;
    }

    .footer_social img{
        float: none;
        margin: auto;
    }
}