/* * {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}

body{
    background: #eef8ff;
} */

footer{
    width: 100%;
    position: static;
    bottom: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

footer h3{
    font-size: 15px;
    color: white;
}
footer p{
    font-size: 15px;
    color: white;
}

footer a{
    font-size: 17px;
    color: rgb(0, 0, 0);
}

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 .logo{
    width: 90px;
    margin-bottom: 30px;
}

footer .col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

footer .email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 5px 0;
}

footer ul li{
    list-style: none;
    margin-bottom: 12px;
}

footer .navbar-nav li a{
    color: #292b2c;
}

footer ul li a{
    text-decoration: none;
    color: #fff;
}

footer .element.style a{
    color: black;
}

footer form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

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{
    font-size: 16px;
    color: #ccc;
}

footer .tt-subscribe {
    position: relative;
}

footer .tt-subscribe input:not([type="submit"]) {
    width: 100%;
    height: 46px;
    background: #fff;
    font-size: 15px;
    color: #838486;
    padding-left: 20px;
    padding-right: 70px;
    border: 2px solid #fff;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
footer .tt-subscribe-submit {
    background: #001b57;
}

footer .tt-subscribe-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 46px;
    font-size: 18px;
    line-height: 46px;
    color: #2a2a2a;
    text-align: center;
    background: #001b57;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;
}


footer .tt-subscribe-submit i.fa-envelope:before {
    content: "\f0e0";
    position: relative;
    z-index: 1;
    color: #fff;
}
footer .tt-subscribe-submit input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #51658d;
    border: 0;
}
footer ul.tt-socail {
    padding: 0;
    margin-top: 30px;
}
footer .tt-socail li {
    display: inline-block;
    margin-right: 10px;
}
footer .tt-socail a {
    display: block;
    width: 36px;
    height: 36px;
    font-size: 17px;
    line-height: 34px;
    color: #fff;
    text-align: center;
    border: 1px solid #fff;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

footer hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

footer .copyright{
    text-align: center;
    font-size: 15px;
    color: white;
}

footer .underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    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: -20%;
    }
    100%{
        left: 100%;
    }

}

@media (max-width: 700px){
    footer{
        bottom: unset;
    }

    footer .col{
        flex-basis: 100%;
    }

    footer .col:nth-child(2), .col:nth-child(3){
        flex-basis: 15%;
    }

}