.illustrate-tabs {
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 48px;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--container {
        padding-inline: 16px;
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media screen and (min-width: 1312px) {
    .illustrate-tabs--container {
        padding-inline: 0;
    }
}

.illustrate-tabs--wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--wrapper {
        flex-direction: row;
        gap: 24px;
    }
}

.illustrate-tabs--title {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--title {
        gap: 24px;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 64px;
    }
}

.illustrate-tabs--title p:not(.uptitle) {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--title p:not(.uptitle) {
        font-size: 18px;
    }
}

.illustrate-tabs--tabs {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--tabs {
        max-width: 520px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 991px) {
    .illustrate-tabs--tabs {
        display: flex;
        gap: 24px;
        overflow: auto;
        margin-right: -24px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-inline: 24px;
    }

    .illustrate-tabs--tabs::-webkit-scrollbar {
        display: none;
    }
}

.illustrate-tabs--content {
    padding-inline: 24px;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--content {
        padding-inline: 0;
    }
}

.illustrate-tabs--content img {
    width: 100%;
    height: 212px;
    border-radius: 16px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--content img {
        height: 260px;
    }
}

.illustrate-tabs--content p,
.illustrate-tabs--content ul {
    margin: 24px 0;
}

.illustrate-tabs--content h5+p,
.illustrate-tabs--content h5+ul {
    margin-top: 12px;
}

.illustrate-tabs--content ul {
    list-style: disc;
    padding-left: 16px;
}

.illustrate-tabs--content ul li::marker {
    color: #18223F;
}

.illustrate-tabs--content h5 {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.176px;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs--content h5 {
        font-size: 20px;
        font-weight: 600;
        line-height: 160%;
    }
}

.illustrate-tabs .tabs-item {
    flex: 1;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs .tabs-item {
        padding: 24px 0;
        border-bottom: 1px solid #C6C6C6;
    }

    .illustrate-tabs .tabs-item:first-child {
        padding-top: 0;
    }

    .illustrate-tabs .tabs-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

.illustrate-tabs .tabs-item p {
    font-size: 14px;
    color: var(--bleu-nuit);
    font-style: normal;
    line-height: 160%;
    border-radius: 8px;
    padding: 8px 16px;
    text-wrap: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs .tabs-item p {
        border-radius: 16px;
        font-weight: 600;
        font-size: 1.5rem;
        padding: 16px 32px;
        text-wrap: wrap;
    }
}

.illustrate-tabs .tabs-item p::before {
    content: "";
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--bleu-nuit);
    -webkit-mask: var(--picto);
    mask: var(--picto);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .illustrate-tabs .tabs-item p::before {
        height: 56px;
        width: 56px;
    }
}

.illustrate-tabs .tabs-item p:hover {
    background: var(--bleu-nuit);
    color: white;
}

.illustrate-tabs .tabs-item p:hover::before {
    background: white;
}

.illustrate-tabs .tabs-item.is-active p {
    background: var(--bleu-nuit);
    color: white;
}

.illustrate-tabs .tabs-item.is-active p::before {
    background: white;
}

.illustrate-tabs .tabs-content-item {
    display: none;
}

.illustrate-tabs .tabs-content-item.is-active {
    display: block;
}

.illustrate-tabs.minimal .tabs-item p {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    color: #8D8D8D;
}

.illustrate-tabs.minimal .tabs-item p::before {
    content: none;
}

.illustrate-tabs.minimal .tabs-item p:hover {
    background: none;
    color: var(--bleu-ciel);
}

.illustrate-tabs.minimal .tabs-item.is-active p {
    background: none;
    color: var(--bleu-ciel);
}

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