/*==================================================
FOOTER
==================================================*/

.footer-section{

    position:relative;

    overflow:hidden;

    background:#070707;

    padding:100px 0 0;

}

.footer-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-300px;

    left:-300px;

    border-radius:50%;

    background:radial-gradient(circle,#D4AF3720,transparent 70%);

}

.footer-section::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-300px;

    bottom:-300px;

    border-radius:50%;

    background:radial-gradient(circle,#FFD9E820,transparent 70%);

}

.footer-section .container{

    position:relative;

    z-index:2;

}

.footer-logo{

    display:inline-block;

    margin-bottom:30px;

}

.footer-logo img{

    height:48px;

}

.footer-text{

    color:#bcbcbc;

    line-height:1.9;

    margin-bottom:35px;

    max-width:350px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.footer-social a:hover{

    background:#D4AF37;

    color:#111;

    transform:translateY(-6px);

}

.footer-section h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

}

.footer-section ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-section ul li{

    margin-bottom:16px;

}

.footer-section ul li a{

    color:#bcbcbc;

    transition:.35s;

}

.footer-section ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#bcbcbc;

}

.footer-contact i{

    color:#D4AF37;

    font-size:20px;

    margin-top:3px;

}

.footer-bottom{

    margin-top:70px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#999;

    font-size:15px;

}

.footer-bottom strong{

    color:#D4AF37;

}

@media(max-width:991px){

    .footer-section{

        padding-top:80px;

    }

}

@media(max-width:768px){

    .footer-section{

        padding-top:70px;

    }

    .footer-bottom{

        margin-top:50px;

    }

    .footer-section h4{

        margin-top:15px;

    }

    .footer-social{

        justify-content:flex-start;

        flex-wrap:wrap;

    }

}