/*=========================================
#generall
==========================================*/
@font-face {
    font-family: 'baloo';
    src: url("../fonts/baloo.woff2") format("woff2"), url("../fonts/baloo.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
}

:root{
    --primary-color: #f29000;
    --secondary-color: #001219;
    --text-color: gray;
}

body {
    font-family: "baloo" !important;
    font-size: 16px;
    background-color: black !important;
}

.primary-bg{
    background-color: var(--secondary-color) !important;
}

.neo {
    border-radius: 10px !important;
    justify-content: center !important;
    transition: all ease-in-out 0.3s !important;
}

.neo-bulge {
    box-shadow:
        12px 12px 16px 0 rgba(0, 0, 0, .1) inset,
        -8px -8px 12px 0 rgba(0, 0, 0, .1) inset !important;
}

.neo-down {
    box-shadow:
        inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2),
        inset -6px -6px 10px 0 rgba(255, 255, 255, 0.5) !important;
}

.neo-up {
    box-shadow: 6px 6px 14px 0 rgba(0, 0, 0, 0.2),
        -8px -8px 18px 0 rgba(255, 255, 255, 0.55) !important;
}

.app-btn{
    padding: 10px 40px 12px 40px !important;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}
.orange-btn{
    border: none;
    color: #fff;
    border: 1px solid var(--text-color);
    background-color: var(--primary-color);
}
.secondary-btn {
    border: none;
    color: #fff;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--text-color);
}
.transparent-btn {
    color: #fff;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    transition: all ease-in-out .3s;
}
.app-btn i {
    position: absolute;
    margin-top: 6px;
    margin-left: 6px;
    transition: all ease-in-out .3s;
}

.app-btn:hover{
    background-color: rgba(242, 144, 0, .8);
    border: 1px solid var(--primary-color);
    transition: all ease-in-out .3s;
    color: #fff;
}
.app-btn:hover i {
    margin-left: 10px !important;
    transition: all ease-in-out .3s;
}

/*=========================================
# Preloader
==========================================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f29000;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.4s;
    justify-content: center;
    align-items: center;
    display: flex;
    text-decoration: none;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
    opacity: .8;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.sections-bg {
    background-color: #f6f6f6;
}

.section-header {
    text-align: left;
    padding-bottom: 40px;
    color: #333333 !important;
}

.section-header h2 {
    font-size: 25px;
    font-weight: 600;
    /* margin-bottom: 20px; */
    /* padding-bottom: 20px; */
    color: var(--text-color);
    position: relative;
}
.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color: var(--text-color);
    text-align: left !important;
}

.section-header h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 100px;
    height: 2px;
    background: var(--text-color);
    left: 0;
    bottom: -5px;
}

.section-header p {
    margin-bottom: 0;
    color: #6f6f6f;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 999;
    height: 90px;
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
}

.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.header.sticked-bg {
    height: 80px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    background: var(--secondary-color);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: var(--secondary-color);
    height: 85px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo img {
    max-height: 60px;
    object-fit: contain;
}

#header .social-links {
    margin: 0 0 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#header .social-links a {
    color: #555186;
    transition: 0.3s;
    line-height: 0;
    margin-left: 15px;
}

#header .social-links a i {
    line-height: 0;
}

#header .social-links a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    #header .social-links {
        margin: 0 15px 0 0;
    }
}

@media (max-width: 992px) {
    .header {
        height: 70px;
    }
    .header.sticked-bg {
        height: 60px;
    }

    #header.header-scrolled {
        height: 65px;
    }
    #header .logo img {
        max-height: 50px;
        object-fit: contain;
    }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-secondary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: var(--primary-color);
    }

    .active_underline::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 30px;
        height: 2px;
        right: 0;
        background-color: var(--primary-color);
        color: var(--primary-color);
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
        color: var(--color-primary);
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-secondary);
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
        right: -100%;
        width: 100%;
        max-width: 100%;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        z-index: 9998;
        transition: 0.3s;
        overflow-y: auto;
        padding: 50px 0 10px 0;
        background: var(--color-primary);
        inset: 0;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: var(--secondary-color);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff;
    }

    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
        color: #fff;
        background: var(--secondary-color);
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        background-color: var(--color-primary);
        border: 1px solid var(--secondary-color);
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: rgba(255, 255, 255, 0.6);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: var(--secondary-color);
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# course category widget
--------------------------------------------------------------*/
.cat-con {
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all ease-in-out 0.2s;
    height: 10em;
    overflow: hidden;
}

.cat-con-cov {
    z-index: 200;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.cat-con-cov h1 {
    font-size: 1.2em;
    font-weight: bold;
    padding: 0;
    margin: 0;
    z-index: 999;
}

.cat-img {
    width: 100%;
    height: 10em;
    z-index: 10;
    border-radius: 5px;
    transition: all ease-in-out 0.6s;
    object-fit: cover;
}

.cat-link:hover .cat-img {
    transform: scale(1.1);
}

@media(max-width: 768px) {
    .cat-con-cov h1 {
        font-size: 1.4em;
    }

    .cat-con-cov p {
        font-size: 0.8em;
    }

    .cat-img {
        height: 10em;
    }
}

/*--------------------------------------------------------------
# banner
--------------------------------------------------------------*/
@media(min-width: 768px) {
    .showcase {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding: 0 20px;
    }

    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: url('../media/online.jpg') no-repeat center center/cover;
    }

    .video-container video {
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    .video-container:after {
        content: '';
        z-index: 1;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
    }

    .content {
        z-index: 2;
    }

    .content h1 {
        font-size: 3em;
        text-transform: uppercase
    }

    .content h4 {
        font-size: 1.2em;
        font-weight: normal;
    }

    .top-search {
        padding: 1em;
        border-top-left-radius: 5px !important;
        border-bottom-left-radius: 5px !important;
        font-weight: bold !important;
        color: gray !important;
    }

    .coz-search {
        padding: 1em !important;
        height: 2.5em !important;
        border-top-left-radius: 25px !important;
        border-bottom-left-radius: 25px !important;
        font-weight: bold !important;
        color: gray !important;
    }
}

@media(max-width: 768px) {
    .showcase {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding: 0 20px;
    }

    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: url('../media/online.jpg') no-repeat center center/cover;
    }

    .video-container video {
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    .video-container:after {
        content: '';
        z-index: 1;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
    }

    .content {
        z-index: 2;
    }

    .content h1 {
        font-size: 1.8em;
        text-transform: uppercase
    }

    .content h4 {
        font-size: 1.2em;
        font-weight: normal;
    }

    .top-search {
        padding: 1em;
        border-top-left-radius: 25px !important;
        border-bottom-left-radius: 25px !important;
        font-weight: bold !important;
        color: gray !important;
    }

    .coz-search {
        padding: 1em !important;
        border-top-left-radius: 25px !important;
        border-bottom-left-radius: 25px !important;
        font-weight: bold !important;
        color: gray !important;
    }
}

/*--------------------------------------------------------------
# description banner
--------------------------------------------------------------*/

.discription-banner {
    text-align: center;
    background-image: url("../media/bg_4.jpg");
    padding: 25px 0;
    color: #fff;
    font-weight: bold;
    background-attachment: fixed;
    background-position: center;
}

.discription-banner .inner-ban {
    padding-top: 10em;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.discription-banner h2 {
    font-size: 32px;
    font-weight: 500;
}

.discription-banner p {
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .discription-banner .inner-ban {
        padding-top: 5em;
    }
    .discription-banner h2 {
        font-size: 20px;
        font-weight: 500;
    }

    .discription-banner p {
        font-size: 14px;
        font-weight: normal;
    }
}

/*--------------------------------------------------------------
# Get started
--------------------------------------------------------------*/
@media(min-width: 768px) {
    .get-icon {
        font-size: 4em;
        color: #f29000;
    }

    .get-hd {
        font-size: 1.1em;
        font-weight: bold;
        color: silver;
    }

    .get-hd span {
        color: #f29000;
    }

    .get-body {
        font-size: 1.2em;
        color: #eee;
    }

    .getstart-btn {
        padding-left: 2em;
        padding-right: 2em;
        border-radius: 15px !important;
    }
}

@media(max-width: 768px) {
    .get-icon {
        font-size: 2em;
        color: #f29000;
    }

    .get-hd {
        font-size: 1em;
        font-weight: bold;
        color: silver;
    }

    .get-hd span {
        color: #f29000;
    }

    .get-body {
        font-size: 1.2em;
        color: #eee;
    }

    .getstart-btn {
        padding-left: 2em;
        padding-right: 2em;
        border-radius: 15px !important;
    }
}

/*--------------------------------------------------------------
# main-search-con
--------------------------------------------------------------*/

.main-search-con {
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.main-search-con .inner-ban {
    width: 100%;
    background: var(--secondary-color)
}

.main-search-con h2 {
    font-size: 32px;
    font-weight: 500;
}
@media (max-width: 992px) {
    .main-search-con h2 {
        font-size: 20px;
        font-weight: 500;
    }
}

/*--------------------------------------------------------------
# login
--------------------------------------------------------------*/
@media(min-width: 768px) {
    .wel-hd {
        text-align: center;
        padding: 1em;
        margin-top: 5%;
        color: #eee;
    }

    .log-input {
        color: silver !important;
        background-color: black !important;
        border-top: none !important;
        border-right: none !important;
        border-left: none !important;
        padding-bottom: 1.5em !important;
        padding-top: 2em !important;
    }

    .log-close {
        float: right;
        margin-top: 2%;
        margin-right: 5%;
        font-size: 1.8em;
        color: gray;
    }
}

@media(max-width: 768px) {
    .wel-hd {
        text-align: center;
        padding: 0.8em;
        margin-top: 2%;
        color: #eee;
        font-size: 1.4em;
    }

    .log-input {
        color: silver !important;
        background-color: black !important;
        border-top: none !important;
        border-right: none !important;
        border-left: none !important;
        padding-bottom: 1.5em !important;
        padding-top: 2em !important;
    }
}

/*--------------------------------------------------------------
# input form
--------------------------------------------------------------*/
.form-mb{
    margin-bottom: 25px;
}
.main-form {
    background-color: #212121 !important;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    padding: 1em !important;
    color: #eee !important;
    opacity: 0.8 !important;
    border-radius: 15px !important;
}
.iti{
    width: 100% !important;
    color: var(--text-color) !important;
}
#phone{
    padding-left: 95px !important;
}

/*--------------------------------------------------------------
# mobile-app
--------------------------------------------------------------*/
.mobile-app .content {
    background-color: var(--secondary-color);
    padding: 40px;
}

.mobile-app h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.mobile-app p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.store-btn {
    width: 130px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
    text-decoration: none !important;
    transition: all ease-in-out .3s;
}
.store-btn:hover {
    transform: scale(1.05);
    transition: all ease-in-out .3s;
}
.mobile-app video{
    width: 100%;
    height: 25em;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid var(--secondary-color);
}
@media screen and (max-width: 768px) {
    .mobile-app video {
        height: 12em;
    }
}

/*--------------------------------------------------------------
# free-course
--------------------------------------------------------------*/
.free-course .content {
    background-color: var(--secondary-color);
    padding: 40px;
}

.free-course h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}
.free-course h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.free-course h2 {
    font-size: 32px;
    color: var(--text-color);
}

.free-course p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.free-course video {
    width: 100%;
    height: 25em;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid var(--secondary-color);
}
.free-course a{
    color: var(--text-color);
    text-decoration: none !important
}
.free-course a:hover {
    color: var(--primary-color);
}
.free-course .btn-con{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .free-course video {
        height: 12em;
    }
    .free-course .btn-con {
        flex-direction: column;
    }
    .free-course .btn-con a {
        margin-top: 20px;
    }
    .free-course h2 {
        font-size: 22px;
        color: var(--text-color);
    }
}

/*--------------------------------------------------------------
# service
--------------------------------------------------------------*/
.service-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
}
.service-con{
    text-decoration: none;
}

.service-con .card{
    height: 20em;
}

.service-cov{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--primary-color);
}
.service-btn h1 {
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: var(--text-color);
}
.service-btn i {
    font-size: 20px;
    color: var(--text-color);
    margin-top: 6px;
    margin-left: 20px;
}
.service-btn:hover h1 {
    color: var(--primary-color);
}
.service-btn:hover i {
    color: var(--primary-color);
}
.sev-content{
    color: var(--text-color);
}
.sev-sub-hd a {
    font-size: 0.8em;
    font-weight: bold;
    color: var(--text-color) !important; 
}

.sev-img img {
    width: 100%;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 0 !important;
}
@media screen and (max-width: 768px) {
    .service-con .card {
        height: 100%;
    }
    .service-btn{
        position: relative;
        margin-bottom: 10px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--secondary-color);
    color: #444444;
    font-size: 14px;
    background: #f1f6fe;
}

#footer .footer-top {
    padding: 30px 0 0px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: var(--text-color);
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #eee;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color) !important;
    position: relative;
    padding-bottom: 4px;
    margin: 0;
}

#footer .footer-top .footer-links {
    margin-bottom: 10px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #eee;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: gray;
    margin-left: 0.2em;
    transition: 0.3s all ease;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links .facebook {
    background: #eee;
    color: blue;
}

#footer .footer-top .social-links .instagram {
    background: #eee;
    color: brown;
}

#footer .footer-top .social-links .twitter {
    background: #eee;
    color: rgb(11, 97, 179);
}

#footer .footer-top .social-links .youtube {
    background: #eee;
    color: red;
}

#footer .footer-top .social-links .whatsapp {
    background: #eee;
    color: green;
}

#footer .footer-top .social-links a:hover {
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #444444;
}

#footer .copyright {
    padding: 15px;
}
@media (max-width: 768px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

/*--------------------------------------------------------------
# courses
--------------------------------------------------------------*/
.course-card {
    text-decoration: none;
}

.course-card .card {
    border: none;
    overflow: hidden;
    border-radius: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.course-card .img-con {
    height: 10em !important;
    transition: all ease-in-out .3s;
    overflow: hidden;
}

.course-card img {
    height: 10em !important;
    transition: all ease-in-out .3s;
}

.course-card:hover img {
    transform: scale(1.05);
    transition: all ease-in-out .3s;
    opacity: .9;
}

.course-card h5 {
    font-size: 16px;
    color: #e2eefd;
    font-weight: bold;
    margin: 0;
}

.course-card .price-con {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 18, 25, .8);
    padding: 6px 10px;
    border-bottom-right-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.course-card .price-con i {
    font-size: 9px;
    color: #e2eefd;
}

.course-card .price-con .duration {
    color: #e2eefd;
}

.course-cat-con{
    background-color: var(--secondary-color) !important;
}
.course-cat-con .cat-hd {
    color: var(--primary-color);
    font-size: 16px;
}
.cat-list ul li a{
    color: var(--text-color);
    transition: all ease-in-out .2s;
}
.cat-list ul li a:hover {
    color: var(--primary-color);
    transition: all ease-in-out .2s;
}
.cat-list ul li {
    transition: all ease-in-out .2s;
}
.cat-list ul li:hover {
    border-bottom: 1px solid var(--primary-color) !important;
    transition: all ease-in-out .2s;
}
.cat-list ul li .badge {
    transition: all ease-in-out .2s;
}
.cat-list ul li:hover .badge {
    color: var(--primary-color);
    transition: all ease-in-out .2s;
}

/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details .img-con {
    height: 25em;
    width: 100%;
    border-radius: 5px;
    background-position: center center;
}
.course-details .img-con .bg-cov {
    height: 25em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 18, 25, 0.6);
}
.course-details img {
    height: 25em;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.course-details h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    padding-bottom: 20px;
}

.course-details p {
    color: var(--text-color);
}

.course-details .course-info {
    background: var(--secondary-color);
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
}

.course-details .course-info h5 {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
}

.course-details .course-info li {
    color: var(--text-color) !important;
    margin: 0;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .course-details .img-con {
        height: 15em;
    }

    .course-details .img-con .bg-cov {
        height: 15em;
    }

    .course-details img {
        height: 15em;
    }
}


/*--------------------------------------------------------------
# playn btn
--------------------------------------------------------------*/
.play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#f29000 50%, rgba(242, 144, 0, .2) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    overflow: hidden;
}

.play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(242, 144, 0, .2);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
    border-left: 15px solid #001219;
    transform: scale(20);
}

.play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--primary-color);
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# swiper
--------------------------------------------------------------*/
.swiper-button-next::after {
    content: ">" !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
}

.swiper-button-prev::after {
    content: "<" !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
}
.swiper-button-next {
    border-radius: 8px;
    padding: 8px;
    margin-right: -10px;
    z-index: 999;
    background-color: rgba(0, 18, 25, .6);
}
.swiper-button-prev {
    border-radius: 10px;
    padding: 8px;
    margin-left: -8px;
    z-index: 999;
    background-color: rgba(0, 18, 25, .6);
}