@import url(../css/default.css);

/*header top area styles*/
.header-top {
    padding-top: 10px;
    padding-bottom: 0;
}

.ht-social {
    float: right;
}

.ht-email span {
    font-size: 14px;
    font-weight: 400;
}

.ht-social a {
    background: #fff;
    color: #3f3f3f;
    font-size: 21px;
    margin-left: 10px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
}

/*header area styles*/

.logo {
    width: 100px;
    transition: 0.5s;
}

.navbar {
    padding: 0;
}

header {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    border-bottom: 1px solid var(--border);
    background: #fff;
    transition: 0.5s;
    box-shadow: 0 8px 10px -4px #c4c4c44d;
}

.menu-area > ul {
    margin: 0;
    padding: 0;
}

.menu-area > ul > li {
    list-style: none;
    display: inline-block;
}

.menu-area ul li a {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
}

.dropdown-menu1 ul li a .fa {
    margin-right: 5px;
}

.menu-area > ul > li > a {
    text-decoration: none;
    color: #3f3f3f;
    padding: 3px 15px;
    display: block;
    transition: 0.3s;
    border-radius: 6px;
}

.menu-area > ul > li > a:hover {
    color: #fff !important;
    background: #ff284f;
}

.menu-area ul li a:hover {
    color: var(--td);
}

.logo-image {
    margin-top: 15px;
}

.menu-active {
    color: brown !important;
}

.dropdown-menu1 {
    position: absolute;
    background: #fff;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.4s;
    border-top: var(--border);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.dm-software {
    width: 630px;
}

.dropdown-menu1 ul {
    margin: 0;
    padding: 0;
}

.dropdown-menu1 ul li {
    list-style: none;
}

.dropdown-menu1 ul li a {
    text-decoration: none;
    color: #000000;
    padding: 7px 10px;
    display: block;
    padding: 10px;
    transition: 0.4s;
    text-transform: capitalize;
    background: #efefef;
    border-bottom: 3px solid #ffffff;
}

.dropdown-menu1 ul li a:hover {
    background: var(--bd);
    color: #fff;
}

.dd-btn1:hover .dropdown-menu1 {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.dropdown-menu2 {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.4s;
}

.dd-btn2 {
    position: relative;
}

.dd-btn2:hover .dropdown-menu2 {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.dd-btn1-left {
    position: relative;
}

.dropdown-menu1-left {
    position: absolute;
    right: 0;
}

.dd-btn1-left .fa-bars {
    font-size: 20px;
}

.nav-ss {
    font-size: 17px;
}

.nav-login-btn {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 4px 9px;
    border-radius: 5px;
    transition: 0.4s;
    border: 1px solid var(--dark-bg);
}
.nav-login-btn:hover {
    background: #fff;
    color: var(--dark-bg);
}

/* menu bars icon styles */
.menu-icon {
    position: relative;
    width: 50px;
    height: 44px;
    box-sizing: border-box;
    padding: 4px 8px;
    cursor: pointer;
    float: right;
    display: none;
}

.menu-icon span {
    width: 100%;
    height: 4px;
    background: var(--bd);
    margin: 5px 0;
    display: block;
    transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.3s;
}

.menu-icon.active span {
    position: absolute;
    width: calc(100% - 16px);
    top: calc(50% - 8px);
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.icon-div ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    margin-top: 7px;
    margin-right: 6px;
    display: none;
}

/*on scrolled css*/

header.scrolled .menu-area > ul > li > a {
    padding: 20px 15px !important;
}

header.scrolled {
    transition: 0.5s;
}

header.scrolled .logo {
    width: 70px !important;
}

/*navbar web and mobile search styles */
.web-search {
    color: #3f3f3f;
    font-size: 15px;
    cursor: pointer;
}

.search-mega-content {
    position: absolute;
    width: 44%;
    padding: 10px 7px;
    display: block;
    opacity: 0;
    border: 1px solid #ddd;
    display: none;
    border-radius: 2px;
    z-index: 9999;
    background: #fff;
    transition: all cubic-bezier(0.26, 0.1, 0.27, 1.5) 0.3s;
    right: 16%;
    box-shadow: 0px 0px 15px rgba(128, 128, 128, 0.3);
}

.search-box {
    opacity: 1;
    display: block;
    top: 100%;
}

.search-item {
    width: 30%;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

/*mobile menu styles*/
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fdfdfd;
    transition: 0.3s;
    z-index: 9999;
    border-right: 1px solid #ddd;
    overflow: auto;
}

.mobile-menu-active {
    left: 0;
}

.mm-logo {
    border-bottom: 1px solid #ddd;
}

.mm-logo .logo {
    width: 130px;
    padding: 10px 15px;
}

.menu-link a {
    display: block;
    padding: 6px 15px;
    color: #000000;
    border-bottom: 1px solid #ededed;
    transition: 0.3s;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.menu-link a:hover {
    color: var(--td);
}

.menu-link a .fa-plus {
    float: right;
    margin-top: 5px;
}

.menu-link a .fa-minus {
    float: right;
    margin-top: 5px;
}

.menu-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-body ul li {
    border-bottom: 1px solid #ddd;
}

.menu-body .card-body {
    padding: 0;
    background: #fafafa;
}

.menu-body ul li a {
    padding: 10px 10px;
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.menu-body ul li a:hover {
    color: var(--td);
}

.mm-logo {
    position: relative;
}

.menu-body {
    padding-left: 20px;
}

/* login option modal */
.nav-login-options {
    padding-top: 20px;
}

.nav-login-options a {
    display: block;
    text-align: center;
    background: var(--bd);
    margin-bottom: 20px;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-weight: 600;
    text-decoration: none;
}

/*slider section styles*/

.slider-section .slider-book-btn {
    display: inline-block;
    color: #fff;
    background: var(--bd);
    padding: 5px 18px;
    border-radius: 5px;
}

.slider-section .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
}

.slider-section .slider-title {
    font-weight: 300;
    font-size: 45px;
}

.slider-section .slider-subtitle {
    font-weight: 600;
    font-size: 40px;
}

.slider-section .slider-desc {
    width: 51%;
}

.ht-border {
    border-bottom: 1px solid #ededed;
    padding-bottom: 7px;
}

/* modified css */

.list-inline-item:not(:last-child) {
    margin-right: 0;
}
.ht_right_widget ul li.list-inline-item:nth-child(2) {
    margin: 0 !important;
    padding: 0;
    text-align: center;
    margin-left: 5px !important;
}
.ht_left_widget,
.ht_right_widget {
    margin-top: 0px;
}

.ht_right_widget ul li a img {
    width: 23px;
}
.ht_right_widget ul li {
    margin: 0;
    margin-left: 5px;
}

.banner-style-one .banner-title,
.banner-style-two .banner-title,
.banner-style-one.home9 .sub-title {
    font-size: 30px;
    font-weight: 600;
}

.img_hvr_box h2 {
    font-size: 25px;
    font-weight: 500;
}

p.feature_list {
    font-size: 17px;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

p.feature_list_details {
    font-family: "Hind Siliguri", sans-serif;
    font-size: 15px;
    line-height: 1.5rem;
    color: #3f3f3f !important;
}
h4.featured_course_heading_details {
    font-size: 16px;
    line-height: 1.75rem;
    color: #3f3f3f;
    font-size: 15px;
}

.features_subheader {
    color: #3f3f3f;
    font-size: 15px;
}
h1.mt0.features {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
}

.img_hvr_box.home7 {
    width: inherit;
}

h3.CoursesTitle {
    font-family: "Hind Siliguri", sans-serif;
    text-align: left;
    padding-top: 0px;
}

.top_courses .details .tc_content {
    padding: 0px;
}

h3.CoursesTitle {
    text-align: left;
    font-size: 17px;
    margin: 0;
    padding: 11px;
    font-weight: 600;
}

.top_courses {
    border: 1px solid #ededed !important;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.top_courses .details {
    border: none;
}

.owl-carousel .owl-stage-outer {
    min-height: 250px;
}
.popular_course_slider .item {
    margin: 0 5px;
}

.tc-det a {
    color: var(--tdg);
}
.tc-price {
    font-weight: 600;
    color: #000000;
    font-size: 20px;
}

.top_courses .details .tc_footer {
    padding: 7px 11px;
}

.icon.btn-details.btn-thm-see-details.expolore_more {
    width: 20%;
}

.icon.btn-details.btn-thm-see-details.expolore_more {
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
}

.divider_home1,
.divider_home2 {
    padding: 50px 0;
}
.funfact_one .icon {
    font-size: 60px;
}

h4.skill_development_courses_details {
    font-size: 15px;
    color: #3f3f3f;
}

h1.featured_course_heading {
    font-size: 26px;
}

h1.achievement_section {
    font-size: 26px;
}

h4.achievement_section_details {
    font-size: 15px;
    color: #3f3f3f;
}

h1.skill_development_course_section {
    font-size: 26px;
}

h3.feedback {
    font-size: 26px;
}

.footer_one .logo-widget img {
    width: 150px;
}
.footer_details {
    font-size: 15px !important;
    color: #3f3f3f !important;
}
.footer_details a {
    color: var(--tdg);
    font-size: 14px;
}

/* footer section styles */
.footer-section {
    background: #f3f4f6;
    padding: 40px 0;
    padding-bottom: 20px;
}

.footer-title h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 17px;
    font-size: 18px;
}

.footer-contact img {
    width: 22px;
    margin-right: 17px;
}

.footer-contact a {
    color: #3f3f3f;
    font-size: 15px;
}

.footer-contact strong {
    font-size: 15px;
}

.footer-contact .media {
    margin-bottom: 7px;
    font-size: 17px;
}
.footer-links img {
    width: 18px;
    margin-right: 17px;
}

.footer-links a {
    color: #333;
    font-size: 15px;
}

.footer-links .media {
    margin-bottom: 7px;
}
.footer-links .fa {
    color: #333;
}

.footer-section a {
    transition: 0.3s;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--tdg);
}

.footer-newsletter p {
    font-size: 15px;
}

.footer-newsletter span {
    font-size: 12px;
    display: block;
    margin-top: 12px;
    color: #fff;
}

.ftr-nsbtn {
    background: #ce5a2ced;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0 7px 7px 0 !important;
}

.footer-logo img {
    width: 150px;
}
.footer-logo p {
    margin-top: 10px;
    font-weight: 600;
}

/* copyright section styles */
.copyright-section {
    font-size: 14px;
    padding-bottom: 10px;
    color: #3f3f3f;
    background: #f3f4f6;
}
.copy-right-box {
    padding-top: 10px;
}

.copyright-section a {
    text-decoration: none;
    color: var(--tdg);
}

section {
    padding: inherit;
}

/* notice section styles */
.notice-box {
    box-shadow: var(--shadow);
    border: var(--border);
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 15px;
}
.notice-date {
    text-align: center;
}
.notice-date h6 {
    font-size: 23px;
    text-transform: uppercase;
    font-weight: bold;
    color: #4083c5;
}
.notice-date p {
    margin: 0;
    font-size: 20px;
}
.notice-desc p {
    margin: 0;
}
.notice-desc h5 {
    color: #2b327b;
    font-weight: 700;
    font-size: 20px;
}
.notice-download {
    text-align: center;
}
.not-img img {
    margin-bottom: 10px;
    width: 40px;
}
.not-download a {
    font-weight: 600;
}
.not-download a:first-child {
    color: #00aee4;
    text-decoration: underline;
}

.online_exam_card {
    background: #ffffff;
    box-shadow: var(--shadow);
    border-radius: 8px;
    border: var(--border);
}
.home_icon_box.home6,
.home_icon_box.home8 {
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.footer-app img {
    width: 140px;
    margin-right: 10px;
}

/* course details styles */
.cd-instructor {
    border: 1px solid #ededed;
    /* box-shadow: var(--shadow); */
    border-radius: 8px;
    padding: 20px;
}
.learn-courses {
    border: 1px solid #ededed;
    /* box-shadow: var(--shadow); */
    border-radius: 8px;
    padding: 20px;
}
.learn-about {
    border: 1px solid #ededed;
    /* box-shadow: var(--shadow); */
    border-radius: 8px;
    padding: 20px;
}
.cd-instructor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}
.cd-instructor h3 {
    font-size: 17px;
    margin-bottom: 3px;
    color: #3f3f3f;
}
.cd-instructor p {
    margin-bottom: 3px;
    color: #3f3f3f;
}
.cd-instructor span {
    font-size: 14px;
    color: #3f3f3f;
}

.cd-title {
    margin-bottom: 15px;
}
/* accourdion styles */

.service-accordion h5 > a {
    display: block;
    position: relative;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 15px;
    border-radius: 10px;
}

.service-accordion h5 > a:after {
    content: "\f107";
    display: inline-block;
    font-family: "FontAwesome";
    position: absolute;
    transition: all 0.3s;
    font-weight: 600;
    right: 20px;
}

.service-accordion h5 > a[aria-expanded="true"]:after {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(180deg);
}
.service-accordion h5 > a[aria-expanded="true"] {
    background: #fafafa;
    color: #3f3f3f;
    font-weight: 500;
}

.service-accordion .card {
    border: none;
    margin-top: 13px;
}
.service-accordion .card-header {
    padding: 0;
}

.sk-title h4 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

.cd-price{
    margin-top: 5px;
    margin-bottom: 15px;
}
.cd-price h6{
    font-size: 22px;
    text-align: center;
    margin-bottom: 0;
}

.cd-enrollbtn a {
    text-align: center;
    display: block;
    background: var(--tdg);
    border-radius: 8px;
    padding: 9px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.enroll-users{}
.enroll-users .media .fa-users{
    color: #555;
    font-size: 21px;
}
.enroll-users .media .fa-clock{
    color: #555;
    font-size: 21px;
}
.enroll-users p {
    color: #a3a3a3;
    margin: 0;
}
.enroll-users span{}

.cd-video-count .fa-star{
    color: var(--tdg);
}
.cd-video-count{
    margin-bottom: 10px;
}
.cd-thumnail{
    border: 1px solid #ededed;
    border-radius: 8px;
    overflow: hidden;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 5;
}

#accordion a {
    border-radius: 4px;
}

.syllabus-video .fa-youtube
{
    font-size: 20px;
    color: #555;
}

li.list-inline-item.signupButton {
    margin-top: 0;
    float: inherit;
}

label{
    margin-bottom: 0;
}
.take-question {
    background: #ecf3ff;
}
.take-question .nav-item {
    transform: skew(-15deg);
}
.take-question .nav-link {
    display: block;
    padding: 0px 20px;
    background: #ededed;
    margin: 3px;
    border-radius: 0 !IMPORTANT;
    padding-top: 2px;
    transition: .3s;
}

.take-question .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--bdg);
}
.take-question .nav-link:hover{
    color: #fff;
    background-color: var(--bdg);
}

/*Question selection*/
.radio-toolbar-size{
    margin: 15px 0;
}
.radio-toolbar-size input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.radio-toolbar-size label {
    background-color: #fff;
    width: 100%;
    font-size: 15px;
    border: 2px solid #dce9ff;
    font-weight: 600;
    border-radius: 5px;
    color: #3f3f3f;
    cursor: pointer;
    margin: 0 !important;
    display: block;
    padding: 10px 15px;
}

.radio-toolbar-size label:hover {
    background-color: var(--bdg);
    color: #fff;
    border-color: var(--bdg);
}

.radio-toolbar-size input[type="radio"]:focus + label {
    border: 2px solid #444;
}

.radio-toolbar-size input[type="radio"]:checked + label {
    background-color: var(--bdg);
    border-color: var(--bdg);
    color: #fff;
}

.btn-batchcolor{
    background: #9D4D4B;
    color: #fff;
}

.next-btn-forbatch a {
    display: inline-block;
    background: #9D4D4B;
    color: #fff;
    padding: 14px 49px;
    font-size: 23px;
    font-weight: 600;
    border-radius: 7px;
}

.summery_question {
    padding: 0;
}


.dbxshad {
    color: #fff !important;
}
.dbxshad:hover{
    background: #000000 !important;
}

.about_ins_info .thumb img {
    width: 80px;
    height: 80px;
    padding: 2px;
    border: 1px solid #ededed;
}
.lesson-info p{
    font-weight: 600;
}
.todays_exam_img {
    height: inherit;
    width: 65px;
    border-radius: 8px;
}

.course-summery {
    padding: 19px 20px;
    border-radius: 8px 8px  0 0;
}
.course-summery h5{
    font-size: 14px;
    color: #fff;
}
.course-summery span{
    color: #c1c1c1;
    font-size: 13px;
}
.mark-unmark-btn{
    margin-top: -9px;
}

.custom-btn-primary {
    font-family: sans-serif;
    font-size: 13px;
    color: #ededed;
    letter-spacing: inherit;
    line-height: 12px;
    border: 1px solid #4c4c4c;
    border-radius: 16px;
    background: #363636;
    transition: all 0.3s ease 0s;
}
.course-summery1 {
    padding: 17px 10px;
    color: #FFF;
    border-radius: 8px 8px 0 0;
}

.cl-play{
    padding: 15px 15px;
}
.cl-play li {
    border: 1px solid #ededed;
    margin: 10px 0px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cl-play li a {
    padding: 10px;
    display: block;
    color: #3f3f3f;
}

.audio-plays{
    color: #fff;
    background: linear-gradient(to right,#2C1A31,#862C4E);
}
