.footer{
    background:linear-gradient(180deg,#10233d,#09121f);
    color:#d6d6d6;
    padding:70px 0 20px;
}

.footer-divider svg{
    display:block;
    width:100%;
    height:80px;
    fill:#10233d;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-about img{
    height:60px;
    margin-bottom:20px;
}

.footer-about p{
    line-height:1.8;
}

.footer-links h3,
.footer-contact h3{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff6600;
    padding-left:5px;
}

.footer-contact p{
    margin-bottom:14px;
    display:flex;
    gap:10px;
    align-items:center;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#ff6600;
    transform:translateY(-3px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer{
        text-align:center;
    }

    .footer-contact p{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }
}

/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
    margin:0;
    padding:0;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

/* REMOVE ALL SIDE GAPS */

body{
    display:block;
}

/* MAIN WEBSITE WRAPPER */

.wrapper,
.container,
main,
section,
footer,
header{
    margin:0;
    padding:0;
}

/* REMOVE UNWANTED SPACE BELOW FOOTER */

footer{
    margin-bottom:0 !important;
}

/* FIX IMAGE OVERFLOW */

img{
    max-width:100%;
    display:block;
}

/* REMOVE BOOTSTRAP CONTAINER SIDE SPACE */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}