/* ************************************************************************
* File: hero.css
*
* Purpose: Hero element css on idex.php
*
* This file is part of a software by Jens Gienau.
* (c)1999 - 2025 Jens Gienau / www.gienau.com / mail@gienau.com
************************************************************************ */

/* ------------------------------------------------------------------------
hero
------------------------------------------------------------------------ */
#body-index .hero {
	background:
		/* top, transparent red, faked with gradient */
		linear-gradient(
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0.2)
		),
		/* bottom, image */
		url('../img/hero-bg.jpg') no-repeat;
	background-size: cover;
	background-position: top center;
	font-family: 'satoshiregular', sans-serif;
	color:#fff;
	position: relative;
}

#body-index .hero {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#body-index .hero .wrapper {
	width:100%;
}

#body-index .hero h1 {
	font-size: 2.5rem;
	line-height: 3.1rem;
	color:#fff;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	/* IE 5-7 */
	filter: alpha(opacity=100);
	/* Netscape */
	-moz-opacity: 1;
	/* Safari 1.x */
	-khtml-opacity: 1;
	/* Good browser */
	opacity: 1;
	margin-top:0;
	margin-bottom: 1.5rem;
	text-shadow: 0.1em 0.01em 0.05em #333;
	font-family: 'satoshiblack', sans-serif;
	text-transform: none;
	text-align: center;
}

#body-index .hero h2 {
	font-size: 1.3rem;
	line-height: 1.8rem;
	text-shadow: 0.1em 0.01em 0.05em #333;
	text-align: center;
}


#body-index .hero .hero-item-section {
	margin-top: 3rem;
}

#body-index .hero .hero-item-section .hero-item-container {
	text-align: center;
	color:#fff;
	font-size: .8rem;
	margin:0 0 2rem 0;
}

#body-index .hero .hero-item-section .hero-item-container .hero-item {
	width:100px;
	display:inline-block;
	margin: 0 .5rem;
}

#body-index .hero .hero-item-section .hero-item-container .hero-item-wide {
	width:80%;
	display:inline-block;
	margin: 0 .5rem;
}

#body-index .hero-item-symbol {
	width:60px;
	height:60px;
	margin: 0 auto .5rem auto;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	align-items: center;
	color:#fff;
}

#body-index .hero-item-symbol i {
	font-size: 40px;
}

#body-index .hero-item-symbol-link .hero-item-symbol {
	cursor:pointer;
}

#body-index .hero-item-symbol-link:link .hero-item-symbol,
#body-index .hero-item-symbol-link:visited .hero-item-symbol,
#body-index a.hero-item-symbol-link {
	color:#fff;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	/* IE 5-7 */
	filter: alpha(opacity=80);
	/* Netscape */
	-moz-opacity: 0.8;
	/* Safari 1.x */
	-khtml-opacity: 0.8;
	/* Good browser */
	opacity: 0.8;
	text-decoration: none;
}

#body-index .hero-item-symbol-link:hover .hero-item-symbol {
	background-color:rgba(255, 255, 255, 0.2);
	color:#fff;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	/* IE 5-7 */
	filter: alpha(opacity=100);
	/* Netscape */
	-moz-opacity: 1;
	/* Safari 1.x */
	-khtml-opacity: 1;
	/* Good browser */
	opacity: 1;
	text-decoration: none;
}

#body-index .hero-item-text {
	text-align: center;
	line-height: 1.2rem;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	text-decoration: none;
	color:#fff;
}

#body-index .hero-item-text .btn {
	margin:0;
	background-color: rgba(255, 255, 255, 0.9);
	color:#000;
	padding:.3rem .5rem;
}
#body-index .hero-item-text .btn:link,
#body-index .hero-item-text .btn:visited {
	cursor: pointer;
	color:#000;
}

#body-index .hero-item-text .btn:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

#body-index .hero-item-text a,
#body-index .hero-item-text a:link,
#body-index .hero-item-text a:visited {
	text-decoration: none;
	color:#fff;
	cursor: pointer;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	/* IE 5-7 */
	filter: alpha(opacity=80);
	/* Netscape */
	-moz-opacity: 0.8;
	/* Safari 1.x */
	-khtml-opacity: 0.8;
	/* Good browser */
	opacity: 0.8;
}

#body-index .hero-item-text a:hover {
	text-decoration: none;
	color:#fff;
	
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	/* IE 5-7 */
	filter: alpha(opacity=100);
	/* Netscape */
	-moz-opacity: 1;
	/* Safari 1.x */
	-khtml-opacity: 1;
	/* Good browser */
	opacity: 1;
	cursor: pointer;
}


#body-index .hero-arrow {
  text-align: center;
  margin: 0;
  position: absolute;
  bottom: 1rem;
  left:50%;
  margin-left:-75px;
  
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  
  /* IE 5-7 */
  filter: alpha(opacity=70);
  
  /* Netscape */
  -moz-opacity: 0.7;
  
  /* Safari 1.x */
  -khtml-opacity: 0.7;
  
  /* Good browser */
  opacity: 0.7;
  
  width: 150px;
  height: auto;
  
}

#body-index .hero-arrow:hover {
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	
	/* IE 5-7 */
	filter: alpha(opacity=100);
	
	/* Netscape */
	-moz-opacity: 1;
	
	/* Safari 1.x */
	-khtml-opacity: 1;
	
	/* Good browser */
	opacity: 1;
	text-decoration: none;
}

#body-index .hero-bounce {
  -moz-animation: hero-bounce 3s infinite;
  -webkit-animation: hero-bounce 3s infinite;
  animation: hero-bounce 3s infinite;
}

@keyframes hero-bounce {
  0%, 20%, 50%, 80%, 100% {
	transform: translateY(0);
  }
  40% {
	transform: translateY(-60px);
  }
  60% {
	transform: translateY(-30px);
  }
}

/* ========================================================================
MEDIA QUERY: DESKTOP LARGE
======================================================================== */

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

	#body-index .hero-text {
		padding: 2rem;
	}
	
	#body-index .hero h1 {
		font-size: 3.5rem;
		line-height: 4.2rem;
		margin-bottom: 2rem;
	}
	
	#body-index .hero h2 {
		font-size: 2rem;
		line-height: 2.6rem;
	}
	
	#body-index .hero .hero-item-section {
		margin-top: 4rem;
	}
	
	#body-index .hero .hero-item-section .hero-item-container {
		font-size: 1rem;
		margin:0 0 4rem 0;
	}
	
	#body-index .hero .hero-item-section .hero-item-container .hero-item {
		width:130px;
		margin: 0 1rem;
	}
	
	#body-index .hero .hero-item-section .hero-item-container .hero-item:first-of-type {
		margin-left:0;
	}
	
	#body-index .hero .hero-item-section .hero-item-container .hero-item:last-of-type {
		margin-right:0;
	}
	
	#body-index .hero-item-symbol {
		width:90px;
		height:90px;
		margin: 0 auto 1rem auto;
	}
	
	#body-index .hero-item-symbol i {
		font-size: 60px;
	}
	
	#body-index .hero-item-text {
		line-height: 1.6rem;
	}
	
	#body-index .hero-item-text .btn {
		padding: .2rem .5rem;
		font-size: 1rem;
	}
	
}

/* ========================================================================
MEDIA QUERY: DESKTOP SUPER XXL LARGE
======================================================================== */

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

	/* ------------------------------------------------------------------------
	MQ: index
	------------------------------------------------------------------------ */
	#body-index .hero h1 {
		font-size: 4.5rem;
		line-height: 5.7rem;
		margin-bottom: 2rem;
	}

	#body-index .hero h2 {
		font-size: 3rem;
		line-height: 3.6rem;
	}
	
	#body-index .hero .hero-item-section {
		margin-top: 8rem;
	}
	
	#body-index .hero .hero-item-section .hero-item-container {
		font-size: 1.1rem;
		margin:0 0 4rem 0;
	}
	
	#body-index .hero .hero-item-section .hero-item-container .hero-item {
		width:140px;
		margin: 0 1rem;
	}
	
	#body-index .hero .hero-item-section .hero-item-container .hero-item:first-of-type {
		margin-left:0;
	}
	
	#body-index .hero .hero-item-section .hero-item-container .hero-item:last-of-type {
		margin-right:0;
	}
	
	#body-index .hero-item-symbol {
		width:105px;
		height:105px;
		margin: 0 auto 1rem auto;
	}
	
	#body-index .hero-item-symbol i {
		font-size: 70px;
	}
	
	#body-index .hero-item-text {
		line-height: 1.7rem;
	}
	
	#body-index .hero-item-text .btn {
		padding: .2rem .5rem;
		font-size: 1.1rem;
	}
	
	
}