

.hero-video{
	position:relative;
}

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

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

.hero-video:after {
	content: '';
	  background: url('assets/white-edge.svg') repeat-x;
	  background-size: 1500px 100%;
	  background-position: center center;
	  bottom: -16px;
	  position: absolute;
	  left: 0;
	  width: 100%;
	  height: 50px;
	  z-index: 10;
	  filter: brightness(0.98);
}

.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 iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index:2;
	transition: opacity 1s ease-in-out;

}

div.hero-overlay {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	mix-blend-mode: multiply;
}

/* 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 {
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	width: fit-content;
	text-align: left;
	line-height: 1.4em;
	max-width: 750px;
	left: 5%;
	z-index: 2;
}

/*.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 {
	font-weight: 700;
	letter-spacing: -0.05rem;
	font-size: 4em;
	line-height: 1em;
	color:var(--white-color);
	margin:0 auto
}


.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;
}

.hero-video div.info p {
	margin: 15px 0;
	transition: all 1.5s 0s;
	transform: translateY(0);
	font-size: 1em;
	font-weight: 400;
	width: fit-content;
	background:var(--second-color);
	padding: 0.5rem 0.75rem;
	color: var(--white-color);
	border-radius: 0.25rem;
	line-height: 1.4em;
}

.hero-video div.info .aurora-btn {
color: var(--white-color);
  width: fit-content;
  height: auto;
  position: relative;
  top: auto;
  left: auto;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid #ff871c;
  border-radius: 0.5rem;
  background: rgba(96, 21, 0, 0.7);
  transition: all 0.3s;
  font-weight: 400;
  margin: 2rem 0 0 0;
  display: block;
}

.hero-video div.info .aurora-btn:hover {
	background: #ff871c;
  transition: all 0.3s;
  border: 1.5px solid #ff871c;
}

@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);
	}
}

