.course-intro {
    width: 100%;
    background: #f5f8f7;
}
.course-grid {
    width: 100%;
    display: flex;
}
.course-image,.course-content {
    width: 50%;
}
.course-image img {
    width: 620px;
    height: 420px;
    display: block;
    /* object-fit: contain; */
}
.course-content {
    padding: 20px 30px;
}
.course-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: #dcefeb;
    color: #114052;
    font-size: 12px;
    font-weight: 700;
}
.course-title {
    color: #183d38;
    font-size: 28px;
    font-weight: 700;
    line-height:42px;
}
.course-attribute table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #dfe8e5;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(25, 65, 60, 0.08);
}
.course-attribute tr:hover {
    background: #f7fbfa;
}
.course-attribute th,
.course-attribute td {
    padding: 10px;
    border-bottom: 1px solid #e5ecea;
    color: #263d39;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: middle;
}
.course-attribute tr:last-child th,
.course-attribute tr:last-child td {
    border-bottom: 0;
}
.course-attribute th {
    width: 65%;
    text-align: left;
    font-weight: 600;
    background: #fbfdfc;
}
.course-attribute td {
    width: 35%;
    text-align: center;
    font-weight: 500;
}
.course-attribute td.dash {
    color: #a0aaa7;
}
/*  =========================== RESPONSIVE CSS ====================== */
@media (max-width: 1024px) {
   .course-image img {
    height: 440px;
    }
}

@media (max-width: 991px) {
    .course-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 35px;
    }

    .course-grid .course-image,
    .course-grid .course-content {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .course-grid .course-image img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 767px) {
    .course-grid {
        flex-direction: column;
    }
    .course-image {
        width: 100%;
        flex-basis: auto;
    }
    .course-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .course-content {
        width: 100%;
        flex-basis: auto;
        padding: 40px 25px;
    }
    .course-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .course-price {
        font-size: 28px;
    }
    .course-image img {
        height: 500px;
    }
}
@media (max-width: 480px) {
    .course-image img {
        width: 100%;
        height: auto;
    }
    /* .course-content {
        padding: 30px 20px;
    } */
    .course-title {
        font-size: 24px;    
    }   
    .course-price {
        font-size: 26px;
    }
    .course-attribute th, .course-attribute td {
        font-size: 14px;
    }
}
