/* Foto dan Video */
.foto-video h1 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  color: #2F3D52;
}

.foto-video p {
  font-family: Barlow;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #868A95;
}

.galeri-foto-video1 {
  display: grid;
  grid-template-columns: 500px 1fr 1fr;
  grid-template-rows: 202px 202px;
  grid-gap: 4px;
}

.galeri-foto-video1 img, 
.galeri-foto-video1 video, 
.galeri-foto-video2 img, 
.galeri-foto-video2 video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: #000;
}

.galeri-foto-video1 .gambar-1 {
  grid-row: 1/3;
}

.galeri-foto-video2 {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 500px;
  grid-template-rows: 202px 202px;
  grid-gap: 4px;
}

.galeri-foto-video2 .gambar-10 {
  grid-column: 3/4;
  grid-row: 1/3;
}

.btn-selanjutnya {
  color: #6129DA;
  font-size: 14px;
  font-weight: 600;
}

.gambar-foto-video {
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.gambar-foto-video:hover  .title,
.gambar-foto-video:hover  .overlay
 { 
  display: block;
}


.gambar-foto-video .title {
  display: none;
  position: absolute;
  margin-top: -30px;
  z-index: 99;
  padding-left: 10px;
  color: white;
  font-size: 14px;
  text-shadow: 2px 1px 0px #827575;
}

.gambar-foto-video .overlay {
  display: none;
  background-image: linear-gradient(to top, #00000096, #ffffffd1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

/* modal images */
.modal-images {
  display: none;
  position: fixed;
  z-index: 10000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #2b395496;
}
.modal-images .button-close {
  float: right;
  margin-right: -25px;
  cursor: pointer;
}

.modal-images .modal-picture {
  width: 100%;
  height: 400px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.modal-images .modal-text-wrapper {
  font-family: 'Barlow';
  padding: 20px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.modal-images .modal-text-wrapper .title {
  font-size: 24px;
  font-weight: 600;
}
.modal-images .modal-text-wrapper .description {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  color: #747885;
}

.modal-images .modal-picture,
.modal-images .modal-text-wrapper
 {
  margin: auto;
  display: block;
}

.modal-container {
  width: 600px;
  margin: auto;
  animation-name: zoom;
  animation-duration: 0.7s;
}

.modal-images .modal-text-wrapper {
  background-color: white;
}

@keyframes zoom {
  from {transform: scale(0);}
  to {transform: scale(1);}
}

/* end modal images */

/* End Foto dan Video */


