.hover-text {
    z-index: 9999;
    position: absolute;
    background: #fff;
    display: none;
}

.i-review-card {
    position: relative;
    cursor: pointer;
    height: 270px;
    transition: all .1s linear;
}

.i-review-card:hover {
    box-shadow: 0 20px 20px 1px #cdcdcd;
    border-radius: 0 0 22px 22px;
    padding: 9px 20px 20px 20px;
    transition: all .1s linear;
}

.i-review-card:hover > .main-text {
    display: none;
}

.i-review-card:hover > .hover-text {
    display: block;
    box-shadow: 0 15px 10px 6px #cdcdcd;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    height: fit-content;
    width: 100%;
    left: 0;
    right: 0;
    top: 155px;
    margin: 0;
}

.i-review-details {
    justify-content: space-between;
}