#content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

.client-resume{
    margin: 2rem;
    font-size: 1.3rem;
    text-align: center;
    width: 60%;
    line-height: 2rem;
    background-color: var(--color-main);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.client-assureur{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    gap: 5rem;
}

/* .client-title{
    align-self: center;
    margin: 3.5rem;
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: 5px solid var(--color-main);
} */

.client-assureur-actionnaire{
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.client-actionnaire-liste{
    width: 500px;
    height: 450px;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    border: 5px solid var(--color-second);
}

.actionnaire-title{
    position: absolute;
    top: -21px;
    background-color: white;
    padding: 0.5rem 0.7rem;
    font-weight: bold;
    font-size: 1.3rem;
}


.client-actionnaire-item{
    background-color: white;
    width: 40%;
    height: min-content;
}


.client-actionnaire-item:last-child{
    width: 25%;
}

.client-assureur-liste{
    width: 500px;
    height: 450px;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    border: 5px solid var(--color-main);
    gap: 2rem;
}

.client-assureur-item{
    background-color: white;
    border-radius: 10px;
    width: 40%;
    height: min-content;
}

.client-assureur-item:nth-child(n+4){
    width: 30%;
}


.client-courtier{
    width: 500px;
    height: 250px;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    border: 5px solid var(--color-main);
    align-self: center;
}

.client-courtier-item{
    background-color: white;
    border-radius: 10px;
    width: 38%;
    height: min-content;
}

.client-courtier-item:last-child{
    width: 28%;
}

@media only screen and (max-width: 650px){

    .client-resume{
        width: auto;
        margin: 0;
        font-size: 1rem;
    }


    .client-assureur-actionnaire{
        flex-direction: column;
        gap: 2rem;
    }

    .client-actionnaire-liste{
        width: auto;
        padding: 0.5rem;
        height: auto;
    }

    .client-assureur-liste{
        width: auto;
        padding: 0.5rem;
        height: auto;
    }

    .actionnaire-title{
        font-size: 1rem;
    }

    .client-courtier{
        width: auto;
        padding: 0.5rem;
    }

    .client-actionnaire-item{
        width: 40%;
        max-height: 35%;
        max-height: 10rem;
    }

    .client-assureur-item{
        width: 40%;
        max-height: 35%;
        max-height: 10rem;
    }

    .client-courtier-item{
        width: 40%;
        max-height: 35%;
        max-height: 10rem;
    }
}


