.footer__top {
    background-color: #0C1E13;
    padding: 60px 0 50px;
}

.footer__bottom {
    text-align: center;
    background-color: #192C20;
    color: #fff;
    padding: 11px 0;
}

span.copyright {
    display: block;
    font-size: 15px;
    line-height: 120%;
    text-transform: uppercase;
}

.back_to_top {
    position: fixed;
    bottom: 100px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: #0F6038;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: 1px solid #0F6038;
    padding: 0;
    box-shadow: 0px 4px 4px 0px rgba(15, 96, 56, 0.05),
        0px 8px 8px 0px rgba(15, 96, 56, 0.15),
        0px 20px 32px 0px rgba(15, 96, 56, 0.25);
}

.back_to_top.visible {
    opacity: 1;
    visibility: visible;
}

.back_to_top:hover {
    transform: translateY(-5px);
    background: #0C1E13;
}

h3.footer__top__item__title {
    color: var(--White);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: clamp(1.25rem, 1.1590rem + 0.3883vw, 1.625rem);
}

.footer__top .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px 60px;
}

.footer__top__item__social {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.footer__text,
#info-menu li a,
#catalog-menu li a {
    color: #A0A4A2;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
#info-menu li a:hover,
#catalog-menu li a:hover {
    color: var(--Accent);
}
.f-column {
    display: flex;
    flex-flow: column;
    row-gap: 14px;
}
.footer__top__item__contacts.f-column {
    max-width: 200px;
}
ul#info-menu,
ul#catalog-menu {
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    row-gap: 14px;
}
.footer__top__item svg {
    width: 26px;
    height: 26px;
}



@media screen and (max-width: 768px) {
    .footer__top .container {
        flex-direction: column;
    }
}