


.footer{

    background:linear-gradient(
    135deg,
    #081F4D,
    #0F2F75);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:'';

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    top:-150px;
    right:-150px;

}

.footer-logo{

    font-size:32px;

    font-weight:800;

    color:#fff;

}

.footer-logo span{

    color:#FFD447;

}

.footer-title{

    font-size:20px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

}

.footer-title::after{

    content:'';

    position:absolute;

    width:60px;
    height:3px;

    left:0;
    bottom:-10px;

    background:#FFD447;

}

.footer-link{

    display:block;

    color:#dbe4ff;

    margin-bottom:12px;

    transition:.3s;

}

.footer-link:hover{

    color:#FFD447;

    padding-left:8px;

}

.footer-contact{

    margin-bottom:15px;

}

.footer-contact i{

    width:30px;

    color:#FFD447;

}

.newsletter-form{

    position:relative;

}

.newsletter-form input{

    border:none;

    border-radius:50px;

    padding:14px 20px;

    width:100%;

}

.newsletter-form button{

    position:absolute;

    top:4px;
    right:4px;

    border:none;

    background:#FFD447;

    color:#081F4D;

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

}

.social-links a{

    width:45px;
    height:45px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.1);

    border-radius:50%;

    color:#fff;

    margin-right:10px;

    transition:.4s;

}

.social-links a:hover{

    background:#FFD447;

    color:#081F4D;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:60px;

    padding-top:25px;

}

.footer-bottom a{

    color:#FFD447;

}

@media(max-width:991px){

    .footer{

        text-align:center;

    }

    .footer-title::after{

        left:50%;
        transform:translateX(-50%);

    }

    .social-links{

        justify-content:center;

    }

}

@media(max-width:575px){

    .footer-logo{

        font-size:24px;

    }