/* footer  css *******************************************************************************************/

footer{
    background-color: var(--dark_gray);
    color: white;
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

footer .wrraper{
    margin-bottom: 0px;
    width: 1200px;
}

#nav-footer{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 70px;
}

#footer-logo img{
    height: 50px;
}

#nav-footer ul{
    padding-top: 13px;
}

#nav-footer ul li{
    padding: 5px;
    color:white;
}

#nav-footer ul a{
    color:white;
}

#footer-rights {
    text-align: center;
    padding: 15px 0px;
    border-top: 2px solid white;
}

#footer-logo-mobile {
    display: none;
}

#footer-logo-mobile img{
    height: 50px;
}

#footer-rights p {
    margin: 0px;
}


@media only screen and (max-width: 600px) {

    #nav-footer{
        flex-wrap: wrap;
    }

    #nav-footer div{
        width: 100%;
        text-align: center;
    }

    #footer-logo{
        display: none;
    }

    #footer-logo-mobile {
        display: block;
    }
    
}