



.footer{
    background: #1d1e24;
    padding: 60px 0 20px;
    color: #fff;
}

.footer .container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-col h4::after{
    content: "";
    width: 40px;
    height: 2px;
    background: #7b014c;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin: 5px 0;
}

.footer-col ul li a{
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover{
    color: #fff;
    padding-left: 5px;
}

.footer-col a{
    color: #fff
}

.social-links a{
    display: inline-flex;
    text-decoration: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover{
    background: #7b014c;
}

copyright{
    text-align: center;
}

.footer .copyright{
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}
 
/* Responsive */
@media (max-width: 768px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px){
    .footer-col{
        width: 100%;
    }
}
