.sv55 {
    position: relative;
}

.sv55 .sv55-img-cols {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.sv55 .sv55-img-cols .sv55-img-col {
    width: 100%;
    position: relative;
    flex: none;
    height: 475px;
    transition: height 0.7s;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.sv55 .content-area1 {
    position: absolute;
    transform: rotate(-90deg);
    width: 290px;
    height: auto;
    left: -80px;
    bottom: 162px;
    transition: 0.4s;
    opacity: 1;
}

.sv55 .content-area {
    position: absolute;
    z-index: 1;
    transition: 0.4s;
    padding: 0 24px 24px 24px;
    bottom: 0;
    left: -100%;
    opacity: 0;
    max-width: 320px;
}

@media (max-width: 767px) {
    .sv55 .content-area1 {
        opacity: 0
    }
    .sv55 .content-area {
        left: 0;
        opacity: 1;
    }
}

.sv55 .sv55-img-col a h3, .sv55 .sv55-img-col a {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    /* display: inline-block; */
}

.sv55 .sv55-img-col img, .sv55 .sv55-img-col a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sv55 .sv55-img-cols .sv55-img-col:hover .content-area {
    opacity: 1;
    left: 0;
    transition: 0.4s;
}

.sv55 .sv55-img-cols .sv55-img-col:hover .content-area1 {
    opacity: 0;
    transition: 0.4s;
}

.sv55 .sv55-text-content {
    position: relative;
}

@media (min-width: 768px) {

    .sv55 .sv55-img-cols {
        flex-direction: row;
        height: 600px;
    }

    .sv55 .sv55-img-cols .sv55-img-col {
        height: auto;
        flex: 1;
        transition: flex 0.7s;
    }

    .sv55 .sv55-img-cols .sv55-img-col:hover {
        height: auto;
        width: auto;
        flex: 2;
    }

    .sv55 .sv55-img-cols .sv55-img-col.sv55-active{
        flex: 2;
        width: auto;
    }
    .sv55 .sv55-img-cols .sv55-img-col.sv55-active .content-area1 {
      opacity: 0;
    }

    .sv55 .sv55-img-cols .sv55-img-col.sv55-active .content-area {
      opacity: 1;
      left: 0;
    }

    .sv55 .sv55-img-cols .sv55-img-col.pause{
        flex: 1;
        width: 100%;
    }
    .sv55 .sv55-img-cols .sv55-img-col.pause .content-area1 {
      opacity: 1;
    }

    .sv55 .sv55-img-cols .sv55-img-col.pause .content-area {
      opacity: 0;
      left: -100%;
    }

}