header .navigation-menu a {
  font-weight: 200;
  letter-spacing: 1px;
  color: var(--text);
  transition: all 0.55s ease-in-out;
}
header .navigation-menu a:hover {
  color: #00000097;
}
.ourOfferingsBox {
  text-align: center;
}
.ourOfferings img {
  width: 50px;
  height: 50px;
  margin: 0 auto 25px auto;
}
.reviews p {
  margin-top: 25px;
  font-weight: 300;
  font-size: 15px;
}
.gallery .item {
  position: relative;
  overflow: hidden;
}
.gallery img {
  display: block;
  width: 100%;
  height: 671px;
  object-fit: cover;
  transition: transform 0.55s ease-in-out;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.gallery .img-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  inset: 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
}
.gallery .item:hover img {
  transform: scale(1.1);
}
.gallery .item:hover .img-overlay {
  opacity: 1;
}
.gallery .owl-stage {
  margin-left: 275px;
}
.owl-carousel.owl-drag .owl-item {
  width: 500px !important;
}
.owl-carousel .owl-nav button {
  background: none;
}
.owl-carousel .owl-nav button i {
  color: #fff9f2;
  font-size: 40px;
  opacity: 0.5;
  transition: 0.55s ease-in-out;
}
.owl-carousel .owl-nav button i:hover {
  opacity: 1;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: unset;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 90%;
  left: 4rem;
  right: 4rem;
}
.owl-carousel .owl-nav .owl-prev {
  float: left;
}
.owl-carousel .owl-nav .owl-next {
  float: right;
}

/* Responsive */
@media (max-width: 767px) {
  .reviews p {
    margin-top: 15px;
  }
  .gallery .item:hover img {
    transform: unset;
  }
  .gallery .item:hover .img-overlay {
    opacity: 0;
  }
  .gallery .owl-stage {
    margin-left: 0;
  }
  .owl-carousel.owl-drag .owl-item {
    width: unset !important;
    margin-right: 10px !important;
  }
  .gallery img {
    height: 300px;
  }
  .gallery .item {
  margin-left: 10px;
  width: 100%;
}
  .owl-carousel .owl-nav {
    top: 44%;
    left: 1rem;
  }
}
