/*==========================================================
FOOTER
Trade by Ray
==========================================================*/

.site-footer{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #0B2D1F 0%,
        #082318 100%
    );

    color:#ffffff;

    padding-top:90px;

}

/*=========================================
BACKGROUND EFFECT
=========================================*/

.site-footer::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    left:-250px;

    top:-250px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    filter:blur(120px);

}

.site-footer::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    right:-200px;

    bottom:-250px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    filter:blur(120px);

}

/*=========================================
TOP
=========================================*/

.footer-top{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

    padding-bottom:70px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/*=========================================
LOGO
=========================================*/

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

    text-decoration:none;

    color:#ffffff;

    font-size:34px;

    font-weight:800;

}

.footer-logo span{

    color:#D4AF37;

}

.footer-company p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

    margin-bottom:35px;

}

/*=========================================
TITLE
=========================================*/

.footer-column h3{

    margin-bottom:28px;

    font-size:22px;

    color:#ffffff;

}

/*=========================================
MENU
=========================================*/

.footer-column ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    color:rgba(255,255,255,.72);

    text-decoration:none;

    transition:.35s;

}

.footer-column a:hover{

    color:#D4AF37;

    padding-left:8px;

}

/*=========================================
CONTACT
=========================================*/

.footer-contact li{

    margin-bottom:22px;

}

.footer-contact strong{

    display:block;

    color:#ffffff;

    margin-bottom:6px;

}

.footer-contact span{

    color:rgba(255,255,255,.72);

    line-height:1.8;

}

/*=========================================
SOCIAL
=========================================*/

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    text-decoration:none;

    font-size:13px;

    transition:.35s;

}

.footer-social a:hover{

    background:#D4AF37;

    transform:translateY(-5px);

}

/*=========================================
STATISTIC
=========================================*/

.footer-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:60px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-stat{

    text-align:center;

    padding:35px 20px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    transition:.35s;

}

.footer-stat:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.09);

}

.footer-stat h2{

    font-size:42px;

    color:#D4AF37;

    margin-bottom:10px;

}

.footer-stat span{

    color:rgba(255,255,255,.75);

}

/*=========================================
BOTTOM
=========================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    padding:35px 0;

}

.footer-copy{

    color:rgba(255,255,255,.65);

}

.footer-links{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

}

.footer-links a{

    color:rgba(255,255,255,.72);

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#D4AF37;

}

/*=========================================
BACK TO TOP
=========================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#D4AF37;

    color:#ffffff;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}

/*=========================================
TABLET
=========================================*/

@media(max-width:1100px){

.footer-top{

grid-template-columns:1fr 1fr;

}

.footer-stats{

grid-template-columns:repeat(2,1fr);

}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

.site-footer{

padding-top:70px;

}

.footer-top{

grid-template-columns:1fr;

gap:40px;

}

.footer-stats{

grid-template-columns:1fr;

padding:45px 0;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-links{

justify-content:center;

gap:18px;

}

.footer-logo{

font-size:30px;

}

.footer-column h3{

font-size:20px;

}

.back-to-top{

right:20px;

bottom:20px;

width:50px;

height:50px;

font-size:18px;

}

}