.cases-hero .hero__btn {
    margin-top: 32px;
    background: #09817B;
}

.cases__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(16px, 5vw, 75px);
}

.cases {
    border-radius: 8px;
    border: 1px solid #D9E9F9;
    background: #FFFFFF;
    padding: clamp(16px, 4vw, 40px);
    width: 100%;
}

.case-slide__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.case-slide__title {
    color: #3E484E;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 35px */
}
.case-slide__subtitle {
    margin-top: 10px;
    color: #747474;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
}

.case-slide__body {
    margin-top: clamp(24px, 4vw, 40px);
    display: flex;
    align-items: flex-end;
    gap: 15px;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__body {
        flex-direction: column-reverse;
        align-items: unset;
    }
}
.case-slide__table {
    flex-grow: 1;
}
.case-slide__thead {
    display: flex;
}
.case-slide__th {
    color: #050719;
    font-size: clamp(14px, 2vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */
    text-transform: uppercase;
}
.case-slide__tbody {
    margin-top: clamp(8px, 3vw, 48px);
    height: 330px;
    position: relative;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__tbody {
        height: unset;
    }
}
.case-slide__tbody > * {
    flex: 1;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__tbody > * {
        padding: 24px 0;
    }
}
.case-slide__tbody::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 174px;
    border-radius: 12px;
    background: #09817B;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__tbody::before {
        display: none;
    }
}
.case-slide__tr {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__tr {
        gap: 4px;
    }
}
.case-slide__tr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(134, 134, 134, 0.28) 0%, rgba(134, 134, 134, 0.15) 46.15%, rgba(255, 255, 255, 0.4) 99.99%);
}
@media screen and (max-width: 1023.98px) {
    .case-slide__tr::after {
        background: #DADADA;
        right: 0;
    }
}
.case-slide__tr:last-child::after {
    display: none;
}
.case-slide__td:first-child {
    color: #0C0C0C;
    font-size: clamp(15px, 2vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}
.case-slide__td:nth-child(2) {
    color: #0B0B0B;
    text-align: right;
    justify-content: flex-end;
    font-size: clamp(16px, 2vw, 25px);
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 35px */
    white-space: nowrap;
}
.case-slide__td:last-child {
    color: #FFF;
    text-align: right;
    justify-content: flex-end;
    font-size: clamp(16px, 2vw, 25px);
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 35px */
    white-space: nowrap;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__td:last-child {
        color: #09817B;
    }
}
.case-slide__td ._rate {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    width: 100%;
}
.case-slide__td ._star {
    color: #FFAE00;
    font-size: 14px;
}
.case-slide__th:first-child, .case-slide__td:first-child {
    flex: 0 0 48%;
}
.case-slide__th:nth-child(2), .case-slide__td:nth-child(2) {
    flex: 0 0 15%;
    text-align: right;
}
.case-slide__th:last-child, .case-slide__td:last-child {
    flex: 0 0 22%;
    text-align: right;
    padding-right: 30px;
    margin-left: auto;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__th:last-child, .case-slide__td:last-child {
        padding-right: 0;
    }
}
.case-slide__image {
    height: 330px;
    flex: 0 1 38%;
    border-radius: 12px;
    overflow: hidden;
}
.case-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media screen and (max-width: 1023.98px) {
    .case-slide__image {
        height: clamp(200px, 40vw, 400px);
        flex: unset;
    }
}