section.gallery-video .align-items-stretch {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
section.gallery-video .item-wrapper {
  height: 100%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.gallery-video .item-wrapper .img-wrapper img {
  width: 100%;
}
section.gallery-video .item-wrapper .content-wrapper {
  padding: 15px 25px;
}
section.gallery-video .item-wrapper .link-wrapper {
  margin-top: auto;
  padding: 15px 25px 30px;
  display: flex;
  justify-content: space-between;
}
section.gallery-video .item-wrapper .link-wrapper .modal-link {
  cursor: pointer;
}
section.gallery-video #videoModal .modal-dialog {
  max-width: 75vw;
  aspect-ratio: 16/9;
  height: auto;
  width: fit-content;
}
section.gallery-video #videoModal .modal-dialog .modal-body {
  padding: 0;
  margin-bottom: -7px;
}
section.gallery-video #videoModal .modal-dialog .modal-body #video-file {
  max-width: 100%;
}
section.gallery-video #videoModal .modal-dialog .modal-body iframe {
  width: 75vw;
  aspect-ratio: 16/9;
  height: auto;
}
section.gallery-video #videoModal .modal-dialog .modal-body video,
section.gallery-video #videoModal .modal-dialog .modal-body iframe {
  border-radius: 5px;
}
