.footer-responsive {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #0a1e5022;
    padding: 20px;
    line-height: 1;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background-color: #fff;
    margin: 7% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
@media screen and (min-width: 900px) and (max-width: 1250px){
    .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        border-radius: 10px;
        width: 80%;
        max-width: 800px;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
}
@media screen and (min-width: 769px) and (max-width: 899px) {
    .modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 18px;
        border-radius: 10px;
        width: 90%;
        max-width: 600px;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
    .footer-menu {
        display: none;
    }
    .modal-content {
        background-color: #fff;
        margin: 18% auto;
        padding: 18px;
        border-radius: 10px;
        width: 90%;
        max-width: 600px;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
}
@media screen and (max-width: 576px) {

    .footer-menu {
        display: none;
    }
    .footer-contact p,
    .footer-menu p,
    .footer-infos p {
        line-height: 1.64;
        margin: 4px 0;
    }
    .footer-menu a,
    .footer-infos a {
        line-height: 1.4;
        display: inline-block;
    }
    /*    .footer-contact p {
        font-size: 14px;
    }
   .footer-infos a {
        font-size: 14px;
    }*/
    .modal-content {
        background-color: #fff;
        margin: 24% auto;
        padding: 20px;
        border-radius: 10px;
        width: 85%;
        max-width: 570px;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
}
