@charset "UTF-8";
/* FOR THE CMS SECTION */
/* dark featured course */
.feat-dark {
    background: #0b2e4a;
    position: relative;
    margin-bottom: 12px;
    display: block;
    cursor: pointer;
    transition: filter .2s;
	overflow: hidden;
}
.feat-dark:hover {
    filter: brightness(1.18);
}
.feat-dark:hover .btn-explore {
    background: #0b67b2;
    color: #fff;
}
.feat-dark-img {
    position: absolute;
    right: -92px;
    top: 0;
    width: 468px;
    height: 264px;
    object-fit: cover;
}
.feat-dark-overlay {
    position: absolute;
    inset: 0;
}
.feat-dark-overlay img {
    width: 100%;
    height: 100%;
}
.feat-dark-body {
    position: relative;
    z-index: 2;
    padding: 28px 32px;
}
.badge-blue {
    display: inline-block;
    background: #0b67b2;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 12px;
    margin-bottom: 12px;
}
.feat-dark h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 8px;
    max-width: 520px;
}
.feat-dark p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.45;
    max-width: 700px;
    margin-bottom: 20px;
}
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0a2d49;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
}
.btn-explore i {
    font-size: 11px;
}
/* light featured course */
.feat-light {
    background: #fff;
    box-shadow: 0 0 18px 5px #eee;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .2s, background .2s;
}
.feat-light:hover {
    background: #f4f8fb;
    box-shadow: 0 4px 24px 8px #CCC;
}
.feat-light-thumb {
    width: 145px;
    flex-shrink: 0;
    background: #0b67b2;
    position: relative;
    overflow: hidden;
}
.feat-light-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feat-light-body {
    padding: 20px 24px;
}
.badge-light {
    display: inline-block;
    background: #f4f7fb;
    color: #0b67b2;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.feat-light h3 {
    font-size: 26px;
    font-weight: 700;
    color: #051e32;
    margin-bottom: 6px !important;
}
.feat-light p {
    font-size: 17px;
    font-weight: 400;
    color: #051e32;
    line-height: 1.4;
    margin-bottom: 10px;
}
a.learn-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #0b67b2;
}
a.learn-link i {
     color: #0b67b2;
}
a.learn-link:hover {
     color: #0b67b2;
}