/********** illumeo CSS **********/
:root {
    --primary: #FD8731;
    --secondary: #;
    --tertiary: #555555;
    --light: #fcfcfc;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
#page-wrapper{
height: auto !important;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4{
    font-family: "Roboto", sans-serif;
}


body{
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.theme-btn {
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 30px;
    background-color: #0078b5;
    font-size: 14px;
    color: #fff;
}
.theme-btn:hover {
    background-color: #014161;
    color: #fff;
}

.theme-btn-sec {
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 14px;
    color: #0078b5;
}
.theme-btn-sec:hover {
    background-color: #014161;
    color: #fff;
}

.btn-orange {
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 30px;
    background-color: #FF6B00;
    font-size: 14px;
    color: #fff;
}
.btn-orange:hover {
    background-color: #014161;
    color: #fff;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Top bar ***/
.top-right-link a{
    color: var(--tertiary);
}

/*** Navbar ***/
.header {
    background-color: #fff;
    border-bottom: 1px solid #DDE0E5;
}
.fixed-top {
    transition: .5s;
}
.head-shadow{
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}
a.top-free-trial{
    background-color: #0089CE;
    padding: 11px 12px;
    width: 157px;
    color: #fff;
}
a.top-free-trial:hover {
    background-color: #014161;
    color: #fff;
}
.main-menu-bar{
    display: flex;
    justify-content: space-between;
}
.main-menu-bar .navbar{
    width: 100%;
}
.navbar-brand img{
    width: 140px;
}
.navbar.fixed-top{
	padding: 0.5rem 3rem;
	height: 70px;
	background-color: #fff;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 769px) {
    
  
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navbar li {
      position: relative;
    }
  
    .navbar>ul>li {
      white-space: nowrap;
    }
  
    
  
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 8px;
    }
  
    .navbar>ul>li>a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--secondary);
      visibility: hidden;
      transition: all 0.3s ease-in-out 0s;
      transform: scaleX(0);
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
      visibility: visible;
      transform: scaleX(0.7);
    }
  
  
    .navbar .dropdown a:hover:before,
    .navbar .dropdown:hover>a:before,
    .navbar .dropdown .active:before {
      visibility: hidden;
    }
  
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 0;
      top: 100%;
      margin: 0;
      padding: 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      transition: 0.3s;
      box-shadow: 0 7px 12px #3333332e;
    }
  
    .navbar .dropdown ul li {
      min-width: 200px;
    }
  
    .navbar .dropdown ul a {
      padding: 14px 20px;
      /* font-size: 13px; */
      text-transform: none;
      font-weight: 400;
      color: rgba(var(--color-white-rgb), 0.5);
      border-bottom: 1px solid #e2e2e2;
    }
  
    .navbar .dropdown ul a i {
      font-size: 12px;
    }
  
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: #fff;
        background: #0089ce;
    }
  
    .navbar .dropdown:hover>ul {
      opacity: 1;
      visibility: visible;
    }
  
    .navbar .megamenu {
      position: static;
    }
  
    .navbar .megamenu ul {
      right: 0;
      padding: 10px;
      display: flex;
    }
  
    .navbar .megamenu ul li {
      flex: 1;
    }
  
    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover>a {
      color: rgba(var(--color-white-rgb), 0.5);
      background: none;
    }
  
    .navbar .megamenu ul li a:hover,
    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover {
      color: var(--color-white);
      background: var(--color-primary);
    }
  
    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }
  }
  
  @media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
  @media (max-width: 768px) {
    .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: calc(100% - 70px);
      bottom: 0;
      transition: 0.3s;
      z-index: 9997;
    }
  
    .navbar ul {
      position: absolute;
      inset: 0;
      padding: 10px 0;
      margin: 0;
      background: #fbfbfb;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
    .navbar ul li{
        border-bottom: 1px solid #e4e4e4;
    }
    .navbar ul li:last-child{
        border-bottom: none;
    }
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 400;
      color: #333;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
  
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
      color: var(--color-white);
    }
  
    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
      position: static;
      display: none;
      padding: 10px 0;
      margin: 10px 14px;
      transition: all 0.5s ease-in-out;
      border: 1px solid #e4e4e4;
    }
  
    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
      display: block;
    }
  
    .mobile-nav-toggle {
      display: block !important;
      color: #333;
      font-size: 28px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      position: fixed;
      top: 20px;
      z-index: 9999;
      right: 20px;
    }
    .dashboard-nav .mobile-nav-toggle{
        right: 6rem;
    }
  
    .mobile-nav-toggle.bi-x {
      color: #fff;
      height: 100%;
    }
  
    .mobile-nav-active {
      overflow: hidden;
      z-index: 9995;
      position: relative;
    }
  
    .mobile-nav-active .navbar {
      left: 0;
    }
  
    .mobile-nav-active .navbar:before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgb(26 26 26 / 48%);
      z-index: 9996;
    }
  }


/* Navigation Bar */
.ser-input{
    border-color: transparent;
    border-bottom-color: #fff;
    color: #636363;
    cursor: pointer;
    border-radius: 100%;
    background-color: #eee;
    width: 35px;
    height: 35px;
    font-size: 14px;
    padding: 7px 0;
    display: inline-block;
    text-align: center;
}
.ser-input:focus {
    border-color: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.search-full-view {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(4, 4, 4, 0.98);
    opacity: 0;
    z-index: -1;
    transition: .5s all;
    transform: scale(0);
}
.search-full-view.search-normal-screen {
    opacity: 1;
    z-index: 9;
    transform: scale(1);
}

.search-full-view .input-group {
    width: 50%;
    margin: 0 auto;
    top: 40%;
    height: 100px;
}
.search-full-view .input-group .form-control {
    border-bottom: 2px solid #fff;
    font-size: 18px;
    padding: 10px;
    vertical-align: unset;
    color: #cdcdcd;
    height: 70px;
    border-radius: 50px;
}
.search-full-view .input-group .form-control:focus{
    border-color: #fff;
    outline: none;
    box-shadow: none;
}
.search-full-view .input-group .input-group-addon {
    background: #ededed;
    font-size: 2em;
    color: #212121;
    border: 0;
    cursor: pointer;
    padding: 10px 33px 8px 26px;
    border-radius: 55px;
    height: 70px;
}
.search-full-view .btn-close {
    background: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 38px;
    color: #fff;
}
.search-full-view .btn-close img { width: 60px; }
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 1px;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
    .main-menu-bar{
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
    .main-menu-bar .navbar {
        width: 82%;
    }
    .navbar-collapse{
        height: 0;
        overflow: hidden;
        -moz-transition: height 0.5s ease;
        -webkit-transition: height 0.5s ease;
        -o-transition: height 0.5s ease;
        transition: height 0.5s ease;
        position: absolute;
        width: 100%;
        z-index: 99;
        top: 65px;
    }
    .navbar-collapse.collapse.show {
        height: auto;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    .main-menu-bar{
        flex-wrap: nowrap;
    }
}
@media (max-width: 768px) {
    .main-menu-bar .navbar {
        width: 80%;
    }
}
@media (max-width: 480px) {
    .main-menu-bar .navbar {
        width: 100%;
        border-bottom: 1px solid #d8d8d8;
    }
}
.speace-top{
    margin-top: 72px;
}
/*** Header ***/
.slider {
    padding: 50px 0;
    margin-top: 72px;
}
.carousel-item img {
    width: 55%;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
    color: #161C24;
}
.slider-content{
    position: relative;
}
.slider-content::after{
    content: "";
    position: absolute;
    right: -50px;
    bottom: -30px;
    background-image: url(../img/banner-shape.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 85px;
    height: 60px;
}
.slider-welcome {
    font-size: 32px;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    color: #ff6b00;
    line-height: 30px;
}
.carousel-caption h1 {
    color: #161C24;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 4rem;
}
.carousel-caption h4 {
    color: #252525;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 40px;
}
.carousel-caption .slider-btn-one{
    font-size: 15px;
    color: var(--tertiary);
    display: inline-block;
    position: relative;
}
.carousel-caption .slider-btn-one::before{
    content: "";
    border-bottom: 1px solid #b1b1b1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.carousel-caption .slider-btn-one i{
    margin-left: 8px;
    font-size: 14px;
}
.carousel-caption .slider-btn-one:hover{
    color: var(--primary);
}
.carousel-caption .slider-btn-one:hover::before{
    border-color: var(--primary);
}
.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 700px;
    }
    
    #header-carousel .carousel-item img {
        width: 100%;
    }
    .slider .carousel-caption{
        top: 28rem;
    }
    .slider-content::after {
        content: "";
        position: absolute;
        right: 29px;
        bottom: 14rem;
        background-image: url(../img/banner-shape.png);
        background-size: 100%;
        background-repeat: no-repeat;
        width: 63px;
        height: 50px;
    }
}

.title-section{
    margin-bottom: 40px;
}
.title-section.center{
    text-align: center;
}
.title-section h2 {
    font-size: 38px;
    color: #161C24;
    font-weight: 500;
}
.title-section .qoute {
    font-size: 16px;
    color: #161C24;
    font-weight: 500;
}
.title-section p {
    font-size: 16px;
    color: #161C24;
}
.page-header {
    padding-top: 7rem;
    padding-bottom: 6rem;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 62px;
    text-align: center;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
    color: #333;
}
.page-header .breadcrumb-item.active {
    font-weight: 400;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}
.about-bg {
    background-image: url(../img/about-banner.jpg);
}
.contact-bg {
    background-image: url(../img/contact-bg.jpg);
}
.management-bg {
    background-image: url(../img/management-banner.jpg);
}
.cpe-bg {
    background-image: url(../img/cpe-banner.jpg);
}
.breadcrumb {
    justify-content: center;
}
.section {
    padding: 110px 0;
}
.section_mt{
    margin-top: 85px;
}
.section_mb{
    margin-bottom: 85px;
}
.section_pt{
    padding-top: 85px;
}
.section_pb{
    padding-bottom: 85px;
}
/*** Upcoming ***/
.upcoming-event {
    background-color: #F2F9F4;
}
.event-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 50px 40px;
}
.event-box .title{
    font-size: 22px;
    color: #161C24;
    text-transform: uppercase;
    text-align: center;
}
.event-box .divide-line{
    background-color: #FD8731;
    width: 60px;
    height: 2px;
    margin: 18px auto;
}
.event-box ol {
    list-style: none;
    padding-left: 16px;
}
.event-box ol li {
    line-height: 3rem;
    border-bottom: 1px solid #e2e2e2;
}

.courses-area {}
.courses-carousel {
    position: relative;
}
.courses-carousel .courses-item {
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 14px;
}
.courses-title {
    width: max-content;
    margin: 0 auto;
}
.courses-title h4{
    font-size: 28px;
    color: #15191e;
    margin-bottom: 30px;
    font-weight: 500;
}
.courses-carousel .course-detail {
    padding: 70px;
}
.courses-carousel .course-detail p {
    color: #161C24;
    line-height: 24px;
}
.courses-carousel .courses-item .icon{
    display: inline-block;
}
.courses-carousel .courses-item .icon img {
    width: 20px;
    height: 20px;
}
.courses-carousel .owl-nav .owl-prev,
.courses-carousel .owl-nav .owl-next{
    background-color: #F3F4F5;
    position: absolute;
    top: 45%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 100%;
    text-align: center;
    padding: 9px 2px;
    line-height: normal;
}
.courses-carousel .owl-nav .owl-prev{
    left: -48px;
}
.courses-carousel .owl-nav .owl-next{
    right: -48px;
}
.cpe-coverage{
    background-color: #F7FAF8;
    border-radius: 0 0 14px 14px;
    display: flex;
    flex-wrap: wrap;
    padding: 25px 45px;
}
.coverage-title{
    width: 20%;
}
.coverage-title h3{
    font-size: 18px;
    position: relative;
    margin-right: 12px;
    margin-bottom: 0;
}
.coverage-title h3::after{
    content: "";
    border-right: 2px solid #ccc;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.cpe-links{
    width: 80%;
    text-align: left;
}
.cpe-links a{
    margin-left: 38px;
    color: #333;
}
.cpe-links a:hover{
    color: var(--primary);
}
.cpe-links a:first-child{
    margin-left: 18px;
}



.cpe-content{
    border: 1px solid #ccc;
    border-radius: 14px;
    padding: 28px;
}
.cpe-content .icon{
    height: 36px;
}
.cpe-content img{
    width: auto;
    height: 36px;
}
.cpe-content h4{
    font-size: 20px;
    font-weight: 500;
    margin: 12px 0;
}
.cpe-content p{}
.cpe-content .read-more{
    border: 1px solid #FD8731;
    border-radius: 30px;
    padding: 2px 30px;
    font-size: 18px;
    display: inline-block;
    color: #FD8731;
    transition: .5s;
}
.cpe-content .read-more:hover {
    background-color: #FD8731;
    color: #fff;
}

/*** Facts ***/
.facts {
    background-color: #F8FBF9;
    /* background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png); */
}
.facts .title-section h3{
    font-weight: 500;
}
.display-num{
    font-size: 22px;
    font-weight: 600;
    color: #151824;
}
.count-label{
    font-size: 16px;
    color: #3D3E47;
}

/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: left;
    border: 1px solid #ccc;
    padding: 50px 60px;
    border-radius: 18px;
}
.testimonial-item .testimonial-text p{
    min-height: 93px;
}
.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}


.client-info{
    display: flex;
    flex-wrap: wrap;
}
.client-img{
    width: 80px;
    margin-right: 10px;
}
.client-img img{
    width: 100%;
}
.client-detail{
    width: 250px;
}
.client-detail h4 {
    font-size: 16px;
    font-weight: 600;
    color: #4c4c4c;
}
.client-detail span {
    font-size: 13px;
}
.testimonial-carousel .course-detail {
    padding: 70px;
}
.testimonial-carousel .course-detail p {
    color: #161C24;
    line-height: 24px;
}
.testimonial-carousel .courses-item .icon{
    display: inline-block;
}
.testimonial-carousel .courses-item .icon img {
    width: 20px;
    height: 20px;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    background-color: #F3F4F5;
    position: absolute;
    top: 45%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 100%;
    text-align: center;
    padding: 9px 2px;
    line-height: normal;
}
.testimonial-carousel .owl-nav .owl-prev{
    left: -48px;
}
.testimonial-carousel .owl-nav .owl-next{
    right: -48px;
}
/*** We Serve ***/
.serve-box {
    display: flex;
    flex-wrap: wrap;
}
.serve-name {
    flex: 1 1 auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    text-align: center;
    margin: 0 10px;
    padding: 15px;
    font-weight: 600;
    color: #555;
}
.serve-name a {
    color: #555;
}
.serve-name a:hover {
    color: var(--primary);
}

/*** Footer ***/
.footer {
    background-color: #FAFAFA;
}
.footer-top {
    padding: 80px 0 40px;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    color: #333;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer-title {
    font-size: 18px;
    color: #3D3E47;
    margin-bottom: 25px;
}
.footer-link {
    padding: 0;
    list-style: none;
}
.footer-link li {
    line-height: 30px;
}
.footer-link a {
    color: #3D3E47;
    font-size: 14px;
}
.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.footer-social {
    margin-top: 28px;
}
.footer-social ul {
    padding: 0;
}
.footer-social ul li {
    display: inline-block;
}
.footer-social ul li a {
    color: #50515F;
    font-size: 14px;
    border: 2px solid #50515F;
    border-width: 1.5px;
    border-radius: 7px;
    padding: 6px;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
}
.footer-social ul li a:hover {
    color: var(--primary);
    border-color: var(--primary);
}
.footer-social ul li a svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    stroke: #50515F;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-social ul li a:hover svg {
    stroke: var(--primary);
}
.copyright-area{
    border-top: 1px solid #ccc;
    padding: 26px 0 18px;
}
.copyright {
    color: var(--light);
    background: #FAFAFA;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}
.ft-nav {
    padding: 0;
}
.ft-nav li {
    display: inline-block;
}
.ft-nav li a {
    border-left: 1px solid #787878;
    margin-left: 10px;
    padding-left: 10px;
    color: #3D3E47;
}
.ft-nav li:first-child a{
    border: none;
    margin-left: 0;
    padding-left: 0;
}
.newsletter p{
    margin-bottom: 6px;
    font-size: 16px;
}
.subscribe-form{
    display: flex;
    flex-wrap: wrap;
}
.subscribe-form input {
    width: 76%;
    height: 40px;
    background-color: #fff;
    border-radius: 7px;
    padding: 2px 13px;
    border: 1px solid #eee;
}
.subscribe-form button {
    width: 22%;
    font-weight: 500;
    padding: 9px 40px;
    border-radius: 7px;
    background-color: #0078b5;
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
}
.subscribe-form button:hover {
    background-color: #014161;
    color: #fff;
}
@media (max-width: 768px) {
    .carousel-caption h1 {
        color: #161C24;
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 3rem;
    }
    .slider-welcome {
        font-size: 24px;
        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        color: #ff6b00;
        line-height: 30px;
    }
    .carousel-caption .slider-btn-one {
        font-size: 13px;
        color: var(--tertiary);
        display: inline-block;
        position: relative;
    }
    .event-box {
        background-color: #fff;
        border-radius: 12px;
        padding: 50px 40px;
        margin: 12px 0;
    }
    .courses-carousel .owl-nav {
        text-align: center;
        margin-top: 14px;
    }
    .courses-carousel .owl-nav .owl-prev, 
    .courses-carousel .owl-nav .owl-next {
        position: relative;
    }
    .courses-carousel .owl-nav .owl-next {
        right: 0;
        display: inline-block;
        margin-left: 20px;
    }
    .courses-carousel .owl-nav .owl-prev {
        left: 0;
        display: inline-block;
    }
    .courses-title {
        width: auto;
        margin: 0 auto;
    }
    .courses-carousel .course-detail {
        padding: 60px 26px;
    }
    .courses-title h4 {
        font-size: 20px;
        color: #15191e;
        margin-bottom: 30px;
        font-weight: 500;
    }
    .cpe-links {
        width: 100%;
        text-align: left;
    }
    .coverage-title {
        width: 100%;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #ccc;
    }
    .coverage-title h3::after {
        display: none;
    }
    .cpe-links a {
        margin-left: 0;
        color: #333;
        float: left;
        width: 50%;
    }
    .cpe-links a:first-child {
        margin-left: 0;
    }
    .title-section h2 {
        font-size: 32px;
        color: #161C24;
        font-weight: 500;
    }
    .testimonial-carousel .owl-nav {
        text-align: center;
        margin-top: 14px;
    }
    .testimonial-carousel .owl-nav .owl-prev, 
    .testimonial-carousel .owl-nav .owl-next {
        position: relative;
    }
    .testimonial-carousel .owl-nav .owl-next {
        right: 0;
        display: inline-block;
        margin-left: 20px;
    }
    .testimonial-carousel .owl-nav .owl-prev {
        left: 0;
        display: inline-block;
    }
    .testimonial-item .testimonial-text p {
        min-height: 80px;
    }
    .serve-name {
        flex: 1 1 auto;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 20px;
        text-align: center;
        margin: 5px 10px;
        padding: 15px;
        font-weight: 600;
        color: #555;
        width: 20%;
    }
    .subscribe-form input {
        width: 68%;
    }
    .subscribe-form button {
        width: 32%;
        font-weight: 500;
        padding: 9px 22px;
        border-radius: 7px;
        background-color: #0078b5;
        font-size: 14px;
        color: #fff;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 22px;
    }
    .count-down {
        margin-bottom: 24px;
    }
    .cpe-content {
        border: 1px solid #ccc;
        border-radius: 14px;
        padding: 28px;
        margin: 12px 0;
    }
}
@media (max-width: 767px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 540px;
    }
    .carousel-caption h1 {
        color: #161C24;
        font-size: 2rem;
        font-weight: 800;
        line-height: 2rem;
    }
    .slider-welcome {
        font-size: 24px;
        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        color: #ff6b00;
        line-height: 30px;
    }
    .slider .carousel-caption{
        top: 11rem;
    }
    .carousel-caption .slider-btn-one {
        font-size: 13px;
        color: var(--tertiary);
        display: inline-block;
        position: relative;
    }
    .event-box {
        background-color: #fff;
        border-radius: 12px;
        padding: 50px 40px;
        margin: 12px 0;
    }
    .courses-carousel .owl-nav {
        text-align: center;
        margin-top: 14px;
    }
    .courses-carousel .owl-nav .owl-prev, 
    .courses-carousel .owl-nav .owl-next {
        position: relative;
    }
    .courses-carousel .owl-nav .owl-next {
        right: 0;
        display: inline-block;
        margin-left: 20px;
    }
    .courses-carousel .owl-nav .owl-prev {
        left: 0;
        display: inline-block;
    }
    .courses-title {
        width: auto;
        margin: 0 auto;
    }
    .courses-carousel .course-detail {
        padding: 60px 26px;
    }
    .courses-title h4 {
        font-size: 20px;
        color: #15191e;
        margin-bottom: 30px;
        font-weight: 500;
    }
    .cpe-links {
        width: 100%;
        text-align: left;
    }
    .coverage-title {
        width: 100%;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #ccc;
    }
    .coverage-title h3::after {
        display: none;
    }
    .cpe-links a {
        margin-left: 0;
        color: #333;
        float: left;
        width: 50%;
    }
    .cpe-links a:first-child {
        margin-left: 0;
    }
    .title-section h2 {
        font-size: 32px;
        color: #161C24;
        font-weight: 500;
    }
    .testimonial-carousel .owl-nav {
        text-align: center;
        margin-top: 14px;
    }
    .testimonial-carousel .owl-nav .owl-prev, 
    .testimonial-carousel .owl-nav .owl-next {
        position: relative;
    }
    .testimonial-carousel .owl-nav .owl-next {
        right: 0;
        display: inline-block;
        margin-left: 20px;
    }
    .testimonial-carousel .owl-nav .owl-prev {
        left: 0;
        display: inline-block;
    }
    .subscribe-form input {
        width: 100%;
    }
    .subscribe-form button {
        width: 100%;
        font-weight: 500;
        padding: 9px 40px;
        border-radius: 7px;
        background-color: #0078b5;
        font-size: 14px;
        color: #fff;
        margin-left: 0;
        margin-top: 18px;
        margin-bottom: 22px;
    }
    .count-down {
        margin-bottom: 24px;
    }
    .cpe-content {
        border: 1px solid #ccc;
        border-radius: 14px;
        padding: 28px;
        margin: 12px 0;
    }
    .cpe-content h4 br{
        display: none;
    }
    .theme-btn {
        font-weight: 500;
        padding: 12px 26px;
        font-size: 14px;
    }
}

/* About Us */
.about {
    position: relative;
    overflow: hidden;
    padding: 120px 0 168px;
}

@media (max-width: 1199px) {
.about {
    padding-bottom: 120px;
}
}
@media (max-width: 767px) {
    .about {
        padding: 80px 0;
    }
}
.about--about {
    padding-bottom: 65px;
}

@media (max-width: 1199px) {
    .about--about {
        padding-bottom: 0;
    }
}
.about__thumb {
    position: relative;
}

@media (max-width: 1199px) {
    .about__thumb {
        max-width: 613px;
        margin: auto;
    }
}
@media (min-width: 1400px) {
    .about__thumb {
        margin-right: 29px;
    }
}
.about__thumb__one {
    position: relative;
    text-align: right;
}

@media (max-width: 767px) {
    .about__thumb__one {
        text-align: left;
    }
}
.about__thumb__one img {
    border-radius: 500px;
    max-width: 100%;
    width: 400px;
    height: auto;
}

.about__thumb__two {
    border-radius: 500px;
    border: 10px solid #fff;
    position: absolute;
    left: 0px;
    bottom: 8px;
    max-width: 260px;
}

@media (max-width: 767px) {
    .about__thumb__two {
        display: none;
    }
}
.about__thumb__two img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 500px;
}

.about__thumb__two svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 212px;
    height: auto;
}

.about__thumb__two-icon {
    width: 70px;
    height: 70px;
    background-color: var(--eduact-base);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eduact-white);
    font-size: 44px;
    z-index: 2;
    position: absolute;
    right: -5px;
    bottom: 12px;
}

.about__thumb__two-icon span {
    display: inline-block;
}
.about__fact {
    position: absolute;
    left: 65px;
    top: 40px;
    width: 185px;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 15px #33333324;
    border-radius: 18px;
}
.about__fact__icon {
    width: 60px;
    height: 60px;
    background-color: #0089CE;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin: 8px;
    z-index: 2;
    position: relative;
}
.about__fact__icon span {
    display: inline-block;
}
.about__fact__content {
    position: relative;
    padding: 0px;
    text-align: center;
    width: 50%;
}
.about__fact__content .count-value{
    font-size: 24px;
    color: #0089CE;
    font-weight: 700;
}
.about__fact__title {
    line-height: 1;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin: 0;
}
.about-tabs{
    box-shadow: 0 2px 12px #33333329;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    border: 2px solid #dcdcdc;
    border-top: 0;
    padding: 10px 0;
}
.about-tabs ul li{
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 0;
    border-right: 1px solid #ccc;
}
.about-tabs ul li:last-child{
    border: none;
}
.about-tabs ul li a{
    color: #333;
}

.facts-area{
    background-color: #0089CE;
    border-radius: 20px;
    padding: 40px 0;
}
.facts-box{
    border-right: 1px dashed #fff;
}
.col-lg-3:last-child .facts-box{
    border: none;
}
.facts-value{
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}
.fact-label{
    color: #fff;
    font-size: 14px;
}
.section-img img{
    width: 100%;
    border-radius: 18px;
}

.getIn_touch{
    box-shadow: 0 0 14px #3333331a;
    border-radius: 22px;
    padding: 32px;
}
.contact-detail{
    background-image: url(../img/help-bg.png);
    padding: 40px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}
.contact-detail h3{
    font-size: 26px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 36px;
}
.detail-box{
    margin-bottom: 30px;
}
.detail-box .icon{
    background-color: #fff;
    padding: 8px 0;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    text-align: center;
    font-size: 19px;
    color: #ff6b00;
    margin-right: 25px;
}
.detail-box .text h4{
    font-size: 16px;
    color: #fff;
    margin: 0;
}
.detail-box .text a{
    font-size: 16px;
    color: #fff;
}

/* Contact Us */
.contact-form{
    background-color: #016CA1;
    padding: 70px 50px;
    border-radius: 12px;
}
.contact-form h3{
    color: #fff;
}
.contact-form label{
    color: #fff;
}
.contact-form .form-control{
    border-radius: 7px;
}
.contact-box{
    border: 2px dashed #D3D3D3;
    padding: 22px;
    border-radius: 10px;
    margin: 12px 0;
}
.contact-box:hover{
    border: 2px dashed #b4b1b1;
    background-color: #fcfcfc;
}
.contact-box .icon{
    background-color: #0089CE;
    font-size: 19px;
    padding: 9px;
    width: 45px;
    height: 45px;
    color: #fff;
    border-radius: 12px;
    text-align: center;
}
.contact-box h4{
    font-size: 17px;
    margin-top: 16px;
    margin-bottom: 6px;
}
.contact-box p,
.contact-box a{
    font-size: 15px;
    color: #8D8D8D;
    margin: 0;
}
.follow-us{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.follow-us .title{
    font-size: 17px;
    color: #333;
    margin: 0;
    font-weight: 500;
}
.social ul li a {
    background-color: #0078b5;
    border: 1px solid #0078b5;
    color: #fff;
    font-size: 14px;
    border-width: 1.5px;
    border-radius: 7px;
    padding: 6px;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
}
.social ul li a:hover {
    background-color: #f5f9fb;
    border: 1px solid #0078b5;
    color: #0078b5;
}
.social ul{
    list-style: none;
    padding-left: 14px;
    margin: 0;
}
.social ul li{
    display: inline-block;
}
.social ul li a svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    stroke: #fff;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social ul li a:hover svg {
    stroke: #0078b5;
}
@media (max-width: 767px) {
    .contact-form {
        padding: 55px 32px;
    }
}

/* Management */
.profile-box{
    border: 1px solid #DDDDDD;
    border-radius: 24px;
    padding: 40px;
    padding-top: 0;
    text-align: center;
    min-height: 100%;
}
.profile-img{
    width: 95px;
    height: auto;
    margin: 0 auto;
    margin-top: -42px;
}
.profile-img img{
    width: 100%;
}
.profile-box .name{
    font-size: 20px;
    margin: 16px 0 4px;
}

/* Logos */
.logo-box{
    width: 70%;
    height: 110px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.logo-box img{
    filter: grayscale(100%);
    opacity: .7;
}

.signup-section{
    background: linear-gradient(rgb(255 255 255 / 50%), rgb(255 255 255 / 50%)), url(../img/map.png);
}
.signup-section .detail-box {
    background-color: #fff;
    padding: 50px;
    text-align: center;
    box-shadow: 0 0 24px #33333324;
}
.signup-section .detail-box h2{
    font-size: 30px;
    margin-bottom: 26px;
}

/* Login */
.signup-page{
    background-image: url(../img/bg1.jpg);
}
.login-area{
    box-shadow: 0 0 16px #3333331a;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}
.login-area .login-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 36px;
}
.login-box{
    padding: 60px 90px;
}
.login-box h4{
    font-size: 20px;
    text-align: center;
}
.signup-box{
    padding: 50px;
    background-image: url(../img/sign-up-bg.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
}

.signup-box h3{
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.form-group{
    margin-bottom: 12px;
}
.form-group label{
    margin-bottom: 6px;
}

.form-group ::placeholder {
    color: #9E9E9E;
    opacity: 1;
}

.form-group ::-ms-input-placeholder {
    color: #9E9E9E;
}
.or-with{
    position: relative;
    margin: 25px 0;
    text-align: center;
}
.or-with::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #ccc;
    display: block;
    width: 45%;
    height: 1px;
}
.or-with::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background-color: #ccc;
    display: block;
    width: 45%;
    height: 1px;
}
.social-login{
    text-align: center;
    margin-top: 26px;
}
.social-login a{
    display: inline-block;
    margin: 0 auto;
}
.google-login{
    display: flex;
    border: 1px solid #ccc;
    border-radius: 10px;
    align-items: center;
    width: max-content;
}
.google-login .icon{
    border-right: 1px solid #ccc;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    padding: 6px;
}
.google-login .icon img{
    width: 100%;
    height: 100%;
}
.google-login .name{
    font-size: 16px;
    font-weight: 600;
    padding: 8px 24px;
    color: #333;
}
.login-mobile{
    display: none;
}

@media (max-width: 767px) {
    .login-box {
        padding: 60px 32px;
    }
    .signup-box{
        padding: 60px 32px;
    }
    .top-login{
        display: none;
    }
    .login-mobile{
        display: block;
    }
}


/* Dashboard */
.dashboard{
    background-color: #f7f7f7;
}
.user-login .dropdown-menu{
    border: 0;
}
.user-login .dropdown-menu:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: -0.5em;
    right: 0px;
    top: 0;
    box-sizing: border-box;
    border: 7px solid black;
    border-color: transparent transparent #ffffff #ffffff;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: -3px 3px 3px -3px rgba(214, 214, 214, 0.78);
}
.dropdown-menu.dropdown-menu-left{
    right: 0;
    left: auto;
    min-width: 200px;
    padding: 0;
}
.dropdown-menu li{
    border-bottom: 1px solid #ccc;
}
.dropdown-menu li:last-child{
    border-bottom: none;
}
.dropdown-menu > li:before {
    content: "";
    width: 0px;
    height: 40px;
    position: absolute;
    background: #2196F3;
    margin-top: 4px;
    border-radius: 0 1px 1px 0;
    left: 0px;
    transition: all 0.2s ease;
}
.dropdown-menu > li:hover:before {
    width: 5px;
    border-radius: 30px;
}
.dropdown-menu > li > a {
    font-size: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: #212121;
    transition: all 0.2s ease-out;
}
.dropdown-menu > li a.dropdown-item:hover {
    margin-left: 5px;
    background-color: transparent;
}
.dropdown-menu > li > a i{
    margin-right: 8px;
    color: #b9b9b9;
}


.filter-bar-button{
    
}
.filterToggle{
    background-color: #0B9EE6;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 7px;
    pointer-events: none;
}
.filterToggle:hover,
.filterToggle:focus{
    
}
.filterToggle span{
    display: none;
}
.fltr-title{
    font-size: 18px;
    font-weight: 400;
    margin-left: 10px;
}
.helpTag{
    font-size: 14px;
    color: #737373;
}
.sidebar-fltr.sidebar-Collapse {
    max-height: 0;
    transition: max-height 0.25s ease-out;
    display: none;
}
@media (max-width: 768px) {
    .fltr-title {
        display: none;
    }
    .filterToggle{
        pointer-events: all;
    }
    .filterToggle span {
        display: inline-block;
    }
}
/* Filter Menu */
.menu-box{
    padding:0 16px;
    background-color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 0 6px rgb(51 51 51 / 8%);
}
.menu-header{
    padding: 0;
    margin: 0;
}
.menu-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 0px;
    font-size: 1rem;
    color: #555;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
.menu-button.collapsed{
    border-bottom: none;
}
.menu-button.collapsed::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url(../img/plus.svg);
    background-repeat: no-repeat;
    background-size: 1.10rem;
    transition: transform 0.2s ease-in-out;
}
.menu-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content:"";
    background-image: url(../img/minus.svg);
    background-repeat: no-repeat;
    background-size: 1.10rem;
}
.menu-box .accordion-body{
    padding-left: 0;
    padding-right: 0;
}
.menu-box ul{
    list-style: none;
    margin: 0;
    padding-left: 18px;
}
.menu-box ul li{
    margin: 3px 0;
}
.menu-box ul li input{
    margin-right: 10px;
}

/* end Filter Menu */

/* SideBar */
.sidebar{
    background-color: #016CA1;
    border-radius: 12px;
    overflow: hidden;
}
.sidebar li{
    border-bottom: 1px solid #3a97c6;
}
.sidebar li .submenu{ 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	padding-left: 1rem; 
	padding-right: 1rem;
    background-color: #004d73;
}
.sidebar li .submenu li:last-child{
    border: none;
}
.sidebar li button{
    color: #fff;
    padding: 18px 28px; 
    background-color: transparent;
    border: none;
    text-align: left;
}
.sidebar li button.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    width: 6px;
    font-size: 15px;
}
.sidebar li a{
    color: #fff;
    padding: 18px 28px;
}
.sidebar li a.active{
    background-color: #005681;
    box-shadow: none;
}
.sidebar li a:hover{
    background-color: #005681;
    color: #fff;
}
.sidebar .nav-link:hover, 
.sidebar .nav-link:focus{
    color: #fff;
}
.sidebar .has-submenu a.dropdown-toggle::after{
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    float: right;
}
.explore-btns{
    padding: 32px 24px;
}
.sidebar-blue-btn{
    background-color: #02A5F6;
    border-radius: 50px;
    color: #fff;
    padding: 16px 20px;
    display: block;
    text-align: center;
    font-size: 14px;
}
.sidebar-blue-btn:hover{
    background-color: #013c59;
    color: #fff;
}
.sidebar-orange-btn{
    background-color: #d88b3b;
    border-radius: 50px;
    color: #fff;
    padding: 16px 20px;
    display: block;
    text-align: center;
    font-size: 14px;
}
.sidebar-orange-btn:hover{
    background-color: #013c59;
    color: #fff;
}

.welcome-popup{
    background: rgb(255 187 122);
    background: linear-gradient(354deg, rgb(195 0 70 / 23%) 0%, rgba(255, 155, 5, 0.34226190476190477) 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}
.welcome-popup .image-box{
    
}
.welcome-popup .image-box img{
    width: 170px;
    margin-top: -45px;
    margin-left: 26px;
}
.welcome-popup .content-box{
    padding: 24px;
}
.welcome-popup .content-box h2{
    font-size: 26px;
    font-weight: 500;
}
.welcome-popup .content-box p{
    margin: 0;
}
.welcome-popup .close-btn{
    position: absolute;
    top: -6px;
    right: -6px;
    display: none;
}
.welcome-popup .close-btn i{
    background-color: #fff;
    border-radius: 100%;
    font-size: 26px;
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
    padding: 0;
    line-height: 38px;
    box-shadow: 1px 2px 5px #33333359;
    color: #333;
}

.search-entry{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
.search-entry .help-btn {
    background-color: #fff;
    border-radius: 50px;
    color: #333;
    padding: 14px 38px;
    display: block;
    text-align: center;
    font-size: 14px;
}
.search-entry .help-btn i{
    margin-left: 2px;
}
.help-modal ul {
    padding-left: 16px;
}
.help-modal ul li{
    line-height: 22px;
    margin: 7px 0;
    color: #333;
}

.course-search-box{
    display: flex;
    width: 60%;
    align-items: center;
}
.search-entry .search-result{
    font-size: 13px;
    font-style: italic;
    color: #6f6f6f;
    margin-right: 16px;
}
.search-entry .search-bar{
    position: relative;
    width: 70%;
}
.search-entry .search-bar input{
    background-color: #fff;
    border-radius: 50px;
    color: #181818;
    padding: 14px 20px;
    font-size: 14px;
    border: none;
    width: 100%;
}
.search-entry .search-bar input::-ms-input-placeholder { /* Edge 12-18 */
    color: rgb(143, 143, 143);
    font-size: 13px;
  }
  
.search-entry .search-bar input::placeholder {
    color: rgb(143, 143, 143);
    font-size: 13px;
  }
.search-entry .search-bar .search-btn{
    position: absolute;
    padding: 0;
    top: 9px;
    right: 18px;
    border: none;
    font-size: 20px;
    color: #c7c7c7;
}
.dashboard .card {
    border-radius: 12px;
    box-shadow: 0 0 8px #33333321;
    border: none;
}

.course-box{
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 26px;
    display: flex;
	position: relative;
}
.course-box .course-detail{
    width: 80%;
}
.course-box .course-detail h2{
    font-size: 22px;
}
.course-box .course-detail h2 a{
    color: #333;
}
.course-box .teacher-detail{
    width: 20%;
}
.course-label{
    font-size: 14px;
    font-style: italic;
    color: #b1b1b1;
    font-weight: 500;
    margin-bottom: 7px;
}
.plan-active{
    display: flex;
    align-items: center;
}
.plan-title{
    font-size: 16px;
    margin: 0;
}
.form-switch .form-check-input{
    margin: 0 4rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.6rem;
    width: 3.5rem;
    border: 1px solid rgba(0, 0, 0, .25);
}
.form-switch .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.form-switch .form-check-input:before, 
.form-switch .form-check-input:after {
    line-height: 1.5rem;
    width: 4rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 1px;
    transition: opacity 0.25s;
    color: #737373;
}
.form-switch .form-check-input:before {
    content: 'Out';
    left: -4rem;
}
.form-switch .form-check-input:after {
    content: 'In';
    right: -4rem;
}

/* CHECK BOX CLASS */

.plan_in .form-check-input {
    margin: 0 4rem;
    padding: 0;
    position: relative;
    border: none;
    height: 1.6rem;
    width: 3.5rem;
    border: 1px solid rgba(0, 0, 0, .25);
}
.plan_in {
    padding-left: 2.5em !important;
    background-position: right center !important;
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
    background-color: #355EFC;

}

.form-switch.plan_in .form-check-input {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
    background-color: #0d6efd;
    border-color: #0d6efd;
    pointer-events: none;
    filter: none;
    opacity: .5;
}

@media (prefers-reduced-motion: reduce) {
    .plan_in .form-check-input {
        transition: none
    }
}

.plan_in .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%239aaffe'/%3e%3c/svg%3e")
}

.plan_in .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}
.form-switch .form-check-input{
    outline: none;
    box-shadow: none !important;
}


.due-box{
    font-size: 12px;
    border: 1px solid #1793d1;
    border-radius: 12px;
    padding: 1px 5px;
    font-weight: 400;
    color: #a1a1a1;
    display: flex;
    width: 145px;
align-items: center;
}
.due-box label{
    margin-bottom: 0 !important;
}
.dueForm{
    display: flex;
}
.due-box form{
    display: flex;
}
.due-box input{
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    display: inline-block;
    border: none;
    margin-left: 4px;
}
.course-rating{
    margin-top: 10px;
}
.course-rating .rating-stars{
    margin-left: 8px;
}
.course-rating .rating-stars span{
    color: #FF6B00;
    font-size: 18px;
}
.course-rating .rat-no{
    margin-left: 5px;
    font-size: 12px;
}
.course-time{
    width: 115px;
    text-align: center;
}

.teacher-detail{
    text-align: right;
    margin-left: 20px;
}
.teacher-detail .picture img{
    border-radius: 10px;
    margin-bottom: 12px;
    width: 80px;
    height: 80px;
}
.teacher-detail .name h4{
    font-size: 16px;
}
.teacher-detail .designation p{
    font-size: 13px;
}

.pagination{
    margin: 22px auto 10px;
}
.pagination li{
    margin: 0 3px;
}
.pagination .page-link {
    position: relative;
    display: block;
    color: #333;
    background-color: #f2f2f2;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 100%;
    padding: 9px 0;
    width: 40px;
    height: 40px;
    text-align: center;
}
.previous-link{
    position: relative;
    display: block;
    color: #333;
    background-color: #f2f2f2;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 30px;
    padding: 8px 22px;
}
.next-link{
    position: relative;
    display: block;
    color: #333;
    background-color: #f2f2f2;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 30px;
    padding: 8px 22px;
}
.dashboard-inner-banner{
    background-color: #EFF7FA;
    padding: 50px 0;
    position: relative;
}
.dashboard-inner-banner::before{
    content: "";
    position: absolute;
    background-image: url(../img/dashboard/patrn-2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 130px;
    height: 130px;
    bottom: 0;
    opacity: 0.5;
}
.dashboard-inner-banner h1{
    font-size: 32px;
}
.cpe-btn{
    background-color: #0089CE;
    padding: 8px 20px;
    color: #fff;
    margin-left: 12px;
}
.cpe-btn:hover{
    background-color: #FF6B00;
    color: #fff;
}
.course-detail-entry h4{
    font-size: 20px;
    margin-bottom: 12px;
}
.course-detail-entry ul{
    padding-left: 16px;
    line-height: 24px;
}
.course-detail-entry p{
    line-height: 24px;
}
.accordion-box{
    margin: 10px 0;
}
.same-course .accordion-button{
    background-color: #f5f5f5;
    border-radius: 7px;
}
.same-course .accordion-button:not(.collapsed){
    color: #191919;
    border-radius: 7px 7px 0 0;
    border-color: #dfdfdf;
    box-shadow: none;
}
.same-course .accordion-body{
    border: 1px solid #dfdfdf;
    border-top: 0;
    border-radius: 0 0 7px 7px;
}
.same-course .accordion-body ol,
.same-course .accordion-body ul{
    padding-left: 16px;
    line-height: 24px;
}

/* Reviews */
.review-item{
    display: flex;
    border-bottom: 1px solid #d5d5d5;
    padding: 14px 0;
    margin-bottom: 14px;
}
.review-detail{
    margin-left: 14px;
}
.star-rating i {
    color: #F8B81F;
}
.review-item .user-img img{
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.review-detail .name{
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 2px 0;
}
.review-detail .designation{
    font-size: 14px;
    font-style: italic;
    color: #7f7f7f;
    margin-bottom: 7px;
}

/* popup */
.credit-modal .modal-body{
    padding: 30px;
}
.credit-btns{
    display: flex;
    justify-content: center;
}
.credit-btns a{
    color: #797979;
    flex: 1 1 auto;
}

.credit-btns .anchor-link.show{
    display: block;
}
.cert-cell {
    border: solid 1px #eeeeee;
    overflow: hidden;
    background-color: #f9f9f9;
    text-align: center;
    line-height: 0.97em;
    font-weight: bold;
    padding: 14px;
    margin: 3px;
    border-radius: 7px;
}
.credit-btns a:hover .cert-cell {
    border: solid 1px #eeeeee;
    background-color: #fff;
    box-shadow: 0 0 8px #3333332b;
}
.cert-shortname{
    margin-bottom: 5px;
    color: var(--secondary);
}
.cert-award{
    font-size: 12px;
}
.cert-det-row{
    display: flex;
    border-bottom: 1px solid #e2e2e2;
    padding: 3px 0;
    align-items: center;
}
.cert-det-row> div{
    flex: 1 1;
}
.cert-det-name{
    font-size: 16px;
    font-weight: 600;
}
.cert-det-val{
    position: relative;
    padding-left: 16px;
}
.cert-det-val::before{
    content: ":";
    position: absolute;
    left: 0px;
}
.credit-item{
    border: 1px solid #dcdcdc;
    padding: 30px;
    margin-top: 25px;
    border-radius: 14px;
}
.credit-more-info a{
    color: #636363;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 18px;
}
.credit-more-info a:hover{
    color: #ff6b00;
    border: 1px solid #ff6b00;
}

/* Right sidebar */
.rightbar {
    position: relative;
}
.video-area{
    /* background-image: url(../img/professional-skepticism.jpg); */
    background-size: cover;
    background-position: center;
    padding: 0;
    height: auto;
    width: 100%;
    background-repeat: no-repeat;
    /* display: flex;
    align-items: center;
    text-align: center; */
    border-radius: 0;
    position: relative;
    /*overflow: hidden;*/
    margin: 12px 0;
}
.video-area iframe{
width: 100%;
height: 100%;
min-height: 200px;
}
/* .video-area::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.5;
} */
.play-btn{
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.play-btn .video-btn{
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: #fff;
    padding: 0;
    font-size: 24px;
}
.instructor{
    display: flex;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
    margin-top: 15px;
}
.instructor .name{
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.instructor .detail{
    font-size: 14px;
width: 70%;
}
.instructor .image{
    width: 60px;
    height: 60px;
    margin-right: 12px;
}
.instructor .image img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}
.instructor{
    display: flex;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.instructor .name{
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.instructor .detail{
    font-size: 14px;
}
.instructor .detail .more-view{
    font-size: 14px;
    color: #0090d7;
}
.instructor .image{
    width: 60px;
    height: 60px;
    margin-right: 12px;
}
.instructor .image img{
    width: 60px;
    height: 60px;
    border-radius: 7px;
    object-fit: cover;
}

.profile-head{
    background-color: #d6ecf5;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 40px 30px 0 30px;
    border-radius: 7px 7px 0 0;
    background-image: linear-gradient(rgb(243 243 243 / 80%), rgb(245 245 245)), url(../img/modal-bg.jpg);
    background-size: cover;
    background-position: top;
    position: relative;
}
.profile-info{
    display: flex;
    align-items: center;
}
.instructor-profile-img{
    margin-bottom: -12px;
}
.instructor-profile-img img{
    border-radius: 7px;
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.instructor-profile-detail{
    margin-left: 20px;
}
.instructor-contact{
    font-weight: 500;
    padding: 10px 40px;
    border-radius: 30px;
    background-color: #0078b5;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}
.instructor-contact:hover{
    background-color: #013c59;
    color: #fff;
}
.about-detail{
    padding: 30px;
}
.about-detail p{
    line-height: 24px;
}
.profile-modal .btn-close{
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9;
}
.rightbar-content{
    background-color: #fff;
    padding: 30px 30px 14px;
    border-radius: 12px;
    box-shadow: 0 0 14px #33333333;
}
.rightbar-content h4{
    font-size: 18px;
}
.list-overview{
    padding: 0;
    list-style: none;
}
.list-overview li{
    position: relative;
    display: flex;
    line-height: 22px;
    padding: 14px 0;
    border-top: 1px solid #ccc;
}
.list-overview li:last-child{
    border-bottom: 1px solid #ccc;
}
.list-overview li a{
    color: #333;
}
.list-overview li a:hover{
    color: #ff9131;
}
.list-act{
    margin-right: 6px;
    padding-top: 2px;
}
.list-title{
    width: 80%;
}
.list-tag{
    margin-left: 16px;
    display: block;
    width: 20%;
    font-style: italic;
    font-size: 14px;
    color: #676767;
    font-family: "Roboto", sans-serif;
}

/* Leftbar */
.leftbar-content{
    background-color: #fff;
    padding: 30px 30px 14px;
    border-radius: 7px;
    border: 1px solid rgba(0,0,0,0.125);
}
.leftbar-content h4{
    font-size: 18px;
}

/* Material */
.this-course-head{
    background-color: #f3f3f3;
    display: flex;
    padding: 13px 16px;
    border-radius: 12px;
    align-items: center;
    margin-bottom: 12px;
    justify-content: space-between;
}
.this-course-head h3{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.complete-this{
    width: 30px;
}
.complete-this input{
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.completer-check { filter: hue-rotate(255deg) }
.instr-detail{
    background-color: #f3f3f3;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    display: flex;
    align-items: center;
}
.instr-image{

}
.instr-image img{
    width: 90px;
    height: 90px;
    border-radius: 7px;
    object-fit: cover;
    margin-right: 16px;
}
.relwnt-detail{}
.relwnt-detail a:first-child{
    margin-bottom: 6px;
}
.relwnt-detail .link-profile{
    background-color: #f6f6f6;
    border: 1px solid #0078b5;
    color: #0078b5;
    padding: 6px 12px;
    font-size: 14px;
}
.relwnt-detail .link-courses{
    background-color: #f6f6f6;
    border: 1px solid #ff6b00;
    color: #ff6b00;
    padding: 6px 12px;
    font-size: 14px;
}
.relwnt-detail a:hover{
    background-color: #fff;
}

.material-content{
    margin-bottom: 16px;
}
.course-sequencer {
    background-color: #f0f5f8;
    padding: 12px 18px;
    margin: 12px 0;
}
.course-next span{
    font-size: 14px;
}
.course-sequencer .course-next a{
    font-weight: 700;
    color: #333;
    font-size: 18px;
}
.faq-link a{
    color: #333;
}
.title-processed{
    font-size: 22px;
}
.title-processed a{
    color: #333;
}
.comment_show h5{
    font-size: 16px;
}
.comment_show p{
    margin: 0;
}
.comment-form{
    background-color: #F0F5F8;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}
.comment-form textarea{
    background-color: #fff;
}
.application-pdf{
    background-image: url(../img/pdf.png);
    padding-left: 35px;
    background-size: 20px auto;
    background-repeat: no-repeat;
    height: 26px;
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 600;
}
#pf-files {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#pf-files td, #pf-files th {
    border: 1px solid #ddd;
    padding: 8px;
}

#pf-files tr:nth-child(even){background-color: #f2f2f2;}

#pf-files tr:hover {background-color: #ddd;}

#pf-files th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #07abc7;
    color: white;
}

#question-33-1 .info{
	display: none;
}
.que .content {
    margin: 0;
}
#yui_3_18_1_1_1723811514867_95{
	display: none;
}
.quizreviewsummary tr:nth-child(5){
	display: none;
}

@media (min-width: 769px) {
    .rightbar{
        margin-top: -22rem;
    }
    .course-detail-entry{
        padding-right: 14px;
    }
}
@media (max-width: 991px) {
    
    .speace-top {
        margin-top: 64px;
    }
}
@media (max-width: 768px) {
    .header {
        background-color: #fff;
        border-bottom: none;
        padding: 8px 0;
        height: 68px;
    }
    .page-header {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    .dropdown-menu.dropdown-menu-left{
        top: 5px;
    }
    .facts-box {
        border-bottom: 1px dashed #fff;
        border-right: none;
        margin: 8px;
        padding-bottom: 16px;
    }
    .col-lg-3:last-child .facts-box {
        border: none;
        border-bottom: 1px dashed #fff;
    }
}
@media (max-width: 480px) {
    
    .user-login .dropdown-menu:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        margin-left: 0;
        right: 0;
        left: auto;
        top: 0;
        box-sizing: border-box;
        border: 7px solid black;
        border-color: transparent transparent #ffffff #ffffff;
        transform-origin: 0 0;
        transform: rotate(135deg);
        box-shadow: -3px 3px 3px -3px rgba(214, 214, 214, 0.78);
    }
    .facts-box {
        border-right: none;
        border-bottom: 1px dashed #fff;
        padding-bottom: 14px;
        margin-bottom: 12px;
        margin-left: 24px;
        margin-right: 24px;
    }
    .getIn_touch {
        box-shadow: 0 0 14px #3333331a;
        border-radius: 22px;
        padding: 18px;
    }
    .contact-detail{
        padding: 22px;
        margin-bottom: 30px;
        height: auto;
    }
    .about-tabs {
        padding: 4px 0;
    }
    .about-tabs ul li {
        flex: 1 1 auto;
        text-align: center;
        padding: 1px 0;
        border-right: 1px solid #ccc;
        width: 50%;
        margin: 6px 0;
    }
}
@media (max-width: 575px) {
.dashboard{
    padding: 0 14px;
}
.course-box {
   flex-wrap: wrap;
}
.teacher-detail {
    text-align: right;
    margin-left: 0;
    width: 100%;
    margin-top: 26px;
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 12px;
}
.welcome-popup{
    margin-top: 3rem;
}
.welcome-popup .content-box h2 {
    font-size: 22px;
    font-weight: 500;
}
.welcome-popup .content-box p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.search-entry {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-left: 12px;
    margin-right: 12px;
}
.course-search-box {
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: 28px;
}
.search-entry .search-bar {
    position: relative;
    width: 56%;
}

}
.dpfilter-subfilt{
    display: flex;
    flex-wrap: wrap;
}
.dp-filt-btn{
    display: inline-block;
}
.dp-filt-btn label{
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 30px;
    background-color: #edf0f2;
    font-size: 14px;
    color: #333;
    display: inline-block;
    cursor: pointer;
    margin: 2px 0px;
}
.table-course-data{
    width: 100%;
}
.table-course-data .thead-dark th {
    color: #141414 !important;
    background-color: #ffffff !important;
    border-color: #b8babb !important;
}
@media (max-width: 780px) {
    .table-course-data{
        overflow-x: scroll;
        width: 100%;
    }
    .dbfilt-table{
        min-width: 750px;
    }
}
@media (min-width: 1280px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1260px;
    }
}
.dbfilt-table td,
.dbfilt-table th {
    vertical-align: middle;
}
.dbfilt-table a{
    color: #353535;
}
.dbfilt-table a:hover{
    color: #f58721;
}
.item-prog-value{
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
}
.archive-deta-link a{
    font-size: 16px;
}
.kopere_dashboard_div .menu-w .menu-and-user ul.main-menu > li.active ul.submenu {
    display: none !important;
}


