/* Branding colors */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #1e374d; /* Your background color */
  font-family: sans-serif;
  overflow: hidden; /* Hide any excess that might overflow */
}

/* Swiper container setup */
.swiper-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* To ensure the content aligns properly */
}

/* Individual slide setup */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e374d;
  width: 100%; /* Ensure the slide takes full width */
  height: 100%; /* Ensure the slide takes full height */
  position: relative;
}

/* Image wrapper to allow for border */
.swiper-slide .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px; /* Space for border */
  box-sizing: border-box;
  border: 4px solid #94fdf8; /* Border around image */
  box-shadow: 0 0 20px #94fdf8; /* Optional: shadow around border */
  background-color: #1e374d;
}

/* Image fit to container without cropping */
.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensure images are not cropped */
  width: 100%;
  height: 100%;
}
