/*--- General ---*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: #fff;
  color: #000;
}

a {
  color: #285037;
  text-decoration: none;
}

a:hover {
  color: #1bc47d;
  text-decoration: none;
}

/*--- Header ---*/
#header {
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}
#header .navbar-nav .nav-item {
  padding-left: 6px;
}
#header .navbar-nav .nav-item .nav-link {
  color: #fff;
  padding: 4px 16px;
}
/*#header .navbar-nav a.nav-link {*/
/*color: #fff;*/
/*}*/


.home-fixed-color .navbar-nav a.nav-link {
color: #fff;
}

#header.header-scrolled .navbar-nav a.nav-link {
color: #285037;
}
#header.header-scrolled .navbar-nav .nav-item .nav-link {
  color: #285037;
}
#header.header-scrolled .navbar-nav .nav-item .active {
  /*color: #fff;*/
}
#header.header-scrolled .navbar-nav .nav-item .active svg path {
  fill: #fff;
}
#header.header-scrolled .navbar-nav .nav-item .nav-link svg path {
  fill: #285037;
}
#header .navbar-nav .nav-item .active {
  /*background-color: #1bc47d;*/
  border-radius: 2px;
  display: inline-block;
}
.header-scrolled {
  background-color: #fff;
  transition: all 0.5s;
  box-shadow: 2px 2px 6px rgb(0 0 0 / 32%);
}

@media (max-width: 991px) {
  #header .navbar .navbar-toggler {
      color: #fff;
      background: #285037;
      outline: none;
      border: 0;
      box-shadow: none;
  }
  #header .navbar .navbar-collapse {
      background: #285037;
      padding: 10px;
      width: 100%;
      position: absolute;
      left: 0;
      top: 86px;
  }
  #header .navbar-nav .nav-item {
    margin: 10px 0;
  }
  #header.header-scrolled .navbar-nav .nav-item .nav-link {
    color: #fff;
  }
  #header.header-scrolled .navbar-nav .nav-item .nav-link svg path {
    fill: #fff;
  }
}

/* other page header */
#header.otherpage .navbar-nav .nav-item .nav-link {
  color: #285037;
}
#header.otherpage.header-scrolled .navbar-nav .nav-item .nav-link svg path {
  fill: #285037;
}

/*--- Banner ---*/
#banner {
  width: 100%;
  height: 480px;
  background: url(../img/banner-home.jpg) center center;
  background-size: cover;
  position: relative;
}
#banner .banner-content {
  top: 40%;
  position: absolute;
  width: 100%;
}
#banner .banner-head {
  color: #285037;
  font-size: 42px;
  font-weight: bold;
  /*padding-bottom: 25px;*/
}
#banner .banner-input input {
  border: 1px solid #285037;
  background-color: #285037;
  color: #fff;
}
#banner .banner-input input:focus {
  box-shadow: none;
  outline: none;
}
#banner .input-group-text {
  background-color: #285037;
  border: 1px solid #285037;
  color: #fff;
}
#banner .input-group-text i {
  font-size: 22px;
}
input#discover-search::placeholder {
  color: #fff;
  opacity: 65%;
  letter-spacing: 1px;
}

/*--- Footer ---*/
#footer {
  padding: 20px 0;
  font-size: 16px;
  color: #fff;
  background-color: #165233;
}
#footer .head {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}
#footer .list {
  padding: 6px 0;
}
#footer a {
  color: #fff;
}
#footer a i {
  padding-right: 4px;
}
#footer .social-media {
  display: flex;
}
#footer .social-media a.s-icon {
  margin-right: 10px;
  font-size: 22px;
}
#footer .copyright {
  padding: 10px 0;
  margin-top: 20px;
  text-align: center;
}

/*--- Main---*/
#main .page-head {
  color: #285037;
  font-size: 22px;
  font-weight: bold;
  padding: 20px 0;
}
.expand {
  margin: 40px 0;
}
.more {
  padding: 10px 0;
}
.more a {
  color: #000;
}
.more a:hover {
  color: #1bc47d;
}
.Choose {
  font-size: 18px;
}

/* Tab Styles */
.pc-tab > input,
.pc-tab section > div {
  display: none;
}

#tab1-1:checked ~ section .tab1-1,
#tab1-2:checked ~ section .tab1-2,
#tab1-3:checked ~ section .tab1-3,
#tab2-1:checked ~ section .tab2-1,
#tab2-2:checked ~ section .tab2-2,
#tab2-3:checked ~ section .tab2-3 {
  display: block;
}

.pc-tab {
  width: 100%;
  margin: 0 auto;
}
.pc-tab ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pc-tab ul li label {
  float: left;
  padding: 6px 25px;
  border-bottom: 0;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.pc-tab ul li label:hover {
  color: #285037;
}
.pc-tab ul li label:active {
  color: #285037;
}
.pc-tab ul li:not(:last-child) label {
  border-right-width: 0;
}
.pc-tab section {
  padding: 20px 10px;
  width: 100%;
  background: #fff;
  line-height: 1.5em;
  color: #000;
  font-size: 16px;
  clear: both;
}
#tab1-1:checked ~ nav .tab1-1 label,
#tab1-2:checked ~ nav .tab1-2 label,
#tab1-3:checked ~ nav .tab1-3 label,
#tab2-1:checked ~ nav .tab2-1 label,
#tab2-2:checked ~ nav .tab2-2 label,
#tab2-3:checked ~ nav .tab2-3 label {
  background: white;
  color: #285037;
  position: relative;
}
#tab1-1:checked ~ nav .tab1-1 label:after,
#tab1-2:checked ~ nav .tab1-2 label:after,
#tab1-3:checked ~ nav .tab1-3 label:after,
#tab2-1:checked ~ nav .tab2-1 label:after,
#tab2-2:checked ~ nav .tab2-2 label:after,
#tab2-3:checked ~ nav .tab2-3 label:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #285037;
  left: 0;
  bottom: -1px;
}

/* Slider Arrow */
.slider-arrow {
  float: right;
  padding-right: 10px;
}
.slider-arrow a i {
  font-size: 28px;
  padding: 0 6px;
}

/* owl-carousel */
.owl-carousel .owl-dots {
  display: none;
}
.owl-carousel .owl-nav {
  text-align: center;
}
.owl-carousel .owl-nav button {
  /*background: #285037 !important;*/
  width: 32px;
  height: 32px;
  color: #285037 !important;
  font-size: 40px !important;
  border-radius: 50%;
  margin: 0 10px;
}
.owl-carousel .owl-nav button span {
  margin-top: -15px;
  margin-left: -5px;
  position: absolute;
}

/* Box */
.box {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0px 2px 6px rgb(0 0 0 / 25%);
}
.box .box-img {
  height: 260px;
  text-align: center;
}
.box .box-img img {
  height: 260px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.box .head {
  color: #285037;
  font-size: 19px;
  font-weight: bold;
  padding: 10px;
  height: 75px;
}
.box .text {
  color: #646161;
  font-size: 15px;
  font-weight: bold;
  padding: 0 10px;
  height: 189px;
  overflow: hidden;
}
.box .review {
  display: flex;
  padding: 10px 0;
  padding-right: 4px;
  align-items: center;
}
.box .review .rate {
  color: #C09932;
  font-size: 18px;;
  font-weight: bold;
}
.twitter-img {
      width: 42px;
    height: 42px;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 4px;
}

.box .detail-part {
  display: flex;
  margin: 15px;
  text-align: center;
}
.box .detail-part i.bi {
  font-size: 32px;
  font-weight: bold;
  color: #285037;
}
.box .detail-part .label {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
}
.box .detail-part .data {
  font-size: 17px;
}
.box .details-start {
  background-color: #F4F4F4;
  padding: 10px;
  margin-right: 10px;
  width: 100%;
}
.box .details-end {
  background-color: #F4F4F4;
  padding: 10px;
  margin-left: 10px;
  width: 100%;
}
.box .go-btn {
  padding: 20px 0;
  text-align: center;
}
.box .go-btn a {
  padding: 10px 30px;
  background-color: #285037;
  color: #fff;
  width: max-content;
  border-radius: 4px;
}

/* browse-courses */
.browse-courses {
  color: #fff;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
  background-color: #285037;;
  /*background: url(../img/b-courses.svg) no-repeat center right #285037;*/
}
.browse-courses .text {
  font-style: italic;
  font-size: 28px;
  padding: 10px;
  letter-spacing: 0.4px;
}
.browse-courses a.btn {
  background-color: #285037;
  padding: 10px 15px;
  margin-top: 20px;
  color: #fff;
  align-items: center;
  text-align: center;
}
.browse-courses a.btn:hover {
  background-color: #1bc47d;
  color: #fff;
}

/* Our Courses */
.our-courses {
  margin: 40px 0;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #C9DBD0;
  padding: 30px 0;
  margin: 40px 0;
}
.testimonial-section .text {
  font-style: italic;
  font-size: 24px;
  color: #5B5B5B;
}

/* Our Features */
.our-features {
  margin: 40px 0;
}
.our-features .head {
  color: #285037;
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 10px;
  text-align: left;
}
.our-features .text {
  color: #292222;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
}

/* Our Teachers */
.our-teachers {
  background-color: #F4FAFC;
  padding: 20px;
  text-align: center;
}
.our-teachers img.rounded {
	max-width: 100%;
}
.our-teachers .name {
  color: #285037;
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
}
.our-teachers .degree {
  color: #646161;
}
.our-teachers .dec {
  font-size: 18px;
  color: #000;
  padding: 10px;
}

/* What We */
.what-we {
  margin: 40px 0;
  color: #464646;
  font-size: 22px;
  line-height: 28px;
}

.what-we .col-lg-7  {
	color: #292222;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
}


/* Take Tour */
.take-tour {
  margin: 40px 0;
  padding: 40px 0;
  background-color: #F4FAFC;
}
.take-tour .title {
  font-size: 22px;
  padding: 10px 0;
  color: #4b755b;
  font-weight: bold;
  text-decoration: underline;
}
.take-tour .guide-btn1 {
  background-color: #4b755b;
  color: #fff;
  padding: 40px;
  width: 100%;
  text-align: center;
  font-size: 22px;
   background-image: #4b755b;
}
.take-tour .guide-btn1 i {
  font-size: 42px;
  color: #fff;
}
.take-tour .guide-btn2 {
  background-color: #FAFAFA;
  color: #4b755b;
  padding: 40px;
  width: 100%;
  text-align: center;
  font-size: 22px;
}
.take-tour .guide-btn2 i {
  font-size: 42px;
  color: #4b755b;
}

/* Join Us */
.join-us {
  padding: 30px 0;
  margin: 40px 0;
  color: #fff;
}
.join-bg {
  background-color: #4b755b;
  padding: 20px;
}
.join-us .title {
  font-size: 22px;
  padding: 15px 0;
}
.join-us .text {
  font-size: 18px;
  padding: 15px 0;
  font-style: italic;
}
.join-us .guide-btn1 {
  background-color: #4b755b;
  color: #fff;
  padding: 40px;
  width: 100%;
  text-align: center;
  font-size: 22px;
}
.join-us .guide-btn1 i {
  font-size: 42px;
  color: #fff;
}
.join-us .btn-a {
  margin: 20px auto;
  width: 205px;
}
.join-us .btn-a a {
  background-color: #285037;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  border-radius: 4px;
  margin: 20px 0;
}

/* Join Team */
.join-team {
  background-color: #F4FAFC;
  padding: 30px 0;
  margin: 40px 0;
}
.join-team  .img {
  height: 300px;
}
.join-team  .title {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 20px;
  color: #4b755b;
}
.join-team  .text {
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}

/* Modal */
.modal .login img {
  width: 250px;
  height: auto;
}

.modal .modal-btn {
  padding: 10px 30px;
  background-color: #285037;
  color: #fff;
  width: max-content;
  border-radius: 4px;
  border: 0;
}
.modal .modal-btn:hover {
  background-color: #1bc47d;
}
.modal .other-btn i {
  font-size: 32px;
  color: #285037;
}
.modal .other-btn i:hover {
  color: #1bc47d;
}

/* Other Page */
.other-page {
  margin-top: 95px;
}
/* Fillter */
.search-section {
  margin: 40px 0;
}
.searchBar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#searchQueryInput {
  width: 100%;
  height: 55px;
  background: #165233;
  color: #fff;
  outline: none;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1rem;
  text-align: left;
  cursor: default;
}
#searchQuerySubmit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -3.5rem;
  background: none;
  border: none;
  outline: none;
}
input#searchQueryInput::placeholder {
  color: #fff;
  letter-spacing: 1px;
}
.search-section .form-control, .form-select {
  border: 1px solid #000;
}
.resetFilter-btn {
  border: 0;
   background-color: #fff;
   padding: 0.375rem 0.75rem;
}
.courses-set {
  border: 2px solid #165233;
  border-radius: 4px;
  margin: 40px 0;
  width: 100%;
}
.courses-set .courses-img {
  height: 260px;
  text-align: center;
}
.courses-set .courses-img img {
  height: 260px;
  object-fit: cover;
}
.courses-set .details {
  padding: 15px;
}
.courses-set .name {
  color: #000;
  font-size: 26px;
  font-weight: bold;
}
.courses-set .amount {
  margin-left: auto;
  color: #165233;
}
.courses-set .amount span {
  font-size: 18px;
  font-weight: bold;
}
.courses-set .details i {
  font-size: 20px;
}

.rating{
margin-top: 1px;    
}

/*.courses-set .rating  {*/
/*  margin-top: -10px;*/
/*}*/

.courses-set .rating a {
  color: #C9DBD0;
  font-size: 26px;
  /*margin-top: -5px;*/
}
.courses-set .rating a:hover {
  color: #165233
}

 /*Responsive*/
@media (max-width: 576px) {
  #banner .banner-content {
     top: 60%;
    }
    .our-features .d-flex.align-items-center {
  display: block !important;
}
}

/* Media query */

@media screen and (max-width: 767px) {
  .browse-courses .text {
    background-color: #00000061;
    font-weight: 700;
}

#banner .banner-head {
 
  background-color: #ffffff94;
  font-weight: 800;
}
}


/***************************************************************************************************************************************/
