.showcase {
    padding: 25px 0 50px;
}

.showcase__item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-radius: .5208333333vw;
    border: 1px solid #f0f2f5;
    background: #fafbfc;
    padding: 1.3020833333vw 2.0833333333vw;
    transition: background-color .3s ease-in;
    min-height: 5vw;
    cursor: pointer;
}

.showcase__item_title {
    color: #262e39;
    font-family: "Raleway",sans-serif;
    font-size: 1.45vw;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    z-index: 2;
    transition: color .3s ease-in;
    max-width: 80%;
    cursor: pointer;
    margin: 0;
}

.showcase__item_img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    width: 60%;
    cursor: pointer;
}

.showcase__item:hover {
    background-color: #262e39;
}

.showcase__item:hover .showcase__item_title {
    color: #fff;
}



@media (max-width: 600px) {
    .showcase__item {
        padding: 20px;
    }

    .showcase__item_title {
        font-size: 16px;
    }
}