/*=========================================
            FOOTER
==========================================*/

.site-footer{
    position:relative;
    background:#1B3A6B;
    color:#fff;
    overflow:hidden;
    padding:80px 0 0;
}

/* Animated Top Border */

.site-footer::before{

    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;

background:linear-gradient(
        90deg,
        transparent,
        #F5A623,
        transparent
    );
    

    animation:footerLine 5s linear infinite;

}

@keyframes footerLine{

    100%{
        left:100%;
    }

}

/* Background Circle */

.site-footer::after{

    content:"";
    position:absolute;
    right:-120px;
    bottom:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.03);

}

.footer-wrapper{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:60px;

}

/*=========================================
        FOOTER COLUMNS
==========================================*/

.footer-col{

    animation:fadeUp .8s ease forwards;
    opacity:0;

}

.footer-col:nth-child(2){

    animation-delay:.2s;

}

.footer-col:nth-child(3){

    animation-delay:.4s;

}

.footer-col:nth-child(4){

    animation-delay:.6s;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(35px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*=========================================
        LOGO
==========================================*/

.footer-about img{

    width:270px;
    margin-bottom:25px;
    transition:.4s;

}

.footer-about img:hover{

    transform:scale(1.05);

    filter:drop-shadow(0 0 15px rgba(164,206,58,.5));

}

.footer-about p{

    color:#d6d6d6;
    line-height:1.9;
    margin-bottom:20px;

}

/*=========================================
        HEADING
==========================================*/

.footer-col h3{

    position:relative;
    display:inline-block;

    margin-bottom:30px;

    font-size:24px;
    color:#fff;
}
.footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background:#F5A623;
    transition:.35s;
}
.footer-col:hover h3::after{
    width:85px;
}

/*=========================================
        MENUS
==========================================*/

.footer-menu,
.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}
.footer-menu li,
.footer-links li{
    margin-bottom:16px;
}
.footer-menu a,
.footer-links a{
    color:#dcdcdc;
    display:inline-flex;
    align-items:center;
    transition:.35s;
    font-size:15px;
}
.footer-menu a::before,
.footer-links a::before{
    content:"➜";
    color:#F5A623;
    margin-right:10px;
    opacity:0;
    transform:translateX(-8px);
    transition:.35s;
}
.footer-menu a:hover,
.footer-links a:hover{
    color:#F5A623;
    transform:translateX(10px);
}
.footer-menu a:hover::before,
.footer-links a:hover::before{
    opacity:1;
    transform:translateX(0);
}

/*=========================================
        CONTACT
==========================================*/
.footer-contact{
    margin-top:10px;
}
.contact-item{
    display:flex;
    gap:5px;
    margin-bottom:10px;
    padding:10px;
    border-radius:12px;
    transition:.35s;
}
.contact-item:hover{
    background:rgba(255,255,255,.08);
    transform:translateX(8px);
}
.contact-item i{
    color:#F5A623;
    font-size:20px;
    width:20px;
    margin-top:4px;
    transition:.35s;
}
.contact-item:hover i{
    transform:scale(1.2);
}
.contact-item span,
.contact-item a{
    color:#dcdcdc;
    line-height:1.3;
    text-decoration:none;
    transition:.35s;
}
.contact-item a:hover{
    color:#F5A623;
}
/*=========================================
        SOCIAL
==========================================*/
.footer-social{
    display:flex;
    gap:15px;
}
.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.4s;
}
.footer-social a:hover{
    background:#F5A623;
    transform:translateY(-8px) rotate(360deg);
    box-shadow:0 10px 25px rgba(164,206,58,.45);
}

/*=========================================
        COPYRIGHT
==========================================*/

.footer-bottom{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.12);
    text-align:center;
    padding:15px 0;
}
.footer-bottom p{
    color:#cfcfcf;
    transition:.3s;
}
.footer-bottom:hover p{
    letter-spacing:1px;
}

/*=========================================
        RESPONSIVE
==========================================*/
@media(max-width:992px){
.footer-wrapper{
    grid-template-columns:1fr 1fr;
    gap:45px;
}
}
@media(max-width:768px){
.site-footer{
    padding-top:60px;
}
.footer-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}
.footer-about img{
    width:150px;
}
.footer-col h3{
    font-size:22px;
}
.footer-bottom{
    margin-top:40px;
}
}