.menu-link-parent-text {
  color: #2a3668 !important;
}

.gallery-wrapper {
  align-items: center;
}

.gallery-wrapper > p:nth-child(1) {
  font-size: 48px;
  font-weight: bold;
}

.gallery-content-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4rem;
}

.gallery-img-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-img-container p {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.gallery-img-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.gallery-img-wrapper img {
  width: 20rem;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
}

.gallery-img-wrapper img:hover {
  transform: scale(0.9);
  opacity: 0.3;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 210;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  top: 5.5rem;
}

/* Add Animation */
.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

.modal-content-out {
  animation-name: zoom-in;
  animation-duration: 0.6s;
}

.blue-button {
  width: 100px;
}

.blue-button:hover {
  background-color: #4e5b8f;
  border-color: #4e5b8f;
  color: white;
}

.deactive-button {
  background-color: transparent;
  color: #2a3668;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes zoom-in {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 75px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 1.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* ------- */
/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides iframe {
  width: 640px;
  height: 400px;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0;
  user-select: none;
  text-decoration: none;
}

/* Position the "prev button" to the right */
.prev {
  left: -50px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* Position the "next button" to the right */
.next {
  right: -50px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
/* -------- */

/* --- SHIMMER --- */
.shimmer-wrapper {
  position: relative;
  overflow: hidden;
  background: #eee;
}
.shimmer-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  100% {
    transform: translateX(30vw);
  }
}

/* --- IMAGE BLUR --- */
.lazy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.lazy-img.loaded {
  opacity: 1;
  filter: blur(0);
}

/** mobile **/
@media (max-width: 700px) {
  .gallery-content-body {
    margin: 1.7rem 1rem;
    gap: 2rem;
  }

  .gallery-wrapper > p:nth-child(1) {
    margin: 0;
  }

  .gallery-img-container p {
    text-align: center;
  }

  .gallery-img-wrapper {
    flex-direction: column;
  }

  .gallery-img-wrapper img {
    width: 21.2rem;
  }

  .modal-content {
    width: 100%;
    top: 2.5rem;
  }

  .close {
    right: 1rem;
  }

  .mySlides iframe {
    width: 300px;
    height: 220px;
  }

  .prev,
  .next {
    font-size: 11px;
    padding: 10px;
  }

  /* Position the "prev button" to the right */
  .prev {
    left: -30px;
  }

  /* Position the "next button" to the right */
  .next {
    right: -30px;
  }

  .prev:hover,
  .next:hover {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
  }
}
