.footer *
{
    margin: 0px;
    padding: 0;
    font-family: 'popins',sans-serif;
    box-sizing: border-box;
}
.footer
{
    width:100%;
    bottom: 0;
    position:static;
    left: 0;
    z-index: 100;
    background:linear-gradient(to right, #00093c, #2d0b00);
    color:#fff;
    padding: 10px 0;
    border-top-left-radius:50px;
    font-size:13px;
    line-height: 25px;
    margin-top: 30%;
}
.footer .row
{
  width: 85%;
  margin:auto;
  display:flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content:space-between;

}
.footer .col
{
    flex-basis: 25% ;
    padding: 10px;
}
.footer .col:nth-child(1){
    flex-basis: 30%;
}
.footer .col:nth-child(2){
    flex-basis: 10%;
}
.footer .logo
{
    height: 100px;
    width: 100px;
}
.footer .col h3
{
    width: fit-content;
    margin-bottom:50px;
    margin-top: 40px;
    position:relative;
}
.footer .col h3:hover
{
    color:blue;
}
.footer .col h4{
    width: fit-content;
    margin-bottom: 10px;
    margin-top: 10px;
    position: relative;
}
.footer .col h4:hover{
    color:blue;
}
.footer .col p:hover
{
    color: #f50404;
}
.footer .col ul li 
{
    list-style-type: none;
    margin-bottom: 10px;
}
.footer .col ul li a
{
    text-decoration: none;
    color:#f50404;
    font-size:15px
}
.footer .col ul li i
{
    margin-right: 10px;
    font-size: 15px;
    color:#f50404
}
.footer form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
.footer form .far {
    font-size: 18px;
    margin-right: 10px;
}
.footer form input{
    width: 100%;
    background:transparent;
    color: #ccc;
    border:0;
    outline: none;
}
.footer form button{
    background:transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
.footer form button .fas{
    color: #ccc;
    size: 16px;
}
.footer .social-icons{
    text-align: center;
}
.footer .social-icons .fab{
    width: 40px;
    height: 40px;
    border-radius:50% ;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    margin-top: 5px;
    cursor: pointer;
}
.footer .social-icons .fa-facebook-f:hover{
    color:blue;
}
.footer .social-icons .fa-instagram:hover{
    color:deeppink;
}
.footer .social-icons .fa-whatsapp:hover{
    color:green;
}
.footer hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.footer .copyright{
    text-align: center;
}
.footer .underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 255;
    left: 0;
    overflow: hidden;
}
.footer .underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving {
    0%{
        left:-20px; 
    }
    100%{
        left:100% ;
    }
}
@media (max-width: 700px){
    .footer{
        bottom:unset;
        border-top-right-radius:20px;
        border-top-left-radius:20px;
    }
    .footer h3{
        text-align: center;
    }
    .footer .col{
        flex-basis:100%
    }
    .footer .col:nth-child(1), .col:nth-child(2){
        flex-basis:100%;
    }
}
