@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.TTF');
    src: local("?"), url('../fonts/Poppins-Regular.woff') format("woff"), url('../fonts/Poppins-Regular.TTF') format("truetype");
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.TTF');
    src: local("?"), url('../fonts/Poppins-SemiBold.woff') format("woff"), url('../fonts/Poppins-SemiBold.TTF') format("truetype");
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.TTF');
    src: local("?"), url('../fonts/Roboto-Regular.woff') format("woff"), url('../fonts/Roboto-Regular.TTF') format("truetype");
}
/*@font-face 
{
  font-family: 'Sarala';
  src: url('../fonts/Sarala.TTF');
  src: local("?"), url('../fonts/Sarala.woff') format("woff"), url('../fonts/Sarala.TTF') format("truetype"); 
}*/
html, body {
    font-family: Roboto-Regular, Poppins-Regular, Arial, Tahoma, sans-serif;
    color: #344e6c;
    font-size: 14px;
    line-height: 22px;
}

a {
    color: #fb7800;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

    a:hover {
        color: #c55e00;
        text-decoration: none;
    }

.clearfix {
    width: 100%;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #f69548;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 999;
}

    .back-to-top i {
        padding-top: 12px;
        color: #fff;
    }


.header {
    margin: 0;
    padding: 0;
}

.top_nav {
    background: #f69548;
    font-size: 15px;
    width: 100%;
    float: left;
}

.top_nav_buttons {
    display: flex;
    float: right;
    margin: 10px 0 0;
}

    .top_nav_buttons a {
        margin: 0 5px;
    }

.logo {
    padding: 5px 0;
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
}

    .logo img {
        width: 180px;
    }

    .logo a {
        color: #333;
        text-decoration: none;
    }

        .logo a:hover {
            color: #333;
            text-decoration: none;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav, .main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .main-nav > ul > li {
        position: relative;
        white-space: nowrap;
        float: left;
        margin: 0;
    }

    .main-nav a {
        display: block;
        color: #fff;
        position: relative;
        margin: 0;
        padding: 10px;
        margin: 0 1px;
        text-decoration: none;
        transition: 0.3s;
        font-weight: normal;
        line-height: 20px;
    }

        .main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
            color: #fff !important;
            background: #f69548;
            text-decoration: none;
        }

    .main-nav li a:focus {
        color: #fff;
        text-decoration: none;
    }

    .main-nav .drop-down ul {
        display: block;
        position: absolute;
        left: 0;
        top: calc(100% + 30px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: ease all 0.3s;
    }

    .main-nav .drop-down:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .main-nav .drop-down li {
        min-width: 180px;
        position: relative;
    }

    .main-nav .drop-down ul a {
        padding: 7px 20px;
        font-size: 13px;
        color: #333;
        border-right: none;
    }

        .main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
            color: #fff;
            background: #f69548;
        }

    .main-nav .drop-down > a:after {
        content: "\f107";
        font-family: FontAwesome;
        padding-left: 5px;
    }

    .main-nav .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }

    .main-nav .drop-down .drop-down:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }

    .main-nav .drop-down .drop-down > a {
        padding-right: 35px;
    }

        .main-nav .drop-down .drop-down > a:after {
            content: "\f105";
            position: absolute;
            right: 15px;
        }

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #f69548;
    transition: 0.4s;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #fff;
        padding: 5px 10px;
        font-weight: 500;
        font-size: 13px;
    }

        .mobile-nav a:hover,
        .mobile-nav .active > a,
        .mobile-nav li:hover > a {
            color: #fff;
            background: #d96001;
            text-decoration: none;
        }

    .mobile-nav .drop-down > a:after {
        content: "\f078";
        font-family: FontAwesome;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\f077";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-toggle {
    position: absolute;
    right: 0;
    top: 70px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        margin: 10px 10px 0 0;
        color: #f69548;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        left: 0;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #f69548;
    }

.nav-justified > .nav-link, .nav-justified .nav-item {
    margin: 0 2px;
}

.nav_bar {
    background: #fff;
}

.fixed-top {
    top: -40px;
    transform: translateY(40px);
    transition: transform .3s;
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 0 10px #ccc;
}

.master-wrapper-content {
    margin: 0;
    min-height: 509px;
}

.TopNav {
    background: #fff;
    padding: 0;
    width: 100%;
    display: block;
}

.TollFree {
    font-weight: bold;
    margin: 5px 20px 0;
}

.sidebar-collapse .slimScrollDiv {
    overflow: visible !important;
}

.sidebar-collapse .sidebar {
    overflow: visible !important;
}

/*-------------------- Start Home Page CSS ------------------------*/
.home_bg {
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: auto;
    background: #008bcd url(../images/home-bg.png) right top;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.banner_text {
    margin: 20px 0 15px;
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 50px;
    color: #fff;
}

.banner_sub_text {
    font-size: 18px;
    line-height: 25px;
    color: #fff;
}

.carousel-caption {
    top: 30%;
}

.btn-primary {
    background: #f69548;
    color: #fff;
    border: 1px solid #f69548;
}

    .btn-primary:hover {
        background: #d96001;
        color: #fff;
        border: 1px solid #d96001;
    }

    .btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0.25rem rgba(235 146 55 / 50%);
    }

    .btn-primary:focus {
        background: #d96001;
        color: #fff;
        border: 1px solid #d96001;
        box-shadow: 0 0 0 0.25rem rgba(235 146 55 / 50%);
    }

.btn:disabled {
    color: #fff;
    background-color: #d3803f;
    border-color: #d3803f;
}

.btn-secondary {
    color: #fff;
    background-color: #aaa;
    border-color: #aaa;
}

.btn-outline-primary {
    border: 1px solid #f69548;
    color: #f69548;
}

    .btn-outline-primary:hover {
        background: #f69548;
        color: #fff;
        border: 1px solid #f69548;
    }

.Head {
    font-size: 25px;
    color: #000;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.howstarted-section {
    background: #f7f7f7;
    padding: 30px 0;
}

.classes-section {
    margin: 30px 0;
}

.class_box {
    background: #f7f7f7;
    border-radius: 10px;
    min-height: 200px;
    overflow: hidden;
    margin: 0 0 15px;
}

.class_head {
    background: #f69548;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0;
    font-size: 25px;
}

.inner_banner {
    background: url(../images/inner_banner.jpg) no-repeat;
    padding: 100px 0;
    font-size: 35px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 20px;
}

.Question { /*font-size:20px;*/
    font-weight: bold;
}

.Ans {
    margin: 0 0 20px;
}

.contact_head {
    color: #ff8515;
    font-size: 18px;
    font-weight: bold;
}

.login-bg {
    background: url(../images/login-bg.jpg) no-repeat;
    background-size: cover;
}

.login-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin: 50px auto;
    width: 350px;
    overflow: hidden;
}

.login-head {
    background: #ff8515;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}

.login-content {
    padding: 20px;
}

.login-textbox {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    color: #999;
    margin: 0 0 15px 0;
    width: 100%;
    outline: none;
}

.login-content a {
    color: #ff8515;
}

.girl-img {
    position: absolute;
    height: auto;
    width: 400px;
    right: 90px;
    bottom: 0;
}

    .girl-img img {
        width: 100%;
    }

.or_section {
    width: 100%;
    margin: 30px 0;
}

.or_bdr {
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.or_text {
    width: 28px;
    height: 28px;
    background: #555;
    color: #fff;
    text-align: center;
    line-height: 23px;
    border: 3px solid #fff;
    margin: -15px auto 0;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
}

.login_ft {
    border-top: 1px solid #ccc;
    padding: 5px;
    position: absolute;
    width: 328px;
    bottom: 0;
}

.Mandatory {
    color: #dc3545;
}

.error_msg {
    color: #dc3545;
    position: absolute;
    font-size: 12px;
    margin: -3px 0 0;
}

.form-label {
    margin: 0;
}

.DatePick {
    background: #fff url(../images/CalIcon.png) right center no-repeat;
    background-position: right;
    background-repeat: no-repeat;
}

.DatePick_F {
    background: #fff url(../images/CalIcon.png) right center no-repeat;
    background-position: right;
    background-repeat: no-repeat;
}

.Verify {
    position: absolute;
    right: 20px;
    top: 5px;
    z-index: 9
}

.title-bar {
    width: 100%;
    padding: 5px 15px;
    margin: 0 0 10px;
    display: block;
    background: #e9e9e9;
    color: #333;
    font-size: 18px;
}

.head-title {
    font-size: 23px;
    margin: 0;
    color: #fb7800;
}

    .head-title .fa {
        font-size: 23px;
    }

.arrow {
    width: auto;
    margin: 0 0 0 -27px;
    float: left;
    vertical-align: middle;
    position: fixed;
    top: 370px;
}

.accordion-button {
    padding: 8px;
    font-size: 18px;
    color: #fb7800;
    background-color: transparent;
    font-weight: bold;
}

    .accordion-button:not(.collapsed) {
        color: #fb7800;
        background-color: #e9e9e9;
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }

.accordion-item {
    margin: 0 0 10px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc !important;
}

.class_section {
    border-bottom: 1px solid #ccc;
    margin: 0 0 10px;
    padding: 0 0 10px;
}

.class_inactive {
    pointer-events: none;
    opacity: .5;
}

.video_thumb {
    width: 100%;
    height: auto;
    margin: 0 0 10px;
}

    .video_thumb img {
        width: 100%;
    }

.tutorials_title {
    font-weight: bold;
    color: #000;
    margin: 0 0 5px;
}

.tutorials_subject {
    color: #666;
    margin: 0 0 5px;
}

.tutorials_time {
    color: #fb7800;
    margin: 0 0 5px;
}

.start_btn {
    background: #f69548;
    color: #fff;
    border: none;
    outline: none;
    padding: 7px;
    width: 130px;
    transition: all 0.4s;
    margin: 0 0 20px;
}

    .start_btn:hover {
        background: #db7b2f;
    }

.mark_btn {
    background: #c0bfbf;
    color: #fff;
    border: none;
    outline: none;
    padding: 7px;
    width: 130px;
    transition: all 0.4s;
    margin: 0 0 20px;
}

    .mark_btn:hover {
        background: #a4a4a4;
    }

.mark_done_btn {
    background: #86c157;
    color: #fff;
    border: none;
    outline: none;
    padding: 7px;
    width: 130px;
    transition: all 0.4s;
    margin: 0 0 20px;
}

    .mark_done_btn:hover {
        background: #649d36;
    }

.QuestionAns_Section {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #ccc;
}

.howitwork_section {
    width: 275px;
    margin: 20px 0;
    float: left;
}
/*.howitwork_icon{width:100px; height:100px; background:#f69548; border-radius:50%; padding:10px; text-align:center; margin:0 auto 20px;}*/
.howitwork_icon {
    width: 100px;
    height: 100px;
    background: #f69548;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    margin: 0 auto 20px;
    line-height: 105px;
}

    .howitwork_icon .fa {
        font-size: 55px;
        color: #fff;
    }

.howitwork_text {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #000;
}

.journy-line {
    margin-bottom: 15px;
    position: relative;
}

    .journy-line:before {
        border: 1px solid #f69548;
        content: "";
        left: 10%;
        position: absolute;
        top: 70px;
        width: 80%;
        z-index: -9;
    }

.student-profile .profile_img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 10px auto;
    border: 10px solid #ccc;
    border-radius: 50%;
}

.student-profile .card h3 {
    font-size: 16px;
    font-weight: 700;
}

.ChangePassword_Tips {
    margin: 30px 0 0 0;
    line-height: 30px;
}

.student_edit_section {
    width: 500px;
    margin: 15px auto;
    border: 1px solid #ccc;
    padding: 15px;
}

.terms_conditions {
    width: 100%;
}

    .terms_conditions ol {
        margin: 0 0 0 15px;
        padding: 0;
    }

        .terms_conditions ol li {
            margin: 0;
            padding: 0 0 10px;
        }

.student-photo {
    width: 100%;
}

    .student-photo img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin: auto;
        border: 2px solid #ccc;
    }

.Answer_link {
    width: 100%;
    margin: 10px 0;
}

    .Answer_link ul {
        margin: 0;
        padding: 0;
    }

        .Answer_link ul li {
            margin: 0 0 8px;
            padding: 0;
            list-style-type: none;
            display: block;
        }

.page-link {
    color: #333;
}

.table > :not(caption) > * > * {
    padding: 3px 8px;
}

.table thead {
    background: #e9e9e9;
}


.resend_link_disabled {
    pointer-events: none;
    color: #aaa;
}

.gray_text {
    color: #999;
    font-size: 13px;
    font-style: italic;
}

    .gray_text .fa {
        font-size: 13px;
    }

.index-title{background: #f69548; color:#fff; padding:8px 15px; border-radius:10px; width:470px; margin:auto; font-weight:bold; font-size:25px; line-height:30px;}
.Desktop_Banner{display:block;}
.Mobile_Banner{display:none;}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #303e45;
    color: #999;
}

.copyright {
    font-size: 12px;
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    margin: 10px 0 0;
}

@media (max-width:950px) {
    .mobile-nav-toggle {
        position: fixed;
        top: 3px;
    }

    .girl-img {
        display: none;
    }

    .mobile-nav-toggle {
        position: fixed;
        top: 5px;
    }

    .inner_banner {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        position: fixed;
        top: 3px;
    }

    .Mobile {
        display: none;
    }

    .girl-img {
        display: none;
    }

    .TollFree {
        margin: 0 20px 0 0;
    }

    .top_nav_buttons {
        display: inherit;
        float: left;
        text-align: center;
        margin: 0 0 5px;
        width: 100%;
    }

    .class_box {
        min-height: auto;
    }

    .journy-line:before {
        display: none;
    }

    .howitwork_section {
        width: 100%;
    }

    .contact_map {
        display: none;
    }
}


@media (max-width:480px) {
    .top_nav_buttons {
        display: inherit;
        float: right;
        text-align: center;
        margin: 0 0 5px;
    }

    .journy-line:before {
        display: none;
    }

    .howitwork_section {
        width: 100%;
    }

    .TollFree {
        margin: 0;
        width: 100%;
        float: left;
    }

    .inner_banner {
        padding: 50px 0;
    }
    .index-title{background: #f69548; color:#fff; padding:8px 15px; border-radius:10px; width:100%; margin:auto; font-weight:bold; font-size:25px; line-height:30px;}
    .Desktop_Banner{display:none;}
.Mobile_Banner{display:block;}
}

@media (max-width:280px) {
    .login-box {
        width: 250px;
    }
}

.breadcrumb {
    font-size: 13px;
    margin: 0;
}

.user_icon {
    width: 45px;
    height:45px;
}

    .user_icon img {
        width:45px;
        height: 45px;
        border-radius: 50%; border:1px solid #ccc;
    }
