/* START Footer */

#footer {
    background: #fff;
    font-size: 13px;
    position: relative;
    margin-top: 0;
    z-index: 0;
    font-family: 'Poppins', sans-serif;
    color: #666666;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.2);
}

#footer-left-div, #footer-right-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#footer-intro, .footer-stat-number {
    color: #6100b0;
    font-weight: 600;
}

#footer-intro {
    font-size: 16px;
}

#footer-about-links-container > a, .footer-stat-label {
    display: block;
    white-space: nowrap;
    text-decoration: none;
    color: #666666;
}

#footer-about-links-container > a:hover {
    color: #6100b0;
}

#socials-message {
    font-weight: 600;
}

#footer-stats-container {
    text-align: center;
}

.footer-stat-container {
    display: flex;
    flex-direction: column;
}

.footer-stat-label {
    text-wrap: wrap;
}

.footer-stat-number {
    font-size: 36px;
}

.footer-links-styling > a {
    text-decoration: none;
}

#footer-legal-links-container > a {
    color: #222222;
    font-weight: 600;
}

@media (min-width: 1025px) {
    #footer {
        padding: 60px 80px;
        display: flex;
        flex-direction: row;
        /*justify-content: center;*/
    }

    #footer-left-div {
        width: 40%;
        padding: 30px;
        border-right: 2px solid #666666;
        box-sizing: border-box;
        gap: 24px;
        align-items: center;
    }

    #footer-logo-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-logo {
        width: 344px;
        height: auto;
    }

    #footer-right-div {
        padding: 40px 80px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #socials-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    #social-media-icons-container {
        display: flex;
        gap: 16px;
    }

    #footer-about-container {
        display: flex;
        gap: 16px;
        box-sizing: border-box;
        padding: 20px 0;
    }

    #footer-about-title {
        display: none;
    }

    .footer-links-styling {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
    }

    #footer-stats-container {
        border-top: 1px solid #666666;
        border-bottom: 1px solid #666666;
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 36px;
    }

    .footer-stat-label {
        font-size: 14px;
    }

    #footer-legal-line {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
    #footer-legal-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #footer-legal-message {
        font-size: 12px;
        width: 100%;
        /*max-width: 700px;*/
    }
}

@media (max-width: 1024px) {
    #footer{
        flex-direction: column;
        box-sizing: border-box;
        gap: 40px;
        height: 100%;
        padding: 60px;
    }
    #footer-logo-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        border-bottom: 2px solid #666666;
        box-sizing: border-box;
    }
    .footer-logo {
        width: 226px;
        height: 44px;
        padding-bottom: 24px;
    }
    #footer-left-div {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: 20px;
        text-align: center;
        justify-content: center;
    }
    #footer-right-div {
        margin-top: 24px;
    }
    #socials-container, #footer-about-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 16px;
    }
    #socials-message {
        text-align: center;
        width: 100%;
    }
    #social-media-icons-container {
        display: flex;
        gap: 20px;
        width: 70%;
    }
    #footer-about-links-container, #footer-legal-links-container {
        width: 100%;
        gap: 20px;
    }
    #footer-about-title{
        font-size: 18px;
        font-weight: 600;
    }
    #footer-stats-container {
        column-count: 2;
        column-gap: 10px;
        box-sizing: border-box;
        border-bottom: 1px solid #666666;
    }
    .footer-stat-container {
        padding: 20px 0;
    }
    .footer-stat-label {
        font-size: 12px;
    }
    .footer-links-styling {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #footer-legal-container, #footer-legal-line {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    #footer-copyright {
        font-size: 13px;
    }
    #footer-legal-message {
        font-size: 10px;
        width: 100%;
    }
}