  .video-block {
  padding-top: 4.375rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-block h3 {
  font-family: bely-display, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.75rem;
  margin-bottom: 2rem;
  text-align: center;
}
.video-block img {
  width: 100%;
  height: auto;
  transition: all 900ms ease;
}
.video-block .video-wrapper {
  position: relative;
  box-shadow: 2px 4px 4px rgba(15, 15, 15, 0.5);
}
.video-block .video-wrapper a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.video-block .video-wrapper a .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-block .video-wrapper a .overlay .component-video-button {
  color: #F2F2F2;
  background: rgba(217, 221, 227, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 2px solid #F2F2F2;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  font-weight: 900;
  padding: 1rem 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: max-content;
  text-transform: uppercase;
}
.video-block .video-wrapper a .overlay .component-video-button {
  margin-top: 20%;
}
.video-block .video-wrapper a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.75);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.video-block .video-wrapper a:hover img.slide-image {
  transform: scale(1.1);
}
.video-block .video-wrapper a:hover:before {
  opacity: 0.7;
}
.video-block.small {
  padding: 0;
}
.video-block.small .video-wrapper {
  box-shadow: 2px 4px 4px rgba(15, 15, 15, 0.5);
}
.video-block.small .video-wrapper a .overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-block.small .video-wrapper a .overlay .component-video-button {
  color: #F2F2F2;
  background: rgba(217, 221, 227, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 2px solid #F2F2F2;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  font-weight: 900;
  padding: 1rem 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: max-content;
  text-transform: uppercase;
}
.video-block.small .video-wrapper a .overlay .component-video-button {
  margin-top: 24%;
}
.watch-video {
  overflow: hidden;
  /*
  #navigation,
  footer {
    display: none;
  }
    */
}
.watch-video .watch-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  pointer-events: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.watch-video .watch-popup .lightbox-shade {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
}
.watch-video .watch-popup .content {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (min-width: 992px) and (pointer: fine) {
  .watch-video .watch-popup .content {
    width: 100%;
    height: auto;
    max-width: 1280px;
    max-height: 1280px;
  }
}
.watch-video iframe {
  z-index: inherit;
  border: none;
  width: 100%;
  height: 100%;
  box-shadow: 2px 4px 4px rgba(15, 15, 15, 0.5);
}
@media (min-width: 992px) and (pointer: fine) {
  .watch-video iframe {
    width: 1280px;
    height: 720px;
  }
}
.watch-video #close-watch {
  color: #F2F2F2;
  background: rgba(217, 221, 227, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 2px solid #F2F2F2;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  font-weight: 900;
  padding: 1rem 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: max-content;
  text-transform: uppercase;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  background: none;
  position: absolute;
  z-index: 9999;
  top: 30px;
  right: 0px;
  transition: color 300ms;
}
@media (min-width: 992px) and (pointer: fine) {
  .watch-video #close-watch {
    right: 100px;
  }
}
.watch-video #close-watch .fa-times {
  font-size: 1.5rem;
}
.watch-video #close-watch:hover {
  color: #f4b223;
}
