.footer {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-top: 150px;

    padding-top: 100px ;
}

.footer-logo-container {
    width: 182px;
    height: 233px;
    margin: 0 auto;
}

.footer-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-item-container {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    padding: 1rem 0;
}
a{
    text-decoration: none;
}
.footer-item-container a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    column-gap: 30px;
    text-transform: uppercase;
}


.end-line {
    width: 2px;
    background: #fff;
    height: 30px;
}

.footer-social-container {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    font-size: 18px;
}


/* mobile */

@media (max-width: 600px) {
    .footer {
        margin-top: 50px;
        padding: 20px;
    }

    .footer-logo-container {
        width: 140px;
        height: 140px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .footer-item-container {
        flex-direction: column;
        row-gap: 15px;
        justify-content: center;
        padding: 10px 0;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .footer-item-container a {
        font-size: 16px;
        justify-content: center;
    }

    .end-line {
        /* height: 1px;
        width: 40px;
        margin: 0 auto; */
        display: none;
    }

    .footer-social-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem 0;
        row-gap: 20px;
    }

    .footer-social-container a {
        margin-bottom: 10px;
    }


    .footer-copyright{
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }


}

/* tablet */

@media (min-width: 601px) and (max-width: 1024px) {
    .footer-logo-container {
        width: 160px;
        height: 160px;
    }

    .footer-item-container {
        column-gap: 20px;
        padding: 1rem 0;
    }

    .footer-item-container a {
        font-size: 16px;
        text-align: center;
    }

    .footer-social-container {
        display: flex;
        justify-content: space-evenly;
        padding: 1rem;
    }

    .footer-social-container a {
        font-size: 16px;
    }
}