/* =========================
   FOOTER SECTION
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
}

/* Footer */

.footer{

    background:#070217;
    color:#fff;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    padding:50px 40px;

}

.footer-box h3{

    font-size:18px;

    margin-bottom:20px;

    font-weight:700;

}

.footer-box p{

    line-height:1.8;

    color:#f2f2f2;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:15px;

    color:#f2f2f2;

}

.footer-box ul li i{

    margin-right:10px;

}

.footer-box ul li a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#ffd700;

}

/* Social Icons */

.social-icons{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.social-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.fb img{
    height: 40px;
}

.pint img{
     height: 40px;
}

.insta img{
     height: 40px;
}

.you img{
     height: 40px;
}


.github{
    background:#333;
}

.social-icons a:hover{

    transform:translateY(-5px);

}

/* Copyright */

.copyright{

    background:black;

    text-align:center;

    padding:18px;

    font-size:15px;

}

.copyright a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

/* Responsive */

@media(max-width:992px){

.footer-container{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

.social-icons{

    justify-content:center;

}

}