.breadcrumb {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px;
  margin-bottom: 0px;
  background: none;
  border-radius: 0px;
}
.breadcrumb-item {
  text-transform: capitalize;
}
.breadcrumb-item a {
  color: var(--white);
  text-transform: capitalize;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: var(--light-white);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}
.single-banner {
  background: url(../../img/single-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 155px 0px 90px;
}
.single-content {
  text-align: center;
}
.single-content h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--white);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .single-banner {
    padding: 80px 0px;
  }
  .single-content h2 {
    font-size: 38px;
  }
}
.gallery-part {
  padding: 100px 0px 0px;
}
.gallery-img {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-img:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.gallery-img::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(91, 68, 114, 0.2)),
    to(rgba(203, 48, 255, 0.3))
  );
  background: linear-gradient(rgba(91, 68, 114, 0.2), rgba(203, 48, 255, 0.3));
}
.gallery-img img {
  width: 100%;
  border-radius: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.gallery-gape {
  margin-top: -100px;
}
.gallery-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .gallery-part {
    padding: 20px 0px;
  }
  .gallery-gape {
    margin-top: 0px;
  }
  .gallery-btn {
    margin-top: 20px;
  }
}
@media (min-width: 351px) and (max-width: 575px) {
  .gallery-img {
    width: 350px;
    margin: 0 auto 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gallery-part {
    padding: 80px 0px;
  }
  .gallery-gape {
    margin-top: 0px;
  }
  .gallery-btn {
    margin-top: 20px;
  }
}
