.gallery {
  background-color: #f5f5f5;
  padding-bottom: 128px;
  margin-top: 32px;
}

.gallery-headline {
  padding-top: 72px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallery-headline p {
  width: 600px;
  margin-bottom: 44px;
  margin-top: 32px;
  text-align: center;
}

.gallery-cards {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gallery-card {
  background: #f5f5f5;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 8px solid #f5f5f5;
}

.gallery-two {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-two div {
  width: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.2);
}

.small {
  width: 15%;
  height: 360px;
}

.big {
  width: 35%;
  height: 720px;
}

.full {
  width: 100%;
  height: 360px;
}

.contact-cta {
  margin-top: 44px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.contact-cta img {
  height: 36px;
}

.contact-cta:hover {
  cursor: pointer;
  color: var(--color-accent);
}

.mySwiper {
  display: none !important;
}

.swiper {
  width: 440px;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */
/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1600px) and (max-width: 1800px) {
}

/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
}

/* Medium Devices (768px – 991px) */
@media (max-width: 991px) {
  .gallery-card {
    display: none;
  }

  .mySwiper {
    display: block !important;
  }

  .contact-cta {
    justify-content: center;
  }
}

/* Small Devices (576px – 767px) */
@media (max-width: 767px) {
  .gallery {
    padding-bottom: 72px;
  }
  .gallery-headline p {
    width: 400px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  .gallery-headline p {
    width: 280px;
  }
  .swiper {
    width: 308px;
  }
  .swiper-slide img {
    height: 450px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 350px) {
  .swiper {
    width: 240px;
  }
}

