.footer-container{
    
    height: 30px;
    margin-top: 20px;
    
}

.footer-content{
    display: flex;
    padding:0 2%;
   
    width: 100%;
    background-color: #0DA7FD;
    /* background-color:#a5c8ee; */
    height: 30px;
}
.footer-copyright{
    font-size: 14px;
    color: #fff;
    width: 32%;
    display: flex;
    align-items: center;
}
.footer-links{
    display: flex;
    align-items: center;
    gap: 7px;
    
}
.footer-contact-us{
    font-size: 14px;
    color: #fff;
    font-weight: 100;
    
}
.fav-container{
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links-container{
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-links a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    
}
.footer-links a:hover{
    text-decoration: underline;
}

.footer-links-divider{
    width: 1px;
    height: 14px;
    background-color: #fff;
}

@media only screen and  (max-width: 767px){
    .footer-container{
        height: unset;
    }

    .footer-content {
        height: unset;
        text-align: unset;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-top:4px;
        padding-bottom: 4px;
    }
    .footer-copyright{
        display: block;
        width: unset;

    }
    .footer-links{
        display: block;
        width: unset;
        
    }
    .fav-container{
        justify-content: center;

    }
    .footer-links-divider-mobile{
        display: none;
    }
    
}

@media only screen and (min-width: 360px) and (max-width: 420px){
    

    
}