

.hero-video{
	position:relative;
}

.hero-video h1 {
	color: var(--white-color);
}

.hero-video div.wrapper {
	position: absolute;
	width: 100%;
	height:100%;
}

.hero-video div.wrapper:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(41, 152, 178, 0.6);
	z-index: 10;
	mix-blend-mode: multiply;
}
.hero-video div.poster{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-position:center;
	background-size:cover;
}

.hero-video div.video {
	width: 100%;
	position: absolute;
	overflow: hidden;
	height: 100%;
}


.hero-video:before {
	content: '';
	bottom: -1.5rem;
	left: 0;
	width: 100%;
	height: 3rem;
	position: absolute;
	background:  url(assets/white-rough-edge.svg) repeat-x;
	background-size: cover;
	z-index: 21;
	display: none;
}

.hero-video:after {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0) url(assets/dot.png);
	z-index: 10;
	opacity: 0.5;
}

.hero-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index:2;
	transition: opacity 1s ease-in-out;
	filter: grayscale(1);
}

/* Initially hide the iframe and use opacity transition */
.hero-video iframe.hidden-video {
	opacity: 0;
}

.hero-video div.info-wrapper{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:20;
}

.hero-video div.info {
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	z-index: 3;
	padding: 0 1rem;
}

/*.hero-video div.info:before {
	content: '';
	display: block;
	width: 90px;
	height: 90px;
	background: url(assets/gael-icon-white-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
}*/

.hero-video div.info:after {
	content: '';
	display: none;
	width: clamp(200px, 20vw, 400px);
	height: clamp(200px, 20vw, 400px);
	background: url(assets/gael-icon-white-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translate(25%,25%);
	opacity: 0.5;
}

.hero-video div.info h1 {
	text-shadow: 0 1px 3px rgba(0,0,0,0.25);
	font-weight: 600;
	color: #fff;
	max-width: clamp(360px, 50vw, 720px);
	margin: 0;
	font-size: clamp(1.75rem,2.5vw,2.5rem);
}


.hero-video div.info h1 span {
	color: var(--brand-light-color);
}

.hero-video div.info h2 {
	text-shadow: 0 1px 3px rgba(0,0,0,0.25);
	font-weight: 300;
	color: #fff;
	max-width: 640px;
}

.hero-video div.info h1 em{
	font-weight:700;
}

@media screen and (min-width:1400px){

}

@media screen and (max-width:1000px){
	.hero-video div.wrapper,
	.hero-video div.video {
	 }
}

@media screen and (max-width:720px){
	.hero-video div.wrapper,
	.hero-video div.video {
	 }
}

/* Scroll Mouse Animation */

div.scroll-down{
	width: 32px;
	height: 48px;
	border: 2px solid #fff;
	border-radius: 16px;
	display: inline-block;
	position: relative;
	top: 3rem;
}

div.scroll-down .scroller{
	display:block;
	width:6px;
	height:8px;
	border-radius:3px;
	position:absolute;
	background:#fff;
	top:8px;
	left:50%;
	transform:translate(-50%,0);
	opacity: 0;
	animation: scroll-down 1500ms ease-out infinite;
}

@keyframes scroll-down {
  0% {
	opacity: 0;
	transform: translate(-50%, 0);
  }

  80% {
	opacity: 1;
	transform: translate(-50%, 20px);
  }
  100% {
	  opacity: 0;
	  transform: translate(-50%, 20px);
	}
}

