@charset "utf-8";

/* =================== VÍDEO ================ */

* {
  box-sizing: border-box;
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  filter:grayscale(100%);
  z-index: -1;
}

.content {
  width: 100%;
}

.content:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: linear-gradient(90deg,hsla(0,0%,100%,0),#000 83%);
	background-size: 3px 2px;
	opacity: 0.4;
}

/* =================== END VÍDEO ================ */



