.card-with-text-slider-module {
    background-repeat: no-repeat;
     .wrapper__text{
        text-align: center;
    }
    .grid{
        display: flex;
        gap: 0 20px;
        margin-top: 80px;
        @media (max-width: 767px){
            margin-top: 40px;
        }
    }
    .swiper-wrapper {
        height: unset;
    }
    .item{
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding:25px;
        background-size: cover;
        background-position: center;
        border-radius:20px;
        width: 100%;
        max-width: 206px;
        justify-content: space-between;
        min-height: var(--card-height, 361px);
   
        transition: all 0.3s linear;
        overflow: hidden;
        max-height: var(--card-height, 361px);
   
        @media(max-width: 767px){
            max-height: unset;    
            min-height: unset;
            max-width: calc(100% - 80px);
        }
       
        .item__content{
            display: flex;
            gap:  0 55px;
            align-items: flex-start;
             @media(max-width: 767px){
            flex-direction: column;       }
        }
        .item__text{
             width: 100%;
               @media(max-width: 767px){
                order: 3;
                margin-top: 20px;
               }
        }
        .item__description{
            @media(min-width: 768px){
            opacity: 0;
            transition: 0.3s opacity linear;
            height: 0;
            overflow: hidden;
            // display: none;
            }
            
        }
        .item__image{
            display: none;
            justify-content: flex-end;
            align-items: center;
            transition: width .3s;
            margin: 0 auto;
        }
        @media(max-width: 767px){
            
            .item__image{
                display: flex;
            }
        }
        &.open{
            @media(min-width: 768px){
                max-width: 736px;
                .item__text{
                    width: 50%;
                }
                .item__description.show-description{
                    display: block;
                    height: unset;
                    opacity: 1;
                    //     transition-delay: 0.3s;
                }
                .item__image{
                           display: flex;
                }
            }
        }
        .item__title{
         
        }
        .item__content{
           font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 26px; 
            color: #201751;
        }
        .item__controls{
            display: flex;
            justify-content: flex-end;
                 @media(max-width: 767px){
                    display: none;
                 }
            button{
                background: none;
                padding: 0;
                margin: 0;
                appearance: none;
                border: none;
                &.hidden{
                    display: none;
                }
                &.item__controls--close{
                    margin: 0 auto 0 0;
                }
            }
        }
    }
    .swiper-navigation{
        margin-top: 37px;
    }

    .wrapper:not(.swiper-initialized) .swiper-wrapper{
        justify-content: center;
        gap: 20px;
    }

    .swiper-navigation{
        @media(min-width: 768px){
        display: none;
        }
    }

    .hidden-on-mobile{
        @media(max-width: 767px){
            display: none!important;
        }
    }

    .buttons__wrapper{
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        .button{
            margin: 0 0 1.4rem;
        }
    }
}