.hero {
    margin-top: 90px;
}
.hero__img {
    position: relative;
}
.hero__img img {
    object-fit: cover;
    height: 100%;
}
.hero .legend {
    padding: 0.5rem;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0.8rem;
}
.hero__text {
    padding: var(--l);
}
.hero__sommaire li a {
    text-decoration: none;
    color: var(--color-black);
}
.valeur {
    height: fit-content;
}
.valeur:nth-child(odd) {
    margin-top: 2rem;
}
.bandeau__logos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.bandeau__logos:first-child {
    align-items: flex-end;
}
.bandeau__logo img {
    max-width: 10rem;
}

.info:nth-child(even) .info__logos {
    justify-content: flex-end;
}
.info__logo {
    max-width: 15rem;
    position: relative;
    height: fit-content;
}
.info__logo .info__text {
    position: absolute;
    height: fit-content;
    opacity: 0;
    transition: 0.5s ease-in-out;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
}
.info__logo:hover .info__text {
    opacity: 1;
}
.cta__text {
    max-width: 70ch;
    margin: auto;
}