/* Footer Background Image */
.footer-bg-image {
    position: absolute;
    bottom: 20px;
    left: 0;
}

/* Footer Container */
.footer-container {
    padding-top: 185px;
}
@media (max-width: 768px) {
    .footer-container {
        padding-top: 30px;
    }
}

/* Footer Social Icons Container */
.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: start;
    margin-top: 12px;
}
.footer-copyright-text-content-item{
    display: flex;
    justify-content: start;
    align-items: center;
}
@media (max-width: 768px) {
    .footer-social-icons {
        justify-content: space-around;

    }
    .footer-copyright-text-content-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

}


/* Social Icon Background */
.social-icon {
    background-color: #FFFFFF;
}


/* Footer Copyright Text Items */
.footer-copyright-text-item {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 6.5%;
    text-decoration-thickness: auto;
}

/* Footer Copyright Description */
.footer-copyright-description {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 34%;
}
@media (max-width: 768px) {
    .footer-copyright-description {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Footer Logos Container */
.footer-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

