/* ---- isotope ---- */

.isotope {
  width: auto;
  height: auto;
}

.isotope:after {
  content: '';
  display: block;
  clear: both;
}

.isotope * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ---- .item ---- */

.isotope .item .screen-iso-item {
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.isotope .item .screen-iso-item.position-center {
  background-position: center center;
}

.isotope .item,
.isotope .grid-sizer {
  padding: 1px;
  float: left;
  width: 50%;
  height: 237px;
  transition-duration: .2s;
}

.isotope .item.width2 { width: 100%; }
.isotope .item.width3 { width: 100%; }
.isotope .item.width4 { width: 100%; }
.isotope .item.width5 { width: 100%; }
.isotope .item.width6 { width: 100%; }

.isotope .item.height2 { height: 474px; }
.isotope .item.height3 { height: 711px; }
.isotope .item.height4 { height: 948; }
.isotope .item.height5 { height: 1185px; }
.isotope .item.height6 { height: 1422px; }

.isotope .item:hover {
  cursor: pointer;
  -webkit-transform: scale(.99);
  -ms-transform: scale(.99);
  transform: scale(.99);
}

@media (min-width: 768px) {
  .isotope .item,
  .isotope .grid-sizer {
    width: 33.333333%;
  }

  .isotope .item.width2 { width: 66.666666%; }
  .isotope .item.width3 { width: 100%; }
  .isotope .item.width4 { width: 100%; }
  .isotope .item.width5 { width: 100%; }
  .isotope .item.width6 { width: 100%; }
}

@media (min-width: 992px) {
  .isotope .item,
  .isotope .grid-sizer {
    width: 20%;
  }

  .isotope .item.width2 { width: 40%; }
  .isotope .item.width3 { width: 60%; }
  .isotope .item.width4 { width: 80%; }
  .isotope .item.width5 { width: 100%; }
  .isotope .item.width6 { width: 100%; }
}

@media (min-width: 1200px) {
  .isotope .item,
  .isotope .grid-sizer {
    width: 16.666666%;
  }

  .isotope .item.width2 { width: 33.333333%; }
  .isotope .item.width3 { width: 50%; }
  .isotope .item.width4 { width: 66.666666%; }
  .isotope .item.width5 { width: 83.333333%; }
  .isotope .item.width6 { width: 100%; }
}