.gallery-container {
  position: relative;
  background-color: var(--Green-Light, #00ff6a);
  height: 100%;
  display: flex;
  margin-bottom: 10px;
}
.gallery-container .gallery-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-top: 5px;
  overflow: hidden;
}
.gallery-container .gallery-left .gallery-images-left {
  width: 100%;
  display: flex;
  background-color: var(--Green-Light, #00ff6a);
  height: 25%;
}
.gallery-container .gallery-left .gallery-images-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-container .gallery-left .image-list {
  width: 100%;
  display: flex;
  background-color: var(--Green-Light, #00ff6a);
  height: 25%;
}
.gallery-container .gallery-left .image-list ul {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
  gap: 5px;
}
.gallery-container .gallery-left .image-list ul li {
  width: 50%;
}
.gallery-container .gallery-left .image-list ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
.gallery-container .gallery-right {
  display: flex;
  width: 100%;
}
.gallery-container .gallery-right .gallery-images-right {
  width: 100%;
  display: flex;
  background-color: rgba(0, 77, 54, 0.7);
  height: auto;
}
.gallery-container .gallery-right .gallery-images-right img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 480px) {
  .gallery-container {
    flex-direction: column;
    height: auto;
  }
  .gallery-container .gallery-left .gallery-images-left img {
    height: 100%;
  }
  .gallery-container .gallery-left .image-list ul li img {
    height: 100%;
  }
  .gallery-container .gallery-right .gallery-images-right {
    margin-bottom: 5px;
  }
}

/*# sourceMappingURL=sponsorImageGallery.css.map */
