footer {
    width: 100%;
}

.footer-options {
    display: flex;
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    position: relative;
    width: 100%;
}

.footer-option {
    width: 100%;
    padding: 1.25rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-option:not(:last-child) {
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.15);
}

.footer-option-title {
    margin-bottom: 0.75rem;
    color: #F22424;
    font-size: 1.75rem;
    font-family: 'DrukCyr';
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.footer-option-email {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-family: 'Formular';
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.footer-option:hover {
    background-color: #F22424;
}

.footer-option:hover .footer-option-title .red-text {
    color: #0D0D0D;
}

.footer-bottom {
    display: flex;
    padding: 2.125rem 0;
    align-items: center;
}

.ag-copyright-policy {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1 0 0;
}

.ag-rights {
    color: var(--White, #FFF);
    font-size: 0.75rem;
    font-family: 'Formular';
    font-style: normal;
    font-weight: 400;
    line-height: 0.75rem;
    opacity: 0.5;
    transition: 0.3s ease;
}

.ag-policy {
    z-index: 1;
}

footer .ag-policy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .ag-policy li {
    font-size: 0.75rem;
    font-family: 'Formular';
    font-style: normal;
    font-weight: 400;
    line-height: 0.75rem;
    cursor: pointer;
    transition: 0.3s ease;
}

footer .ag-policy li a {
    color: var(--White, #FFF);
    transition: 0.3s ease;
    text-decoration: none;
    text-transform: none;
}
footer .ag-policy li a:hover {
    transition: 0.3s ease;
    opacity: 0.5;
}

.ag-rights:hover {
    opacity: 0.5;
}

.ag-social-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ag-social-container a {
    z-index: 2;
}

.social {
    width: 1.5rem;
    height: 1.5rem;
}

.social:hover {
    transition: 0.3s ease;
    opacity: 0.75;
    transform: scale(1.05);
}

.social_vk {
    background-image: url(../../img/components/footer/VK_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.social_linkedin {
    background-image: url(../../img/components/footer/LinkedIn_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.footer-options a {
    text-decoration: none;
}

.about-company-template .footer-options a:hover .footer-option-email {
    color: #0D0D0D;
}

/* footer-cookies */
.footer-cookies.cookie-notification_hidden_yes {
    display: none;
}
.footer-cookies {
    z-index: 2;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 2.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    background: #F22424;
    color: var(--White, #FFF);
}
.footer-cookies-txt {
    font-size: 0.88rem;
    font-family: 'Formular';
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
}
.footer-cookies-txt a {
    font-size: 0.88rem;
    font-family: 'Formular';
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    color: var(--White, #FFF) !important;
}
.footer-cookies-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Formular';
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}
.footer-cookies-agree {
    padding: 0.81rem 1rem;
    background-color: var(--White, #FFF);
    border-radius: 0.5rem;
    color: var(--Black, #0D0D0D);
    cursor: pointer;
}
.footer-cookies-disagree {
    padding: 0.81rem 1rem;
    background-color: var(--White, #FFF);
    border-radius: 0.5rem;
    color: var(--Black, #0D0D0D);
    cursor: pointer;
}

/*Adaptive*/
@media (max-width: 1000px) {

    .footer-option:not(:last-child) {
        border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15);
        border-right: 0;
    }
}
@media (max-width: 991px) {
    .footer-cookies {
        flex-direction: column;
    }
    .footer-cookies-txt {
        text-align: center;
    }
}
@media (max-width: 600px) {

    .ag-copyright-policy {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-options {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: left;
        align-items: flex-start;
        padding: 2.13rem 1.3rem;
        gap: 2.5rem;
    }

    .ag-policy {
        margin-left: 0;
    }
}
@media (max-width: 360px) {
    .footer-option-title {
        font-size: 1.5rem;
    }
    .footer-option-title .red-text{
        font-weight: 500;
    }
    .footer-option {
        padding-top: 1.18rem;
    }
    .footer-option-email {
        font-size: 0.8rem;
    }
}