.module-card {
    display: flex;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    margin-bottom: 35px;
    align-items: center;
    max-width: 1200px;
    /* increases width */
    margin-left: auto;
    margin-right: auto;
}

/* IMAGE SIDE */
.module-img {
    width: 32%;
    height: 100%;
    /* reduced height */
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

/* IMAGE */
.module-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

/* ZOOM EFFECT */
.module-card:hover .module-img img {
    transform: scale(1.08);
}

/* NUMBER BADGE */
.module-number {
    margin-left: 10px;
    position: absolute;
    top: 18px;
    left: 18px;
    background: #1e3a66;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    z-index: 10;
}

/* CONTENT */
.module-content {
    width: 68%;
    padding: 25px 35px;
    /* reduced height */
}

.module-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #16355d;
    margin-bottom: 15px;
}

/* BULLETS */
.module-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
}

.module-content ul li:before {
    content: "\2713";
    /* Unicode check mark */
    position: absolute;
    left: 0;
    top: 2px;
    color: #d91f26;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    /* prevents aoe issue */
}

/* ---------- MOBILE RESPONSIVE ---------- */

@media (max-width: 991px) {

    .module-card {
        flex-direction: column;
    }

    .module-img {
        width: 100%;

        border-radius: 20px 20px 0 0;
    }

    .module-content {
        width: 100%;
        padding: 25px;
    }

    .module-content h3 {
        font-size: 24px;
    }

}




.benefit-item {
    margin-bottom: 25px;
}

.benefit-item h5 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #16355d;
}

.benefit-item p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

/* MOBILE FIX */
@media (max-width:768px) {

    .course-benefits {
        padding-left: 20px;
        padding-right: 20px;
    }

    .benefit-item {
        margin-left: 20px;
    }

    .benefit-item h5 {
        font-size: 18px;
    }

    .benefit-item p {
        font-size: 14px;
    }

}

.slider-thumb {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tablet */
@media (max-width:991px) {
    .slider-thumb {
        background-position: right;

        /* reduce height */
    }
}

/* Mobile */
@media (max-width:768px) {
    .slider-thumb {
        background-size: 220%;
        /* zoom image */
        background-position: center bottom;

        /* reduce height */
    }
}