footer {
    margin-top: 5rem;
    width: 100vw;
    min-height: 400px;
    background-color: var(--main-color);
    padding: 5rem 0;
    z-index: 9999;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 83%;
    flex-wrap: wrap;
    max-width: 1133px;
    margin: auto;
    gap: 2rem;

}

.footer-details {
    margin: 1.5% auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.footer-details h4 {
    color: var(--text-color2);
}

.footer-details ul a {
    opacity: 0.75;
    color: var(--text-color2);
    transition: all 300ms ease;
}

.footer-details ul a:hover {
    opacity: 1;
}

.footer-socials {
    max-width: 300px;
    min-width: 200px;
    text-align: center;
    margin-top: 1%;
}

.footer-logo {
    width: 100px;
    height: 80px;
}

.social-links {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    margin-right: 0.5rem;
    justify-content: space-between;
}

.social-links div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-socials i {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--blue-color);
}

.footer-newsLetter {
    min-width: 300px;
    margin-top: -0.5%;
}

.footer-copy-rights {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    width: 100vw;
}

.footer-copy-rights small {
    width: 83%;
    margin-left: 0;
}

/*==========================================Media==========================================================*/
@media screen and (max-width:900px) {
    .footer-container {
        justify-content: center;
    }

    .footer-socials {
        max-width: 400px;
    }

    .footer-details {
        margin: 1.5%;
    }
}