.prod_text {
  grid-area: txt;
}

#design,
#situ {
  grid-area: img;
  display: grid;
  grid-template-areas:
    'ima'
    'num'
  ;
  grid-template-rows: 32vh 5vh;
  border-bottom: 10vh;
}

.slides-container {
  grid-area: ima;
}

.slick-list {
  position: absolute;
  width: 100%;
}


.buttons {
  margin: 0.25vw;
}

.prev {
  float: left;
}

.next {
  float: right;
}

.pagingInfo {
  float: left;
  margin: 0.25em;
}

.mobscroll {
  display: none;
}

.deactive {
  opacity: 0;
}

.gal-type {
  transition: 500ms;
}



/*****************************************************************************
    image lightbox
*****************************************************************************/

.modal {
  display: none;
  opacity: 0;
  transition: 1000ms;
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(255, 255, 255);
}

.modal img {
  height: 100vh;
  width: auto;
  cursor: pointer;
}

.close:hover,
.close:focus {
  cursor: pointer;
}

.logo {
  display: none;
}


/*****************************************************************************
    responsive area
*****************************************************************************/

@media (min-width:769px) {
  .container {
    padding-top: 88px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      '.   img img img img img img img txt txt txt txt';
  }

  .item img {
    height: auto;
    object-fit: contain;
    max-width: 100%;
    max-height: 65vh;
    padding: 3px;
    cursor: pointer;
  }

  .text-container {
    position: fixed;
    width: 30vw;
    max-width: 400px;
  }

  /* The Close Button */
  .close {
    position: fixed;
    overflow: hidden;
    top: 100px;
    right: 60px;
    transition: 0.3s;
    z-index: 17;
  }

  .num {
    display: block;
    position: fixed;
    top: 33vw;
    margin-left: -1.5em;
  }

  .scroll_overlay_prev {
    position: absolute;
    width: 12vw;
    height: 40vh;
    cursor: w-resize;
    z-index: 99;
  }

  .scroll_overlay_next {
    position: absolute;
    left: 50%;
    width: 12vw;
    height: 40vh;
    cursor: e-resize;
    z-index: 99;
  }
}

@media only screen and (max-width:768px) {


  .scroll_overlay_prev {
    display: none !important;
  }

  .scroll_overlay_next {
    display: none !important;
  }


  .container {
    display: grid;
    grid-template-columns: 20px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 20px;
    grid-template-rows: 37vh auto;
    grid-template-areas:
      'img img img img img img img img img img img img'
      '.   txt txt txt txt txt txt txt txt txt txt .  ';
    grid-column-gap: 0;
  }

  .num {
    grid-area: num;
    /*left: 75vw;
    top: 50vh;
    position: absolute;*/
    margin: 1em 20px;
  }

  .pagingInfo {
    float: right;
  }

  .num .buttons {
    display: none;
  }

  .item img {
    object-fit: cover;
    height: 32vh;
  }

  .lefty {
    float: left;
  }

  .righty {
    right: 0px;
    position: absolute;
  }

  .mobscroll {
    display: block;
    width: 40px;
    height: 32vh;
    z-index: 1;
    padding: 12vh 18px;
    cursor: pointer;
    position: absolute;
  }

  /* The Close Button */
  .close {
    position: fixed;
    overflow: hidden;
    top: 40px;
    right: 20px;
    transition: 0.3s;
    z-index: 17;
  }

  .close h1 {
    margin-top: 0;
    line-height: 1;
  }

  .logo {
    display: block;
    position: fixed;
    height: 17px !important;
    width: 150px !important;
    left: 20px;
    top: 40px;
  }

}
