div#feature_boxes_wrapp .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-radius: 10px;
}

.feature_boxes {
    min-height: 60vh;
    max-height: 60vh;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 10px;
}

.feature_boxes img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    z-index: -1;
    transition: all 1s ease;
}

.feature_boxes:hover .overlay {
    display: block;
}

.feature_boxes:hover>.image_wrapp>img {
    transform: scale(1.2);
}

.feature_boxes .overlay {
    display: none;
    background-color: #000000bb;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.content_card {
    padding: 50px;
}

.content_card {
    /* transform: translateY(65vh); */
    display: none;
    z-index: 2 !important;
}

.content_card h4 {
    color: #fff;
}

.content_card {
    color: #fff;
}

.content_card p {
    color: #fff !important;
}

.content_card ul {
    margin-left: 25px;
}

.feature_boxes:hover .content_card {
    /* transform: translateY(0); */
    display: block;
    transition: all ease 1s;
}

a.white-btn {
    display: block;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px 20px;
}


a.white-btn:hover {
    background: #000;
    border: 1px solid #fff;
    color: #fff;
}

.mfp-content {
    max-width: 80% !important;
}