@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


.footer-container{
    font-family: "Poppins", sans-serif;
    max-width: 1170px;
    margin:auto;
    width: 100%;
}

.footer-name {
    font-family: "Poppons", sans-serif;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.footer-ul{
    list-style: none;
}

.footer{
    background-color: #080808;
    padding: 25px 0;
    border-top: 5px solid white;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: deeppink;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 5px;
}

.footer-col ul li a{
    font-size: 13px;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: flex;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


.footer-col .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    text-decoration: none;
    line-height: 35px;
    background-color:  #24262b;
    margin:0 10px 10px 0;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

/* .footer-col .social-links a{
    display: inline-block;
    height: 35px;
    width: 35px;
    background-color:  #24262b;
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
} */

.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}


.footer-col .social-links-logo a {
    background-color: transparent;
}


.footer-col .social-links a img {
    width: 100%;
}

.footer-col .social-links a img:hover{
    background-color: #817d7d;
    opacity: 0.5;
}


.footer-name {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 15px 0;
    color: white;
    clear: both;
}

hr {
    width: 99%;
    margin: 0 0.5%;
}


@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }

    .footer-container{
        width: 100%;
    }
}

@media(max-width: 347px){
    .footer-col{
        width: 100%;
    }
    .footer-container{
        width: 100%;
    }
}

