/* Course Preview Card */
.course-preview-card {
    position: relative;
    border-radius: 8px;
    background-color: var(--col3);
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 0 auto;
    margin-bottom: 20px;
    padding: 28px 20px 80px 20px;
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.04);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.04);
}

.course-preview-card .card-link {
    color: var(--col6);
}

.course-preview-card i {
    border-radius: 8px;
	background-color: var(--col1);
	color: var(--col2);
	padding: 12px;
	width: max-content;
	font-size: 32px;
}

.course-preview-card h3 {
    font-size: 24px;
}

.course-preview-card p {
    font-size: 15px;
}

.course-preview-card .div-bottom {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    color: var(--col2);
}

.course-preview-card hr {
    width: 100%;
}


/* Benefit Card */
.benefit-card {
    border-radius: 12px;
    border: solid 1px var(--col1);
    padding: 32px 32px 20px 32px;
    height: 100%;
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.04);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.04);
}

.benefit-card i {
    color: var(--col2);
    margin-bottom: 12px;
}

.benefit-card h4 {
    padding-bottom: 8px;
}

@media screen and (max-width: 425px) {
    .benefit-card {
        padding: 32px 12px 20px 12px;
    }

    .benefit-card h4 {
        font-size: 18px;
    }
    .benefit-card p {
        font-size: 14px;
    }
    .benefit-card i {
        margin-bottom: 4px;
    }
}


/* Service Card */
.service-card {
    background-color: var(--col1);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
}

.service-card h4 {
    color: var(--col2);
}


/* Testimonial Cards */
.testimonials-card {
    border: solid 1px var(--col4);
    display: flex;
    flex-direction: column;
	border-radius: 8px;
	padding: 24px;
    margin: 16px 14px;
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.1);
}

.testimonials-card i {
    border-radius: 8px;
    background-color: var(--col1);
    color: var(--col2);
    padding: 10px;
}

.testimonials-card img {
    border: solid 4px var(--col5);
    border-radius: 50%;
    width: 56px;
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.1);
}


/* Course Popup */
.course-popup {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.course-popup-content {
    background: #fff;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    position: relative;
}

.course-popup .close {
    position: absolute;
    top: 4px; right: 15px;
    cursor: pointer;
    font-size: 44px;
}

.course-popup ul {
    list-style: none;
}

.course-popup ul i {
    color: var(--col2);
}
