@import url("global.css");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

.footer-container{
    width: 100%;
    min-height: 22rem;
    background-color: var(--navcolor);
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 3rem;
    justify-content: space-between;
    scroll-snap-align: end;
}

.footer-first{
    width: 100%;
    flex: 1.3;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-around;
}

.footer-second{
    width: 100%;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
}

.footer-third{
    width: 100%;
    flex: .5;
    height: 100%;
}

.footer-first img{
    width: 15rem;
}

.footer-first-div{
    color: white;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    max-width: 20rem;
}

.footer-first-div p{
    word-wrap: break-word;
}



.footer-title{
    font-weight: bold;
    color: white;
}




.footer-presence{
    height: 15vh;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-presence ul{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
    height: 100%;
    width: 10rem;

}

.footer-third-div{
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
}

.footer-third-div a{
    text-decoration: none;
}

.footer-third{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-around;
}

.horizontal{
    width: 100%;
    display: flex;
    justify-content: start;
    gap: 2rem;
}

.lightFont{
    color: rgba(255, 255, 255, 0.486);
}


@media only screen and (max-width:837px){
    .footer-container{
        height: auto;
        gap: 3rem;
    }





}