footer {
    display: flex;
    flex-direction: column;
    min-height: 301px;
    background-color: #FAF9F9;
    padding-top: 45px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 19px;

}

footer>div.footer-menu-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer>div.footer-menu-section>div.menus>menu>ul>li {
    cursor: pointer;
}

footer>div.footer-menu-section>div.menus>menu>ul>li:hover {
    text-decoration: underline;
}

footer>div.footer-menu-section>div.footer-contact {
    display: flex;
    flex-direction: column;

    
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;

    color: var(--gray);

}

footer>div.footer-menu-section>div.footer-contact>img {
    margin-bottom: 14px;
}

footer>div.footer-menu-section>div.menus>menu>h4 {
    margin-bottom: 18px;
    
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: var(--gray);
}

footer>div.footer-menu-section>div.menus>menu>ul {
    list-style: none;
    
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;

    color: var(--gray);
}

footer>div.footer-menu-section>div.menus {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-width: 75%;
}

footer>div.footer-menu-section>div.menus>menu {
    color: var(--gray);
}


footer>div.footer-menu-section>form.newsletter-mobile>input {
    width: 100%;
    height: 48px;

    margin-top: 7px;
    margin-bottom: 16px;
}

footer>div.footer-menu-section>form.newsletter-mobile {
    display: none;
    flex-direction: column;

}

footer>div.footer-menu-section>form.newsletter-mobile>div.agreement {
    display: flex;
    width: 335px;
}

footer>div.footer-menu-section>form.newsletter-mobile>button {
    margin-top: 30px;
}

footer>div.footer-menu-section>form.newsletter-mobile>div.agreement>div.checkbox {
    margin-right: 11px;
    margin-left: 7px;
}

footer>div.footer-menu-section>form.newsletter-mobile>div.agreement>p {
    
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;

    color: var(--gray);

    cursor: pointer;
}


footer>div.footer-menu-section>form.newsletter>input {
    width: 335px;
    height: 48px;

    margin-top: 7px;
    margin-bottom: 16px;
}

footer>div.footer-menu-section>form.newsletter {
    display: flex;
    flex-direction: column;
}

footer>div.footer-menu-section>form.newsletter>div.agreement {
    display: flex;
    width: 335px;

}

footer>div.footer-menu-section>form.newsletter>button {
    margin-top: 30px;
}

footer>div.footer-menu-section>form.newsletter>div.agreement>div.checkbox {
    margin-right: 11px;
    margin-left: 7px;
}

footer>div.footer-menu-section>form.newsletter>div.agreement>p {
    
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;

    color: var(--gray);

    cursor: pointer;
}

footer>div.under-line-footer {
    display: flex;
    flex-direction: row;

    justify-content: space-between;

    border-top: 1px solid var(--divider);
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
}

footer>div.under-line-footer>p {
    color: var(--gray);
}

footer>div.under-line-footer>p:first-child {
    opacity: 0.6;
}

footer>div.under-line-footer>div {
    display: flex;
}

footer>div.under-line-footer>div>p {
    color: var(--gray);
    cursor: pointer;
}

footer>div.under-line-footer>div>p:last-child {
    border-left: 1px solid var(--divider);
    padding-left: 16px;
}

footer>div.under-line-footer>div>p:first-child {
    padding-right: 16px;
}

footer>div.under-line-footer>div>p:hover {
    text-decoration: underline;
}



@media only screen and (max-width: 1024px) {

    footer {
        width: 100%;
        height: min-content;
        padding-left: 20px;
        padding-right: 20px;
    }

    footer>div.footer-menu-section {
        display: flex;
        flex-direction: column;

    }

    footer>div.footer-menu-section>form.newsletter-mobile {
        display: flex;
        width: 100%;

    }

    footer>div.footer-menu-section>form.newsletter-mobile>button {
        width: 100%;
    }

    footer>div.footer-menu-section>form.newsletter-mobile>div.agreement {
        display: flex;
        width: 100%;

    }

    footer>div.footer-menu-section>form.newsletter {
        display: none;
    }

    footer>div.footer-menu-section>div.footer-contact {
        width: 100%;
        /* margin-top: 60.5px; */

    }

    footer>div.footer-menu-section>div.footer-contact>img {
        width: 174px;

    }

    footer>div.footer-menu-section>div.menus {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;

    }

    footer>div.footer-menu-section>div.menus>menu {
        margin-top: 40px;
        width: 50%;
    }

}