.galerie {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.galerie__item {
  min-width: 343px;
  flex: 0 1 calc(33.333% - 6px);
  height: 296px;
  border-radius: 16px;
  overflow: hidden;
}

@media screen and (width <=1150px) {
.galerie__item {
  flex: 0 1 calc(49.9% - 6px) !important;
}
}

.galerie__item_hotel {
  transition: all 0.5s;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /*background-image: url("../../../images/about3_img.jpg");*/
}

.galerie__item_hotel:hover {
  transform: scale(1.04) !important;
}

@media screen and (width <=680px) {
  .galerie__item_hotel:hover {
    transform: scale(1) !important;
  }

  .galerie {
    margin-top: 24px;
  }

  .galerie__wrapper {
    padding: 0 16px;
  }

  .galerie__item {
    flex: 0 1 calc(100%);
  }

  .galerie__item:not(:first-child) {
    display: none;
  }
}