.print_wrapper {
  padding: 0 140px;
  padding-top: 64px;
  padding-bottom: 60px;
  
}

.print_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  padding-right: 14%;
}

.items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.items a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.print_gallery img {
  cursor: pointer;
  width: 100%;
  max-height: 256px;
  /* object-fit: scale-down; */
  object-fit: cover;
}

.items:nth-child(1) img {
  /* width: 90%; */
  /* height: 90%; */
}

.pagination {
  display: flex;
  justify-content: space-between;
}

.previous, .nexts {
  margin-top: 66px;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  cursor: pointer;
  color: #828282;
  font-size: 12px;
}

.arrows {
    /*transform: translateY(-.7px);*/
}

.fa-arrow-left {
    transform: translateY(1.5px) !important;
}

@media screen and (max-width: 800px) {
  .print_wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }

  .print_gallery {
    grid-template-columns: 1fr 1fr;
    padding-right: 0 !important;
  }
  .items:nth-child(2) img, 
  .items:nth-child(5) img {
    width: 100%;
  }

}

@media screen and (max-width: 640px) {
  .print_wrapper {
    padding-left: 50px;
    padding-right: 50px;
    padding-top:100px !important;
  }

  .print_gallery {
    grid-template-columns: 1fr;
    padding-right: 0 !important;
  }

  .print_gallery img {
    /* width: 100%; */
    height: 200px !important;
  }
  .items:nth-child(2) img, 
  .items:nth-child(5) img {
    width: 100%;
  }

}