/* footer */

.footer {
    background-image: url('../img/footer.png');
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #eeeeee;

}

.footer_content_top {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding-top: 135px;
    align-items: center;

}

.footer_content_link {
    display: flex;
    align-items: center;
}

.menu_list_footer {
    display: flex;
    justify-content: space-around;
    text-decoration: none;
    list-style: none;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 96px;
    text-transform: uppercase;
    padding-bottom: 190px;
}

.menu_link_footer {
    text-decoration: none;
    text-align: center;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.footer_content_link_text {
    /* display: flex; */
    align-items: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    padding-left: 20px;
}

.bottom {
    border-bottom: 2px solid rgba(255, 255, 255, 1);
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 15px;
}

.footer_menu {
    padding-top: 40px;
}

.menu_item_footer {
    font-size: 14px;
    line-height: 96px;
}

.menu_link_footer:hover,
.footer_content_link_text:hover {
    color: rgb(50, 49, 49);
}

.autor_name{
    background-color: rgb(50, 49, 49);
    text-align: center;
}

.autor_text{
color: rgb(255, 255, 255);
}

.autor_link{
    text-decoration: none;
    color: rgb(200, 189, 189);
    font-weight: bold;
}

/*Адаптив*/
@media screen and (max-width: 768px) {
    .footer_content_top {
        padding-top: 10px;
        flex-direction: column; /* Изменяем направление на вертикальное */
        align-items: center; /* Центрируем элементы */
    }

    .menu_list_footer {
        flex-direction: column; /* Изменяем направление на вертикальное */
        align-items: center; /* Центрируем элементы */
    }

    .footer_content_link_text {
        font-size: 20px; /* Уменьшаем размер текста */
    }

    .menu_item_footer {
        padding-top: 10px;
        line-height: 40px;
    }

    .menu_list_footer {
        padding-bottom: 10px;
    }

    .footer_menu {
        padding-top: 10px;
    }

    .footer_link{
        display: none;
    }

    li.footer_content_link {
        flex-direction: row;
        padding: 7px 0px;
}
}

@media screen and (max-width: 480px) {
    .footer_content_link_text, .menu_link_footer, .autor_text{
        font-size: 12px;
    }
}