/*--------------- Google Fonts ---------------*/

@import url('https://fonts.googleapis.com/css2?family=Baloo+Chettan+2:wght@400;500;700&family=Cairo:wght@300;400;700&family=Josefin+Sans:wght@300;400;700&family=Open+Sans:wght@400;700&family=Poppins:wght@200;300;400;500;600;700&family=Work+Sans:wght@200;300;400;500;600;800&display=swap');

/*--------------- Variables ---------------*/

:root {
    --orange: hsl(36, 80%, 50%);
    --white: hsl(0, 0%, 100%);
    --WHITE: hsl(0, 0%, 100%);
    --BLACK: hsl(0, 0%, 0%);
    --black-90: hsl(0, 0%, 10%);
    --black-70: hsl(0, 0%, 30%);
    --black-alpha-40: hsla(0, 0%, 0%, 0.4);
    --yellow-light: hsl(44, 95%, 83%);
    --green-light: hsl(158, 68%, 75%);
    --red-light: hsl(0, 84%, 80%);
    --orange-light: hsl(22, 85%, 80%);
    --select-box-bg-color: hsl(0, 0%, 100%);
    --border-color-1: hsl(0, 0%, 90%);
}

/*--------------- Overrides Varaibles For - Dark Theme ---------------*/

body.t-dark {
    --body-bg-color: hsl(240, 10%, 19%);
    --black-70: hsl(0, 0%, 87%);
    --black-90: hsl(0, 0%, 100%);
    --shadow: 0 0 10px hsla(0, 0%, 0%, 0.08);
    --white: hsl(240, 8%, 21%);
    --select-box-bg-color: hsl(240, 8%, 21%);
    --border-color-1: hsl(240, 9%, 30%);
    --border-color-2: hsl(240, 9%, 25%);
}

/*--------------- Base ---------------*/

body {
    background-color: var(--body-bg-color);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-70);
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    color: var(--main-color);
    font-weight: normal;
    text-decoration: none;
}
a:hover {
    color: var(--main-color);
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
ul li {
    font-weight: normal;
}
h1,h2,h3,h4,h5,h6 {
    color: var(--black-90);
    line-height: 1.3;
}
h3 {
    font-size: 20px;
}
p {
    font-weight: normal;
}
::selection {
    color: var(--WHITE);
    background-color: var(--main-color);
}

/*--------------- Box ---------------*/

.box {
    padding: 30px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

/*--------------- Customized Bootstrap Classes ---------------*/

.container {
    --bs-gutter-x: 15px;
    max-width: 1140px;
}
.row {
    --bs-gutter-x: 30px;
}

/*--------------- Animation Keyframes ---------------*/

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes bubble {
    0% {
        transform: translateY(0vh);
        opacity: 0;
    }
    5%, 95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}
@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25%, 50% {
        transform: rotate(180deg);
    }
    75%, 100% {
        transform: rotate(360deg);
    }
}
@keyframes loaderIn {
    0%, 25%, 100% {
        height: 0px;
    }
    50%, 75% {
        height: 100%;
    }
}

/*--------------- Section - Padding, Title ---------------*/

.section-padding {
    padding: 60px 0px;
}
.section-title {
    margin-bottom: 40px;
}
.section-title .title {
    font-size: 20px;
    color: var(--main-color);
    text-transform: capitalize;
}
.section-title .sub-title {
    font-size: 35px;
    font-weight: 600;
    color: var(--black-90);
}

/*--------------- Buttons ---------------*/

.btn-theme {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    background-color: var(--main-color);
    color: var(--WHITE);
    text-transform: capitalize;
    transition: all 0.3s ease;
}
.btn-theme:hover {
    color: var(--WHITE);
    background-color: var(--button-hover-color);
}
.btn-theme:focus {
    box-shadow: 0 0 8px var(--main-color);
}
.btn-block {
    width: 100%;
}
.btn-form {
    height: 48px;
}

/*--------------- Page Loader ---------------*/

.page-loader {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
}
.page-loader.fade-out {
    opacity: 0;
    transition: all 0.6s ease;
}
.page-loader div {
    position: relative;
    width: 32px;
    height: 32px;
    margin: auto;
    border: 4px solid var(--main-color);
    animation: loader 2s linear infinite;
}
.page-loader div::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    animation: loaderIn 2s linear infinite;
}

/*--------------- Circular Img ---------------*/

.circular-img {
    position: relative;
    max-width: 360px;
    margin: auto;
    z-index: 1;
}
.circular-img-inner {
    text-align: center;
    border-radius: 0px 0px 180px 180px;
    overflow: hidden;
}
.circular-img-circle {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
}
.circular-img img {
    position: relative;
    z-index: 1;
}

/*--------------- Forms ---------------*/

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0px 0px 30px;
}
.form-group {
    position: relative;
    margin-bottom: 25px;
}
.form-control {
    height: 48px;
    background-color: transparent;
    border-color: var(--border-color-1);
    color: var(--black-90);
}
.form-control::placeholder {
    color: var(--black-70);
}
.form-control:focus {
    background-color: transparent;
    border-color: var(--border-color-1);
    color: var(--black-90);
    box-shadow: none;
}
.select-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 13px;
    pointer-events: none;
}
select.form-control:focus option {
    background-color: var(--select-box-bg-color);
}
textarea.form-control {
    height: 120px;
    resize: none;
}

/*--------------- Video Model ---------------*/

.video-modal .btn-close {
    position: absolute;
    top: -35px;
    right: 0px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0px;
    font-size: 16px;
    background-image: none;
    color: var(--WHITE);
    opacity: 1;
    z-index: 1;
}
.video-modal .modal-content {
    border: 0px;
}

/*--------------- Pagination ---------------*/

.page-item.disabled .page-link,
.page-link {
    border: none;
    background-color: transparent;
    color: var(--black-70);
}
.page-item.active .page-link {
    background-color: var(--main-color);
}
.page-link:hover {
    background-color: var(--main-color);
    color: var(--WHITE);
}

/*--------------- Breadcrumb ---------------*/

.breadcrumb-nav {
    padding: 10px 0px;
}
.breadcrumb-nav .breadcrumb-item {
    font-size: 14px;
    text-transform: capitalize;
}
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-nav .breadcrumb-item.active {
    color: var(--black-70);
}

/*--------------- Tabs ---------------*/

.nav-tabs .nav-link {
    background-color: var(--white);
    text-transform: capitalize;
    border-color: var(--border-color-2);
    padding: 5px 12px;
    margin: 0px 5px 10px;
    border-radius: 5px;
    color: var(--black-70);
    font-size: 16px;
}
.nav-tabs .nav-link:hover {
    border-color: var(--border-color-2);
}
.nav-tabs .nav-link.active {
    background-color: var(--main-color);
    border-color: transparent;
    color: var(--WHITE);
}

/*--------------- Bubble Animation ---------------*/

.bubble-animation-item {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    z-index: -1;
}
.bubble-animation-item:nth-child(1) {
    top: 120%;
    left: 10%;
    border-color: var(--yellow-light);
    animation: bubble 30s linear infinite;
}
.bubble-animation-item:nth-child(2) {
    top: 60%;
    left: 50%;
    border-color: var(--green-light);
    animation: bubble 40s linear infinite;
}
.bubble-animation-item:nth-child(3) {
    top: 90%;
    left: 90%;
    border-color: var(--red-light);
    animation: bubble 50s linear infinite;
}
.bubble-animation-item:nth-child(4) {
    top: 80%;
    left: 60%;
    border-color: var(--yellow-light);
    animation: bubble 60s linear infinite;
}
.bubble-animation-item:nth-child(5) {
    top: 30%;
    left: 10%;
    border-color: var(--green-light);
    animation: bubble 70s linear infinite;
}
.bubble-animation-item:nth-child(6) {
    top: 20%;
    left: 30%;
    border-color: var(--red-light);
    animation: bubble 80s linear infinite;
}
.bubble-animation-item:nth-child(7) {
    top: 100%;
    left: 5%;
    border-color: var(--yellow-light);
    animation: bubble 60s linear infinite;
}
.bubble-animation-item:nth-child(8) {
    top: 110%;
    left: 33%;
    border-color: var(--green-light);
    animation: bubble 70s linear infinite;
}
.bubble-animation-item:nth-child(9) {
    top: 120%;
    left: 65%;
    border-color: var(--red-light);
    animation: bubble 80s linear infinite;
}

/*--------------- Style Switcher ---------------*/

.style-switcher {
    position: fixed;
    top: 0px;
    right: -250px;
    width: 250px;
    height: 100%;
    padding: 30px;
    box-shadow: var(--shadow);
    background-color: var(--white);
    transition: right 0.3s ease;
    z-index: 10;
}
.style-switcher.open {
    right: 0px;
}
.style-switcher-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 28%;
    left: -40px;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: var(--WHITE);
    border-radius: 8px 0px 0px 8px;
    cursor: pointer;
}
.style-switcher h3 {
    font-size: 18px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border-color-1);
    padding: 0px 0px 10px;
}
.style-switcher-item {
    padding: 10px 0px;
    border-bottom: 1px solid var(--border-color-1);
}
.theme-colors button {
    position: relative;
    width: 30px;
    height: 30px;
    padding: 0px;
    border: none;
    border-radius: 50%;
    vertical-align: middle;
}
.theme-colors button::before {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
    color: var(--WHITE);
    opacity: 0;
    transition: all 0.3s ease;
}
.theme-colors button.active::before {
    opacity: 1;
}
.theme-colors .color-1 {
    background-color: hsl(0, 74%, 61%);
}
.theme-colors .color-2 {
    background-color: hsl(230, 74%, 61%);
}
.theme-colors .color-3 {
    background-color: hsl(36, 74%, 61%);
}
.theme-colors .color-4 {
    background-color: hsl(277, 74%, 61%);
}
.theme-colors .color-5 {
    background-color: hsl(164, 74%, 61%);
}

/*--------------- Header ---------------*/

.header {
    border-bottom: 1px solid var(--border-color-2);
}
.header-logo a {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--black-70);
}
.header-logo span {
    color: var(--main-color);
}
.header .menu-item {
    display: inline-block;
    position: relative;
    margin-left: 40px;
}
.header .menu-item > a {
    display: block;
    padding: 24px 0px;
    font-weight: 400;
    color: var(--black-90);
    text-transform: capitalize;
    transition: color 0.3s ease;
}
.header .sub-menu-item a:hover,
.header .menu-item:hover > a {
    color: var(--main-color);
}
.header .menu-item > a i {
    font-size: 16px;
    margin-left: 3px;
    pointer-events: none;
    transition: transform 0.3s ease;
}
.header .sub-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 210px;
    padding: 10px 0px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    background-color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}
@media (min-width: 992px) {
    .header .menu-item:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}
.header .sub-menu-item a {
    display: block;
    padding: 10px 20px;
    color: var(--black-90);
    font-weight: 400;
    text-transform: capitalize;
    transition: color 0.3s ease;
}
.header-backdrop,
.header-close-btn,
.header-hamburger-btn {
    display: none;
}

/*--------------- Footer ---------------*/

.footer-top {
    padding: 50px 0px 20px;
    border-top: 1px solid var(--border-color-2);
}
.footer-item {
    margin: 0px 0px 30px;
}
.footer-item h3 {
    text-transform: capitalize;
    margin: 0px 0px 20px;
}
.footer-item .footer-logo {
    color: var(--black-70);
    text-transform: uppercase;
}
.footer-item .footer-logo span {
    color: var(--main-color);
}
.footer-item ul li:not(:last-child) {
    margin-bottom: 8px;
}
.footer-item ul a {
    position: relative;
    color: var(--black-70);
    text-transform: capitalize;
    transition: color 0.3s ease;
}
.footer-item ul a:hover {
    color: var(--main-color);
}
.footer-item ul a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0%;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}
.footer-item ul a:hover::before {
    width: 100%;
}
.footer-item ul a .social-icon {
    margin-right: 5px;
}
.footer-bottom {
    border: 1px solid var(--border-color-2);
}
.footer-bottom p {
    font-size: 14px;
}
.footer-bottom p:nth-child(1) {
    margin-top: 25px;
}
.footer-bottom i {
    color: var(--main-color);
}

/*--------------- Banner Section ---------------*/

.banner-section {
    min-height: 680px;
    padding: 80px 0px;
}
.banner-text h2 {
    font-size: 20px;
    color: var(--main-color);
}
.banner-text h1 {
    font-size: 45px;
    font-weight: 700;
}
.banner-section .circular-img-circle {
    background-color: var(--red-light);
}

/*--------------- Fun Facts Section ---------------*/

.fun-facts-item {
    padding: 15px 0px;
}
.fun-facts-item h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.fun-facts-item p {
    margin: 0px;
    text-transform: uppercase;
}
.fun-facts-item .style-1 {
    color: var(--black-70);
}
.fun-facts-item .style-2 {
    color: var(--green-light);
}
.fun-facts-item .style-3 {
    color: var(--red-light);
}
.fun-facts-item .style-4 {
    color: var(--orange-light);
}

/*--------------- Courses Section ---------------*/

.courses-item {
    position: relative;
    margin-bottom: 30px;
}
.courses-item .img-box img {
    width: 100%;
    border-radius: 5px;
}
.courses-item .link {
    display: inline-block;
    color: var(--black-70);
}
.courses-item .title {
    margin: 15px 0px;
    text-transform: capitalize;
    transition: color 0.3s ease;
}
.courses-item:hover .title {
    color: var(--main-color);
}
.courses-item .instructor {
    margin: 0px 0px 12px;
    text-transform: capitalize;
}
.courses-item .instructor img {
    width: 30px;
    border-radius: 50%;
    margin-right: 5px;
}
.courses-item .rating {
    font-size: 14px;
}
.courses-item .average-rating {
    font-weight: 600;
    color: var(--orange);
}
.courses-item .average-stars i {
    color: var(--orange);
}
.courses-item .price {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--main-color);
    color: var(--WHITE);
}


/*--------------- Testimonials Section ---------------*/

.testimonials-section .img-box {
    width: 150px;
    height: 150px;
    background-color: var(--red-light);
    margin: 30px auto 50px;
}
.testimonials-section .img-box::before,
.testimonials-section .img-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--red-light);
    animation: spin 15s linear infinite;
}
.testimonials-section .img-box::before{
    top: -15px;
    left: -15px;
    width: 180px;
    height: 180px;
    border-left: 1px solid transparent;
}
.testimonials-section .img-box::after{
    top: -30px;
    left: -30px;
    width: 210px;
    height: 210px;
    border-right: 1px solid transparent;
}
.testimonials-section h3 {
    text-transform: capitalize;
}
.testimonials-section .text-2 {
    margin: 0px;
    text-transform: capitalize;
}
.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    display: inline-block;
    position: relative;
    width: 35px;
    height: 35px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin: 0px 4px;
}
.testimonials-section .decoration-circles-item {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}
.testimonials-section .decoration-circles-item:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 30px;
    height: 30px;
    background-color: var(--yellow-light);
}
.testimonials-section .decoration-circles-item:nth-child(2) {
    top: 40%;
    left: 40%;
    width: 50px;
    height: 50px;
    background-color: var(--green-light);
}
.testimonials-section .decoration-circles-item:nth-child(3) {
    top: 70%;
    left: 70%;
    width: 30px;
    height: 30px;
    background-color: var(--red-light);
}
.testimonials-section .decoration-circles-item:nth-child(4) {
    top: 50%;
    left: 20%;
    width: 20px;
    height: 20px;
    background-color: var(--red-light);
}
.testimonials-section .decoration-imgs-item {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}
.testimonials-section .decoration-imgs-item:nth-child(1) {
    top: 30%;
    left: 20%;
    width: 60px;
    height: 60px;
    background-color: var(--yellow-light);
}
.testimonials-section .decoration-imgs-item:nth-child(2) {
    top: 40%;
    left: 90%;
    width: 80px;
    height: 80px;
    background-color: var(--red-light);
}
.testimonials-section .decoration-imgs-item:nth-child(3) {
    top: 60%;
    left: 10%;
    width: 40px;
    height: 40px;
    background-color: var(--green-light);
}

/*--------------- Bai Section ---------------*/

.bai-section .circular-img-circle {
    background-color: var(--yellow-light);
}

/*--------------- Course Details Section ---------------*/

/* Course Details Header */

.course-header h2 {
    margin: 0px 0px 15px;
    font-size: 30px;
    font-weight: 600;
}
.course-header .average-rating {
    font-weight: 600;
    color: var(--orange);
}
.course-header .average-stars i {
    font-size: 14px;
    color: var(--orange);
}
.course-header .rating span {
    vertical-align: middle;
}
.course-header ul li {
    margin: 6px 0px 0px;
    text-transform: capitalize;
}
.course-header ul li span {
    margin-left: 5px;
}

/* Course Tabs */

.course-tabs {
    margin: 30px 0px 20px;
}
.course-tabs .nav-link {
    margin: 0px 10px 10px 0px;
}

/* Course Curriculum */

.course-curriculum .accordion-item {
    border-color: var(--border-color-1);
    background-color: transparent;
}
.course-curriculum .accordion-button {
    background-color: transparent;
    color: var(--black-90);
    font-weight: 300;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-right: 160px;
    line-height: 1.5;
}
.course-curriculum .accordion-button::after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none;
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    line-height: 1;
}
.course-curriculum .accordion-button span {
    position: absolute;
    right: 17px;
    font-size: 14px;
}
.course-curriculum .accordion-button:focus {
    box-shadow: none;
}
.course-curriculum .accordion-button:not(.collapsed) {
    font-weight: 600;
    border-bottom: 1px solid var(--border-color-1);
    transition: none;
    box-shadow: none;
}
.course-curriculum .accordion-button:not(.collapsed) span {
    font-weight: 500;
}
.course-curriculum .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}
.course-curriculum ul li {
    position: relative;
    padding: 0px 50px 0px 20px;
}
.course-curriculum ul li:not(:last-child) {
    margin-bottom: 10px;
}
.course-curriculum ul li span {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 14px;
}
.course-curriculum ul li i {
    position: absolute;
    top: 6px;
    left: 0px;
    font-size: 12px;
    color: var(--black-70);
}

/* Course Description */

.course-description h4 {
    font-size: 16px;
    font-weight: 600;
}
.course-description p {
    font-size: 14px;
}

/* Course Instructor */

.course-instructor .img-box img {
    max-width: 128px;
    margin-bottom: 15px;
}
.course-instructor h4 {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.course-instructor h4 span {
    font-weight: 300;
}
.course-instructor ul li i {
    color: var(--main-color);
    margin-right: 5px;
}
.course-instructor ul li:not(:last-child) {
    margin-bottom: 5px;
}

/* Course Reviews */

.rating-summary .average-rating {
    font-size: 40px;
    font-weight: 700;
    color: var(--black-90);
}
.rating-summary .average-stars i {
    color: var(--orange);
}
.rating-summary .rating-bars-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.rating-summary .progress {
    width: calc(100% - 120px);
    height: 8px;
    background-color: var(--border-color-2);
    margin-right: 20px;
    border-radius: 0px;
}
.rating-summary .progress-bar {
    background-color: var(--main-color);
}
.rating-summary .star-text {
    min-width: 60px;
    color: var(--orange);
    font-weight: normal;
}
.rating-summary .percent {
    font-weight: normal;
}

.reviews-filter {
    width: 200px;
    margin: 0px 0px 35px;
}

.reviews-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 65px;
}
.reviews-item .img-box {
    max-width: 50px;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
}
.reviews-item h4 {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px 0px 5px;
    color: var(--black-90);
}
.reviews-item .stars-rating i {
    font-size: 14px;
    color: var(--orange);
}
.reviews-item .stars-rating .date {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
}
.reviews-item p {
    margin: 5px 0px 0px;
}

/* Course Sidebar */

.course-sidebar .img-box {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.course-sidebar .img-box::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--black-alpha-40);
}
.course-sidebar .img-box .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    font-size: 16px;
    border-radius: 50%;
    color: var(--WHITE);
    background-color: var(--main-color);
}
.course-sidebar .img-box p {
    position: absolute;
    top: calc(50% + 40px);
    width: 100%;
    font-weight: 500;
    color: var(--WHITE);
}
.course-sidebar .price span {
    margin-right: 8px;
}
.course-sidebar .price-new {
    font-size: 30px;
    font-weight: 700;
    color: var(--black-90);
}
.course-sidebar .price-discount {
    color: var(--main-color);
    font-weight: normal;
}
.course-sidebar .features-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 21px;
}
.course-sidebar .features-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--main-color);
}

/*--------------- Contact Section ---------------*/

.contact-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 55px;
}
.contact-item .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: var(--WHITE);
    border-radius: 50%;
}
