.home-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-logo-section-image img {
    width: 15rem;
}

.footer-logo-section-text {
    color: var(--text-001, #1D242B);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Quicksand;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.footer-logo-section-social-media {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.footer-support-section {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    text-align: start;
    gap: 10px;
}

.contact-us-section {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


.footer-services-section {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    gap: 10px;
}


.footer-section-header {
    color: var(--Color-Primary_001, #0157A2);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Quicksand;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 110% */
    text-align: center;
}

.support-section {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}

.contact-us-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    width: 20%;
}

.contact-us-row {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px
}

.home-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--Neutral-600, #6F6C90);
    padding: 20px;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Quicksand;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 166.667% */
}

.home-end-rights-text {
    color: var(--Neutral-600, #6F6C90);
    text-align: right;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Quicksand;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 166.667% */
}

.footer-section-header~p {
    font-family: Quicksand;
}

.footer-logo-section-image-text {
    font-family: Quicksand;
}

.contact-us-section {
    font-family: Quicksand;
}

.footer-a {
    font-family: Quicksand;
    color: black;
}

.footer-a:hover {
    color: #2a74b5;
}



@media(max-width:786px) {
    .home-footer {
        display: block;
    }

    .footer-logo-section-image img {
        width: 12rem;
    }

    .footer-logo-section {
        gap: 15px;
    }

    .footer-services-section {
        align-items: center;
        margin-top: 3%;
    }

    .footer-section-header {
        font-size: 18px;
    }

    .footer-a {
        font-size: 14px;
    }

    .footer-support-section {
        align-items: center;
        margin-top: 3%;
    }

    .footer-section-header {
        font-size: 18px;

    }

    .contact-us-section {
        align-items: center;
        width: 100%;
        margin-top: 5%;
    }

    .contact-us-row p {
        font-size: 14px;
    }

    .contact-us-row div {
        font-size: 14px;
    }

    .home-end-text,
    .home-end-rights-text {
        font-size: 14px;
    }

    .footer-logo-section-image-text {
        text-align: center;
    }

}