/*==================================
        PREMIUM FOOTER
==================================*/

.footer{
    background: linear-gradient(
        135deg,
        #071c4d 0%,
        #0A2E6D 50%,
        #082456 100%
    );
    position: relative;
    padding: 90px 0 25px;
    overflow: hidden;
}

.footer::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.footer::after{
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
}

/* LOGO */

.footer-logo{
    max-height: 80px;
    margin-bottom: 25px;
}

/* ABOUT TEXT */

.footer-about{
    color: rgba(255,255,255,.8);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
}

/* TITLE */

.footer-title{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 55px;
    height: 3px;
    background: #ff7a00;
    border-radius: 50px;
}

/* LINKS */

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links a{
    color: rgba(255,255,255,.75);
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-links a:hover{
    color: #ff7a00;
    transform: translateX(8px);
}

/* CONTACT */

.footer-contact p{
    color: rgba(255,255,255,.8);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
}

.footer-contact i{
    color: #ff7a00;
    width: 25px;
    margin-right: 8px;
}

/* SOCIAL ICONS */

.social-icons{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .4s;
}

.social-icons a:hover{
    background: #ff7a00;
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(255,122,0,.35);
}

.social-icons i{
    font-size: 18px;
}

/* DIVIDER */

.footer-divider{
    border: none;
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 50px 0 25px;
}

/* BOTTOM */

.footer-bottom{
    text-align: center;
}

.footer-bottom p{
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    letter-spacing: .5px;
}

/* HOVER EFFECT */

.footer .col-lg-4,
.footer .col-lg-3,
.footer .col-lg-2{
    position: relative;
    z-index: 2;
}

.footer-contact a{
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: .3s;
}

.footer-contact a:hover{
    color: #ff7a00;
}





/* RESPONSIVE */

@media(max-width:991px){

    .footer{
        text-align: center;
        padding: 70px 0 25px;
    }

    .footer-title{
        display: block;
    }

    .footer-title::after{
        left: 10%;
        transform: translateX(-50%);
    }

    .social-icons{
        justify-content: center;
    }

    .footer-contact i{
        width: auto;
        margin-right: 6px;
    }

}

@media(max-width:767px){

    .footer{
        padding: 60px 0 20px;
    }

    .footer-logo{
        max-height: 65px;
    }

    .footer-title{
        font-size: 22px;
    }

}


@media (max-width: 767px){

    .footer{
        text-align:left !important;
    }

    .footer .col-lg-4,
    .footer .col-lg-3,
    .footer .col-lg-2{
        text-align:left !important;
    }

    .footer-logo,
    .navbar-brand{
        display:block;
        text-align:left;
        margin-bottom:20px;
    }

    .footer-about{
        text-align:left;
    }

    .social-icons{
        justify-content:flex-start !important;
        display:flex;
    }

    .footer-links{
        padding-left:0;
        text-align:left;
    }

    .footer-links li{
        text-align:left;
    }

    .footer-title{
        text-align:left;
    }

    .footer-contact{
        text-align:left;
    }
}





