:root {
	/* Colors */
	
	--clr-highlight:#0090DF;
	--clr-main:#22262c;
	--clr-alt:#A3BE30;
	
	/* Gradients */
	
	--grd-main:linear-gradient(180deg, rgba(0,144,223,1) 0%, rgba(110,194,240,1) 100%);
	--grd-black:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
	--grd-black-short:linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(57,57,57,0) 66%);
}

*, ::before, ::after {
	box-sizing:border-box;
	margin:0;
	padding:0;
}

html {
	scroll-behavior:smooth;
}

body {
	font-family:'Source Sans 3', sans-serif;
}

h1 {
	font-family:'ATTACK', sans-serif;
}

h2 {
	font-weight:300;
	font-size:3em;
	text-transform:uppercase;
	color:var(--clr-highlight);
}

h3 {
	font-size:2em;
	font-weight:300;
	color:var(--clr-highlight);
}

p {
	font-weight:300;
}

strong {
	color:var(--clr-highlight);
}

.mobile_only {
	display:none;
}

/* Flex-Box Einstellungen */

.flex {
	display:flex;
}

.flex_between {
    justify-content: space-between;
}

.flex_around {
	justify-content: space-around;
}

.flex_even {
	justify-content: space-evenly;
}

/* Grids */

.grid {
	display:grid;
}

.gap-1 {
	grid-gap:1em;
}

.gap-2 {
	grid-gap:2em;
}

.gap-3 {
	grid-gap:3em;
}

.gap-4 {
	grid-gap:4em;
}

.gap-5 {
	grid-gap:5em;
}

.grid-2 {
	grid-template-columns:repeat(2,1fr);
}

.grid-3 {
	grid-template-columns:repeat(3,1fr);
}

.grid-4 {
	grid-template-columns:repeat(4,1fr);
}

.grid-5 {
	grid-template-columns:repeat(5,1fr);
}

.grid-6 {
	grid-template-columns:repeat(6,1fr);
}

/* Container */

.container_main,
.container_medium,
.container_small {
	position:relative;
	margin:0 auto;
	padding:0 25px;
}

.container_main {
	max-width:1530px;
}

.container_medium {
	max-width:1350px;
}

.container_small {
	max-width:1180px;
}

.container_small .grid_img {
	max-width:70%;
	justify-self:center;
}

/* Navigation */

header .logo,
.nav_logo {
	max-width:260px;
}

.logo {
	transition:left .3s ease;
}

.nav_logo {
	position:absolute;
	top:0;
	padding:15px 0 15px 0;
}

nav {
    position:absolute;
    top:0;
    left:0;
    width:100vw;
	z-index:2;
	padding:15px 0 0 0;
}

/* Burger Menu */

.menu-wrap {
	position:absolute;
	top:10px;
	right:1rem;
	z-index:99;
}

.menu-wrap .toggler {
	position:absolute;
	top:40px;
	right:0.5rem;
	z-index:2;
	cursor:pointer;
	width:50px;
	height:50px;
	opacity:0;
}

.menu-wrap .hamburger {
	position:absolute;
	top:40px;
	right:0.5rem;
	z-index:1;
	width:60px;
	height:60px;
	padding:.5rem;
	background:transparent;
	display:flex;
	align-items:center;
	justify-content:center;
	display: grid;
  	color: white;
	font-weight:200;
	text-transform:uppercase;
}

/* Hamburger Bars */

.menu-wrap .hamburger > div {
	position:relative;
	width:100%;
	height:1.5px;
	background-color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	transition: all 0.4s ease;
	top:5px;
}

/* Styling für die obere und untere Bar */
.menu-wrap .hamburger > div:before{
	content:'';
	position:absolute;
	z-index:1;
	top:-10px;
	width:100%;
	height:1.5px;
	background:inherit;
}

/* Toggler animieren */
.menu-wrap .toggler:checked + .hamburger > div {
	transform:rotate(45deg);
	background:white;
	top:0;
}

.menu-wrap .toggler:checked + .hamburger > div:before {
	width:100%;
}

/* Burgermenu in X tranformieren bei Klick */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
	top:0;
	transform:rotate(90deg);
	background:white;
}

/* Styling für das Navmenu */

/* Zeige das Menü */
.menu-wrap .toggler:checked ~ .menu {
	visibility:visible;
	right:0;
	border-radius:0;
}

.menu-wrap .toggler:checked ~ .menu > div {
	/*transform:scale(1);*/
}

.menu-wrap .toggler:checked ~ .menu > div > div {
	opacity:1;
}

.menu-wrap .toggler:checked + .hamburger span {
	color:var(--clr-main);
}

.menu-wrap .menu {
	position:fixed;
	top:0;
	right:-100%;
	width:100%;
	height:100%;
	visibility:hidden;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:100px;
	transition:.5s ease-in-out;
}

.menu-wrap .menu > div {
	background:var(--clr-main);
	width:100vw;
	height:100vh;
}

.menu-wrap .menu > div > div {
	text-align:left;
	max-width:1630px;
	max-height:100vh;
	opacity:0;
	/*transition:opacity 0.4s ease-in-out;*/
	margin:0 auto;
	padding:100px 15px 0 15px;
}

.menu-wrap .menu > div > div > .menu-top-nav-container > ul > li {
	list-style:none;
	color:#fff;
	font-size:1.125rem;
	line-height:1.5rem;
	padding:1rem 0;
	max-width:900px;
}

.menu-wrap .menu > div > div > .menu-top-nav-container > ul > li > a {
	text-decoration:none;
	text-transform:uppercase;
	font-size:2.5em;
	line-height:1.2em;
	font-family:'Attack', sans-serif;
		color:transparent;
	-webkit-text-stroke-width: 1px;
  	-webkit-text-stroke-color: white;
	transition:all .3s ease-in-out;
	cursor:pointer;
}

.menu-wrap .menu > div > div > .menu-top-nav-container > ul > li > a:hover {
	color:white;
}

#menu-top-nav {
	list-style-type:none;
	margin-top:80px;
}

#menu-top-nav li {
	border-bottom:thin solid var(--clr-alt);
	margin:15px 0;
}

#menu-top-nav li:last-child {
	border-bottom:none;
}

/* Nav Event Logo */
.nav_decal {
	max-width: 470px;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-50%);
	transition:all 0.3s ease;
}

/* Buttons */

.btn_main, .btn_alt {
	padding:10px 40px;
	border-radius:50px;
	text-decoration:none;
	cursor:pointer;
	margin:0 5px;
}

.btn_main {
	color:white;
	background:var(--clr-highlight);
	border:thin solid var(--clr-highlight);
}

.btn_alt {
	color:white;
	background:transparent;
	border:thin solid white;
}

/* Unterstrich */

.line {
	width:268px;
	height:1px;
	background:var(--clr-main);
	display:block;
}

/* Reg button Nav */
.nav_btn_wrapper {
	max-width:1630px;
	margin:0 auto;
}

.nav_btn_wrapper .btn_alt {
	position:absolute;
	top:45px;
	right:10%;
	font-weight:200;
}

/* Hero Störer */

.hero_stoerer {
	max-width: 250px;
	position: absolute;
	top: 55%;
	right: 5%;
	transform: translate(0%, -120%) rotate(-23deg);
}

/* Hero Section */

.hero_video {
	object-fit:cover;
	position:relative;
	top:0;
	left:0;
	height:100vh;
	width:100%;
}

.hero_content img {
	width:38vw;
	position:absolute;
	top:45%;
	left:50%;
	transform:translate(-50%,-50%);
}


/* Intro Section */

.s_intro {
	padding:120px 0 3rem 0;
}

.s_intro ul {
	padding-left:1.85rem;
}

.s_intro li {
	font-weight:300;
}

.s_intro p,
.s_intro li,
.s_course_overview p {
	line-height:1.5;
	font-size:1.25rem;
}
.s_intro .grid-2 {
	align-items:center;
}
.intro_button_wrapper {
	display:inline-flex;
	align-items:center;
}
.intro_button_wrapper a img {
	max-height:60px;
	margin:0 5px;
}

/* Bilder Grid */

.s_img_grid {
	padding:0 0 100px 0;
}

.s_img_grid img {
	max-width:100%;
}

/* Location Section */

.location_bg {
	height:76vh;
	position:relative;
}

.location_bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.25);
	z-index: 0;
}

.s_location h2 {
	color:white;
}

.s_location h3 {
	color: white;
	font-size: 3em;
	font-weight: 400;
}

.s_location p {
	color: white;
	font-size:2em;
	font-weight: 400;
}

.s_location .line {
	background:white;
}

.location_wrapper {
	padding:140px 0 40px 0;
	height:76vh;
	position:relative;
}

.s_location .f_right img {
	max-width:90px;
}

.s_location .f_right .grid-2 {
	justify-items:end;
	align-items:center;
}

.location_button_wrapper {
	text-align:center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.location_button_wrapper a {
	font-size:1.5em;
	font-weight:300;
}

#location_address {
  	position: absolute;
	bottom: 40px;
	width:100%;
}

.f_right,
.f_right p,
.f_right a {
	align-self:flex-end;
}

/* Speaker Grid */

.s_speaker {
	padding:100px 0;
}

.subheadline {
	text-align:center;
	font-family:'Source Sans 3', sans-serif;
	font-weight:200;
	color:var(--clr-highlight);
	text-transform:none;
	padding:70px 0 90px 0;
}

.img_box {
	height:600px;
	border-radius:20px;
	padding:30px;
	position:relative;
	overflow:hidden;
}

.img_box::before {
	content:'';
	position:absolute;
	inset:0;
	z-index:0;
	background:var(--grd-black-short);
	opacity:0.8;
}

.img_box .content_wrapper {
	position:absolute;
	bottom:30px;
	left:30px;
}

.img_box h3 {
	font-size:2em;
	font-weight:200;
}

.img_box p {
	color:white;
	font-size:1.5em;
	line-height:1.15;
}

.box_hidden {
	position:absolute;
	bottom:-600px;
	left:0;
	padding:30px;
	transition:all .3s ease-in-out;
	width:100%;
	height:100%;
	background:var(--grd-main);
	font-size:1em;
}

.img_box:hover .box_hidden {
	bottom:0px;
}

.box_hidden .btn_alt {
	text-align:center;
	display:block;
	margin-top:25px;
}

.box_hidden h3 {
	color:white;
}

/* Marquee Section */

.s_marquee_container {
	padding:100px 0 50px 0;
}
/* Credit goes to: https://ryanmulligan.dev/ for the helpful Tutorial on CSS Marquee */

.marquee {
    --gap: 4rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}
  
.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
    list-style-type:none;
}

.marquee__content img {
    max-width:5000px;
	height:150px;
}

@keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
}

/* Enable animation */
.enable-animation .marquee__content {
    animation: scroll 60s linear infinite;
    margin:45px 0;
  }

.s_marquee_spons_container {
	padding:50px 0;
}

.s_marquee_spons_container .enable-animation .marquee__content {
    animation: scroll 30s linear infinite;
    margin:25px 0;
  }


/* Enable position absolute animation on the duplicate content (last-child) */
.enable-animation .marquee--pos-absolute .marquee__content:last-child {
    animation-name: scroll-abs;
  }
  
  @keyframes scroll-abs {
    from {
      transform: translateX(calc(100% + var(--gap)));
    }
    to {
      transform: translateX(0);
    }
  }

/* Schedule Section */

.s_schedule {
	padding:50px 0 200px 0;
}

.s_schedule h3 {
	padding:80px 0 20px 0;
	font-size:1.5em;
	font-weight:300;
	color:var(--clr-main);
	text-transform:uppercase;
}

.schedule_agenda {
	align-items:center;
}

.time_text_stroke {
	font-size:6em;
	font-family:'ATTACK', sans-serif;
	font-weight:500;
	color:transparent;
	-webkit-text-stroke-width: 1px;
  	-webkit-text-stroke-color: var(--clr-main);
	transition:all .3s ease-in-out;
	text-align-last:justify;
	width:90%;
}

.time_text_stroke:hover {
	color:var(--clr-main);
}

.schedule_line {
	width:100%;
	height:1px;
	display:block;
	background:var(--clr-main);
	margin:15px 0;
}

.agenda {
	font-size:1.5em;
	font-weight:400;
	color:var(--clr-highlight);
}

.schedule_line:last-child {
	display:none;
}

/* Image Slider */

.container_slider {
	padding:130px 0 50px 0;
}

/* Button Box mit rotierendem Text */

.s_btn_box {
	padding:80px 0 100px 0;
}

.btn_box_wrapper {
	text-align:center;
}

.spinning_link {
	position:relative;
}


.center_image {
	max-width:185px;
	position:absolute;
	top:0;
	left:50%;
	transform:translate(-50%, -152%);
}

.animate-spin {
	animation-name: rotate;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	max-width:413px;
	max-height:413px;
}

@keyframes rotate{
    from{ transform: rotate(-360deg); }
    to{ transform: rotate(360deg); }
}

/* Akkordeon */

.s_speaker button {
	font-family:'Source Sans 3', sans-serif;
	font-weight:300;
	font-size:1.1em;
}

.s_speaker button span {
	color:var(--clr-highlight);
	font-size:1.2em;
}

button.accordion {
	background-color: transparent;
	color: var(--clr-main);
	cursor: pointer;
	padding: 35px 0;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	position:relative;
	border-top:thin solid var(--clr-main);
}

button.accordion:first-child {
	border-top:none;
}

.accordion:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform:translateY(-50%) rotate(0);
	transition: .3s transform ease;
	max-height: 40px;
	background-image: url('https://event.eco-platform.org/wp-content/themes/eco-event-theme/img/icon-chevron.png');
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}

.active:before {
	transform:translateY(-50%) rotate(90deg);
}

.panel {
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	grid-gap:2em;
	align-items:center;
}

.panel img {
	max-width:80%;
	border-radius:20px;
	margin-bottom:15px;
}

.panel p {
	font-size:1.1em;
	line-height:1.7;
	padding-bottom:50px;
}

/* Sponsor Modal */

.s_sponsor_intro {
	padding:100px 0 150px 0;
}

.copy_spons_intro {
	border-right:thin solid var(--clr-main);
	padding:0 50px 0 0;
}

.copy_spons_intro .subheadline {
	text-align:left !important;
	padding-bottom:30px;
}

.copy_spons_intro p {
	font-size:1.5em;
	padding-right:255px;
}

.grid-8-4 {
	grid-template-columns:8fr 4fr;
}

.container_hidden {
	background:var(--clr-main);
	position: absolute;
	height: 100%;
	width:100%;
	top: 0;
	padding:100px 0;
	opacity:0;
	transition:opacity 0.5s ease;
	pointer-events: none; /* Disable pointer events to make buttons clickable */
}

.visible {
  opacity: 1;
  pointer-events: auto; /* Enable pointer events when visible */
}

.container_hidden h2.special {
	color:var(--clr-alt);
	text-align:center;
	position:absolute;
	top:-56px;
	left:50%;
	transform:translateX(-50%);
	font-size:8em;
	font-family:'Source Sans 3', sans-serif;
	font-weight:800;
	line-height:.8
}

.hidden_content {
	max-width:1630px;
	margin:50px auto 0 auto;
	padding:25px;
	color:white;
}

.hidden_content .btn_more {
	display:grid;
	color:white;
	text-decoration:none;
	cursor:pointer;
	justify-items:center;
	align-content:end;
}

.hidden_content .btn_more img {
	max-width:80px;
	margin-bottom:15px;
}

.hidden_logo {
	max-width:294px;
}

.logo_click img {
	max-width:200px;
}

.close_container {
	position: absolute;
	color: white;
	right: 5%;
	top: 0;
	cursor:pointer;
	font-family:'ATTACK', sans-serif;
	font-size:4em;
	font-weight:200;
}

.copy_desc p {
	font-size:1.5em;
}

.sponsor-logo_wrapper {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	align-items:center;
	justify-content:center;
}
.sponsor-logo_wrapper img {
	max-width:100%;
}

.sponsors_mobile .subheadline {
	text-align:left;
	padding-bottom:20px;
}

.sponsors_mobile .btn_more {
	display:inline-block;
	text-align:center;
	text-decoration:none;
	color:var(--clr-highlight);
	border:thin solid var(--clr-highlight);
	border-radius:50px;
	margin:0 0 25px 0;
	padding:10px 15px;
}

.acc_wrapper_spons .panel {
	grid-template-columns:1fr;
}

.acc_wrapper_spons .panel p {
	padding-bottom:10px;
}



/* Footer */

.footer_top,
.footer_middle,
.footer_bottom {
	background:var(--clr-main);
}

.footer_clip {
	background:var(--clr-main);
	height:104px;
	width:100%;
	
	clip-path: polygon(100% 0%,0% 100%,100% 100%);
}

.footer_middle {
	padding:40px 0 40px 0;
}

.footer_middle .footer_img {
	text-align:center;
}

.footer_middle .footer_img img {
	max-width:320px;
}

.footer_logo img {
	max-width:200px;
}

.footer_bottom {
	padding:40px 0 80px 0;
}

.footer_bottom a {
	text-decoration:none;
	color:var(--clr-alt);
	font-size:1.7em;
	font-weight:300;
	margin-right:15px;
	cursor:pointer;
}

.footer_links {
	display:flex;
	justify-content:space-between;
}

.footer_links_social img {
	max-height:55px;
	margin-left:25px;
}

.line_footer {
	display:block;
	height:1px;
	width:100%;
	background:var(--clr-alt);
	margin:20px 0;
}

/* mobile Ansicht */

@media screen and (min-width:1921px) {
	.hero_content img {
		width:734px;
	}
}

@media screen and (max-width:1450px) {
	/* Event Logo Nav */
	.nav_decal {
		right:5%;
	}
	/* Speaker */
	.panel .btn_alt {
		color:var(--clr-highlight);
		border:thin solid;
		display:inline-block;
		margin-top:25px;
	}
	.panel h3 {
		font-size:1.45em;
	}
	.s_speaker .grid-3 {
		grid-template-columns:repeat(2,1fr) !important;
	}
}

@media screen and (max-width:1280px) {
	.nav_decal {
		display:none;
	}
}

@media screen and (max-width:1180px) {
	.location_button_wrapper a {
		display: block;
  		margin: 15px 0;
		font-size:1em;
	}
}

@media screen and (max-width:1080px) {
 	.desk_only {
		display:none;
	}
	.mobile_only {
		display:block;
	}
	/* Grids */
	.grid-3,
	.grid-4,
	.grid-5,
	.grid-6 {
		grid-template-columns:repeat(2,1fr);
	}
}

@media screen and (max-width:900px) {
	/* Grids */
	.s_intro .grid-2 {
		grid-template-columns:1fr;
	}
	/* Hero */
	.hero_content img {
		width:66vw;
	}
	/* Hero Störer */
	.hero_stoerer {
		max-width:200px;
		top:32%;
	}
	/* Location */
	.location_wrapper .flex {
		display:block;
	}
	#location_address {
		text-align:center;
	}
	.s_location .f_right img {
		max-width:75px;
	}
	.location_wrapper h3 {
		font-size:1.8em;
	}
	.location_wrapper p {
		font-size:1.5em;
	}
	/* Schedule */
	.time_text_stroke {
		font-size:4em;
	}
	.schedule_agenda {
		grid-gap:1em;
	}
}

@media screen and (max-width:810px) {
	.grid-2,
	.grid-3 {
		grid-template-columns:1fr;
	}
}

@media screen and (max-width:768px) {
	.nav_btn_wrapper {
		display:none;
	}
}

@media screen and (max-width:600px) {
	h2 {
		font-size:2.5em;
	}
	/* Grids */
	.grid-4,
	.grid-5,
	.grid-6 {
		grid-template-columns:1fr;
	}
	/* Navigation */
	.menu-wrap .menu > div > div > .menu-top-nav-container > ul > li > a {
		font-size:1.8em;
		line-height:unset;
	}
	/* Hero */
	.hero_content img {
		width:88vw;
		top:37%;
	}
	header .logo,
	.nav_logo {
		max-width:160px;
	}
	/* Hero Störer */
	.hero_stoerer {
		max-width:150px;
		top:65%;
		right:50%;
		transform:translate(50% , -50%);
	}
	/* Intro */
	.s_intro {
		padding:70px 0 40px 0;
	}

	.s_intro p,
	.s_intro li,
	.s_course_overview p {
		line-height:1.5;
		font-size:1rem;
	}
	/* Image Grid */
	.s_img_grid .grid {
		grid-gap:3em;
	}
	/* Location */
	.location_wrapper {
		padding:40px 0 10px 0;
		height:100vh;
	}
	.location_wrapper h3 {
		font-size:1.5em;
	}
	.location_wrapper p {
		font-size:1.2em;
		margin-bottom:10px;
	}
	.location_bg {
		height:100vh;
	}
	.location_button_wrapper {
		position:relative;
		left:unset;
		top:unset;
		transform:translate(0, 50%);
	}
	/* Schedule */
	.time_text_stroke {
		font-size:3em;
		color:var(--clr-main);
		font-weight:300;
		width:100%;
	}
	.schedule_line {
		margin:45px 0;
	}
	.agenda {
		font-size:1.2em;
		font-weight:300;
	}
	/* Button Box */
	.animate-spin {
		max-width:250px;
		max-height:250px;
	}
	.center_image {
		max-width:95px;
		transform:translate(-50%, -165%);
	}
	/* Speaker */
	.s_speaker {
		padding:100px 0 50px 0;
	}
	.panel img {
		justify-self:center;
	}
	.panel .btn_alt {
		display:block;
		text-align:center;
	}
	/* Akkordeon */
	.panel {
		grid-template-columns:1fr;
	}
	/* Sponsoren */
	.sponsors_mobile .btn_more {
		display:block;
	}
	/* Footer */
	.footer_clip {
		clip-path:polygon(100% 30%, 0% 100%, 100% 100%);
	}
	.footer_logo {
		text-align:center;
	}
	.footer_links {
		display:block;
		text-align:center;
	}
	.footer_links_legal {
		margin-bottom:25px;
		display:grid;
	}
}

@media screen and (max-width:320px) {
	.hero_stoerer {
		max-width:120px;
	}
}

/* Neues CSS 07.03.2024 */

nav {
	padding:0;
}

.hero_img {
	width:100%;
	height:100vh;
	object-fit:cover;
}

header .logo, .nav_logo {
	padding-top:15px;
}

.nav_btn_wrapper {
	position:absolute;
	top:0;
	right:50%;
	transform:translateX(50%);
	width:100%;
	max-width:1630px;
	z-index:2;
}

.nav_decal_wrapper {
	width: 100%;
  max-width: 1630px;
  position: absolute;
  top: 50%;
  height: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Agenda */

.agenda span {
	font-weight:200;
	color:var(--clr-main);
}

/* Anpassungen große Monitore */

@media screen and (min-width:2561px) {
		.menu-wrap .menu > div > div > .menu-top-nav-container > ul > li > a {
		font-size:4em;
	}
}

/* Anpassung kleine Fenster */

@media screen and (max-height:840px) {
	.menu-wrap .menu > div > div > .menu-top-nav-container > ul > li > a {
		font-size:1.85em;
	}
}

/* Custom CSS 17.03.2025 */


.decal_lcaRT {
	display:none;
}


.page-id-1374 #menu-item-1058 {
	display:none;
	visibility:hidden;
}


.grid-1 {
	grid-template-columns:1fr;
}

.grid-1 .img_box {
	max-width:500px;
	width:100%;
	margin:0 auto;
}

@media screen and (max-height:750px) {
	.hero_stoerer {
		max-width:150px;
	}
	.menu-wrap .menu > div > div > .menu-top-nav-container > ul > li {
		font-size:1rem;
	}
}

.error404 .logo {
	display:none;
}

/* ECO EDUCATION */

.grid-1-2 {
	grid-template-columns:1fr 2fr;
	max-width:850px;
}

/* Tabellen Styling */

.s_table_reg {
	padding:50px 0;
}

.t_main {
	max-width:100%;
	width:100%;
	border-collapse: collapse;
	margin-top:25px;
}
.t_main,
.t_main td,
.t_main {
	border: 1px solid var(--clr-alt);
	padding:5px;
}

.tr_00 {
	background:var(--clr-alt);
}

.tr_01,
.tr_03,
.tr_05,
.tr_07 {
	background:#edeeea;
}

.tr_02,
.tr_04,
.tr_06,
.tr_08 {
	background:#fff;
}

td p,
th {
	font-size:1.5em;
}

th {
	color:white;
	font-weight:300;
	padding:5px;
}

.intro_splash {
	max-width:500px;
	margin-bottom:100px;
}


@media screen and (max-width:900px) {
	td p,
	th {
		font-size:1.1em;
	}
}

@media screen and (max-width:600px) {
	
	h2 {
		font-size:1.5em;
	}
	td p,
	th {
		font-size:.9em;
	}
}

/* Flip Card Anpassungen */

.card_position {
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
	width:85%;
	color:white;
}

.card_position strong {
	color:white;
  font-weight: 500;
}

@media screen and (max-width:1080px) {
	.card_position {
		position:relative;
		top:unset;
		transform:unset;
		color:black;
		width:100%;
	}
	
	.card_position strong  {
		color:black;
	}
}


/* Navigationselemente */

.faq_link_wrapper {
	display:none;
}

.faq_link_wrapper a {
	color:white;
	margin:0 10px;
	text-decoration:none;
	text-transform:uppercase;
	
}


/* Education Date Cards */
.s_date_cards {
	margin:50px 0;
}
.date_card {
	padding: 30px 50px;
  background: url('https://event.eco-platform.org/wp-content/uploads/2024/11/eco-platform-edu-hero-image_dark.jpg');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
  border-radius: 20px;
	position:relative;
	color:white !important;

	min-height:400px;
}

.date_card div strong {
	color:white;
}

.date_card:hover {
	box-shadow:1px 3px 15px rgba(0,0,0,.25);
}

.date_card h3 {
	color:white;
	text-align:center;
	font-size:2rem;
	font-weight:400;
	font-family:'ATTACK', sans-serif;
	text-transform:uppercase;
}

.date_card .grid {
	margin:75px 0;
	font-size:1.5rem;
}

.date_card .btn_main {
	display: block;
  max-height: 45px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  bottom: 20px;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
}

.date_card_stoerer {
	position: absolute;
  max-width: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
}

@media screen and (max-width:600px) {
	.date_card .gap-1 {
		grid-gap:0.5em;
	}
	.date_card h3 {
		margin-bottom:30px;
	}
	.date_card .grid-2 {
		grid-template-columns:repeat(2,1fr);
	}
}

@media screen and (max-width:375px) {
	.date_card_stoerer {
  	max-width: 200px;
	}
}


/* Preliminary Agenda */

.s_prelim_schedule {
	padding:120px 0 0 0;
}

.s_prelim_schedule h3 {
	font-size:2rem;
	margin-top:2rem;
	font-weight:300;
}

.time_text_agenda {
	font-size:2em;
	font-family:'ATTACK', sans-serif;
	font-weight:400;
	margin:1.5rem 0;
}

.prelim_schedule_wrapper .schedule_agenda {
	margin:3rem 0;
}

.prelim_schedule_wrapper .agenda {
	display:grid;
	grid-template-columns:1fr 20fr;
	grid-gap:.5rem;
	margin:.5rem 0;
	align-items:center;
}

.prelim_schedule_wrapper .agenda img {
	max-height:35px;
	justify-self:center;
}

.s_prelim_schedule .prelim_schedule_wrapper .schedule_agenda:last-child {
	margin-bottom:unset;
}

@media screen and (max-width:980px) {
	.prelim_schedule_wrapper .time_text_stroke {
		font-size:2em;
	}
	.prelim_schedule_wrapper .agenda {
		grid-gap:1rem;
	}
}

@media screen and (max-width:600px) {
	.prelim_schedule_wrapper .agenda img {
		max-height:unset;
		max-width:30px;
	}
}

/* ECO Education neue Kachel */

.date_card span {
	font-size: 1.3rem;
  font-weight: 300;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.date_card p {
	position: absolute;
  width: 90%;
  bottom: 80px;
  text-align: center;
  font-size: .75rem;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width:600px) {
	.date_card {
		padding:30px 20px;
	}
	.date_card span {
		top:12%;
	}
}

@media screen and (max-width:385px) {
	.date_card span {
		top:12%;
	}
}

/* Gold Sponsor Highlightbox */

.s_highlight p {
	font-size:1.5rem;
	font-weight:200;
	word-break:break-word;
	hyphens:auto;
}

.s_highlight .grid {
	box-shadow:0px 3px 12px rgba(0,0,0,.09);
	background:white;
	border-radius:10px;
	transition:all .3s ease;
}

.s_highlight .grid a {
	text-align:center;
}

.highlight_img {
	justify-self:center;
	align-self:center;
	max-width:500px;
}

.s_highlight .btn_main {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  width: 50%;
  font-weight: 200;
	margin:25px auto 0 auto;
}

.s_highlight .subheadline {
	padding:50px 0 50px 0;
}

.grid-1 .grid_img {
	max-width:330px;
}

@media screen and (max-width:1024px) {
	.s_highlight .grid-2 {
		grid-template-columns:1fr;
	}
	.s_highlight .grid  div {
		padding:10px;
	}
	.s_highlight .btn_main {
		margin:25px auto 0 auto;
	}
	.highlight_img {
		max-width:400px;
	}
}

@media screen and (max-width:600px) {
	.s_highlight p,
	.s_highlight .btn_main {
		font-size:1.2rem;
	}
	.s_highlight .btn_main {
		width:100%;
	}
	.highlight_img {
		max-width:300px !important;
	}
}

@media screen and (max-width:340px) {
		.highlight_img {
		max-width:240px !important;
	}
}

/* Anpassungen 12.03.2025 */

.speaker_addendum {
	text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-highlight);
}

/* Hero Special */

.s_hero_special #bg_container,
.s_hero_special .hero_img {
	height:50vh;
	min-height:400px;
}

.s_hero_special .hero_special_logo {
	position:absolute;
	left:50%;
	bottom:15px;
	transform:translateX(-50%);
	max-width:550px;
}

.s_hero_special .hero_content_special {
	text-align:center;
	margin-bottom:-80px;
}

.s_hero_special .hero_content_special h1 {
	text-transform:uppercase;
	font-size:5rem;
	font-weight:400;
}

.s_hero_special .hero_content_special p {
	font-size:1.6rem;
	font-weight:400;
	font-family:'ATTACK', sans-serif;
	margin:0 auto;
}


@media screen and (max-width:600px) {
	.s_hero_special .hero_special_logo {
		max-width:300px;
	}
	.s_hero_special .hero_content_special h1 {
		font-size:2rem;
	}
	.s_hero_special .hero_content_special p {
		font-size:1rem;
	}
}

/* Agenda Vertical CSS */

.s_agenda_neu {
	padding:50px 0;
}

.agenda {
    max-width: 100%;

}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 0px;
}

/* Vertikale Linie nur von Punkt zu Punkt */
.timeline::before {
    content: "";
		position: absolute;
		left: 172px;
		top: 10px;
		bottom: 40px;
		width: 6px;
		background: var(--clr-main);
		z-index: 0;

}

.event {
    display: flex;
    align-items: top;
    position: relative;
    margin-bottom: 30px;
}

.time {
	width: 160px;
  text-align: left;
  font-weight: 300;
  color: var(--clr-main);
  padding-right: 20px;

}

.line-container {
    position: relative;
    width: 30px;
    display: flex;
    justify-content: center;
}

.circle {
    width: 30px;
    height: 30px;
    background: white;
    border: 6px solid var(--clr-highlight);;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 17%);
    z-index: 1; /* Kreise sind über der Linie */
}

.details {
    flex: 1;
    padding-left: 20px;
}

.title {
    color: var(--clr-main);
}

.description {
    color: var(--clr-highlight);
		font-weight: bold;
} 

.s_agenda_neu .agenda strong {
	color:var(--clr-highlight);
}

.time,.title,.description {
	font-family:'ATTACK', sans-serif;
}

.time_special {
	max-width:50px;
	margin-left:40px;
}

.agenda_neu_subline {
	font-weight:400;
	font-size:1.5em;
}

@media screen and (max-width:882px) {
		.timeline::before {
		bottom:80px;
	}
}

@media screen and (max-width:600px) {
	.time {
		margin-top:5px;
	}
	.timeline::before {
		bottom:110px;
		left:125px;
	}
	.circle {
		left:-106%;
	}
	.details {
		padding-left:unset;
		margin-left:-20px;
	}
	.agenda_neu_subline {
		font-size:1.2em;
	}
}

@media screen and (max-width:330px) {
	.timeline {
		display:inline;
	}
	.circle {
		display:none;
	}
	.event {
		display:block;
		margin-bottom:2rem;
	}
	.details {
		margin-left:unset;
	}
	.time_special {
		margin-left:0;
	}
}

/* Lightbox-Styling */

.description, .description > strong {
	cursor:pointer;
	transition:all .3s ease;
}

.description:hover, .description:hover > strong {
	color:var(--clr-highlight);
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	padding: 20px;
	z-index:3;
}

.lightbox-content {
	background: white;
	padding: 30px;
	width: 60%;
	max-width: 990px;
	text-align: left;
	position: relative;
	border-radius: 10px;
	max-height: 80vh;
	overflow-y: auto;
}

.close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
}

/* Versteckte Inhalte */
.lightbox-content-hidden {
	display: none;
}

/* Lightbox Text Anpassungen */

.lightbox-content h2 {
	font-size:1.5rem;
	margin-bottom:1.5rem;
	text-transform:unset;
}

.lightbox-content p {
	margin-bottom:1rem;
}

.lightbox-content ul {
	padding-left:1rem;
	margin-bottom:1rem;
}

.lightbox-content p, .lightbox-content li {
	font-size:1.125rem;
	font-weight:200;
}

@media screen and (max-width:1366px) {
	.lightbox-content {
		width:80%;
	}
}

@media screen and (max-width:1024px) {
	.lightbox-content {
		width:95%;
	}
}

@media screen and (max-width:600px) {
	.lightbox-content h2 {
		font-size:1.3rem;
		margin-bottom:1.3rem;
	}
.lightbox-content p, .lightbox-content li {
		font-size:1rem;
	}
}