video::-webkit-media-controls-fullscreen-button,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-overflow-button {
  display: none !important;
}

video::-webkit-media-controls,
video::-webkit-media-controls-timeline {
  margin-bottom: 5rem;
}

@media (max-width: 1750px) {
  video::-webkit-media-controls,
  video::-webkit-media-controls-timeline {
    margin-bottom: 2rem;
  }
}

#video-title {
  position: absolute;
  width: auto;
  height: 30px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 10px;
  text-transform: uppercase;
  z-index: 1;
  top: 30px;
  left: 30px;
  margin: 10px;
  font-weight: 400;
}

#mute-button {
  position: absolute;
  width: auto;
  height: 30px;
  mix-blend-mode: difference;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 10px;
  z-index: 1;
  bottom: 30px;
  right: 30px;
}

.close-lightbox {
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 1;
  -webkit-transition: border-color 0.3s linear, opacity 0.3s linear;
  transition: border-color 0.3s linear, opacity 0.3s linear;
}

.close-lightbox:hover {
  border-color: white;
  color: white;
}

.close-text {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  text-decoration: none;
}

.close-text:hover {
  color: white;
}

.filterDiv {
  display: none; /* Hidden by default */
}

.project-filter__button.active {
  color: #000;
  background-color: #fff;
}

.show {
  display: block;
}

.phone-text {
  color: #fff;
}

.portfolio-video__thumbnail {
  object-fit: cover;
  /* height: 100%; */
}

@media (max-width: 991px) {
  .portfolio-video__thumbnail {
    object-fit: fill;
    height: auto;
  }
}

.awards-container {
  width: 100%;
  padding: 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.award-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.award-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
