/********** Template CSS **********/
:root {
    --primary: #0088cc;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:last-child {
    margin-right: 0px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    z-index: 99;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border-radius: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/

.bg-overlay-purple-500:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.85;
    background: #01223794;
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
    z-index: 9;
}

.carousel-item.lg-item > img {
    height: 80vh;
}

.carousel-control-next, .carousel-control-prev {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    background-color: #fff;
    color: #012237;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 91;
    opacity: 1.5;
}

.carousel-control-next i, .carousel-control-prev i{
   line-height: 0;
}

.carousel-control-next {
    right: 5%;
}

.carousel-control-prev {
    left: 5%;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #000;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.carousel-control-next:before {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid;
    border-color: #FFFFFF;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.carousel-control-prev:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid;
    border-color: #FFFFFF;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.carousel-control-next:hover:before {
    right: 0;
}

.carousel-control-prev:hover:before {
    left: 0;
}

.carousel-caption {
    top: 0%;
    bottom: 0;
    /*padding: 210px 0px 210px;*/
    z-index: 9;
    text-align: left;
}

.carousel-banner-title {
    font-size: 140px;
    line-height: 120px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -.04em;
    margin: 0;
    margin-bottom: 40px;
    text-transform: uppercase;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

.carousel-banner-tag-line {
    margin: 0;
    font-size: 50px;
    font-family: "Satisfy";
    color: white;
    text-decoration: underline;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    margin-bottom: 55px;
}

.carousel-banner-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    background-color: #f16101;
    font-weight: bold;
    color: #fff;
    padding: 6.5px 27px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font-size: 18px;
    padding: 21.5px 59.5px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

.banner-one_bubble-1 {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #1888c9;
    top: 20%;
    left: -3%;
    -webkit-animation-name: bubbleMoveOne;
    animation-name: bubbleMoveOne;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.banner-one_bubble-2 {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #7c4bc0;
    right: 35%;
    top: 20%;
    -webkit-animation-name: bubbleMoveTwo;
    animation-name: bubbleMoveTwo;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.banner-one_bubble-3 {
    position: absolute;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    border: 24px solid #33a9bb;
    right: 35%;
    bottom: 10%;
    -webkit-animation-name: globeRotate;
    animation-name: globeRotate;
    -webkit-animation-duration: 10s !important;
    animation-duration: 10s !important;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(/Images/img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Course-details ***/
.course-details {
    padding: 120px 0;
}

.course-details .course-one_category {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0);
    transform: translate(0);
}

.course-details_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.course-details_title {
    font-size: 40px;
    font-weight: 600;
    color: #012237;
    margin: 0;
    margin-bottom: 5px;
}

.course-details_progress-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.course-details_progress-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    min-width: 100px;
}

.course-details_progress-count {
    margin: 0;
    font-family: "Satisfy";
}

.course-details_progress-bar {
    position: relative;
    width: 210px;
    height: 2px;
    background-color: #f1f1f1;
    margin-left: 20px;
    margin-right: 20px;
}

.course-details_progress-bar span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #f16101;
}

.course-details_progress-bar span.no-bubble:before {
    display: none;
}

.course-details_progress-bar span:before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: #f16101;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.course-details_review-box {
    width: 237px;
    height: 237px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #f1f1f1;
}

.course-details_review-count {
    margin: 0;
    line-height: 1em;
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 5px;
}

.course-details_review-stars {
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 15px;
}

.course-details_review-stars i {
    color: #f16101;
}

.course-details_review-text {
    margin: 0;
    line-height: 1em;
    font-size: 12px;
    color: #81868a;
    letter-spacing: .2em;
}

.course-details_comment {
    margin-left: -50px;
    margin-right: -50px;
    border-top: 2px solid #f1f1f1;
    border-bottom: 2px solid #f1f1f1;
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 40px;
    margin-top: 50px;
}

.course-details_comment-top, .course-details_comment-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.course-details_comment-single + .course-details_comment-single {
    padding-top: 50px;
    margin-top: 40px;
    border-top: 2px solid #f1f1f1;
}

.course-details_comment-meta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.course-details_comment-img {
    width: 76px;
    margin-right: 20px;
}

    .course-details_comment-img > img {
        width: 100%;
    }

.course-details_comment-name {
    font-size: 20px;
    font-weight: 600;
    color: #012237;
    margin: 0;
}

.course-details_comment-date {
    font-size: 16px;
    color: var(--primary);
    margin: 0;
    font-weight: 500;
    margin-right: 20px;
}

.course-details_comment-stars {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .course-details_comment-stars i {
        color: #f16101;
    }

    .course-details_comment-stars i.star-disabled {
        color: #f1f1f1;
    }

.course-details_comment-text {
    font-size: 16px;
    line-height: 34px;
    font-weight: 500;
    color: #81868a;
    margin: 0;
    margin-top: 20px;
}

.course-details_comment-form-text {
    font-size: 18px;
    color: #81868a;
    font-weight: 500;
    margin: 0;
    margin-bottom: 20px;
}

.course-details_comment-form-text a {
    font-size: 20px;
    color: #f1f1f1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.course-details_comment-form-text a:focus, .course-details_comment-form-text a:hover {
    color: #f16101;
    cursor: pointer;
}

.course-details_price-btn {
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    width: 100%;
    margin-top: 30px;
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    background-color: var(--primary);
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    padding: 6.5px 27px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.course-details_price-btn:hover {
    background-color: #fff;
    color: #012237;
}

.course-details_comment-form input,
.course-details_comment-form textarea {
    display: block;
    width: 100%;
    height: 77px;
    background-color: #f1f1f1;
    color: #81868a;
    font-size: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    padding-left: 40px;
    margin-bottom: 10px;
}

.course-details_comment-form input::-webkit-input-placeholder,
.course-details_comment-form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #81868a;
}

.course-details_comment-form input::-moz-placeholder,
.course-details_comment-form textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #81868a;
}

.course-details_comment-form input:-ms-input-placeholder,
.course-details_comment-form textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #81868a;
}

.course-details_comment-form input:-moz-placeholder,
.course-details_comment-form textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #81868a;
}

.course-details_comment-form textarea {
    height: 210px;
}

.course-details_comment-form-btn {
    font-size: 18px;
    padding: 21.5px 58px;
}

.course-details_comment-form-btn:hover {
    background-color: #012237;
    color: #fff;
}

.course-details_tab-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f1f1f1;
    margin-top: 30px;
    margin-bottom: 0;
}

.course-details_tab-navs li {
    line-height: 1em;
}

.course-details_tab-navs li a {
    color: #81868a;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 30.5px 50px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: relative;
}

.course-details_tab-navs li a::before {
    content: '';
    width: 35px;
    height: 10px;
    background-color: var(--primary);
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(0);
    transform: translateX(-50%) scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.course-details_tab-navs li a:hover, .course-details_tab-navs li a.active {
    background-color: var(--primary);
    color: #fff;
}

.course-details_tab-navs li a:hover:before, .course-details_tab-navs li a.active:before {
    -webkit-transform: translateX(-50%) scaleY(1);
    transform: translateX(-50%) scaleY(1);
}

.course-details_tab-content {
    border-style: solid;
    border-width: 2px;
    border-color: #f1f1f1;
    padding: 50px;
}

.course-details_tab-content .course-details_meta-icon {
    width: 30px;
    height: 30px;
}

.course-details_tab-content .course-details_meta-icon i {
    font-size: 12px;
}

.course-details_tab-content .course-details_meta-icon:before {
    border-width: 1px;
}

.course-details_tab-content .course-details_meta-icon.video-icon {
    background-color: #7c4bc0;
}

.course-details_tab-content .course-details_meta-icon.video-icon:before {
    border-color: #7c4bc0;
}

.course-details_tab-content .course-details_meta-icon.file-icon {
    background-color: #f16101;
}

.course-details_tab-content .course-details_meta-icon.file-icon:before {
    border-color: #f16101;
}

.course-details_tab-content .course-details_meta-icon.quiz-icon {
    background-color: #d23f3f;
}

.course-details_tab-content .course-details_meta-icon.quiz-icon:before {
    border-color: #d23f3f;
}

.course-details_tab-text {
    margin: 0;
    font-size: 16px;
    line-height: 34px;
    font-weight: 500;
    color: #81868a;
}

.course-details_tab-title {
    font-size: 20px;
    color: #012237;
    font-weight: 600;
    margin: 0;
}

.course-details_overview-list li {
    color: #81868a;
    font-size: 16px;
    font-weight: 500;
}

.course-details_curriculum-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 22.5px;
    padding-bottom: 22.5px;
    border-bottom: 1px solid #f1f1f1;
}

.course-details_curriculum-list li:first-child {
    padding-top: 0;
}

.course-details_curriculum-list-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.course-details_curriculum-list-left a {
    font-size: 16px;
    font-weight: 600;
    color: #012237;
}

.course-details_curriculum-list-left span {
    font-size: 12px;
    color: #81868a;
    font-weight: 500;
    background-color: #f1f1f1;
    display: inline-block;
    vertical-align: middle;
    line-height: 22px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 15px;
}

.course-details_curriculum-list-right {
    font-size: 16px;
    font-weight: 500;
    color: #81868a;
}

.course-details_price {
    background-color: #f1f1f1;
    text-align: center;
    padding: 50px;
}

.course-details_price-text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #81868a;
    text-transform: uppercase;
    letter-spacing: .2em;
    line-height: 1em;
}

.course-details_price-amount {
    margin: 0;
    color: #012237;
    font-size: 42px;
    font-weight: 600;
    line-height: 1em;
    margin-top: 10px;
}

.course-details_price-btn {
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    width: 100%;
    margin-top: 30px;
}

.course-details_meta {
    margin-top: 30px;
    margin-bottom: 30px;
    border-style: solid;
    border-width: 2px;
    border-color: #f1f1f1;
}

.course-details_meta-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #81868a;
    font-size: 18px;
    font-weight: 500;
    padding: 25px 50px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.course-details_meta-link:hover {
    color: #f16101;
}

.course-details_meta-link:hover .course-details_meta-icon::before {
    left: 0;
}

.course-details_meta-link span {
    color: #012237;
    margin-left: 15px;
}

.course-details_meta-link:nth-child(1) .course-details_meta-icon {
    background-color: #1888c9;
}

.course-details_meta-link:nth-child(1) .course-details_meta-icon::before {
    border-color: #1888c9;
}

.course-details_meta-link:nth-child(2) .course-details_meta-icon {
    background-color: #7c4bc0;
}

.course-details_meta-link:nth-child(2) .course-details_meta-icon::before {
    border-color: #7c4bc0;
}

.course-details_meta-link:nth-child(3) .course-details_meta-icon {
    background-color: #f16101;
}

.course-details_meta-link:nth-child(3) .course-details_meta-icon::before {
    border-color: #f16101;
}

.course-details_meta-link:nth-child(4) .course-details_meta-icon {
    background-color: var(--primary);
}

.course-details_meta-link:nth-child(4) .course-details_meta-icon::before {
    border-color: var(--primary);
}

.course-details_meta-link:nth-child(5) .course-details_meta-icon {
    background-color: #d23f3f;
}

.course-details_meta-link:nth-child(5) .course-details_meta-icon::before {
    border-color: #d23f3f;
}

.course-details_meta-link:nth-child(6) .course-details_meta-icon {
    background-color: #33a9bb;
}

.course-details_meta-link:nth-child(6) .course-details_meta-icon::before {
    border-color: #33a9bb;
}

.course-details_meta-link + .course-details_meta-link {
    border-top: 2px solid #f1f1f1;
}

.course-details_meta-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
}

.course-details_meta-icon:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid;
    border-color: var(--primary);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.course-details_meta-icon i {
    color: #fff;
    font-size: 16px;
}

.courses_list-stars i{
    font-size: 14px;
    color: #f16101;
}



/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

@media (max-width:576px) {
    .carousel-item.lg-item > img {
        height: 50vh;
    }

    .carousel-banner-title {
        font-size: 52px;
        line-height: 70px;
        letter-spacing: 0;
        margin-bottom: 10px;
    }

    .carousel-banner-tag-line {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .carousel-banner-btn {
        font-size: 18px;
        padding: 10px 40px;
    }

    .carousel-control-next, .carousel-control-prev {
        width: 40px;
        height: 40px;
    }

    .course-details_title {
        font-size: 34px;
    }

    .course-details {
        padding: 30px 0;
    }

    .course-details_tab-content {
        padding: 20px;
    }
    .course-details_tab-navs li a {
        padding: 20px 25px;
    }

    .course-details_tab-text {
        font-size: 14px;
        line-height: 26px;
    }

    .course-details_overview-list li, .course-details_curriculum-list-right {
        font-size: 14px;
    }

    .course-details_tab-title {
        font-size: 18px;
    }

    .course-details_curriculum-list-left a {
        font-size: 16px;
    }
}