/*=====================================
           BREADCRUMB PART STYLE
======================================*/
.breadcrumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  padding: 0px;
}

.breadcrumb li {
  padding: 0px !important;
}

.breadcrumb li a {
  color: var(--graycolor);
}

.breadcrumb li a:hover {
  color: var(--brandcolor);
  text-decoration: underline;
}

.breadcrumb .active {
  color: var(--brandcolor);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--brandcolor);
  padding: 0rem .5rem !important;
}

/*=====================================
        SINGLE BANNER PART STYLE
======================================*/
.single-banner {
  background: url(../../images/banner/04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
  z-index: 1;
}

.single-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(92, 186, 71, 0.3)), to(rgba(85, 172, 65, 0.2)));
  background: linear-gradient(rgba(92, 186, 71, 0.3), rgba(85, 172, 65, 0.2));
  z-index: -1;
}

.single-content {
  text-align: center;
}

.single-content h2 {
  font-size: 38px;
  margin-bottom: 18px;
  color: var(--whitecolor);
}

@media (max-width: 767px) {
  .single-banner {
    padding: 80px 0px;
  }
  .single-content h2 {
    font-size: 35px;
  }
}

/*=====================================
            FAQ PART STYLE
======================================*/
.faq-part {
  padding: 100px 0px;
}

.faq-child {
  margin-bottom: 30px;
  background: var(--whitecolor);
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--brandcolor);
  border-right: 3px solid var(--brandcolor);
}

.faq-child:hover .faq-que button {
  color: var(--brandcolor);
}

.faq-child:last-child {
  margin-bottom: 0px;
}

.faq-que {
  cursor: pointer;
  padding: 25px 30px;
}

.faq-que button {
  border: none;
  outline: none;
  background: none;
  text-align: left;
  color: var(--headingcolor);
  font-size: 18px;
  font-weight: 500;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.faq-ans p {
  font-size: 16px;
  line-height: 26px;
  padding: 25px 30px;
  border-top: 1px solid var(--bordercolor);
}

@media (max-width: 767px) {
  .faq-part {
    padding: 20px 0px 0px;
  }
  .faq-parent {
    margin-bottom: 30px;
  }
  .faq-headingcolor h2 {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .faq-part {
    padding: 30px 0px 0px;
  }
}
