/*
Created on : Jan 16, 2021
Author     : webiknows.com
Version: 1.1
*/
/*============================
 [Table of CSS]
 	1. Global variable css
	2. Background Color
	3. Color and Font
	4. Headings and Typographic Classes / .title, .uppercase etc
	5. Button
	6. Margins and Paddings
	7. Position
	8. Custom Checkbox and radio
	9. Reset Css
	10. Cus Scroll
	11. Ellipsis
  12. Animation
  13. FLOATING LABEL
  14. ACCORDION
========================================*/
/*-----------------
1. Global variable css
-----------------------*/
:root {
	--gradient-btn:  -webkit-linear-gradient(0deg, #394263 0%, #6373b1 100%);
    --primary-clr: #5c7e00;
    --secondary-clr: #0855a6;
    --text-clr: #333333;
    --accent-clr: #8f8d8d;
    --lightgrey-clr: #ededed;
    --ff-heading: 'Roboto', sans-serif;
    --ff-para: 'Merriweather', serif;
}

/*-----------------
2. Background Color
-----------------------*/
.bg-primary {background: var(--primary-clr);}
.bg-secondary {background: var(--secondary-clr);}
.bg-lightgrey {background: var(--lightgrey-clr);}
.bg-white {background: #fff !important;}
.bg-t {background: transparent !important;}
/*-----------------
3. Color and Fonts 
-----------------------*/
.primary-clr {color: var(--primary-clr);}
.secondary-clr {color: var(--secondary-clr);}
.text-clr {color: var(--text-clr) !important;}
.white {color: #fff !important;}
.green{color:#38BC68;}
.f-headind {font-family: var(--ff-heading);}
.f-para {font-family: var(--ff-para);}
/*-----------------
4. Headings and Typographic Classes / .title, .uppercase etc
-----------------------*/
/* - Font size classes - */
.big {font-size: 3.6rem;line-height: 4.8;}
.bigger {font-size: 4.8rem;line-height: 1.2;}
.super {font-size: 6rem;line-height: 1.2;margin-bottom: 0;}
.f-12 {font-size: 1.2rem;}
.f-13 {font-size: 1.3rem;}
.f-14 {font-size: 1.4rem;}
.f-16 {font-size: 1.6rem;}
.f-18 {font-size: 1.8rem;}
.f-20 {font-size: 2rem;}
.f-22 {font-size: 2.2rem;}
.f-24 {font-size: 2.4rem;}
.f-26 {font-size: 2.6rem;}
.f-28 {font-size: 2.8rem;}

/* - Font weight classes - */
.bold {font-weight: bold;}
.regular {font-weight: normal;}
.bold-500 {font-weight: 500;}
.bold-600 {font-weight: 600;}
.bold-700 {font-weight: 700;}

/* - Text transform classes - */
.txt-upper {text-transform: uppercase;}
.txt-lower {text-transform: lowercase;}
.txt-capital {text-transform: capitalize;}
.l-h-1 {line-height: 1;}
.l-h-2 {line-height: 1.2;}
.l-h-3 {line-height: 1.3;}
.l-h-4 {line-height: 1.4;}
.l-h-5 {line-height: 1.5;}
.l-h-6 {line-height: 1.6;}
.l-h-7 {line-height: 1.7;}
.l-h-8 {line-height: 1.8;}
.l-h-9 {line-height: 1.9;}
.l-h2 {line-height: 2;}

/*-----------------
5. Button  
-----------------------*/
.cus-primary-btn {
    color: #fff;
    background: var(--primary-clr);
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
}
.cus-primary-btn:hover {
    color: var(--primary-clr);
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}
.cus-primary-btn-outline {
    color: var(--primary-clr);
    background: transparent;
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
}
.cus-primary-btn-outline:hover {
    color: #fff !important;
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}

/*-----------------
7. Position
-----------------------*/
.top-left {position: absolute;top: 8px;left: 16px;}
.top-right {position: absolute;top: 8px;right: 16px;}
.top-center {position: absolute;top: 0;left: 50%;transform: translate(-50%, 0);}  
.bottom-right {position: absolute;bottom: 8px;right: 16px;}
.bottom-left {position: absolute;bottom: 8px;left: 16px;}
.bottom-center {position: absolute;bottom: 0;left: 50%;transform: translate(-50%, -50%);}
.middle-left {position: absolute;top: 50%;left: 50%;transform: translate(0%, -50%);}
.middle-right {position: absolute;top: 50%;right: 0;transform: translate(0%, 0);}
.p-centered {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.v-center {-webkit-transform: translate(0,-50%);-o-transform: translate(0,-50%);transform: translate(0,-50%);top: 50%;margin: 0 auto;}
.modal-dialog-bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: flex-end; min-height: calc(100% - 0rem);}
.modal-rounded {border-radius: 8px 8px 0 0;}


/*-----------------
9. Reset Css
-----------------------*/
/* body {font-size: 10px;}

@media screen and (min-width: 320px) {
  body {font-size: 10px;}
  html {font-size: 80%;}
}
@media screen and (min-width: 991px) {
  body {font-size: 14px;}
  html {font-size: 100%;}
}  */
::selection {
  background-color: var(--primary-clr);
  color: #fff;
}
/*-----------------
11.Ellipsis
-----------------------*/
.ellipsis-line1 {  
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis-line2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis-line3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ellipsis-line4 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ellipsis-line5 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.ellipsis-line6 {
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
}


/*------------------------------
COMMON CSS
-------------------------------*/
.vw-100 {width: 100vw;}
.vh-100 {height: 100vh;}
.vh-48 {height: 48vh;}
.fit-image {object-fit: cover;}
.grayscale{filter: grayscale(100%);}
.shadow-light {box-shadow: 0 0 10px rgba(0,0,0,.05);}
.zoom-hover {transition: all .5s ease;}
.zoom-hover:hover {transform: scale(1.1);-webkit-transform: scale(1.1);}
.rotated_180 {transform: rotate(180deg);}
.listNone {
  list-style-type: none;
  padding: 0;
}
.text-justify {text-align: justify;}
.categories-item:hover {cursor: inherit;}

.py_80 {
  padding: 80px 0;
}
.how-it-works .feature-icon {
  width: 140px;
}
.how-it-works .feature-bg:hover .feature-icon img {
  border-radius: 10px;
} 
.all-category .btn-primary {
  color: #fff;
  border: 3px solid var(--secondary-clr);
}
.check-outs .btn-primary {
  background: var(--secondary-clr);
  border: 1px solid var(--secondary-clr);
}
.check-outs .btn-primary:hover {
  background: var(--primary-clr);
  border: 1px solid var(--primary-clr);
}
.trending-course .product:hover .all-category .btn-primary {
  border: 3px solid #fff;
}
/* .trending-course .product .all-category .btn-primary:hover {
  border: 3px solid #fff;
  background-color: transparent;
} */
.product:hover .product-content h3 a {
  color: #fff;
}
/* .product:hover .product-content h3 a:hover {
  color: #fff !important;
} */
.course-group-img a {
  margin-right: 10px;
}
.course-group-img img {
    height: 46px;
    border-radius: 12px;
    border: 1px solid #ddd;
    object-fit: contain;
    background: #fff;
    max-width: 100px;
    margin: 0;
}
.settings-menu h3,
.subs-title {
  color: var(--text-clr);
}
.product-content h3 a,
.course-name h4 a {
  font-size: 0.9rem;
}
.head-course-title .title a {
  font-size: 1.1rem;
  font-weight: 700;
}
.course-group-img {
  width: 100%;
}
.course-group-img .course-name h6 {
  font-size: 0.8rem;
}
.product:hover .course-group-img h5 a,
.product:hover .course-group-img .course-name h6 {
  color: #fff;
  margin-bottom: 0;
}
.footer-contact-info img {
  margin-right: 12px;
  max-height: 22px;
}
.course-design .product:hover .btn-primary {
  color: #fff;
}
.trending-courses-group:hover {
  background: #0857a7;
}
.breadcrumb-bar {
  background: transparent;
}
.inner-banner {
  padding: 65px 0;
}
.feature-bg:hover,
.product:hover {
  background: var(--secondary-clr);
}
.video-details h2 {
  color: var(--primary-clr);
}
.btn-primary,
.btn-enroll {
  background-color: var(--secondary-clr) !important;
  border: 1px solid var(--secondary-clr);
  border-radius: 50px;
  padding: 8px 30px;
}
.all-category .btn-primary:hover {
  background-color: var(--primary-clr);
  border: 3px solid var(--secondary-clr);
  color: #fff;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #fff;
  background-color: var(--secondary-clr);
  border: 1px solid var(--secondary-clr);
  filter: brightness(85%);
}
.btn-primary.active:not(:disabled):not(.disabled),
.btn-primary:active:not(:disabled):not(.disabled),
.show > .btn-primary.dropdown-toggle {
  background-color: var(--secondary-clr);
  border-color: var(--secondary-clr);
}
.btn-enroll:hover {
  border: 1px solid var(--primary-clr);
  background: var(--primary-clr);
}


/*------------------------------
HEADER
-------------------------------*/

.header {
  box-shadow: 0 2px 7px 0 hsla(0,0%,76.5%,.5);
}
.main-nav > li .submenu li a {
  white-space: normal;
}

.user_initials_icon {
    color: #fff;
    background: var(--secondary-clr);
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
}

/*------------------------------
Homepage
-------------------------------*/
.home-slide {
  min-height: calc(100vh - 90px);
}
.homeBanner {
  position: absolute;
  left: 0;
  top: 0;
  max-height: calc(100vh - 95px);
  overflow: hidden;
  width: 100%;
}
.homeBanner img {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  /* max-height: calc(100vh - 200px); */
  object-fit: cover;
}
.BannerData {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  text-align: center;
  background: #ffffffd4;
  width: 100%;
  padding: 20px;
}
.BannerData h1 {
  color: var(--primary-clr);
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
}
.goals-section-five {
  position: relative;
  background: #ddd;
  background-image: url(../../assets/img/library.jpg);
  padding: 60px 0;
  background-size: cover;
  background-attachment: fixed;
}
.goals-section-five::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(237, 237, 237, 0.8);
  z-index: 0;
}
.goals-count-five {
  border-left: 1px solid var(--secondary-clr);
}
.galleryBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14rem;
  background: var(--primary-clr);
  background-image: url(../../assets/img/WSDI_Gallary_bg.jpg);
  background-position: top -10rem center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.galleryBanner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14rem;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}
.SECTORS .categories-icon img {
    width: 100%;
    height: 80px;
    max-height: 80px;
    object-fit: cover;
    border-radius: 10px;
}
.SECTORS .categories-content h3 {
  text-align: center;
  font-size: 1rem;

}
.ExpertiseArea .categories-icon img {
  width: 44px !important;
  height: 44px !important;
}
.ExpertiseArea .categories-content h3 {
  text-transform: capitalize;
}


/*------------------------------
SELECT-CHAPTER
-------------------------------*/
.courseList .course-info {
  margin-top: 6px;
  margin-bottom: 8px;
}

.pagination  li .page-link {
  margin-right: 15px;
  border: 1px solid #FFDEDA;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-item.active .page-link {
  background-color: var(--secondary-clr);
  border-color: var(--secondary-clr);
}
.pagination .page-item:last-child .page-link {
  border-radius: 0.2rem;
  width: 54px;
}

/*#######################
 CONTENT LIST 
 ##########################*/
.overview-sec img {
  max-width: 100%;
}
.sliderGallery .owl-item img {
  max-height: 400px;
  object-fit: cover;
}
.sliderGallerythumbs .owl-item img {
  max-height: 80px;
  object-fit: cover;
}


/*#######################
 CONTENT LIST 
 ##########################*/
 .myCourses .product-img img {
    max-height: 140px;
    object-fit: cover;
 }

 

/*######### MEDIA QUERY START HERE ########*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {
  .main-nav ul {
    background-color: #00000038;
  }
  .main-nav > li {
    border-bottom: 1px solid #fff;
  }
  .main-nav > li.has-submenu > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    transition: all 0.3s;
  }
  .main-nav > li.has-submenu > a.submenu:after {
    transform: rotate(180deg);
  }
  .header-navbar-rht {
    display: inline-block;
    position: absolute;
    right: 14px;
  }
  .header-navbar-rht > li > a {
    font-size: 18px;
}
  .breadcrumb-bar {
    display: none;
  }

  .footer .footer-widget .footer-logo img {
    max-height: 40px;
    width: auto;
 }
  .trending-courses-two {
    flex-direction: column!important;
  }
  .course-column-img,
  .course-content-column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    width: 100%;
}
.course-content-column {
  padding: 0;
}
.featured-info-two h3 a {
  font-size: 1.2rem !important;
  margin-top: 10px;
}
.inner-banner {
  padding: 30px 0;
}
.page-content {
  padding: 14px 0 30px;
}
.cart-widget {
  padding: 14px 0;
}
.footer-bottom {
  margin-bottom: 0;
  padding-top: 20px;
}
.footer-bottom .copyright {
  padding: 0;
}
.footer-top {
  padding-bottom: 0 !important;
  padding-top: 0;
}

/* HOMEPAGE  */
.mentoring-course .owl-stage {
  padding-top: 0;
}
.career-group {
  margin: 0;
}
.course-radius {
  margin-bottom: 26px;
}
.course-widget {
  padding: 20px 20px 0;
} 
.student-course, .how-it-works, .new-course, .trend-course, .share-knowledge {
  padding: 20px 0;
}
.feature-text {
  max-width: 80%;
}
.feature-bg {
  min-height: 340px !important;
}
.home-slide {
  padding: 50px 0 60px;
}
.goals-count-five {
  border-left: 0px solid var(--secondary-clr);
}
.SECTORS.topcategory-sec .categories-item {
  padding: 20px;
}
.SECTORS .categories-content h3 {
  font-size: 14px;
}
.galleryBanner::before,
.galleryBanner::after {
  background-position: top -2rem center;
  height: 8rem;
}
.home-three-favourite-carousel .owl-dots {
  margin-top: 20px;
}



/* SELECT-CHAPTER */
.showing-list {
  margin-bottom: 8px;
}
.list-course .product-content {
  display: flex;
  flex-direction: column-reverse;
}
.head-course-title {
    flex-direction: column;
    align-items: start;
}
.head-course-title .title {
  margin-right: 0;
}
.head-course-title > div:first-child {
  padding-right: 0 !important;
} 
.head-course-title .all-btn {
  width: 100%;
  margin-left: auto;
}
.head-course-title .all-category .btn-primary {
  width: 100%;
  margin: 10px 0;
}
.log-wrap .login-wrapper {
  justify-content: center;
}
.show-filter {
  margin-top: 10px;
}








} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

} 

@media only screen and (max-width: 992px) {
  body {padding-top: 50px;}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

/*background*/
.lg-bg-primary {background: var(--primary-clr) !important;}
.lg-bg-secondary {background: var(--secondary-clr) !important;}
.lg-bg-white {background: #fff !important;}
.lg-bg-greylight {background: #f3f3f3 !important;}
.lg-bg-t {background: transparent !important;}  
.login-card{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* HEADER CSS */
body {
  padding-top: 90px;
}

.submenu {
  width: 70vw;
  left: -30vw !important;
  column-count: 3;
}
.main-nav li .submenu::before {
  left: 32.5vw;
}
/* HEADER CSS END */

}  
    
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1299.98px) {
  .topcategory-sec .categories-content h3 {
    font-size: 12px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}



 