
.grid-container {
  display: grid;
  grid-template-columns: 10% 80% 10%;
}

.iframe {
  display: block;
}

#gallery-videos {
  position: relative;
}

#gallery-videos div {
  position: relative;
}

div.grid-item{
  display: flex;
  height: 200px;
}

div.grid-item button {
  margin: auto;
  background-color: transparent;
  cursor: pointer;
  border: none;
  font-size: 35px;
}

div.grid-item button svg{
  fill: #ffaa23;
}


#gallery-videos {
  margin: auto;
}

#gallery-videos div{
  position: absolute;
  cursor: pointer;
  height: 145px;
  width: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#gallery-videos div p {
  text-align: center;
  font-size: var(--text-xs);
}

#gallery-videos div.image.left{
  z-index: 1;
  opacity: 0.3;
  height: 130px;
  width: 250px;
  transform: translate(-90%, -50%);
}

#gallery-videos div.image.left p{
  display: none;
}

#gallery-videos div.image.center{
  z-index: 2;
}

#gallery-videos div.image.right{
  z-index: 1;
  opacity: 0.3;
  height: 130px;
  width: 250px;
  transform: translate(-10%, -50%);
}

#gallery-videos div.image.right p{
  display: none;
}

@media screen and (max-width: 1200px) {
  #gallery-videos div.image.right{
    transform: none;
    display: none;
  }
  #gallery-videos div.image.left{
    transform: none;
    display: none;
  }
}

#gallery-videos div img.play-icon{
  position: absolute;
  cursor: pointer;
  width: 50px;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}