@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: black;
    color: white;
    padding: 70px;
}
.footer-col {
    width: 25%;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
}

.container {
    max-width: 1170px;

    margin: auto;
}
ul {
    list-style-type: none;
}
.footer-col h4{
    font-size: 18px;
    color: white;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-family: "Lato";
    font-weight: 500;
    position: relative;
}
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #1e76e9;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all ease 1s;
}
.footer-col ul li a:hover {
    color: #ffff;
    padding-left: 7px;
}
.footer-col  .social  a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgb(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffff;
    transition: all 0.1s ease;
}
.footer-col  .social  a:hover{
    color: #24262b;
    background-color: #ffff;
}
@media (max-width: 767px) {
    .footer-col {
        width: 25%;
        padding: 0 15;
    }
    
}
@media (max-width: 574px) {
    .footer-col {
        width: 100%;
    }   
}