.expandable-slider {
    background-color: var(--framb);
    padding: 56px 16px;
}

@media screen and (min-width: 992px) {
    .expandable-slider {
        padding: 104px 16px;
    }
}

.expandable-slider--container h2 {
    color: #FFF;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.expandable-slider--list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

.expandable-slider--list-item {
    color: #FFF;
    transition: background-color 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

.expandable-slider--list-item.active {
    background-color: var(--framb-light);
    border-radius: 8px;
    padding: 16px 0;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item.active {
        padding: 40px 0;
    }
}

.expandable-slider--list-item.active h3 {
    width: calc(100% - 32px);
    margin: auto;
    padding: 0 0 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item.active h3 {
        width: calc(100% - 80px);
        padding: 0 0 40px 0;
    }
}

.expandable-slider--list-item.active .item {
    max-height: 1000px;
    opacity: 1;
    animation: expandDown 0.45s ease-out forwards;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item.active .item {
        padding: 16px 40px 40px 40px;
    }
}

.expandable-slider--list-item:not(.active) h3 {
    width: 100%;
    margin: 0;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.expandable-slider--list-item:not(.active) .item {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    animation: collapseUp 0.35s ease-in forwards;
}

.expandable-slider--list-item:not(.active) button span {
    -webkit-mask: url(../images/plus.svg) no-repeat center;
    mask: url(../images/plus.svg) no-repeat center;
}

.expandable-slider--list-item.is-before-active h3 {
    border-bottom-color: transparent;
}

.expandable-slider--list-item h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: padding 0.3s ease, border-bottom 0.3s ease;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item h3 {
        font-size: 32px;
    }
}

.expandable-slider--list-item h3 .picto {
    position: relative;
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: var(--framb-light);
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item h3 .picto {
        height: 56px;
        width: 56px;
    }
}

.expandable-slider--list-item h3 .picto::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-mask: var(--picto);
    mask: var(--picto);
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: #FFF;
    height: 16px;
    width: 16px;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item h3 .picto::before {
        height: 24px;
        width: 24px;
    }
}

.expandable-slider--list-item h3.single {
    --picto: url(../images/user-single.svg) no-repeat center;
}

.expandable-slider--list-item h3.group {
    --picto: url(../images/user-group.svg) no-repeat center;
}

.expandable-slider--list-item h3.hierarchy {
    --picto: url(../images/hierarchy.svg) no-repeat center;
}

.expandable-slider--list-item h3 button {
    margin-left: auto;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.expandable-slider--list-item h3 button span {
    display: block;
    -webkit-mask: url(../images/minus.svg) no-repeat center;
    mask: url(../images/minus.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--framb);
    height: 16px;
    width: 16px;
}

.expandable-slider--list-item .item {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
    transition: max-height 0.45s ease-out, opacity 0.35s ease-out, margin-top 0.3s ease;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item .item {
        flex-direction: row;
        justify-content: space-between;
    }
}

.expandable-slider--list-item .item .item-content {
    padding: 0 16px;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item .item .item-content {
        min-width: 200px;
        max-width: 400px;
        width: 100%;
        padding: 0;
    }
}

.expandable-slider--list-item .item .item-content h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item .item .item-content h4 {
        font-size: 24px;
    }
}

.expandable-slider--list-item .item .item-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.16px;
}

.expandable-slider--list-item .item .item-content p strong {
    font-weight: 700;
}

.expandable-slider--list-item .item .item-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item .item .item-slider {
        flex: 0 0 680px;
    }
}

.expandable-slider--list-item .item .item-slider>p {
    padding: 0 16px;
    z-index: 2;
    position: relative;
}

.expandable-slider--list-item .item .item-slider--list {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.expandable-slider--list-item .item .item-slider--list.swiper {
    width: 100%;
}

.expandable-slider--list-item .item .item-slider--list::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    pointer-events: none;
    background: linear-gradient(270deg, #B47869 0%, rgba(180, 120, 105, 0) 100%);
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .expandable-slider--list-item .item .item-slider--list::after {
        right: -1px;
    }
}

.expandable-slider--list-item .item .item-slider .swiper-wrapper {
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.expandable-slider--list-item .item .item-slider--list-item {
    min-width: 0;
    box-sizing: border-box;
    background-color: #D7C485;
    padding: 16px;
    border-radius: 8px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.expandable-slider--list-item .item .item-slider--list-item img {
    display: block;
    height: 110px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.expandable-slider--list-item .item .item-slider--list-item h5 {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.16px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.expandable-slider--list-item .item .item-slider--list-item.last {
    justify-content: space-between;
}

.expandable-slider--list-item .item .item-slider--list-item.last::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #D7C485 19.25%, rgba(215, 196, 133, 0) 100%);
    border-radius: 8px;
}

.expandable-slider--list-item .item .item-slider--list-item.last img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    z-index: -2;
}

.expandable-slider--list-item .item .item-slider--nav {
    position: absolute;
    bottom: 0;
    right: 16px;
    left: 16px;
    display: flex;
    gap: 12px;
    transform: translateY(-50%);
    z-index: 3;
    justify-content: space-between;
    pointer-events: none;
}

.expandable-slider--list-item .item .item-slider--nav button {
    border: 0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--framb-mid);
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.expandable-slider--list-item .item .item-slider--nav button.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.expandable-slider--list-item .item .item-slider--nav button::before {
    content: "";
    width: 12px;
    height: 12px;
    background: white;
}

.expandable-slider--list-item .item .item-slider--nav button.prev::before {
    -webkit-mask: url("../images//chevron-left.svg") no-repeat center;
    mask: url("../images//chevron-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.expandable-slider--list-item .item .item-slider--nav button.next::before {
    -webkit-mask: url("../images//chevron-right.svg") no-repeat center;
    mask: url("../images//chevron-right.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

@keyframes expandDown {
    from {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }

    to {
        max-height: 1000px;
        opacity: 1;
        margin-top: 32px;
    }
}

@keyframes collapseUp {
    from {
        max-height: 1000px;
        opacity: 1;
        margin-top: 32px;
    }

    to {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }
}

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