.gallery-tab {
  display: none;
}

.gallery-tab.active {
  display: block;
}

.gallery-tabs button {
  background: #eee;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}

.gallery-tabs button.active {
  background: #ffbb38;
  color: #fff;
}

.mission-slider img {
  width: 100%;
  border-radius: 12px;
}



/* arrows */
.slick-prev:before,
.slick-next:before {
  color: #ffbb38;
  font-size: 30px;
}

.slider-wrapper {
  position: relative;
}

/* common button styles for the custom prev/next controls */
.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;

  pointer-events: none;
}

.custom-prev span,
.custom-next span {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffbb38;
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease-in;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.custom-prev span:hover,
.custom-next span:hover {
  transform: scale(1.03);
  background-color: #00afaa;
  color: #ffffff;
}
.custom-prev span svg,
.custom-next span svg {
  transition: all 0.3s ease-in;
}
.custom-prev span:hover svg {
  transform: translateX(-4px);
}
.custom-next span:hover svg {
  transform: translateX(4px);
}

.custom-prev {
  left: -80px;
}
.custom-next {
  right: -80px;
}

@media (max-width: 1199px) {
  .slider-controls-custom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
  }
  .custom-prev,
  .custom-next {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;

    pointer-events: none;
  }

  .custom-prev {
    left: 0;
  }
  .custom-next {
    right: 0;
  }
  .custom-prev span,
  .custom-next span {
    width: 44px;
    height: 44px;
  }
}
