.cases_wrapper .wrap {
    transform: translate3d(0, 0, 0);
    min-height: 159px;
    @media screen and (max-width: 1200px) {
        min-height: 90px;
    }
}

.cases_wrapper .wrap .inner-wrapper {
    padding: 36px 30px 0 34px;

    @media screen and (max-width: 768px) {
        padding: 29px 39px 0 16px;
    }
}

.rtl .cases_wrapper .wrap .inner-wrapper {
    padding: 36px 34px 0 30px;

    @media screen and (max-width: 768px) {
        padding: 29px 16px 0 39px;
    }
}

.cases_wrapper .text-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}

.use_cases .container {
    position: relative;
}

.use_cases .container::before {
    content: '';
    position: absolute;
    top: 260px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(43, 66, 127, 0.8);
    filter: blur(240px);
    height: 50%;
}

.use_cases h2 {
    z-index: 1;
    position: relative;
}

.cases_wrapper .wrap:hover .text-wrapper {
    grid-template-rows: 1fr;
}

.cases_wrapper .text {
    overflow: hidden;
}

.cases_wrapper .inner-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cases_wrapper .inner-wrapper .inner-container {
    align-items: center;
    gap: 15px;
    width: 100%;
    display: flex;

    @media screen and (min-width: 1200px) {
        flex-direction: column;
        align-items: baseline;
        gap: 10px;
    }
}

.rtl .cases_wrapper .inner-wrapper .inner-container {
    display: block;

    @media screen and (max-width: 1199px) {
        display: flex;
    }
}