.blh-aboutchoice .blh-choice-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    padding: 0;
}

.blh-aboutchoice .blh-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blh-aboutchoice .blh-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-in-out;
}

.blh-aboutchoice .blh-choice-card:hover img {
    transform: scale(1.12);
}

.blh-aboutchoice .blh-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blh-aboutchoice .blh-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0));
}


.blh-aboutchoice .col-md-6:first-child .blh-choice-card .blh-overlay {
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.25) 80%);
}

.blh-aboutchoice .col-md-6:last-child .blh-choice-card .blh-overlay {
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.25) 80%);
}


.blh-aboutchoice .blh-choice-content {
    position: absolute;
    color: #fff;
    max-width: 360px;
    z-index: 2;
    top: 50%;
    transform: translatey(-50%);
}

.blh-aboutchoice .blh-choice-content.left {
    left: 40px;
}

.blh-aboutchoice .blh-choice-content.right {
    right: 40px;
    text-align: right;
}

@media (min-width:992px) {
    .blh-aboutchoice .blh-choice-content.left {
        left: 60px;
    }

    .blh-aboutchoice .blh-choice-content.right {
        right: 60px;
    }
}