.hero{
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 2rem;
}

.hero .content{
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    padding: 0;  
}

.hero h1{
    color: var(---colorOnSecondary);
    font-size: 24px;
}

.hero p{
    max-width: 600px;
    font-size: 15px;
    color: var(---textColor);
    margin-top: 1rem;
}

.visuals{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-top: 2rem;
}

.visuals img{
    width: 100%;
    background-color: var(---colorOnBackground);
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}

.provider_content{
    width: 100%;
    margin: 2rem 0;
}

.card{
    width: 100%;
    border-radius: 10px;
    background-color: rgba(244, 244, 190, 0.664);
    padding: 20px 0;
}

.card .head{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    border-bottom: 1px solid gainsboro;
    padding: 0 20px;
    padding-bottom: 16px;
}

.head i,span{
    color: var(---colorOnSecondary);
    font-weight: bold;
}

.card form{
    padding: 20px;
}
@media screen and (min-width: 1024px) {

    .hero{
        flex-direction: row;
        align-items: center;
        padding: 0 2rem;
        justify-content: space-between;
        height: 760px;
    }

    .hero .content{
        width: 48%;
        
    }

    .hero h1{
        font-size: 44px;
        max-width: 680px;
        font-weight: normal;
    }

    .hero p{
        max-width: 500px !important;
        font-size: 18px !important;
        color: var(---textColor);
        margin-top: 1rem;
    }

    .visuals{
        width: 40%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: end;
        gap: 1rem;
        margin-top: 2rem;
    }

    .visuals img{
        background-color: var(---colorOnBackground);
        border-radius: 20px;
        height: 680px;
        object-fit: cover;
    }

    .card{
        width: 420px;
    }
}

@media screen and (min-width: 1200px) {

    .hero{
        flex-direction: row;
        align-items: center;
        padding: 0 6rem;
    }

    .hero_title{
        font-size: 44px !important;
    }

    .hero h1{
        max-width: 700px;
    }
}