.footer{
    background-color: whitesmoke;
    padding: 30px 15px 0;
}

.container{
    max-width: 1000px;
    margin: auto;
}

.rows{
    display: flex;
    flex-wrap: wrap;

}

.list{
    list-style: none;
}

.footer-col{
    width: 20%;
    padding: 0 15px;
}

.footer-col h4{
    font-size: 18px;
    color: #101010;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    font-family:'Josefin Slab' , serif;
}

.footer-col h4:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: green; /*underlines*/
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li a:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 17px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: #101010;
    display: block;
    transition: all 0.3s ease;
    font-family: 'Josefin Slab' , serif;
}

.footer-col ul li a:hover{
    color: #101010;
    padding-left: 8px;
}

.footer-col .socialinks a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #101010;
    color:whitesmoke;

    margin: 0 10px 10px 0 ;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.footer-col .socialinks a:hover{
    color: #101010;
    background-color: green;

}

.copyrights{
    background-color: #101010;
    padding: 10px;
    color: white;
}

.copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px){
    .footer-col{
        width: 100%;

    }
}

/* CSS for Footer Contact */
.footer-contact {
    margin-top: 20px;
    padding-top: 20px;
    text-align: center /* Align content to the right */
}

/* .footer-contact h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
} */
/* 
.footer-contact p:last-child {
    margin-bottom: 0;
} */  