@import url(../../css/reset.css);
@import url(../../css/variables.css);

/*
Positionnement
Dimensions
Texte
Bordures et fonds
Propriétés CSS3 ou spécifiques navigateurs
*/

.teams03 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    gap: 4rem;
    background-image: url(../../assets/teams_03_L1/Background.png);
    background-color: var(--ctr--dark-blue);
    background-size: cover;
    background-repeat: no-repeat;

}

.teams03__title {
    max-width: 30ch;
    text-align: center;
    font-size: 3.25rem;
    color: white;
}

.teams03__description {
    max-width: 55ch;
    text-align: center;
    line-height: 1.3rem;
    color: white;
}

.teams03__content {
    display: flex;
    flex-direction: row;
    background-color: white;
}

.teams03__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 6rem;
    gap: 1.5rem;
    border-right: solid 0.1rem var(--ctr--grey);
}

.teams03__item:last-child {
    border-right: none;
}

.teams03__img {
    display: flex;
    align-content: center;
}

.teams03__title2 {
    font-size: 1.5rem;
    max-width: 8.5ch;
    line-height: 2rem;
    color: var(--ctr--font);
}

.teams03__button {
    width: 16rem;
    text-align: center;
    font-size: 1rem;
    border: solid 0.1rem white;
    color: white;
}