/*=====================================
           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;
  }
}

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

.error {
  text-align: center;
}

.error h1 {
  font-size: 350px;
  line-height: 280px;
  letter-spacing: -10px;
  margin-bottom: 25px;
  font-family: var(--pfamily);
  color: var(--brandcolor);
}

.error h2 {
  font-size: 35px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .error-part {
    padding: 60px 0px;
  }
  .error h1 {
    font-size: 160px;
    line-height: 90px;
    letter-spacing: -5px;
    margin-bottom: 45px;
  }
}

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