/* == footer-section========================= */

footer{
    background: #fff;
    display: flex;
    align-items: center;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    color: #042940;
    padding: 0 10px;
}
.footer-links{
    display: flex;
    flex-wrap: wrap;
}
footer .navigation ul li {
    padding-right: 12px;
}
footer a{
    color: #042940;
}
footer .navigation a{
    font-weight: 500;
}
footer h4{
    font-weight: 700;
    padding-bottom: 10px;
}
footer li div{
    padding-left: 30px;
    font-size: 18px;
}
footer li div span:before{
 width:33px;
 height: 33px;
 background:url(../images/footer/iconmonstr-map-8.png);
 position: absolute;
 top:0;
 display: block;
 left: -40px;
 content: '';
 background-repeat: no-repeat;
}
footer li div span.phno:before{
    background:url(../images/footer/iconmonstr-phone-1.png);
    background-repeat: no-repeat;
   }
   footer li div span.mail-icon:before{
    background:url(../images/footer/iconmonstr-paper-plane-1.png);
    background-repeat: no-repeat;
   }
footer li div span{
    position: relative;
}
.social-media li span {
    border: 1px solid #22BABB;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 6px #b7b4b4;
    transition: all 0.5s ease;
}
.social-media li span:hover{
    box-shadow: none;
    transition: all 0.5s ease;
}
.copyright {
    border-top: 1px solid #E1E1E1;
    width: 100%;
    text-align: left;
    background-color: #fff;
    padding-top: 10px;
}
.copyright-content {
    font-size: 13px;
}
footer .address  h4{
    display: none;
}
body footer a :hover{
    text-decoration: underline !important;
}

/* ========================================= */

@media(max-width:1280px){

    footer .navigation a {
        font-size: 1rem;
    }
    footer h4 {
        font-size: 1.1rem;
    }
}

@media(max-width:991px){
    footer .address ul > li{
        background: #F8F8F8;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .copyright{
        text-align: center;
    }
    .social-media{
        margin: 0 auto;
    }
    footer li div span:before {
        position: static;
        margin-bottom: 10px;
    }
    footer h4{
        text-align: center;
        padding-top: 10px;
    }
    footer li div{
        padding-left: 0 ;
    }
    .social-media li span {
        margin: 0 10px;
    }
    footer .address  h4{
        display: block;
    }

}

@media(max-width:767px){

    footer ul > li > div{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
         text-align: center;
    }
    footer .navigation ul {
        text-align: center;
    }
    .social-media ul{
        display: flex;
        justify-content: center;
    }
    footer .navigation {
        order: 2;
    }
    footer .navigation ul {
        text-align: center !important;
        justify-content: center;
    }
}