/* Custom styles for top marquee */
.top-marquee {
  margin-top: 60px;
  margin-bottom: 10px;
  border-top: none;
  border-bottom: none;
  padding: 0;
}

/* Gray text stroke for top marquee */
.top-marquee .marquee-text {
  -webkit-text-stroke: 2px #888 !important;
}

/* Hover effect for top marquee - black */
.top-marquee .marquee-text:hover {
  -webkit-text-stroke: 2px #000 !important;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .top-marquee {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}


.footer-marquee.noborder {
  border: 0px;
  margin-top: 3vw;
}


.section-gap {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

/* Team photos grayscale effect */
.team-item .team-img img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.team-item:hover .team-img img {
  filter: grayscale(0%);
}

/* Project team items with background images grayscale effect */
.h6-project-item-inner {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.project-item:hover .h6-project-item-inner {
  filter: grayscale(0%);
}