footer{
    background-color: var(--clr-primary);
    bottom: 0;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    justify-content: space-between;
    padding: 35px 0 25px 0;
    row-gap: 3em;
    justify-content: center;
    border-bottom: solid white 1px;
    margin-bottom: 1em;
}

.footer-section.links-section{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px, 1fr));
    justify-items: end;
}

.footer-section ul li{
    list-style: none;   
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-section ul li :hover{
    color: var(--clr-accent);
}

.footer-section ul li a{
    text-decoration: none;
    color: white;
}

.footer-section ul li a :hover{
    color: var(--clr-accent);
}


.footer-logo{
    width:min(max(180px,20vw),300px);
    margin-bottom: 1em;
}
.footer-section.logo-section p{
    font-family: 'Poppins';
    color: white;
}

.section{
    margin-bottom: 20px;
}

.footer-copyright p{
    color: black;
    text-align: center;
    font-weight: 500;

}
.footer-copyright .socials{
    display: flex;
    justify-content: center;
    gap: 2em;
}

.footer-copyright .socials a {
    text-decoration: none;
    font-size: 1.5em;
    color: black;
    }


@media (max-width:563px){
    .footer-section.logo-section{
        text-align: center;
    }

    .footer-logo{
        width: 150px;
    }

    .footer-section.links-section{
    
        justify-items: center;
    }
    
}

@media (max-width:275px){
    

    .footer-section.links-section{
        grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
        justify-items: start;
        margin: auto;
        padding-left: 3em;
    }
    
}

