.footer {
    background-color: #1259A1;
    overflow: hidden;
}
.footer_container {
    position: relative;
    /* display: flex; */
    display: grid;
    grid-template-columns: 230px 1fr 1fr 1fr 1fr 1fr 265px;
    grid-template-areas: 
        "logo menu1 menu2 menu3 menu4 menu5 contacts";
    padding: 60px 20px;
    justify-content: center;
    gap: 10px;
    max-width: 1530px;
    margin: 0 auto;
}
.footer-left { grid-area: logo; }
.footer_menu:nth-child(1) { grid-area: menu1; }
.footer_menu:nth-child(2) { grid-area: menu2; }
.footer_menu:nth-child(3) { grid-area: menu3; }
.footer_menu:nth-child(4) { grid-area: menu4; }
.footer_menu:nth-child(5) { grid-area: menu5; }
.contacts { grid-area: contacts; }

.footer_author {
    grid-column: 1 / -1; /* Розтягуємо на всю ширину */
    text-align: center;
}
.footer_links li a {
    color: #fff;
}
.footer_links li a:hover {
    text-decoration: underline;
    transition: 0.3s;
}
.column_logo {
    padding-top: 10px;
}
.footer_links li {
    color: #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #6EB2F7;
}
.footer_logo {
    margin-bottom: 40px;
}
.footer_links li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}
.footer .container {
    display: none;
}
.footer_links_mob {
    display: none;
}
.footer_menu {
    background: #0000001A;
    padding: 10px 20px;
    /* width: 180px; */
    border-radius: 8px;
    /* width: 190px; */
    /* margin: 0 15px; */
}
.column_name {
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid #6EB2F7;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}
.footer_menu ul li a {
    color: #DDDDDD;
    font-size: 18px;
}
.footer_menu ul li a:hover {
    text-decoration: underline;
    transition: 0.3s;
}
.footer_menu ul li {
    margin-bottom: 10px;
}

.footer_menu li span {
    font-size: 14px;
    color: #6eb2f7;
}
.footer_menu li p {
    color: #fff;
}

.footer_menu li {
    display: flex;
}
.footer_menu li img {
    margin-right: 5px;
}

.social_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social_link a:hover img {
    transform: scale(1.5);
    transition: 0.3s;
}

.contacts {
    display: flex;
    flex-direction: column;
    width: auto !important;
    justify-content: space-between;
}

.footer_author {
    position: absolute;
    bottom: 15px;
    color: #fff;
    width: 100%;
    text-align: center;
}

.footer_author a {
    color: #9eccfa;
}

.footer_author a:hover {
    text-decoration: underline;
    transition: 0.3s;
}

@media screen and (max-width: 1400px) {
    .footer_container {
        grid-template-columns: 230px 1fr 1fr 1fr;
        grid-template-areas: 
            "logo menu1 menu2 contacts"
            "menu3 menu4 menu5 contacts";
    }
}