.sectionRealization {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  max-width: 1250px;
  margin-bottom: 100px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 35px 20px 20px 20px;
  gap: 30px 30px;
}

.thumbs {
  border: solid 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  cursor: pointer;
  max-height: 150px;
  max-width: 200px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s;
}

.thumbs:hover {
  transform: scale(1.1);
}

.thumbs img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.popup {
  align-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
}

.popup.hidden {
  display: none;
}

.popupImg {
  max-height: 80%;
  max-width: 80%;
}

.popupClose {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 64px;
  position: fixed;
  right: 64px;
  top: 36px;
}

.popupArrow {
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 64px;
  height: 64px;
  line-height: 64px;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  width: 64px;
}

.popupClose,
.popupArrow {
  opacity: 0.5;
  transition: opacity 0.3s;
}

.popupClose:hover,
.popupArrow:hover {
  opacity: 1;
}

.popupArrowLeft {
  left: 15%;
}

.popupArrowRight {
  right: 15%;
}

@media (max-width: 1000px) {
  .sectionRealization{
    height: auto;
  }
}