.flux-container{
    display: flex;
    justify-content: center;
    padding: 3rem 0 4rem;
    & .flux-wrapper{
        display: flex;
        padding: 0 var(--container-space);
        width: 100%;
        max-width: 1700px;
        justify-content: space-between;
        & .flux-card{
            display: flex;
            flex-direction: column;
            width: 24%;
            position: relative;
            border-radius: 18px;
            background-color: #F1F1F1;
            & .flux-card-img{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 18px;
                object-fit: cover;
            }
            & .flux-card-head{
                display: flex;
                padding: 1rem 1rem 0;
                justify-content: space-between;
                position: relative;
                z-index: 1;
                & .flux-card-plus{
                    display: flex;
                    font-size: 56px;
                    color: var(--wp--preset--color--noir);
                    & .flux-card-sliders{
                        display: flex;
                        & .flux-card-slider{
                            display: flex;
                            flex-direction: column;
                            overflow: hidden;
                            & .flux-card-slide{
                                display: flex;
                                flex-direction: column;
                                & .flux-card-item{
                                    display: flex;
                                    flex-direction: column;
                                    height: 80px;
                                    align-items: flex-start;
                                    font-weight: 600;
                                    &:first-child{
                                        opacity: 0;
                                    }

                                }
                            }
                        }
                    }
                }
                & .flux-card-btn{
                    position: relative;
                    z-index: 2;
                    width: 38px;
                    height: 38px;
                    background: url(../../../assets/svg/diag_arrow.svg) no-repeat center center;
                }
            }
            & .flux-card-text{
                position: relative;
                z-index: 1;
                padding: 0 1rem 1rem;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                & h2{
                    margin: 0;
                }
                & p{
                    margin: 0;
                }
            }
            &.green-card{
                background-color: var(--wp--preset--color--vert);
                & .flux-card-head{
                    & .flux-card-btn{
                        background: url(../../../assets/svg/diag_arrow_2.svg) no-repeat center center;
                    }
                }
            }
            &:first-child{
                &::after{
                    content: '';
                    position: absolute;
                    top: 1rem;
                    right: 1rem;
                    width: 38px;
                    height: 38px;
                    background-color: var(--wp--preset--color--vert);
                    border-radius: 18px;
                    transition: all 0.3s ease;
                }
                &:hover{
                    &::after{
                        top: 0;
                        right: 0;
                        width: 100%;
                        height: 100%;
                    }
                }
            }
            &:nth-child(3){
                &::after{
                    content: '';
                    position: absolute;
                    top: 1rem;
                    right: 1rem;
                    width: 38px;
                    height: 38px;
                    background-color: rgba(244, 246, 95, 0.50);
                    border-radius: 18px;
                    transition: all 0.3s ease;
                }
                &:hover{
                    &::after{
                        top: 0;
                        right: 0;
                        width: 100%;
                        height: 100%;
                    }
                }
            }
        }
    }
}
@media (max-width: 1024px) {
    .flux-container{
        padding: 2rem 0 2rem;
        & .flux-wrapper{
            flex-wrap: wrap;
            gap: 1rem;
            & .flux-card {
                width: 48%;
                aspect-ratio: 1;
            }
        }
    }
}
@media (max-width: 576px) { 
    .flux-container{
        & .flux-wrapper{
            flex-direction: column;
            gap: 1rem;
            & .flux-card {
                width: 100%;
                aspect-ratio: 1;
            }
        }
    }
}