﻿body {
    font-family: "Manrope", "Noto Sans Thai", sans-serif;
    /*background: #0e1b20;*/
    background: #000000;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
}

.full-width {
    width: 100%;
}


.btn.focus, .btn:focus {
    box-shadow: none;
}

.btn-primary {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 0px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    background: linear-gradient(#0056fe, #061a5f);
    padding: 12px 40px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.1s;
}

    .btn-primary:hover {
        text-decoration: none;
        transform: translateY(-2px);
    }


.btn-secondary {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    background: linear-gradient(180deg, #b8b8b8, #ffffff);
    padding: 12px 40px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.1s;
}

    .btn-secondary:hover {
        color: #000000;
        text-decoration: none;
        transform: translateY(-2px);
    }




.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}

    .blur-up.lazyloaded {
        -webkit-filter: blur(0);
        filter: blur(0);
    }


.container {
    max-width: 1471px;
}


@media (max-width: 460px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.error-message {
    color: #ffffff;
    background-color: #ff263a;
    border-color: #ff263a;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
}


/*****************************************
* video-container
*****************************************/
/*.video-container {
    position: relative;
    width: 100%;
    height: 100vh;*/ /* full screen background */
/*overflow: hidden;
}

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/


/*****************************************
* Video Player
*****************************************/
.video-container {
    position: relative;
    display: flex;
    width: 100%;
    height: inherit;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

    .video-container #video {
        /*width: 600px;
        height: 400px;*/
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    .video-container .controls {
        position: absolute;
        bottom: 0px;
        width: 100%;
        display: flex;
        justify-content: space-around;
        opacity: 0;
        transition: opacity 0.4s;
        background: #0056ff;
        padding: 5px 10px;
    }

    .video-container:hover .controls {
        opacity: 0.7;
    }

    .video-container .controls button {
        background: transparent;
        color: #fff;
        font-weight: bolder;
        text-shadow: 2px 1px 2px #000;
        border: none;
        cursor: pointer;
    }

    .video-container .controls .timeline {
        flex: 1;
        display: flex;
        align-items: center;
        border: none;
        border-right: 3px solid #ccc;
        border-left: 3px solid #ccc;
    }

        .video-container .controls .timeline .bar {
            background: rgb(1, 1, 65);
            height: 4px;
            flex: 1;
        }

            .video-container .controls .timeline .bar .inner {
                background: #ccc;
                width: 0%;
                height: 100%;
            }

    .video-container .fa {
        font-size: 20px !important;
    }




/*****************************************
* iframe Wrapper
*****************************************/
.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


/*****************************************
* Gradient Background
*****************************************/
.gradient-background {
    background: linear-gradient(135deg, #1e3df0, #005be0, #00c9db, #f2d34e);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* Optional animation to give it a smooth shifting effect */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/*****************************************
* Fade Gradient
*****************************************/
.fade-gradient {
    position: relative;
}

    .fade-gradient::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*****************************************
* Fade Image
*****************************************/
.fadeimage-mouseover {
    overflow: hidden;
    cursor: pointer;
}

    .fadeimage-mouseover:hover img {
        transform: scale(1.1);
        transition: transform 3s ease-in;
    }



/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0f;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 300px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}


/*****************************************
* Main Content 
*****************************************/
#main-content {
    /*margin-top: 90px;*/
    /*min-height: calc(70vh - 100px);*/
}


@media(max-width: 460px) {
    #main-content {
        margin-top: 70px;
    }
}



/*****************************************
* Navbar 
*****************************************/
.navbar-light {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.5s ease all;
    height: 70px;
    /*background: #0e1b20;*/
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }


    .navbar-light .navbar-brand .navbar-logo {
        height: 55px;
        transition: 0.5s ease all;
    }

    .navbar-light .navbar-nav {
        align-items: center;
    }

        .navbar-light .navbar-nav .nav-link,
        .navbar-light .navbar-nav .nav-link:hover,
        .navbar-light .navbar-nav .nav-link:visited {
            font-size: 16px;
            font-weight: 400;
            transition: 0.5s ease all;
            color: #ffffff;
            padding: 6px 15px;
            cursor: pointer;
        }

            /*.navbar-light .navbar-nav .nav-link.active {
                color: #ffffff;
                background-color: #ff7d26 !important;
                border-color: #ff7d26 !important;
                border-radius: 20px;
                outline: 0;
                position: relative;
            }*/

            .navbar-light .navbar-nav .nav-link.hiligted {
                /*background: #061b60;*/
                background: linear-gradient( #0056fe, #061a5f);
                color: #ffffff;
                border-radius: 25px;
                padding: 6px 26px;
            }


    .navbar-light.navbar-scroll {
        transition: 0.5s ease all;
        background: #000000;
        /*background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));*/
    }

        .navbar-light.navbar-scroll .navbar-brand .navbar-logo {
            height: 80px;
        }
/*
        .navbar-light.navbar-scroll .navbar-nav .nav-link,
        .navbar-light.navbar-scroll .navbar-nav .nav-link:hover,
        .navbar-light.navbar-scroll .navbar-nav .nav-link:visited {
            transition: 0.5s ease all;
            font-size: 21px;
        }
*/

@media (max-width: 460px) {
    .navbar-light {
        background: #000000;
    }

        .navbar-light.navbar-scroll .navbar-brand .navbar-logo {
            height: 55px;
        }

        .navbar-light .navbar-nav {
            display: none;
        }
}





/*****************************************
* Main Backend
*****************************************/
#main-backend {
    padding: 40px 0px 40px 0px;
}


    #main-backend .backpage {
        margin-bottom: 20px;
    }

        #main-backend .backpage .button-action, #main-backend .backpage .button-action:hover {
            justify-content: flex-start;
            transform: scale(1);
        }

            #main-backend .backpage .button-action .button-text {
                padding-left: 10px;
            }

            #main-backend .backpage .button-action .button-icon .button-icon-icon {
                transform: rotate(180deg);
            }

    #main-backend .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

        #main-backend .title-header .title {
            font-size: 40px;
            line-height: 44px;
            color: #29771a;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        #main-backend .title-header .button-link {
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            line-height: 16px;
            background: #cb2d2d;
            border: #a32323;
            border-radius: 0px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            outline: none;
            margin-top: 15px;
            padding: 12px 30px 10px 30px;
        }

@media (max-width: 460px) {
    #main-backend .title-header {
        margin-bottom: 5px;
    }


        #main-backend .title-header .title {
            font-size: 26px;
            line-height: 26px;
        }
}

#main-backend .backend-lists {
    border: 1px solid #5f5f5f;
    background: #2d2d2d;
}




/*****************************************
* Form
*****************************************/
form .form-title {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

form .form-subtitle {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 20px;
}

form .form-wrapper {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 3px solid #e74e25
}

    form .form-wrapper .message-text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }

        form .form-wrapper .message-text a, form .form-wrapper .message-text a:hover {
            color: #000000;
            text-decoration: underline;
        }



@media (max-width: 460px) {
    form .form-title {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    form .form-subtitle {
        font-size: 16px;
        line-height: 16px;
    }
}

form .form-group label {
    /*color: #e74e25;*/
    color: #c3c3c3;
    font-size: 16px;
    font-weight: normal;
    line-height: 20px;
    padding: 0px 10px;
}

    form .form-group label .fa {
        font-size: 12px;
        line-height: 12px;
        color: #b50505;
    }


form .form-group input {
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    height: 36px;
    font-size: 14px;
    color: #000000;
    line-height: 3rem;
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: 1px solid #eaeaea;
}

    form .form-group input:read-only {
        background: #eeeeee;
    }

form .form-group textarea {
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    font-size: 16px;
    color: #000000;
    line-height: 20px;
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: 1px solid #eaeaea;
}

    form .form-group textarea:read-only {
        background: #eeeeee;
    }


form .form-group select {
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    height: 40px;
    font-size: 18px;
    color: #000000;
    line-height: 3rem;
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: 1px solid #eaeaea;
}

    /*form .form-group select:read-only {
        background: #eeeeee;
    }*/


    form .form-group select option {
        font-size: 12px;
        line-height: 12px;
    }

form .form-group input[type=file] {
    background: #ffffff;
    border: 1px solid #eae8e4;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    height: 40px;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 2rem;
    width: 100%;
    border-radius: 10px;
}



form .form-group.form-checkbox {
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: inherit;
    margin-bottom: 0rem;
    font-size: 18px;
    line-height: 16px;
}


    form .form-group.form-checkbox .checkbox-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        font-size: 16px;
    }

        form .form-group.form-checkbox .checkbox-wrapper .checkbox-item {
            width: calc(100%/4);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            line-height: 0.8rem;
            margin-bottom: 10px;
        }

            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item img {
                height: 36px;
            }



            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver {
                width: calc(100%/3);
            }

                form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver img {
                    height: 50px;
                }


    form .form-group.form-checkbox input[type=checkbox] {
        box-sizing: border-box;
        padding: 0;
        height: 20px;
        width: 30px;
    }



form .form-group.form-radio {
    display: flex;
    justify-content: flex-start;
    align-items: inherit;
    margin-bottom: 5px;
}


    form .form-group.form-radio .radio-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

        form .form-group.form-radio .radio-wrapper .radio-item {
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 5px;
        }

            form .form-group.form-radio .radio-wrapper .radio-item img {
                height: 36px;
            }



            form .form-group.form-radio .radio-wrapper .radio-item.driver {
                width: calc(100%/3);
            }

                form .form-group.form-radio .radio-wrapper .radio-item.driver img {
                    height: 50px;
                }


    form .form-group.form-radio input[type=radio] {
        box-sizing: border-box;
        padding: 0;
        height: 20px;
        width: 30px;
        margin-top: 5px;
        cursor:pointer;
    }


form .btn-primary {
    font-size: 16px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 0px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    background: linear-gradient(#0056fe, #061a5f);
    padding: 10px 40px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.1s;
    border: none;
    outline: none;
}

    form .btn-primary:hover, form .btn-primary:focus {
        text-decoration: none;
        transform: translateY(-2px);
    }


form .btn-secondary {
    font-size: 16px;
    color: rgb(0 0 0);
    text-transform: uppercase;
    letter-spacing: 0px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    background: linear-gradient(#ffffff, #b9b9b9);
    padding: 10px 40px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.1s;
    border: none;
    outline: none;
}

    form .btn-secondary:hover, form .btn-secondary:focus {
        text-decoration: none;
        transform: translateY(-2px);
    }

form .btn-back {
    line-height: 20px;
    font-weight: 400;
    background: transparent;
    text-decoration: none;
    margin-right: 5px;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0px;
    position: relative;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.1s;
    border: none;
    outline: none;
}

    form .btn-back:hover, form .btn-back:focus {
        /* color: #ffd71d;
        background: transparent;
        border: 3px solid #ffd71d;*/
    }



.checkbox_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*padding-top: 25px;*/
}

    .checkbox_wrapper .checkbox-input {
        width: 20px;
        height: 20px;
    }

    .checkbox_wrapper .checkbox-label {
        padding: 0px 10px;
    }


    .checkbox_wrapper .checkbox-input:read-only {
        pointer-events: none;
    }


.form-section {
    padding: 30px 20px 20px 20px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid #213340;
    box-shadow: 0px 10px 30px rgba(22, 122, 198, 0.2);
}

    .form-section .form-section-title {
        color: #167ac6;
        font-size: 16px;
        line-height: 20px;
        background: #000000;
        position: absolute;
        top: -10px;
        left: 25px;
        padding: 0px 10px;
    }


/*****************************************
* Login Form
*****************************************/
#login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

    #login-form .login-form-wrapper {
        width: 450px;
        padding: 20px;
    }

        #login-form .login-form-wrapper.large-form {
            width: 800px;
        }

        #login-form .login-form-wrapper .login-title {
            color: #e74e25;
            font-size: 55px;
            margin-bottom: 40px;
        }

        #login-form .login-form-wrapper .login-logo {
            text-align: center;
        }

            #login-form .login-form-wrapper .login-logo img {
                width: 50%;
            }


        #login-form .login-form-wrapper .login-system-name {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
        }

        #login-form .login-form-wrapper .login-footer-text {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            margin-top: 30px;
            text-transform: uppercase;
        }

            #login-form .login-form-wrapper .login-footer-text a,
            #login-form .login-form-wrapper .login-footer-text a:hover {
                color: #4e8aff;
                text-decoration: none;
            }


/*****************************************
* Member Form
*****************************************/
#member-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0px 100px 0px;
}

    #member-form .member-form-wrapper {
        width: 800px;
    }


    #member-form .member-title {
        color: #167ac6;
        font-size: 36px;
        line-height: 40px;
        font-weight: 600;
        margin-bottom: 30px;
    }



.mycourse-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #213340;
    box-shadow: 0px 10px 30px rgba(22, 122, 198, 0.2);
    padding: 20px;
    color: #ffffff;
}

    .mycourse-item .course-name {
    }

    .mycourse-item .course-round {
    }



/*****************************************
* Backoffice Form
*****************************************/
#backoffice-form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 0px 50px 0px;
}

    #backoffice-form .backoffice-form-wrapper {
        width: 80%;
    }


        #backoffice-form .backoffice-form-wrapper .backoffice-title {
            color: #167ac6;
            font-size: 36px;
            line-height: 40px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 20px;
        }


        #backoffice-form .backoffice-form-wrapper .backoffice-section {
            border: 1px solid #213340;
            box-shadow: 0px 10px 30px rgba(22, 122, 198, 0.2);
            padding: 30px 20px 20px 20px;
            border-radius: 20px;
            margin-bottom: 30px;
            position: relative;
        }

            #backoffice-form .backoffice-form-wrapper .backoffice-section .backoffice-section-title {
                color: #167ac6;
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
                background: #14141d;
                position: absolute;
                top: -10px;
                left: 25px;
                padding: 0px 10px;
            }


#backoffice-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 0px 50px 0px;
}

    #backoffice-grid .backoffice-grid-wrapper {
        width: 100%;
        padding: 20px;
    }

        #backoffice-grid .backoffice-grid-wrapper .backoffice-grid-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            margin-bottom: 20px;
        }


            #backoffice-grid .backoffice-grid-wrapper .backoffice-grid-title .title {
                color: #ffffff;
                font-size: 36px;
                line-height: 40px;
                text-transform: uppercase;
                font-weight: 600;
            }

            #backoffice-grid .backoffice-grid-wrapper .backoffice-grid-title .button-link {
                font-size: 16px;
                color: rgb(255, 255, 255);
                text-transform: uppercase;
                letter-spacing: 0px;
                position: relative;
                display: inline-block;
                margin-right: 10px;
                background: linear-gradient(#0056fe, #061a5f);
                padding: 10px 40px;
                border-radius: 30px;
                overflow: hidden;
                transition: 0.1s;
                border: none;
                outline: none;
            }


#backoffice-calendar {
    width: 100%;
    border: 3px solid #ffd71d;
    padding: 30px 20px 20px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    background: #ffffff;
    margin-top: 40px;
}

    #backoffice-calendar .backoffice-calendar-title {
        color: #ffd71d;
        font-size: 30px;
        position: absolute;
        top: -40px;
        left: 25px;
        padding: 0px 10px;
    }


#backoffice-tab {
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

    #backoffice-tab .backoffice-tab-item {
        padding: 10px;
        margin-right: 20px;
        cursor: pointer;
    }

        #backoffice-tab .backoffice-tab-item a {
            color: #ffffff;
        }

        #backoffice-tab .backoffice-tab-item.active {
            border: 1px solid #213340;
            box-shadow: 0px 10px 30px rgba(22, 122, 198, 0.2);
            padding: 10px 26px;
            border-radius: 20px;
            cursor: inherit;
        }

/*****************************************
* Main Dashboard
*****************************************/
#main-dashboard {
    display: flex;
    justify-content: flex-start;
}

    #main-dashboard .dashboard-menu {
        width: 300px;
        padding: 40px 20px;
    }

        #main-dashboard .dashboard-menu .menu-logo {
            margin-bottom: 20px;
        }

            #main-dashboard .dashboard-menu .menu-logo img {
                width: 60%;
            }



        #main-dashboard .dashboard-menu .user-profile {
            color: #26224b;
            font-size: 16px;
            line-height: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            background: #ffb9a6;
            padding: 10px 15px;
            border-radius: 10px;
        }



        #main-dashboard .dashboard-menu a.single-menu, #main-dashboard .dashboard-menu a.single-menu:hover {
            color: #167ac6;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
        }

    #main-dashboard .dashboard-content {
        width: calc(100% - 300px);
        height: 100vh;
        padding: 40px 40px 100px 40px;
        /*background: #fbf5e4;*/
        background: #14141d;
        /*background: #1d333d;*/
        /*background: #17242b;*/
        overflow: auto;
        overflow-y: scroll;
        overflow-x: hidden;
    }


.sidemenu {
    margin-bottom: 20px;
}

    .sidemenu .title {
        color: #167ac6;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .sidemenu .sidemenu-lists {
        padding: 5px 15px;
        /*background: #bcc6ff;
        border-radius: 5px;*/
    }

    .sidemenu ul {
        list-style: none;
        padding-left: 0px;
        font-size: 14px;
        margin-bottom: 0px;
    }

        .sidemenu ul li {
        }

            .sidemenu ul li a {
                color: #fbf5e4;
            }


.content-box {
}

    .content-box .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

        .content-box .title-header .title {
            font-size: 36px;
            line-height: 36px;
            color: #e74e25;
            text-transform: uppercase;
            /*margin-bottom: 10px;*/
        }

        .content-box .title-header .button-link {
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            line-height: 16px;
            background: #cb2d2d;
            border: #a32323;
            border-radius: 0px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            outline: none;
            padding: 12px 30px 10px 30px;
            border-radius: 20px;
        }


.table-data {
    width: 100%;
    background: #ffffff;
    font-size: 14px;
}

    .table-data thead tr th {
        background: #e6e7e8;
        font-weight: 500;
        color: #000000;
        padding: 5px 10px;
    }

    .table-data tbody tr td {
        border: 1px solid #ededed;
        padding: 5px 10px;
        vertical-align: top;
        font-weight: 500;
    }

        .table-data tbody tr td a,
        .table-data tbody tr td a:hover {
            color: #000000;
        }

            .table-data tbody tr td a.icon-link,
            .table-data tbody tr td a.icon-link:hover {
                margin: 0px 3px;
                font-size: 12px;
                line-height: 20px;
                font-weight: 600;
                color: #0056fe;
                text-transform: uppercase;
                letter-spacing: 0px;
                position: relative;
                display: inline-block;
                padding: 3px 15px;
                border-radius: 30px;
                overflow: hidden;
                transition: 0.1s;
                outline: none;
                border: 2px solid #0056fe;
                text-decoration: none;
            }

        .table-data tbody tr td .view-icon {
            display: inline-block;
            width: 26px;
            height: 26px;
            background: url('/frontend-assets/images/icons/view.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px;
        }

        .table-data tbody tr td .edit-icon {
            display: inline-block;
            width: 26px;
            height: 26px;
            background: url('/frontend-assets/images/icons/editing.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px 3px;
        }

        .table-data tbody tr td .delete-icon {
            display: inline-block;
            width: 26px;
            height: 26px;
            background: url('/frontend-assets/images/icons/deleteing.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px 3px;
        }

        .table-data tbody tr td .exam-icon {
            display: inline-block;
            width: 26px;
            height: 26px;
            background: url('/frontend-assets/images/icons/tutorial.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px 3px;
        }

        .table-data tbody tr td .schedule-icon {
            display: inline-block;
            width: 26px;
            height: 26px;
            background: url('/frontend-assets/images/icons/schedule.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px 3px;
        }



        .table-data tbody tr td .status-checkbox {
            pointer-events: none;
            width: 18px;
            height: 18px;
        }






/*****************************************
* Evidence Item
*****************************************/
.evidence-item, .evidence-item:hover {
    color: #db3832;
    border: 2px solid #bbbbbb;
    display: block;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    width: 60%;
}


    .evidence-item .evidence-icon {
        margin-bottom: 5px;
    }

        .evidence-item .evidence-icon img {
            width: 80%;
        }

    .evidence-item .evidence-title {
        font-weight: 600;
        font-size: 20px;
    }

    .evidence-item .evidence-referrals {
    }


    .evidence-item iframe {
        width: 100%;
        height: 500px;
    }


/*****************************************
* Export PDF
*****************************************/
#export-pdf .title {
    color: #000000;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}

#export-pdf table {
    font-size: 20px;
    line-height: 20px;
}



/*****************************************
* Welcome Video
*****************************************/
/*#home-intro {
    background: #000000;
    padding: 0px;
    position: relative;
}

@media(max-width:460px) {
    #home-intro {
        padding: 0px;
    }
}



#home-intro .home-intro-text-top {
    color: #ffe34c;
    position: absolute;
    bottom: auto;
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    left: 50%;
    z-index: 2;
    top: 20%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    text-align: center;
}

    #home-intro .home-intro-text-top .home-intro-headline {
        font-size: 34px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 15px;
        width: 100%;
        text-transform: uppercase;
    }

    #home-intro .home-intro-text-top .home-intro-subheadline {
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        width: 100%;
    }

@media(max-width:460px) {
    #home-intro .home-intro-text-top {
        top: 10%;
        left: 10%;
        transform: translate(-10%, -10%);
    }

        #home-intro .home-intro-text-top .home-intro-headline {
            font-size: 28px;
            line-height: 28px;
            margin-bottom: 5px;
        }

        #home-intro .home-intro-text-top .home-intro-subheadline {
            font-size: 16px;
            line-height: 20px;
        }
}



#home-intro .home-intro-button {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
}

    #home-intro .home-intro-button .btn-contact {
        padding: 18px 30px;
        color: #000000;
        background-color: #ffe34c;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }

    #home-intro .home-intro-button .btn-contact-outline {
        padding: 18px 30px;
        color: #ffe34c;
        background-color: transparent;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }


@media(max-width:460px) {
    #home-intro .home-intro-button .btn-contact {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }

    #home-intro .home-intro-button .btn-contact-outline {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }
}



#home-intro .home-intro-logo {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #home-intro .home-intro-logo img {
        width: 30%;
    }




.home-intro-wrapper {
    height: 70vh;
    min-height: 680px;*/
/*max-width: 1920px;*/
/*max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .home-intro-wrapper .home-intro-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }*/




/*****************************************
* Menu Modal
*****************************************/
#menuModal {
    background: #000000;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: none;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                text-align: center;
                margin-bottom: 30px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 50%;
                }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 0px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    color: #fbf5e4;
                    font-size: 20px;
                    line-height: 30px;
                    letter-spacing: 0px;
                    text-align: center;
                    padding: 2px 0px;
                    text-transform: unset;
                }





/*****************************************
* Notice Box
*****************************************/
/*#home-about {
    padding: 100px 0px 100px 0px;
    background: #000000;
    background-image: linear-gradient(to bottom, rgba(38, 36, 81, 0.2), rgba(38, 36, 81, 1));
}

.home-about {
    width: 70%;
    margin: 0px auto;
}

    .home-about .title {
        color: #b3b9e0;
        font-size: 36px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0px;
    }


    .home-about .detail {
        color: #ffffff;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

        .home-about .detail b, .home-about .detail strong {
            color: #f10040;
        }

        .home-about .detail a[href^="tel"],
        .home-about .detail a[href^="mailto"] {
            color: #ffe34c;
            text-decoration: none;
        }


@media (max-width: 460px) {
    #home-about {
        padding: 50px 0px 50px 0px;
    }

    .home-about {
        width: 100%;
    }

        .home-about .title {
            font-size: 30px;
            line-height: 34px;
        }


        .home-about .detail {
            width: 100%;
            font-size: 16px;
            line-height: 18px;
        }
}*/





/*****************************************
* Footer
*****************************************/
#footer-course {
    color: #e74e25;
    /*background: #061b60;*/
    padding: 60px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

    #footer-course .container {
        padding-right: 0px;
        padding-left: 0px;
    }


@media (max-width: 460px) {

    #footer-course {
        padding: 20px 0px 40px 0px;
    }
}


.footer-course {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


    .footer-course .logo-panel {
        width: 25%;
        padding: 20px;
    }

        .footer-course .logo-panel .logo-brand {
            display: block;
        }

            .footer-course .logo-panel .logo-brand img {
                width: 100%;
                margin-bottom: 20px;
            }


    .footer-course .info-panel {
        width: 55%;
        padding: 0px 20px;
    }

        .footer-course .info-panel .info-panel-header {
            color: #fbf5e4;
            font-size: 24px;
            line-height: 28px;
            margin-bottom: 20px;
        }

        .footer-course .info-panel .info-panel-text {
            color: #fbf5e4;
            font-size: 18px;
            line-height: 28px;
            font-weight: normal;
        }



@media (max-width: 460px) {

    .footer-course .logo-panel {
        width: 90%;
        padding: 0px 20px;
    }

        .footer-course .logo-panel .logo-brand img {
            margin-bottom: 0px;
        }

    .footer-course .info-panel {
        width: 100%;
    }

        .footer-course .info-panel .info-panel-header {
            font-size: 20px;
            line-height: 28px;
        }

        .footer-course .info-panel .info-panel-text {
            font-size: 16px;
            line-height: 20px;
        }
}



#footer-bottom {
    /*background: #061b60;*/
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
}

    .footer-bottom .footer-copyright {
        width: 50%;
        color: #fbf5e4;
        padding: 20px 0px;
    }

    .footer-bottom .footer-social {
        width: 50%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 10px 0px 20px 0px;
    }

        .footer-bottom .footer-social .social-item {
            width: 30px;
            height: 30px;
            margin: 0px 5px;
        }

            .footer-bottom .footer-social .social-item img {
                /*filter: brightness(0%);*/
            }




/*****************************************
* Testimonials
*****************************************/
#testimonials {
    padding: 100px 0px;
    background: #f7f7f7;
}

    #testimonials .title {
        font-size: 60px;
        line-height: 64px;
        font-weight: 600;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        color: #262451;
        text-transform: uppercase;
    }

    #testimonials .subtitle {
        font-weight: 400;
        font-size: 20px;
        margin-bottom: 30px;
        letter-spacing: 0px;
        text-align: center;
    }


@media (max-width: 460px) {
    #testimonials {
        padding: 40px 0px;
    }

        #testimonials .title {
            font-size: 36px;
            line-height: 40px;
        }

        #testimonials .subtitle {
            font-size: 18px;
            line-height: 22px;
        }
}


.testimonials-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .testimonials-lists .testimonials-item {
        width: calc(100% / 4 - 20px);
        padding: 30px 20px;
        background: #ffffff;
        box-shadow: 0px 4px 12px #e8e8e8;
        margin: 10px;
        text-align: center;
    }

        .testimonials-lists .testimonials-item .testimonials-name {
            font-size: 20px;
            line-height: 20px;
            color: #262451;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .testimonials-lists .testimonials-item .testimonials-position {
            font-size: 16px;
            line-height: 16px;
            font-weight: 600;
            color: #bbbaba;
            margin-bottom: 5px;
        }

        .testimonials-lists .testimonials-item .testimonials-business-type {
            font-size: 14px;
            line-height: 14px;
            color: #bbbaba;
            font-weight: 400;
            margin-bottom: 10px;
            height: 40px;
        }

        .testimonials-lists .testimonials-item .testimonials-feedback {
        }

@media (max-width: 460px) {
    .testimonials-lists .testimonials-item {
        width: 100%;
    }
}


/*****************************************
* Menu Tab
*****************************************/
#menu-tab {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0px;
}

    #menu-tab .menu-tab-item, #menu-tab .menu-tab-item:hover {
        padding: 10px 20px;
        color: #262451;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        text-decoration: none;
        display: inline-block;
    }


        #menu-tab .menu-tab-item.active {
            border-radius: 10px;
            background: #262451;
            color: #ffffff;
            pointer-events: none;
        }


/*****************************************
* Portfoloio
*****************************************/
#portfolio {
    padding: 100px 0px 0px 0px;
    background: #000000;
    background-image: linear-gradient(to bottom, rgba(38, 36, 81, 0.2), rgba(38, 36, 81, 1));
}

    #portfolio .title {
        color: #b3b9e0;
        font-size: 36px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 0px;
    }


.portfolio-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*padding: 15px;*/
}

    .portfolio-lists .portfolio-item {
        width: calc(100%/3);
        /*padding: 15px;*/
    }

        .portfolio-lists .portfolio-item img {
            box-shadow: 2px 4px 12px rgba(0,0,0, 0.4);
            /*border-radius: 5px;*/
        }


        .portfolio-lists .portfolio-item .portfolio-content {
            position: absolute;
            color: #fff;
            text-align: center;
            margin: 0;
            bottom: 40px;
            left: 0px;
            right: 0px;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: linear-gradient(to top, rgb(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
        }

            .portfolio-lists .portfolio-item .portfolio-content p {
                font-size: 20px;
                line-height: 24px;
                margin-bottom: 10px;
            }

            .portfolio-lists .portfolio-item .portfolio-content h1 {
                font-size: 22px;
                line-height: 26px;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 15px;
                padding: 0px 20px;
            }



@media(max-width:430px) {
    .portfolio-lists .portfolio-item {
        width: 100%;
        padding: 0px 0px 20px 0px;
    }
}


/*****************************************
* Benefit
*****************************************/
#benefit {
    padding: 100px 0px 100px 0px;
    background: #000000;
    background-image: linear-gradient(to bottom, rgba(38, 36, 81, 0.2), rgba(38, 36, 81, 1));
}

    #benefit .title {
        color: #b3b9e0;
        font-size: 36px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 0px;
    }


.benefit-item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    color: rgb(179, 185, 224);
    width: 80%;
    margin: 0px auto 20px auto;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(179, 185, 224, 0.5) inset, 0 0 15px 4px rgba(179, 185, 224, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 20px;
}

    .benefit-item .benefit-icon {
        width: 200px;
        text-align: center;
    }

        .benefit-item .benefit-icon i {
            font-size: 80px;
            display: block;
            margin-bottom: 15px;
            color: #b3b9e0;
        }

    .benefit-item .benefit-detail {
        width: calc(100% - 200px);
    }

        .benefit-item .benefit-detail .benefit-title {
            font-size: 26px;
            line-height: 26px;
            margin-bottom: 10px;
        }

        .benefit-item .benefit-detail .benefit-desc {
            font-size: 16px;
            line-height: 20px;
        }



/*****************************************
* Main banner
*****************************************/
.main-banner {
    position: relative;
    color: #ffffff;
}

    .main-banner .video-text-overlay {
        position: absolute;
        left: 10%;
        top: 0;
        bottom: 0px;
        z-index: 3;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }


    .main-banner .video-gradient-text {
        position: absolute;
        left: 0px;
        top: 0px;
        bottom: 0px;
        z-index: 2;
    }

        .main-banner .video-gradient-text img {
            width: 100%;
            height: 100%;
            z-index: 1;
        }


    .main-banner .overlay-content {
    }

        .main-banner .overlay-content .overlay-content-header {
            font-size: 80px;
            line-height: 80px;
            font-weight: bold;
            letter-spacing: 8px;
            text-transform: uppercase;
        }

            .main-banner .overlay-content .overlay-content-header img {
                width: 50%;
            }

        .main-banner .overlay-content .overlay-content-subheader {
            font-size: 40px;
            line-height: 46px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .main-banner .overlay-content .overlay-content-detail {
            font-size: 16px;
            line-height: 20px;
            font-weight: 400;
            margin-top: 10px;
            letter-spacing: 0px;
        }


@media(max-width:460px) {

    .main-banner .overlay-content .overlay-content-header {
        font-size: 40px;
        line-height: 40px;
    }

    .main-banner .overlay-content .overlay-content-subheader {
        font-size: 20px;
        line-height: 20px;
    }

    .main-banner .overlay-content .overlay-content-detail {
        font-size: 12px;
        line-height: 14px;
    }
}


/*****************************************
* about-us
*****************************************/
/*#about-us {
    color: #ffffff;
    padding: 100px 0px;
    background: #03070a url('/upload/home/bg-home-about.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

    #about-us .title {
        font-size: 40px;
        line-height: normal;
        font-weight: 600;
        margin-bottom: 20px;
    }

    #about-us .detail {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 60px;
    }


.about-us {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

    .about-us img {
        border-radius: 10px;
    }


    .about-us .about-us-left {
        width: 40%;
    }

    .about-us .about-us-right {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.about-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

    .about-box .about-box-image {
        width: 30%;
    }


    .about-box .about-box-text {
        width: 60%;
        padding: 0px 20px;
    }

        .about-box .about-box-text .header {
            font-size: 20px;
            line-height: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-box .about-box-text .description {
            font-size: 14px;
            line-height: 20px;
        }*/



/*****************************************
* Coach
*****************************************/
#coach {
    color: #ffffff;
    padding: 100px 0px 0px 0px;
    background: #03070a url('/upload/coach/bg-coach.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

    #coach .title {
        font-size: 40px;
        line-height: normal;
        font-weight: 600;
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
    }

    #coach .subtitle {
        font-size: 20px;
        line-height: normal;
        font-weight: 400;
        margin: 0px auto 30px auto;
        letter-spacing: 0px;
        text-align: center;
        width: 80%;
    }


.coach {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

    .coach .coach-item {
        width: calc(100% / 3 - 40px);
        position: relative;
        transition: 0.5s ease all;
        cursor: pointer;
    }

        .coach .coach-item .coach-photo {
            width: 100%;
            text-align: center;
        }

            .coach .coach-item .coach-photo img {
                width: 80%;
            }


        .coach .coach-item .coach-info {
            padding: 20px;
            text-align: center;
            background: rgba(0, 0, 0, 0.2);
            position: absolute;
            top: 55%;
            bottom: 0px;
            left: 5%;
            right: 5%;
            color: #ffffff;
        }

            .coach .coach-item .coach-info .coach-name {
                font-size: 24px;
                line-height: 30px;
                font-weight: 600;
                margin-bottom: 5px;
            }

            .coach .coach-item .coach-info .coach-position {
                font-weight: 600;
                margin-bottom: 20px;
            }

            .coach .coach-item .coach-info .coach-detail {
                font-size: 14px;
                line-height: 20px;
            }

        .coach .coach-item:hover {
            transform: scale(1.05);
        }




/*****************************************
* Course Carousel
*****************************************/
#course-carousel {
    z-index: 2;
    position: relative;
    padding: 100px 0px;
    background: #000000;
}

    #course-carousel .title {
        color: #ffffff;
        font-size: 36px;
        line-height: 44px;
        font-weight: 600;
        margin-bottom: 20px;
    }


@media(max-width:450px) {
    #course-carousel {
        padding: 20px 0px;
    }
}


/*****************************************
* course-lists
*****************************************/
.course-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 80px;
}


    .course-lists .course-item {
        position: relative;
        border: 1px solid #213340;
        width: calc(100% / 3 - 20px);
        border-radius: 10px;
        color: #ffffff;
        background: #000000;
        box-shadow: 0px 10px 30px rgba(22, 122,198,0.2);
        text-decoration: none;
        padding-bottom: 80px;
    }

        .course-lists .course-item .course-item-image {
            width: 100%;
            border-radius: 10px 10px 0px 0px;
        }

        .course-lists .course-item .course-item-info {
            padding: 20px;
        }

            .course-lists .course-item .course-item-info .course-item-name {
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 5px;
            }

            .course-lists .course-item .course-item-info .course-item-description {
                font-size: 14px;
            }

        .course-lists .course-item .button-action {
            text-align: center;
            position: absolute;
            bottom: 20px;
            width: 100%;
        }


            .course-lists .course-item .button-action .btn-detail {
                font-size: 16px;
                color: rgb(255, 255, 255);
                text-transform: uppercase;
                letter-spacing: 0px;
                cursor: pointer;
                position: relative;
                display: inline-block;
                margin-right: 10px;
                background: linear-gradient( #0056fe, #061a5f);
                padding: 12px 40px;
                border-radius: 30px;
                overflow: hidden;
                transition: 0.1s;
            }

                .course-lists .course-item .button-action .btn-detail:hover {
                    text-decoration: none;
                    transform: translateY(-2px);
                }


@media(max-width:450px) {
    .course-lists .course-item {
        width: 90%;
        margin: 0px auto;
    }
}


/*****************************************
* free-course-lists
*****************************************/
.free-course-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}


    .free-course-lists .free-course-item {
        position: relative;
        border: 1px solid #213340;
        width: calc(100% / 3 - 20px);
        border-radius: 10px;
        color: #ffffff;
        background: #000000;
    }

        .free-course-lists .free-course-item .video-container {
            overflow: hidden;
            border-radius: 0px;
            position: relative;
            width: 100%;
            max-width: 560px;
            aspect-ratio: 16 / 9;
            margin: 0 auto;
            border-radius: 10px;
        }


            .free-course-lists .free-course-item .video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }



@media(max-width:460px) {
    .free-course-lists .free-course-item {
        width: 90%;
        margin: 0px auto;
    }
}



/*****************************************
* Course
*****************************************/
#course {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 100px 0px 100px 0px;
    color: #ffffff;
    background: #e6e7e8;
}

    #course .title {
        color: #061b60;
        font-size: 55px;
        line-height: normal;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        text-align: center;
    }


.course {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .course .course-item, .course .course-item:hover {
        /*border: 1px solid #3b3b3b;*/
        width: calc(100% / 3 - 20px);
        margin: 10px;
        /*border-radius: 20px;*/
        background: #fff;
        position: relative;
        color: #ffffff;
        text-decoration: none;
    }

        .course .course-item .course-price {
            position: absolute;
            top: 5%;
            right: 5%;
            font-size: 22px;
            font-weight: 500;
            text-decoration: none;
            background: #0056ff;
            border-radius: 169px 169px 169px 169px;
            padding: 10px 20px 10px 20px;
        }

        .course .course-item img {
            /*border-radius: 20px 20px 0px 0px;*/
        }

        .course .course-item .info {
            padding: 20px;
        }

            .course .course-item .info .course-name {
                color: #061b60;
                font-size: 28px;
                line-height: 30px;
                font-weight: 600;
                height: 60px;
                margin-bottom: 10px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

            .course .course-item .info .course-description {
                color: #000000;
            }




/*****************************************
* Course Calendar
*****************************************/
#course-calendar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 100px 0px 0px 0px;
    color: #ffffff;
    background: #14141d;
}

    #course-calendar .title {
        color: #e6e7e8;
        font-size: 55px;
        line-height: normal;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        text-align: center;
    }


    #course-calendar .course-calendar {
        width: 100%;
        border: 3px solid #0056ff;
        padding: 30px 20px 20px 20px;
        border-radius: 20px;
        margin-bottom: 30px;
        position: relative;
        background: #1f1f24;
        margin-top: 40px;
    }

        #course-calendar .course-calendar .fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
            float: right;
            color: #f9d835;
        }



/*****************************************
* Calendar https://codepen.io/PepitaK/pen/mdqpRee
*****************************************/
#calendar {
    padding: 100px 0px;
    display: flex;
    flex-flow: column;
    align-items: center;
    color: #ffffff;
    background: #ffffff;
    /*background: linear-gradient(to bottom, #080c1a, #0056fe);*/
    background: linear-gradient(to bottom, #080c1a, #0056fe);
    background-size: 100% auto, cover;
}

    #calendar .title {
        font-size: 50px;
        line-height: 54px;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
    }

    #calendar .subtitle {
        font-size: 20px;
        line-height: normal;
        font-weight: 400;
        margin-bottom: 40px;
        letter-spacing: 0px;
        text-align: center;
    }

.calendar ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    flex-wrap: wrap;
    list-style: none;
}

    .calendar ul li {
        display: flex;
        width: 95%;
        height: 10rem;
        margin: 0.25rem;
        flex-flow: column;
        border-radius: 0.2rem;
        padding: 1rem;
        font-size: 14px;
        font-weight: 400;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.18);
        cursor: pointer;
        transition: 0.2s ease all;
    }

        .calendar ul li:hover {
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .calendar ul li time {
            font-size: 2rem;
            margin: 0 0 1rem 0;
            font-weight: 500;
        }

    .calendar ul .today {
        color: #000000;
        background: #e6e7e9;
    }

        .calendar ul .today time {
            font-weight: 800;
        }


/*****************************************
* Calendar Wrapper
*****************************************/
.calendar-wrapper {
    background: #ffffff;
}

/****************************************************
* Calendar
****************************************************/
#calendar {
    width: 100%;
    margin: 0 auto;
}


    #calendar .fc-today {
        background-color: inherit !important;
    }

.fc-day-header {
    background: #e6e7e8;
    padding: 5px !important;
    color: #000000;
    font-size: 20px;
}

.fc-day-grid-event .fc-content {
    white-space: nowrap;
    overflow: hidden;
    padding: 10px;
    font-weight: 500;
}

a[data-goto] {
    cursor: pointer;
    color: #e74e25;
}




#editRoundModal .modal-content {
    background-color: #14141d;
}

    #editRoundModal .modal-content .modal-title {
        color: #167ac6;
        font-weight: 600;
    }

    #editRoundModal .modal-content .btn-primary {
        font-size: 16px;
        color: rgb(255, 255, 255);
        text-transform: uppercase;
        letter-spacing: 0px;
        position: relative;
        display: inline-block;
        margin-right: 10px;
        background: linear-gradient(#0056fe, #061a5f);
        padding: 10px 40px;
        border-radius: 30px;
        overflow: hidden;
        transition: 0.1s;
        border: none;
        outline: none;
    }

    #editRoundModal .modal-content .btn-secondary {
        font-size: 16px;
        color: rgb(0 0 0);
        text-transform: uppercase;
        letter-spacing: 0px;
        position: relative;
        display: inline-block;
        margin-right: 10px;
        background: linear-gradient(#ffffff, #b9b9b9);
        padding: 10px 40px;
        border-radius: 30px;
        overflow: hidden;
        transition: 0.1s;
        border: none;
        outline: none;
    }


/*****************************************
* neon Text 
*****************************************/
.neonText {
    color: #fff;
    /*text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #55b1e9, 0 0 82px #55b1e9, 0 0 92px #55b1e9, 0 0 102px #55b1e9, 0 0 151px #55b1e9;*/
    /* text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 30px #55b1e9, 0 0 40px #55b1e9, 0 0 50px #55b1e9, 0 0 60px #55b1e9, 0 0 70px #55b1e9;*/
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 30px #0056ff, 0 0 40px #0056ff, 0 0 50px #0056ff, 0 0 60px #0056ff, 0 0 70px #0056ff;
}


/*****************************************
* Banner Ads
*****************************************/
.banner-ads {
}
