

.photo-galery-container {
  margin: 0 auto;
  margin-bottom: 170px;
  position: relative;
}

.photo-galery-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.photo-galery-text-container {
  width: 505px;
  padding: 0px;
  position: relative;
}

.photo-galery-text-container p {
  color: #7E804E;
  font-family: Addington CF;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  margin: 0;
}

.photo-galery-image-container {
  width: 50%;
  position: relative;
  width: 505px;
  height: 505px;
}

.photo-galery-image-container img {
  width: 505px;
  height: 505px;
  filter: drop-shadow(4px 4px 4px #000);
}

.photo-galery-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.photo-galery-rotate-button {
  position: absolute;
  top: calc(50% - 25px);
  width: 30px;
  height: 30px;
  background-color: #7E804E;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.photo-galery-rotate-button.left {
  left: -15px;
}

.photo-galery-rotate-button.right {
  right: -15px;
}

.photo-galery-secondary-images {
  justify-content: flex-end;
  position: absolute;
  bottom: 25px;
  left: 0;
  display: none;
}

.main-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 505px;
  height: 505px;
}

.photo-galery-image-container img {
  transition: opacity 0.3s ease-in-out;
}



@media (min-width: 1200px) {
  .photo-galery-text-container {
    width: 50%;
  }

  .photo-galery-content {
    flex-direction: row;
  }
  
  .photo-galery-secondary-images {
    display: flex;
  }

  .photo-galery-text-container {
    width: 50%;
    padding: 0px;
    position: relative;
    top: -193px;
  }

  .photo-galery-container {
    position: relative;
    top: 100px;
  }
}

.swiper-button-prev-gallery,
.swiper-button-next-gallery {
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background-color: #7E804E;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.swiper-button-prev-gallery {
  left: -15px;
}

.swiper-button-next-gallery {
  right: -15px;
}