@charset "utf-8";

/* =========================================
    			CSS Reset
======================================== */
*{ margin:0; padding:0; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, main, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
	float:none;
}
article, aside, details, figcaption, figure, 
footer, header, main, hgroup, menu, nav, section {
	display:block;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
/*--------------------------- Ende CSS Reset ---------------------------*/

/*--- Eigene Fonts ---*/
@font-face { font-family: 'PhosphateSolid';
             src: url('../fonts/Phosphate_Fixed_Solid.woff2') format('truetype'); }

/* Ende Eigene Fonts */

/*======================================== 
				Farben 
========================================*/
:root {	
	--color-black: #000000;
	--color-black-op003: rgba(0,0,0,0.03);
	--color-black-op03: rgba(0,0,0,0.3);
	--color-black-op05: rgba(0,0,0,0.5);
	--color-black-op07: rgba(0,0,0,0.7);
	--color-black-op09: rgba(0,0,0,0.9);	
	
	--color-neon-green: #4aff21;
	--color-green: #3aaa35;
	
	--color-grey-dark: #1a1a18;
	
	--color-white: #ffffff;
	--color-white-op03: rgba(255,255,255,0.3);
	--color-white-op05: rgba(255,255,255,0.5);
	--color-white-op07: rgba(255,255,255,0.7);
	--color-white-op09: rgba(255,255,255,0.9);
}
/*--------------------------- Ende Farben ---------------------------*/


/* =========================================
    			Style
======================================== */
html { 
    min-height:100%;
    position:relative;   
	scroll-behavior: smooth;
} 
body {
	font-family: "Arial", 'Inter', sans-serif;
	font-weight: 400;
	background-image: url("../images/background/lindner-eventtechnik-dj-musik-feste-feiernde-menschen-vor-einer-buehne-1920x943.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	color: var(--color-white);
	font-size: 1rem;
}
/*--- img style ---*/
img {
	width: 100%;	
}
.img-50 {
	width: 50%;
}
@media (max-width: 768px) {
	.img-50 {
		width: 80%;
	}
}
/*--- helpers ---*/
.position-minus {
	position: relative;
	top:-8rem;
}
.d-none {
	display: none;
}
.padding-div {
	padding: 2rem;
}
/*--- Querstrich ---*/
hr {	
	border-top: 1px solid var(--color-gray-border);
	margin-bottom: 2rem;
}
/*--- Video ---*/
.myVideo {
	position: relative;
	width: 100%;
	height: auto;
	top: -8rem;
	margin-bottom: -8rem;
}
/*-- Background-Color --*/
.bgColor-black-op05 {
	background-color: var(--color-black-op05);
	border-radius: 1rem;
}
/*--------------------------- Ende Style ---------------------------*/


/* =========================================
    			Section
======================================== */
section {
	padding: 3rem 0;
	background-color: var(--color-grey-dark);
}
section.topSection {
	padding: 15rem 0 10rem 0;
	background-color: transparent;
}
.container {
	height:auto;
	width:100%;
	max-width: 80rem;
	margin-left:auto;
	margin-right: auto;
}
.row {
	display: block;
	width:100%;
	margin:auto;
}
/*--- Content Section ---*/
.content-section {
	display: flex;
    align-items: center;
	justify-content: center;
    padding: 20px 0;
}
.content-section.reverse {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
	section.topSection {
		padding: 3rem 0 2rem 0;	
	}
	section {
		padding: 2rem 0;
	}
	.content-section, .content-section.reverse {
		flex-direction: column;
        align-items: center;
	}
}
/*--- Ende Content Section ---*/
/*--------------------------- Ende Section ---------------------------*/


/* =========================================
    			Formatierung
======================================== */
* {
	-webkit-hyphens: auto; 
  	hyphens: auto;	
}
h1, h2, h3, h4 {	
	font-family: "PhosphateSolid", 'Inter', sans-serif;	
}
h1 {
	font-size: 4rem;	
	margin-bottom: 1rem;
}
h1 span {
	font-family: "Arial", 'Inter', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
}
h2 {
	font-size: 2.5rem;
	margin: 3rem auto 2rem auto;
}
h3 {
	font-size: 1.2rem;
	margin: 2rem auto;
}
p {
	line-height: 2rem;
	margin-bottom: 1rem;
}
a {
	color: var(--color-green);	
	text-decoration: none;
}
a:hover {
	color: var(--color-neon-green);
	text-decoration: underline;
}
a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}
i.icon-big {
	font-size: 2rem;
	margin-right: 1rem;
}
ul.list {
	margin-bottom: 1rem;
}
ul.list li {
	margin-left: 2rem;
	margin-bottom: 0.8rem;
}
.font-weight-bold, strong, b {
	font-weight: bold;
}
@media (max-width:48rem) {
	h1 {
		font-size: 1.5rem;
	}
	h2 {
		font-size: 1.2rem;
	}
	h3 {
		font-size: 1rem;
	}
}
@media (max-width:30rem) {
	h1 {
		font-size: 1.5rem;
	}
	h2 {
		font-size: 1.2rem;
	}
	h3 {
		font-size: 1rem;
	}
}
/*--- Text-Color ---*/
.textColor-white {
	color: var(--color-white);
}
.textColor-green {
	color: var(--color-green);
}
.textColor-neongreen {
	color: var(--color-neon-green);
}
/*--- Ende Text-Color ---*/
/*--------------------------- Ende Formatierung ---------------------------*/


/* =========================================
    			Navigation Login Header
======================================== */
.header {
	background-color: var(--color-black-op07);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.header_nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 24px;
}
.header_logo-link {
	position: absolute;
	top: 0;
	width: 150px;
	height: 150px;
	background-color: var(--color-black);
}
.header_logo-img {
	display: block;
	max-width: 100%;
}
.header_nav-items {	
	font-family: "PhosphateSolid", 'Inter', sans-serif;
	font-size: 1.2rem;
	font-weight: 200;
	letter-spacing: 2px;
	align-items: center;
	color: var(--color-white);
	display: flex;
	flex-direction: row;
	gap: 30px 29px;
	list-style: none;
}
.header_nav-items li a {	
	text-decoration: none;
	transition: 0.3s;
}
.header_nav-items li a:hover {
	color: var(--color-neon-green);
	transition: 0.3s;
}
@media screen and (max-width: 639px) {
	.header_nav-items {
		background-color: var(--color-black-op09);
		align-items: center;
		border-radius: 5px;
		flex-direction: column;
		left: 24px;
		opacity: 0;
		padding: 35px 0;
		position: absolute;
		top: calc(-100% - 300px);
		transition: top 200ms ease-in-out, opacity 200ms ease-in-out;
		width: calc(100% - 48px);
	}
	.header_nav-items.show-menu {
		opacity: 1;
		top: calc(100% + 2px);
	}
}
.header_hamburger {
	cursor: pointer;
	height: 20px;
	position: relative;
	user-select: none;
	width: 24px;
}
@media screen and (min-width: 640px) {
	.header_hamburger {
		display: none;
	}
}
.header_hamburger span {
	background-color: var(--color-white);
	height: 2px;
	left: 0;
	position: absolute;
	transition: transform 100ms, opacity 100ms;
	width: 100%;
}
.header_hamburger.hamburger-close .hamburger_line_1 {
	top: 0;
}
.header_hamburger.hamburger-close .hamburger_line_2 {
	top: calc(50% - 0.5px);
	opacity: 1;
}
.header_hamburger.hamburger-close .hamburger_line_3 {
	bottom: 0;
}
.header_hamburger.hamburger-open {
	width: 22px;
	height: 24px;
}
.header_hamburger.hamburger-open .hamburger_line_1 {
	transform: rotate(-45deg);
	top: 50%;
}
.header_hamburger.hamburger-open .hamburger_line_2 {
	opacity: 0;
}
.header_hamburger.hamburger-open .hamburger_line_3 {
	top: 50%;
	transform: rotate(45deg);
}
/*--------------------------- Ende Navigation Login Header ---------------------------*/


/* =========================================
    			Event-Card
======================================== */
.card {
	position: relative;
	width: 100%;
	height: 360px;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid transparent;
	box-shadow: 0 1px 35px var(--color-neon-green);
	transition: transform 0.5s ease;
}
.card:hover {
	border: 1px solid var(--color-neon-green);
	transition: 0.5s;
}
.card-header {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.2rem;
	z-index: 3;
}
.card-title {
	font-size: 1.75rem;
	margin-bottom: 0.8rem;
	color: white;
}
.card-subtitle {
	font-size: 1.2rem;
	opacity: 0.8;
	margin-bottom: 1rem;
}
.card-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	z-index: 3;
	background-color: var(--color-black-op07);
	transform: translateY(100%);
}
.card:hover .card-content {
	transform: translateY(0);
	transition: 0.5s;
}
.card-description {	
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);
}
.card:hover .card-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s;
	transition: 0.5s;
}
/*--------------------------- Ende Event-Card ---------------------------*/


/* =========================================
    			Btn
======================================== */
.button {
	align-items: center;
	background-image: linear-gradient(144deg, var(--color-neon-green), var(--color-green) 50%, var(--color-black-op07));
	border: 0;
	border-radius: 8px;
	box-shadow: var(--color-neon-green) 0 1px 15px -5px;
	box-sizing: border-box;
	color: var(--color-white);
	display: flex;
	font-size: 1rem;
	justify-content: center;
	line-height: 1rem;
	max-width: 100%;
	min-width: 200px;
	padding: 3px;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	white-space: nowrap;
	cursor: pointer;
	margin: 1rem;
}
.button:active, .button:hover {
	outline: 0;
}
.button span {
	background-color: var(--color-grey-dark);
	padding: 16px 24px;
	border-radius: 6px;
	width: 100%;
	height: 100%;
	transition: 300ms;
	text-align: center;
}
.button:hover span {
	background: none;
}
.button:hover {
	color: var(--color-white)!important; 
	text-decoration: none!important;
}
@media (min-width: 768px) {
	
}
/*--------------------------- Ende Btn ---------------------------*/


/* =========================================
    			Footer
======================================== */
footer section {
	background-color: var(--color-black);
}
/*--------------------------- Ende Footer ---------------------------*/