.texte-icon--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .texte-icon--wrapper {
        gap: 84px;
    }
}

.texte-icon--item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
}

@media screen and (min-width: 768px) {
    .texte-icon--item {
        max-width: calc(50% - 12px);
    }
}

@media screen and (min-width: 992px) {
    .texte-icon--item {
        max-width: calc(33.33% - 56px);
    }
}

.texte-icon--item h5 {
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .texte-icon--item h5 {
        margin-bottom: 30x;
    }
}

.texte-icon--item span {
    display: block;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    -webkit-mask: var(--icon);
    mask: var(--icon);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: var(--orange);
    transition: all 0.3s ease;
}

.texte-icon--item span:hover {
    background: var(--corail);
}

.texte-icon--item p {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.texte-icon h2 {
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .texte-icon h2 {
        margin-bottom: 48px;
        max-width: 570px;
    }
}

/*# sourceMappingURL=style.css.map */