footer {
    padding: 120px 0 100px;
    background: var(--black-color);
}

.footer-menu {
    justify-content: space-between;
}

.fm-menu {
    width: 25%;
    box-sizing: border-box;
    padding: 0 10px 0 0;
}

.fm-menu-title {
    font-size: 18px;
    letter-spacing: var(--letter-spacing-min);
    font-weight: 600;
    margin-bottom: 20px;
}

.fm-menu-set {
    max-width: 90%;
}

.fm-menu-set li {
    margin-bottom: 10px;
    line-height: 1.3;
}

.fm-menu-set li a {
    font-size: 14px;
    letter-spacing: var(--letter-spacing-min);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--grey-violet-color);
}

.fm-menu-set li a:focus,
.fm-menu-set li a:hover {
    text-decoration: none;
    color: var(--red-color);
}

.footer-bottom {
    margin-top: 70px;
}

.footer-bottom .footer-menu {
    width: 75%;
}

.footer-bottom .fm-menu {
    width: 33%;
}

.fm-menu-contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fcmc-phone {
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: var(--letter-spacing-min);
    font-weight: 600;
}

.fcmc-addr-title {
    font-size: 16px;
    font-weight: 600;
}

.fcmc-addr-maplink a {
    font-size: 14px;
    letter-spacing: var(--letter-spacing-min);
    color: var(--red-color);
}

.footer-links {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}

.fl-social a {
    display: block;
    line-height: 0;
    margin-right: 15px;
    opacity: .8;
}

.fl-langs {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--grey-color);
    padding: 10px 15px;
}

.fl-langs a {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: var(--letter-spacing-min);
    text-transform: capitalize;
}

.fl-langs a.current {
    font-weight: 600;
}

.fl-logo a {
    display: block;
    line-height: 0;
}

.fl-logo svg {
    width: 75%;
    height: auto;
}

@media screen and (max-width: 1000px) {
    footer {
        padding: 70px 0 70px;
    }
    .fl-langs {
        position: static;
        display: inline-block;
        width: fit-content;
    }
}

@media screen and (max-width: 680px) {
    footer {
        padding: 70px 0 70px;
    }
    .footer-menu {
        flex-wrap: wrap;
    }
    .fm-menu {
        width: 50%;
        padding: 0 20px 30px;
    }
    .footer-bottom {
        margin-top: 0;
    }
    .footer-bottom .fm-menu {
        width: 50%;
    }
    .footer-bottom .fm-menu-contacts {
        width: 100%;
        padding-bottom: 0;
    }
    .footer-bottom {
        display: block;
    }
    .footer-bottom .footer-menu {
        width: 100%;
    }
    .footer-links {
        margin-top: 20px;
        width: 100%;
    }
    .fcmc-addr-title br {
        display: none;
    }
    .footer-links {
        padding: 0 20px;
        margin-top: 45px
    }
    .fl-logo svg {
        max-width: 250px;
    }
    .fl-social {
        margin-top: 30px;
    }
    .fl-langs {
        position: absolute;
        right: 20px;
        bottom: 0;
    }
}


.cookie_agreement {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    background: var(--grey-dark);
    box-sizing: border-box;
    width: 100%;
    min-width: 100%;
    padding: 30px 5vw;
    display: flex;
    align-items: center;
}

.ca_text {
    padding: 0 0 0 2vw;
    font-size: 15px;
}

@media only screen and (max-width: 600px) {
    .cookie_agreement {
        flex-direction: column;
    }
    .ca_text {
        padding: 0 0 20px 0;
        font-size: 13px;
    }
    .ca_btn {
        margin-bottom: 20px;
    } 
}
