@import url('https://googleapis.com');
*{
    box-sizing:border-box;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300px;
}
.footer{
    background:#1245d0;
    color:#fff;
    padding-top:40px;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    padding:0 30px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-col{
    flex:1;
    min-width:220px;
}

.footer-logo{
    flex:1.5;
}

.footer-logo img{
    width:140px;
    margin-bottom:20px;
}

.footer h4{
    font-size:28px;
    margin-bottom:15px;
    font-weight:500;
}

.footer h4::after{
    content:'';
    display:block;
    width:40px;
    height:2px;
    background:#c5ff3d;
    margin-top:10px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin:12px 0;
}

.footer ul li a{
    color:#fff;
    text-decoration:none;
}

.footer ul li a:hover{
    color:#c5ff3d;
}

.footer p{
    line-height:2;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:white;
    text-decoration:none;
    margin-right:10px;
    transition:.3s;
}

.social-links a:hover{
    background:white;
    color:#1f4ed8;
}

.footer-bottom{
    margin-top:10px;
    padding:20px 30px;
    border-top:1px solid rgba(255,255,255,.2);
    text-align:center;
}

@media(max-width:768px){

    .footer-container{
        flex-direction:column;
    }

    .footer h4{
        font-size:22px;
    }

    .footer-logo img{
        width:110px;
    }
}