.zizo .btn {
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #2e1866;
}

.btn:hover {
  color: #1d0e45;
}

.zizo .btn-primary {
  background-color: #2e1866;
}

.zizo .btn-primary:hover {
  background-color: #8346a3;
  color: white;
}

.banner .btn {
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #2e1866;
}

.btn:hover {
  color: #1d0e45;
}

.banner .btn-primary {
  background-color: #2e1866;
}

.banner .btn-primary:hover {
  background-color: #8346a3;
  color: white;
}

.carousel-section {
  margin-bottom: 80px;
}

.video-gallery {
  margin-bottom: 80px;
}

.image-gallery .image-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(56, 32, 103, 0.5);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background-color 0.3s ease;
}

.video-thumbnail:hover .play-icon {
  background-color: rgba(56, 32, 103, 0.2);
}

.carousel-section .carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  background-color: #ce1417;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

#newsCarousel .carousel-indicators {
  position: static;
  margin-top: 10px;
}
#newsCarousel .carousel-indicators button {
  width: 25px;
  height: 8px;
  background-color: #2e1866;
  border: 0;
  border-radius: 50px;

  text-indent: -9000px;
  box-shadow: 0 0 50px #9a9a9a;
  min-width: auto;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
#newsCarousel .carousel-indicators button.active {
  opacity: 1;
  width: 50px;
  background-color: #805485;
}
#newsCarousel .carousel-inner {
  padding-bottom: 25px;
}

@media (max-width: 768px) {
  .banner .btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

#newsCarousel .carousel-item .row {
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  #newsCarousel .carousel-item .row {
    flex-direction: row;
  }
}

.video-gallery .col-md-4,
.image-gallery .col-md-4 {
  margin-bottom: 15px;
}

.modal-body {
  padding: 0;
}
#lightboxContent img,
#lightboxContent video {
  max-width: 100%;
  height: auto;
}
