/* -------------------------------- 
----
---- HOME STYLES
----
-------------------------------- */


.section-video  {
	--secHeight: 100vh;
	--topTitle:   50vh;
	--paddBottom:var(--wp--preset--spacing--xxl);
	--back:var(--wp--preset--color--contrast);
	overflow: clip;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	height: var(--secHeight);
	padding-bottom: var(--paddBottom);
}

.section-video > *:not(video, img) {
	z-index: 2;
}

.fullscreen {
  position: absolute;
  top:0;
  height: var(--secHeight);
  width:  100%;
  background: var(--wp--preset--color--contrast);
  background: #212121;
  filter: brightness(0.75);
}

.fullscreen video,
.section-video img {
  position: sticky;
  position: absolute;
  inset:0;
  object-fit: cover;
  height: var(--secHeight);
  width:  100%;
}  

