.pg-blocks {
  width: 930px;
  height: 320px;
  /* background: silver; */
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.pg-blocks > div:hover {
  transition: 2s;
  background-size: 130% 130%;
  background-position: center;
}

.pg-blocks > div {
  /* background: blue; */
  position: relative;
  cursor: pointer;
}

.ph-1, .ph-2, .ph-3, .ph-4, .ph-5, .ph-6, .ph-7 {
  overflow: hidden;
  display: block;
  position: relative;
}

.ph-1:after, .ph-2:after, .ph-3:after, .ph-4:after, .ph-5:after, .ph-6:after, .ph-7:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: 1s;
}

.ph-1:hover:after, .ph-2:hover:after, .ph-3:hover:after, .ph-4:hover:after, .ph-5:hover:after, .ph-6:hover:after, .ph-7:hover:after {
  transition: 1s;
  opacity: 1;
}

.ph-1:hover img, .ph-2:hover img, .ph-3:hover img, .ph-4:hover img, .ph-5:hover img, .ph-6:hover img, .ph-7:hover img   {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.ph-1 img, .ph-4 img, .ph-6 img, .ph-7 img {
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  width: 100%;
  height: auto;
}

.ph-2 img, .ph-3 img, .ph-5 img {
  width: auto;
  height: 100%;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
}

.ph-1 {
  width: 350px;
  height: 190px;
}

.ph-2 {
  width: 170px;
  height: 120px;
  top: 10px;
}

.ph-3 {
  width: 170px;
  height: 120px;
  top: 200px;
  right: 170px;
}

.ph-4 {
  width: 270px;
  height: 140px;
  left: 10px;
  bottom: 120px;
}

.ph-5 {
  width: 250px;
  height: 170px;
  top: 150px;
  right: 260px;
}

.ph-6 {
  width: 290px;
  height: 140px;
  right: -20px;
  bottom: 170px;
}

.ph-7 {
  width: 310px;
  height: 170px;
  top: 150px;
  right: 290px;
}

.photogallery button {
  margin-top: 60px;
}

.photo-view {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .7);
  z-index: 998;
}

.pv-main {
  width: 100%;
  height: 77%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pv-main-photo {
  max-width: 90%;
  max-height: 90%;
}

.pv-other {
  width: 100%;
  height: 23%;
  /* background: silver; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pv-other-slider {
  height: 90%;
  width: 80%;
}

.pv-slide {
  background: #fff;
  margin: 0 20px;
}

.pv-slide img {
  /* width: 100%; */
  height: 90px;
  /* height: 100px; */
}

.pv-other-slider .slick-prev, .pv-other-slider .slick-next {
  /* position: relative; */
  top: 40%;
  background: url("/img/icons/right-white-arrow.svg") no-repeat;
  background-size: cover;
}

.pv-other-slider .slick-prev {
  left: -7%;
  transform: rotate(-180deg);
}

.pv-other-slider .slick-next {
  right: -7%;
  transform: rotate(0);
}

