

footer {
    background-image: url('../images/footer-background.jpg');
    background-size: cover;
    color: white;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: auto; 
    overflow-y: hidden;
}

.footer{
    display: flex;
    justify-content: center;
    padding-top: 3em;
}

.left-footer{
    width: 70%;
    display: flex;
    gap: 6em;
    justify-content: center;
    
}

.right-footer{
    display: flex;
    width: 50%;
    justify-content: center;
  
    
}

.location-contact{
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.rights-reserved{
    margin: 2em;
    text-align: center;
}

.footer h3{
    font-style: bold;
    margin-bottom: 5px;
}

.follow-us img{
    width: 1.5em;
    
}

@media (max-width: 1050px){
    


    .left-footer{
        padding-left: 4em;
    }
}

@media (max-width: 840px){
    footer{
        align-items: center;
    }

    .footer{
        flex-direction: column;  
        align-items: center;
        gap: 2em;  
    }
    
    .left-footer{
        flex-direction: column;
        padding-left: 0em;
        gap: 2em;
        width: 100%;
        align-items: center;
        padding: 2em;
        text-align: center;
    }

    .location-contact{
        flex-direction: row;
        gap: 6em;
    }


}

@media (max-width: 500px){
    .location-contact{
        flex-direction: column;
        gap: 2em;
    }  
}