/*--- Main Style Manipulation ---*/

body:has(#hero){
	ppadding-top: 0px !important;
	ooverflow: hidden;
}

/*
body:has(#hero.showhero) > .topnav{
	background-color: transparent;
	box-shadow: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(30px);
	color: #ffffff;
}

body:has(#hero.showhero) > .topnav nav ul li{
	border: 0px;
}

body:has(#hero.showhero) > .topnav nav ul li:hover{
	background-color: #ffffff;
}

body:has(#hero.showhero) > .topnav nav ul li a{
	color: #ffffff;
}

body:has(#hero.showhero) > .topnav nav ul li:hover a{
	color: var(--accent-color-2);
}

body:has(#hero.showhero) > .topnav .slidelogocon{
	filter: brightness(0) invert(1); 
}
*/


/*--- Hero Section ---*/
section#hero{
	position: relative;
	color: #ffffff;
	height: 50vh;
	align-items: stretch;
	/*background: radial-gradient(100vh at top, #0E70C0, #1D2026);
	background-attachment: fixed;*/
	display: flex;
	justify-content: center;
	align-items : flex-start;
	overflow: hidden;
}

/*
section#hero::after{
	content: '';
	position: absolute;
	top: calc(70vh - 50px);
	left: -5%;
	width: 110%;
	height: 200px;
	background-color: #ffffff;
	transform: rotate(-2deg);
	border-top: 4px solid #eeb422;
}
*/


section#hero > .content{
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	width: 1440px;
	position: relative;
	border: 0px solid red;	
	background-color: transparent;
	height: 100%;
	align-content: center !important
}

section#hero > .content > .half{
	width: 50%;
	border: 0px solid red;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
}

section#hero > .content > .half > img{
	bbox-shadow: -20px 32px 64px rgba(0,0,0,0.25);
	aanimation: heroimage 7s infinite alternate;
	animation-timing-function: linear;
	margin-left: -175px;
}

section#hero > .content > .half > div > span{
	color: #eeb422;
	font-size: 100px;
	font-family: 'Comiccc';
	ttext-shadow:  3px 3px 1px #ffffff, 3px -3px 1px #ffffff, -3px  3px 1px #ffffff, -3px -3px 1px #ffffff, -1px  3px 1px #ffffff, -1px -3px 1px #ffffff;
	-webkit-text-stroke: 3px #ffffff;
}

section#hero > .content > .half .splashes{
	height: 536px;
	left: auto;
	width: 537px;
	position: absolute;
	top: auto;
}

section#hero > .content > .half .splashes img{
	position: absolute;
	top: 0px;
	left: 0px;
}


section#hero > .content > .half .splashes img#splash1{
	animation-delay: -3s;
	aanimation: rotation 7s infinite alternate;
	left: 45px;
	top: 12px;
	width: 550px;
}

section#hero > .content > .half .splashes img#splash2{
	top: 0px;
	left: 340px;
	aanimation: spin 120s linear infinite;
	height: 220px;
	position: absolute;
}


section#hero > .content > .half .splashes img#splash3{
	animation-delay: 0s;
	aanimation: rotation 10s infinite alternate;
	height: 165px;
	left: 85px;
	top: 340px;
	width: 165px;
}

@keyframes heroimage{
	0%{
		transform: scaleX(1) scaleY(1) perspective(500px) rotateY(-20deg) rotateX(0deg) rotateZ(0deg) translate(0px, -10px);
	}		
	25%{
		transform: scaleX(1) scaleY(1) perspective(500px) rotateY(-16deg) rotateX(0deg) rotateZ(0deg) translate(0px, 0px);
	}
	50%{
		transform: scaleX(1) scaleY(1) perspective(500px) rotateY(-12deg) rotateX(0deg) rotateZ(0deg) translate(0px, 10px);
	}
	75%{
		transform: scaleX(1) scaleY(1) perspective(500px) rotateY(-8deg) rotateX(0deg) rotateZ(0deg) translate(0px, 0px);
	}		
	100%{
		transform: scaleX(1) scaleY(1) perspective(500px) rotateY(-4deg) rotateX(0deg) rotateZ(0deg) translate(0px, -10px);
	}
}

@keyframes spin{
	0%{
	  transform: rotate(0deg);
	}
	100%{
	  transform: rotate(1turn);
	}
}

@keyframes rotation{
	0%{
	  transform: rotate(-34deg) translate(7px);
	}
	100%{
	  transform: rotate(-34deg) translate(-7px);
	}
}




@media screen and (max-width: 1439px){
	section#hero > .content > .half{
		font-size: calc(4vmax);
	}
	
	section#hero > .content > .half > div > span{
		font-size: calc(8vmax);
		ttext-shadow:  1px  1px 1px #ffffff, 1px -1px 1px #ffffff, -1px  1px 1px #ffffff, -1px -1px 1px #ffffff;
		-webkit-text-stroke: 2px #ffffff;
	}	
}


@media screen and (max-width: 767px){
	section#hero{
		height: 100%;
	}


	section#hero > .content{
		align-content : flex-start;
	}
	
	section#hero > .content > .half{
		width: 100%;
		font-size: 30px;
		padding-top: 30px;
	}

	section#hero > .content > .half > img{
		margin-left: 0px;
	}
	
	section#hero > .content > .half > div > span{
		font-size: 64px;
		ttext-shadow:  1px  1px 1px #ffffff, 1px -1px 1px #ffffff, -1px  1px 1px #ffffff, -1px -1px 1px #ffffff;
		-webkit-text-stroke: 1px #ffffff;
	}
}