:root {
    --primary-color: #1a1a1a;
    --light-color: #f3f4f6;
    --white-color: #ffffff;
    --black-color: #000000;
    --dark-color: #2f2f30;
}

.section-black {
    background-color: #111;
}

.section-black h2,
.section-black p {
    color: #f3f4f6;
}

#footer {
    background-color: var(--black-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer h2 {
    margin-bottom: 40px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

#footer h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

#footer h2,
#footer h3 {
    color: var(--white-color);
}

#footer .text-footer {
    overflow-wrap: normal;
    font-size: 16px;
}

#footer p {
    text-align: start;
}

#footer p,
#footer a {
    color: var(--light-color);
}

#footer .footer_container {
    padding: 100px 15px;
    margin: auto;
    max-width: 1250px;
    width: 100%;
}

#footer .footer_container .footer_top {
    padding: 2em 0;
    display: flex;
    gap: 100px;
    align-items: flex-start;
    justify-content: center;
}

#footer .footer_container .footer_top ul {
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    padding-top: 10px;
    padding-left: 4px;
}

#footer .footer_container .footer_top ul li i {
    color: var(--light-color);
    font-size: 30px;
}

#footer .footer_container .footer_top .footer-box {
    padding: 0 0 3em 0;
}


@media screen and (max-width: 768px) {

    #footer .footer_container .footer_top ul.footer_links {
        flex-direction: column;
    }

    #footer .footer_container {
        padding: 60px 15px;
    }

    #footer .footer_container .footer_top {
        flex-direction: column;
        padding: 1em 0;
        gap: 0;
    }

    #footer .footer_container .footer_top ul li i {
        font-size: 25px;
    }
}

@media screen and (max-width: 575px) {
    #footer .footer_container .footer_top ul {
        gap: 35px;
    }

    #footer .footer_container .footer_top ul li i {
        font-size: 25px;
    }

    #footer .text-footer {
        font-size: 14px;
    }
}