.post-cases{
    padding: 36px;
    background: rgba(250, 250, 250, 1);
    border-radius: 16px;
    margin: 30px 0;
    position: relative;
}

.caseItemSlide__Image{
    position: relative;
    overflow: hidden;
    padding: 29% 28%;
    margin-bottom: 36px;
}
.caseItemSlide__Image img{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
}
.caseItemSlide__Description h3{
    line-height: 1.2;
    font-size: 24px;
}
.caseItem-prev, .caseItem-next{
    width: 60px;
    height: 60px;
    background: red;
    position: absolute;
    top: 40%;
    background: rgba(250, 250, 250, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.25s linear;
    z-index: 3;
}
.caseItem-prev svg, .caseItem-next svg{
    width: 18px;
    height: 16px;
    fill: none;
    stroke: black;
}
.caseItem-prev:hover, .caseItem-next:hover{
    background: rgba(109, 1, 145, 1);
}
.caseItem-prev:hover svg, .caseItem-next:hover svg{
    stroke: white;
}
.caseItem-prev{
    left: -85px;
}
.caseItem-next{
    right: -85px;
}
.swiper-button-disabled{
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width: 900px) {
    .caseItem-prev, .caseItem-next{
        width: 40px;
        height: 40px;
    }
    .caseItem-prev{
        left: 15px;
    }
    .caseItem-next{
        right: 15px;
    }
    .caseItem-prev svg, .caseItem-next svg{
        width: 16px;
        height: 12px;
    }
}

@media screen and (max-width: 600px) {
    .caseItemSlide__Description h3 {
        font-size: 18px;
    }
    .post-cases{
        padding: 0;
        background: #fff;
    }
    .caseItemSlide__Image {
        margin-bottom: 15px;
    }
    .caseItemSlide__Description__Text{
        font-size: 16px;
    }
    .caseItem-prev, .caseItem-next{
        top: 35%;
    }
    .caseItem-prev{
        left: -20px;
    }
    .caseItem-next{
        right: -20px;
    }
}