.footer{
    width: 100%;
    height: fit-content;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    justify-content: space-between;
}

/* --- Footer left --- */

.footer_left{
    width: 30%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* footer logo */

.footer_logo{
    width: 30px;
    height: 30px;
}

/* footer text */

.footer_text{
    width: 90%;
    font-size: 12px;
    line-height: 1.8;
    color: var(--text2);
}

/* copyright */

.copyright{
    font-size: 14px;
    color: var(--text1);
}

/* --- Social links --- */

.social_links{
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* social link */

.social_links a{
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.social_links a:hover img{
    filter: grayscale(0);
    opacity: 1;
}

/* image */

.social_links a img{
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

/* --- Footer right --- */

.footer_right{
    width: 60%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}

/* --- Column --- */

.column{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* column title */

.column_title{
    font-size: 13px;
    font-weight: 500;
    color: var(--text1);
}

/* column link */

.column a{
    font-size: 13px;
    text-decoration: underline;
    color: var(--text2);
}

/* --- Media --- */

@media screen and (max-width: 800px) {
    
    .footer{
        display: block;
    }
    
    /* --- Footer left --- */

    .footer_left{
        width: 100%;
    }

    /* footer text */

    .footer_text{
        width: 80%;
        font-size: 14px;
    }

    /* social link img */

    .social_links a img{
        opacity: 1;
        filter: grayscale(0);
    }

    /* --- Footer right --- */

    .footer_right{
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
        gap: 40px;
    }

    /* column title */

    .column h5{
        font-size: 14px;
    }
}