
.footer {
    background-color: #F2F2F2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer .main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer .main .col .separate {
    margin-bottom: 36px;
}

.footer .main .col h6 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.footer .main .col a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
    opacity: 60%;
    text-decoration: none;
    transition: all ease 300ms;
}

.footer .main .col .links {
    display: flex;
    flex-direction: column;
    gap: 10px   ;
}

.footer .main .col a:hover {
    opacity: 100%;
}

.footer .main .col .socials {
    display: flex;
    gap: 10px;
}

.footer .main .col .socials .icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    cursor: pointer;
    transition: all ease 300ms;
}

.footer .main .col .socials .icon img {
    transition: all ease 300ms;
}

.footer .main .col .lang-select {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #000;
    width: 60%;
    justify-content: space-between;
    cursor: pointer;
    transition: all ease 300ms;
    position: relative;
}

.footer .main .col .lang-select .footer-lang-select-opt {
    position: absolute;
    bottom: 45px;
    background-color: #fff;
    left: -1px;
    right: -1px;
    border: 1px solid #141414;
    display: flex;
    flex-direction: column;
    display: none;
}

.footer .main .col .lang-select .footer-lang-select-opt .footer-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all ease 300ms;
}

.footer .main .col .lang-select .footer-lang-select-opt .footer-option:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.footer .main .col .lang-select:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.footer .main .col .lang-select .lang {
    display: flex;
    gap: 8px;
    align-items: center;
}

#footer-lang-arrow {
    transition: all ease 300ms;
}

.footer .f-divider {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 100px 0 40px;
}

.footer .copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .copy p {
    font-size: 16px;
    line-height: 22px;
    color: #141414;
    font-weight: 300;
}

.footer .copy .policy {
    display: flex;
    gap: 30px;
}

.footer .copy .policy a {
    color: #141414;
    opacity: 60%;
    transition: all ease 300ms;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
}

.footer .copy .policy a:hover {
    opacity: 100%;
}

@media screen and (max-width: 700px) {
    .footer .main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer .main .col.first-col {
        grid-column: span 3;
    }

    .footer .main .col .lang-select {
        width: 40%;
    }
}

@media screen and (max-width: 600px) {
    .footer .copy {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .footer .f-divider {
        margin: 60px 0 30px;
    }
}

@media screen and (max-width: 500px) {
    .footer .main {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer .main .col.first-col {
        grid-column: span 1;
    }

    .footer .main .col .separate {
        margin-bottom: 0;
    }

    .footer .main .col .lang-select {
        margin-top: 20px;
    }
    
    .footer .main .col.first-col .separate {
        margin-bottom: 20px;
    }

    .footer .main .col .lang-select {
        width: 100%;
    }
}