
.footer-section-info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.footer-section-info-links{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap:1rem;
    text-align: start;
}

.footer-section-info-links p{
    font-size: 1rem;
    font-weight: 400;
    color: #191817;
    cursor: pointer;
    align-items: start;
    text-align: start;
}

.footer-section-info-links p:hover {
    color: #191817;
    text-decoration: underline;
}


.footer-section-copright{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: start;
}

.footer-section-copright p:hover{
    color: #191817;
    text-decoration: underline;
}

.footer-section-copright-info{
    text-align: start;
    color: #989896;
}

.footer-section-copright-social{
    display: flex;
    gap:0.5rem;
}

.footer-header{
    display: flex;
    align-items: start;
    gap:4rem;
    width: 100%;
}

.footer-header-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    margin-right: auto;
    flex: 1;
}

.footer-header-content-title{
    font-weight: 400;
    font-size: 2rem;
    color: #0D0D0D;
    text-align: start;
    line-height: 2rem;
}

.footer-header-content-subtitle{
    color: #464542;
    font-size: 1rem;
    text-align: start;
    line-height: 1.6rem;
}

.footer-header-form{
    display: flex;
    flex: 1;
    width: 100%;
}

.footer-divider{
    width: 100%;
    height: 1px;
    background: #E5E7EB;
}

.footer-support-container{
    display: flex;
    gap:3rem;
    width: 100%;
}

.footer-support{
    display: flex;
    gap:1rem;
    align-items: center;
    width: 100%;
}

.mobile-justify-center{
    justify-content: start;
}

@media (max-width: 900px) {
    .footer-support-container{
        flex-direction: column;
    }

    .footer-header{
        flex-direction: column;
        gap:2rem;
    }


    .footer-section-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 2rem;
    }

    .mobile-justify-center{
        justify-content: center;
    }

    .footer-section-copright{
        flex-direction: column;
        gap:1rem;
    }
}