footer {
    width: 100%;
    background-color: light-dark(var(--white),var(--black));
    color: light-dark(var(--black),var(--light-white));
    padding: 30px 100px 0;
}
footer .top-footer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(min(100%,250px),1fr));
    gap: 30px;
    border-bottom: 1px solid var(--grey);
}
footer .footer-title {
    color: light-dark(var(--blue),var(--yellow));
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.top-footer img {
    color: var(--light-white);
}
footer li {
    list-style: none;
}
.footer-column {
    width: 100%;
    border-left: 1px solid var(--grey);
    padding: 10px 20px;
}
.footer-column:nth-child(1) {
    border-left: none;
}
.footer-column:nth-child(1) img {
    display: none;
}
.footer-column:nth-child(2) ul{
    display: grid;
    gap: 10px;
}

.footer-column:nth-child(4) ul{
    display: grid;
    gap: 10px;
}
.footer-column .social-icons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-column .social-icons i {
    width: 25px;
    margin-right: 5px;
}
.contact-details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(min(100%,180px),1fr));
    gap: 30px;
    overflow: hidden;
}
.email-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}
.email-contact i {
    font-size: 2rem;
}
.email-contact:nth-child(2) {
    display: none;
}




.bottom-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

@media (min-width:769px) and (max-width: 1024px) {
    footer {
        padding: 20px 20px;
    }
}
@media (max-width: 768px) {
    footer {
        padding: 20px 20px;
    }
}

@media (max-width: 600px) {
    footer .top-footer {
        gap: 15px;
    }
}
@media (max-width: 500px) {
    footer .top-footer {
        padding-bottom: 20px;
    }
    .footer-column {
        border-left: none;
        padding: 0 0;
    }
}
@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p, .footer-section ul, .footer-section a {
        font-size: 14px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}