*, body{
    font-family: "Nunito Sans", sans-serif;
}

.footer{
    padding: 50px 0;
}
.footer .footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer .footer-left{
    width: 45%;
    max-width: 440px;
}

.footer .footer-left .footer-logo img{
    max-width: 45px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;

}
.footer .footer-left p{
    font-size: 20px;
    line-height: 28px;
    color: rgb(2, 42, 65);
    font-weight: 600;
    padding-bottom: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid black;
}
.footer .footer-links{
    width: 55%;
    flex-wrap: wrap;
    display: flex;
}
.footer .footer-links .footer-column{
    width: 25%;
    flex: 1 0 25%;
}
.footer .footer-links .footer-column h4{
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    color: rgb(2, 42, 65);
}
.footer .footer-links .footer-column li{
    list-style: none;
    margin-bottom: 10px;
}
.footer .footer-links .footer-column li a{
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(15, 16, 4, 0.7);
    transition: all 0.3s ease;

}
.footer .footer-links .footer-column li a:hover{
    color: rgba(15, 16, 4, 1);
}
.footer .footer-links .footer-column ul{
    padding-left: 0;
}
.footer .footer-links .footer-column .socials{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer .footer-links .footer-column .socials img{
    max-width: 25px;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.footer .footer-links .footer-column .socials img:hover{
    opacity: 1;
}

@media (max-width: 1024px){
    .footer .footer-content{
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .footer-left{
        order: 2;
        width: 100%;
        max-width: unset;
        padding: 0 30px;
    }
    .footer .footer-links{
        width: 100%;
        order: 1;
        padding: 0 30px;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 30px;
    }
    .footer .footer-links .footer-column{
        width: 100%;
        flex: 1 0 100%;
    }
    .footer .footer-links .footer-column .socials{
        justify-content: unset;
        gap: 20px;
    }

}