.picto-txt-list {
    background: var(--medium-blue);
    padding-top: 56px;
    padding-bottom: 56px;
}

@media screen and (min-width: 992px) {
    .picto-txt-list {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.picto-txt-list--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .picto-txt-list--container {
        flex-direction: row;
        justify-content: space-between;
        gap: clamp(16px, 8.33vw, 120px);
    }
}

.picto-txt-list--content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1024px) {
    .picto-txt-list--content {
        max-width: 420px;
    }
}

.picto-txt-list--pictos {
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 24px;
}

@media screen and (min-width: 992px) {
    .picto-txt-list--pictos {
        justify-content: flex-start;
        row-gap: 48px;
        column-gap: 80px;
    }
}

.picto-txt-list h2 {
    color: var(--accent-1);
}

.picto-txt-list .picto-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: clamp(100px, 50%, 192px);
}

.picto-txt-list .picto-item .picto {
    height: 48px;
    width: 48px;
    mask: var(--picto), no-repeat center;
    mask-size: contain;
    mask-repeat: no-repeat;
    background: linear-gradient(90deg, #52C419 0%, #42931A 100%);
}

.picto-txt-list.maroc .picto-item .picto {
    background: linear-gradient(90deg, var(--maroc) 0%, var(--maroc) 100%);
}

.picto-txt-list .picto-item span {
    font-family: var(--aileron);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}