﻿/* swiper     */
.swiper {
  width: 100%;
  height: 200px;
  height: max-content;
}

.swiper-section {
  position: relative;
  width: 100%;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--neutral01100);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.swiper-slide-active img {
  transform: scale(1.1);
}

/* Custom Swiper Pagination */
.swiper-pagination {
  left: 5% !important;
  bottom: 5% !important; /* Adjust position */
  display: flex;
  z-index: 5 !important;
  justify-content: left;
  gap: 10px; /* Spacing between dots */
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5); /* Inactive bullets */
  transform: rotate(45deg); /* Turns them into diamonds */
  transition: background-color 0.3s ease, transform 0.3s ease;
  opacity: 1 !important; /* Ensures visibility */
  border-radius: 0;
}

/* Active Bullet */
.swiper-pagination-bullet-active {
  background-color: white !important; /* Active bullet */
  transform: rotate(45deg) scale(1.4);
}

/* overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(0, 16, 77, 0) 0%, rgba(0, 16, 77, 0) 50%, rgba(0, 16, 77, 1) 100%); */
  z-index: 1;
}

.overlay .c-title {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
}
.overlay .c-title h2 {
  font-size: 24px;
  font-weight: 500;
}

.overlay .microsoft-logo {
  position: absolute;
  bottom: 10%;
  right: 5%;
  text-align: center;
}

@media (max-width: 768px) {
  .overlay .c-title {
    bottom: 1%;
  }
  .overlay .c-title h2 {
    font-size: 14px;
    font-weight: 500;
  }
  .overlay .c-title a {
    font-size: 10px !important;
  }
  .overlay .microsoft-logo {
    position: absolute;
    bottom: 10%;
    right: 5%;
    text-align: center;
    width: 60px;
  }
}
