.footer {
    margin-top: 100px;
    background-color: #222222;
}
.footer .row{
    margin: 0 auto;
    padding: 40px 0;
    /* background-color: red; */
}
.footer .row .col-lg-3 img{
    width: 50%;
    margin-bottom: 20px;
}
.footer .row .col-lg-3 p{
    font-size: 14px;
    color: white;
    max-width: 90%;
}
.footer .row .col-lg-3 .boxa{
    display: flex;
}
.footer .row .col-lg-3.one  a{
    width: 30px;
    height: 30px;
    display: flex;
    background-color: #373842;
    margin-right: 20px;
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: 0.4s;

} 
.footer .row .col-lg-3.one a:hover {
    background-color: #007bff;
}
.footer .row .col-lg-3.two h3{
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}
.footer .row .col-lg-3.two  ul{
    padding-left: 0;
}
.footer .row .col-lg-3.two  ul li{
    padding: 5px 0;
    overflow: hidden;
}
.footer .row .col-lg-3.two  ul li a{
    color: white;
    position: relative;
    font-size: 13px;
}
.footer .row .col-lg-3.two  ul li a::before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: #007bff;
    bottom: 0;
    left: -100%;
    transition: 0.4s;
}
.footer .row .col-lg-3.two  ul li:hover a::before{
    left: 0;
}


.footer .row .col-lg-3.there h3{
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}
.footer .row .col-lg-3.there  ul {
    padding: 0;
}
.footer .row .col-lg-3.there  ul li{
    padding: 5px 0;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    
}
.footer .row .col-lg-3.there  ul li a{
    color: white;
    font-weight: normal; 
}

.footer .row .col-lg-3.there  ul li::before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: #007bff;
    bottom: 0;
    left: -100%;
    transition: 0.5s;
}
.footer .row .col-lg-3.there  ul li:hover::before{
    left: 0;
}



.footer .row .col-lg-3.four h3{
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}
.footer .row .col-lg-3.four span{
    color: white;
    font-size: 14px;
}
.footer .row .col-lg-3.four .user{
    width: 100%;
    border-radius: 5px;
    
    display: flex;
    border: 1px solid #ffffff;
    margin-top: 30px;
    overflow: hidden;
}
.footer .row .col-lg-3.four .user input{
    background-color: transparent;
    outline: none;
    color: white;
    width: 60%;
    border: none;
    padding: 10px;
}
.footer .row .col-lg-3.four .user button{ 
    width: 40%;
    background-color: #054A94;
    color: white;
    border: none;
}

@media screen and (max-width:991px) {
    .footer {
        padding-left: 5%;
    } 
    .footer .two{
        display: none;
    }
    .footer  .there{
        margin-top: 30px;
    }
    .footer .row .col-lg-3 img{
        width: 200px;
    }
    
}