/*
	Theme Name: Lars Bierfischer 2026
	Theme URI: https://www.bierfischer.de/
	Description: Lars Bierfischer 2026 Theme
	Version: 1.0
	Author: Christoph Karnebogen, Mirco Hueneke
	Author URI: http://www.diewildengestalten.de
*/

/* ------------------- WEBFONT IMPORT (via GOOGLE FONTS) ------------------- */

/* barlow-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/barlow-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500 - MEDIUM */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/barlow-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500italic - MEDIUM ITALIC */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  src: url('fonts/barlow-v13-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-800 - EXTRABOLD */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/barlow-v13-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* barlow-semi-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/barlow-semi-condensed-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-semi-condensed-700italic - BOLD ITALIC */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Semi Condensed';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/barlow-semi-condensed-v16-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-semi-condensed-800 - EXTRABOLD */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/barlow-semi-condensed-v16-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-semi-condensed-800italic - EXTRABOLD ITALIC */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Semi Condensed';
  font-style: italic;
  font-weight: 800;
  src: url('fonts/barlow-semi-condensed-v16-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}





/* ------------------- VARIABLES ------------------- */
/* fuer IE extra script css-vars.js laden */
:root {
	--white: #ffffff;
	
	--lb-blue: #055398;
	--lb-green: #95bb20;
}



/* ------------------- BASIC ------------------- */

body{
	font-family: 'Barlow';
	font-style: normal;
	font-weight: 500;
	font-size: 19px;
	line-height: 1.6;
	color: var(--lb-blue);
}

::focus {
    outline: 0 !important;
}

.effect, a{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

p{
	margin-bottom: 40px;
}

p:last-of-type{
	margin-bottom: 0;
}

a {
	color: inherit;
}

a:hover {
	color: inherit;
}




/* --------------- HEADINGS AND TXT --------------- */

h1{
	color: var(--lb-green); 
	font-size: 50px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 130px;
}

h2{
	color: var(--lb-green); 
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 50px;
}

h4{
	font-size: 19px;
	text-transform: uppercase;
	color: var(--lb-green);
    margin-bottom: 15px;
}





/* -------------------- COLORS -------------------- */

.bg-gradient{
	--bg: linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
}

.bg-default{
	--bg: #ffffff;
}






/* ------------------- NAVIGATION ------------------- */

.navbar {
    padding: 40px 55px 0 55px;
    position: absolute;
    z-index: 500;
    width: 100%;
}

.navbar-brand {
    padding: 0;
}

.nav-link {
    color: white;
	border-radius: 100px;
	border: 1px solid white;
	padding: 10px 20px !important;
	font-size: 12px;
	text-transform: uppercase;
	margin-left: 20px;
}

.nav-link:hover {
	background-color: white;
}

body:not(.home) .nav-link{
	color: var(--lb-blue);
	border: 1px solid var(--lb-blue);
}

.bun, .patty{
	background-color: white;
	height: 3px;
	width: 30px;
	display: block;
	margin-bottom: 6px;
	transform: rotate(0deg);
	
	-webkit-transition: all 0.3s ease-in-out !important;
	-moz-transition: all 0.3s ease-in-out !important;
	-ms-transition: all 0.3s ease-in-out !important;
	-o-transition: all 0.3s ease-in-out !important;
	transition: all 0.3s ease-in-out !important;
}

.bun-bottom{
	margin-bottom: 0;
	width: 30px;
}

.fake-patty{
	position: absolute;
	margin-top: -9px;
	transform: rotate(0deg);
	
	-webkit-transition: transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out;
	-ms-transition: transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.navbar.active .patty{
	transform: rotate(-45deg);
}

.navbar.active .fake-patty{
	transform: rotate(45deg) !important;

	-webkit-transition: transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out;
	-ms-transition: transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.navbar.active .bun{
	opacity: 0;
}

.navbar-toggler {
    position: absolute;
    top: 60px;
    right: 40px;
    z-index: 5;
    padding: 0;
    border: 0;
    margin-left: 30px;
	z-index: 1200;
}

.navbar-toggler:hover .bun-bottom{
	width: 17px;
}

.navbar-toggler:focus {
	outline: none;
}

.navbar-brand img{
	width: 240px;
}

.navbar-nav .nav-instagram .nav-link {
    width: 40px;
    height: 40px;
    padding: 0 !important;
    border: 0;
    border-radius: 0;
    font-size: 0;
    margin-left: 45px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/Icon-Instagram.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.navbar-nav .nav-instagram .nav-link:hover,
.navbar-nav .nav-instagram .nav-link:focus{
	background-color: rgba(255, 255, 255, 0.15);
}

.navbar-nav .nav-instagram .nav-link:focus-visible{
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.spacer-vita p { margin-bottom: 10px!important; margin-top: 25px; }















/* ----------------- FOOTER ----------------- */

footer {
    margin-top: 100px;
    padding-left: 120px;
    padding-right: 90px;
	padding-bottom: 30px;
    background-size: cover;
    background-position: top left;
}

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

.footer-right {
    display: flex;
    flex-wrap: wrap;
    align-content: end;
    padding-bottom: 31px;
    justify-content: end;
}

.big-lars {
    font-size: 123px;
    color: white;
    font-family: 'Barlow Semi Condensed';
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
	line-height: 0.97;
	margin-top: 330px;
}

.dwg{
	font-size: 12px;
	margin-top: 20px;
	text-transform: uppercase;
	color: white;
}

.pill-btn{
	padding: 10px 20px;
	border-radius: 100px;
	font-size: 12px;
	text-transform: uppercase;
	margin: 0 5px;
	margin-top: 10px;
}

.pill-btn:hover{
	text-decoration: none;
	transform: scale(1.05);
}

.pill-btn.btn-white{
	background-color: white;
}

.pill-btn.btn-blue{
	color: white;
	background-color: var(--lb-blue);
	margin-left: 20px;
}

.logo-bar img{
	width: 320px;
}

.logo-bar {
    transform: translateY(-40px);
}









/* ----------------- ELEMENTS ----------------- */

.wpcf7{
	margin-top: 60px;
}

.screen-reader-text{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

label, input, textarea{
	width: 100%;
    border: 0;
    border-radius: 13px;
}

.wpcf7 p{
	margin-bottom: 30px;
}

input, textarea{
    padding: 10px 20px;
}

input::placeholder, textarea::placeholder{
	color: var(--lb-blue);
	opacity: 0.5;
}

input:focus-visible, textarea:focus-visible{
	outline: var(--lb-green) auto 1px;
}

.wpcf7 input[type="submit"]{
	background-color: var(--lb-green);
	color: white;
}

.wpcf7 input[type="submit"]:hover{
	opacity: 0.75;
}

.wpcf7 form.sent input, .wpcf7 form.sent textarea{
	display: none;
}

.infos{
	color: var(--lb-blue);	
	font-size: 14px;
	opacity: 0.5;
	text-align: center;
}

.infos a{
	text-decoration: underline;
}

.infos a:hover{
	text-decoration: none;
	opacity: 1;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.2em 1em;
    border: 2px solid var(--lb-blue);
    text-align: center;
    border-radius: 13px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--lb-green) !important;
}
















/* ----------------- ELEMENTS ----------------- */

.ds-im h1 {
    margin-bottom: 50px;
}

.ds-im h2 {
    margin-top: 50px;
    text-align: left;
    font-size: 30px;
    margin-bottom: 10px;
	color: var(--lb-green);
}

.ds-im h3 {
    margin-bottom: 10px;
    margin-top: 40px;
    text-align: left;
    font-weight: bold;
    font-size: 25px;
	color: var(--lb-green);
}

.ds-im h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 30px;
	color: var(--lb-blue);
	text-transform: none;
}

.ds-im ul {
    padding-left: 15px;
}

.ds-im a {
    color: var(--lb-green);
	word-break: break-all;
}

#lay-teaser{
	height: 1115px;
    margin-bottom: -1px;	
	position: relative;
	overflow-x: clip;

	/*
	background: #95BB20;
	background: -webkit-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: -moz-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#95BB20", endColorstr="#055398", GradientType=0);	
	*/
}

#lay-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

	 background-image: var(--bg-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

#lay-teaser > * {
  position: relative;
  z-index: 3;
}

#lay-intro{
	position: relative;
}

#lay-outro{
	padding-top: 250px;
	padding-bottom: 100px;
	
	font-size: 40px;
	text-align: center;
	font-weight: 800;
	color: var(--lb-green);
	line-height: 1;
}

.lay-topics-1{
	padding-top: 100px;
	padding-bottom: 150px;
}

.lay-topics-center{
	position: relative;
}

.lay-topics-2{
	padding-top: 150px;
	padding-bottom: 450px;
}

#lay-ideas{
	position: relative;
}

#lay-dsim {
    padding-top: 250px;
}

.intro-sec-1{
	padding-top: 150px;
	
	/*
	background: #95BB20;
	background: -webkit-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: -moz-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#95BB20", endColorstr="#055398", GradientType=0);
	*/
}

.intro-sec-2{
	padding-bottom: 150px;
}

.intro-sec-3{
	/*
	background: #95BB20;
	background: -webkit-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: -moz-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#95BB20", endColorstr="#055398", GradientType=0);	
	*/
}

.icon-check{
	display: block;
	margin: 0 auto;
	width: 55px;
	margin-bottom: 33px;
}

.big-lars-teaser {
    font-size: 123px;
    color: white;
    font-family: 'Barlow Semi Condensed';
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
	line-height: 0.97;
	margin-top: 500px;
	text-align: center;
	z-index: 5 !important;
}

.big-lars-teaser span{
	position: relative;
}

.big-lars-teaser img {
    position: absolute;
    right: 0;
    bottom: -100%;
    width: 135px;
    transform: translate(55%, 20%);
}

.lars-ghost {
    position: absolute !important;
    bottom: 0;
    left: 50%;
	z-index: 2 !important;
    height: 1000px;
    transform: translatex(-50%);
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

#lay-teaser .container-fluid{
    padding-right: 55px;
    padding-left: 55px;	
}

.teaser-text{
    text-align: center;
    margin: 0 auto;
    color: white;
    margin-top: 75px;
    max-width: 685px;
    font-size: 27px;
    font-family: 'Barlow';
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
}

.teaser-laufband{
	position: absolute !important;
	top: 300px;
	left: 0;
	z-index: 1 !important;
	width: 100%;
	overflow: hidden;

	color: var(--lb-green);
	font-family: 'Barlow Semi Condensed';
	font-style: italic;
	font-weight: 800;
	font-size: 145px;
	white-space: nowrap;
	letter-spacing: -5px;
}

.teaser-laufband-track{
	display: flex;
	width: max-content;
	animation: laufband var(--laufband-duration, 18s) linear infinite;
	will-change: transform;
}

.teaser-laufband-inner{
	display: flex;
	flex-shrink: 0;
	gap: 100px;
	padding-right: 100px;
}

.teaser-laufband-track span{
	flex: 0 0 auto;
}

@keyframes laufband{
	from{
		transform: translate3d(0, 0, 0);
	}

	to{
		transform: translate3d(-50%, 0, 0);
	}
}

.arrow-down{
	width: 20px;
	position: absolute !important;
	bottom: 150px;
	left: 50%;
	transform: translateX(-50%);
}

.signature{
	max-width: 100%;
	height: 70px;
	margin-top: 50px;
}

.special-space{
	margin-bottom: 150px;
}

.intro-sec-1-margin{
	margin-bottom: -100px;
}

.right-box{
	margin-top: 250px;
}

.left-box{
	margin-top: -100px;
}

.left-box h4{
	margin-top: 150px;
}

.intro-sec-3-img{
	margin-top: -300px;
}

.accordion{
	margin-top: 50px;
}

.accordion .card{
	border: 0;
	border-top: 1px solid rgba(0, 83, 152, 0.35);
	border-radius: 0;
	background: transparent;
}

.accordion .card:last-child{
	border-bottom: 1px solid rgba(0, 83, 152, 0.35);
}

.accordion .card-header{
	padding: 0;
	border: 0;
	background: transparent;
}

.accordion .faq-btn {
    position: relative;
    width: 100%;
    padding: 25px 55px 25px 15px;
    color: var(--lb-blue);
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
}

.accordion .faq-btn::after{
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	width: 18px;
	height: 18px;
	background: url("img/Icon-Arrow-Up-blue.svg") center / contain no-repeat;
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.accordion .faq-btn.collapsed::after{
	transform: translateY(-50%) rotate(180deg);
}

.accordion .card-body {
    padding: 0 150px 25px 15px;
    color: var(--lb-blue);
}

.col-12 ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.col-12 ul li{
    position: relative;
    padding-left: 25px;
    color: var(--lb-blue);
}

.col-12 ul li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 15px;
	width: 15px;
	height: 15px;
	background: url("img/Icon-Arrow-Up-blue.svg") center / contain no-repeat;
    transform: rotate(90deg) translateX(-7px);
}

.col-12 ul li strong,
.col-12 ul li b{
	font-weight: 800;
}

.acf-laufband {
    position: absolute;
    width: 100vw;
    white-space: nowrap;
    z-index: 2;
    overflow-x: hidden;
    font-family: 'Barlow Semi Condensed';
    font-style: italic;
    font-weight: 800;
    font-size: 68px;
}

.acf-laufband-top{
    top: 100px;	
}

.acf-laufband-track{
	display: flex;
	width: max-content;
	animation: acf-laufband-move var(--acf-laufband-duration, 20s) linear infinite;
}

.acf-laufband-track span{
	flex: 0 0 auto;
	padding-right: 15px;
}

.acf-laufband--reverse .acf-laufband-track{
	animation-direction: reverse;
}

@keyframes acf-laufband-move{
	from{
		transform: translateX(0);
	}
	to{
		transform: translateX(-50%);
	}
}

.spacer-mill{
	margin-bottom: 50px;
}

.spacer-vita{
	margin-top: 230px;
}

.intro-sec-3{
	padding-bottom: 200px;
}

.intro-sec-4{
	position: relative;
}

.fake-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
	background: #95BB20;
	background: -webkit-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: -moz-linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	background: linear-gradient(-90deg, rgba(149, 187, 32, 0.25) 0%, rgba(5, 83, 152, 0.25) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#95BB20", endColorstr="#055398", GradientType=0);		
}

.acf-laufband-center{
    top: unset;
    bottom: 120px;	
}

.img-last{
	margin-bottom: -100px;
	margin-top: 250px;
}

.acf-laufband-bottom{
	bottom: 80px;
}

.img-ideas-left{
	margin-top: 200px;
	margin-bottom: 150px;
}

.img-ideas-right{
	margin-top: -300px;
	margin-bottom: 150px;
}

#anchor-ideas{

}

.city-flipper {
	display:inline-block;
	transform-origin:center center;
	transform-style: preserve-3d;
	backface-visibility:hidden;
}

/* rausdrehen */
.flip-out{
	animation: rotateAway .5s forwards;
}

/* reindrehen */
.flip-in{
	animation: rotateIn .5s forwards;
}

@keyframes rotateAway{
	0%{
		transform: rotateX(0deg);
		opacity:1;
	}
	100%{
		transform: rotateX(90deg);
		opacity:0;
	}
}

@keyframes rotateIn{
	0%{
		transform: rotateX(-90deg);
		opacity:0;
	}
	100%{
		transform: rotateX(0deg);
		opacity:1;
	}
}

.dwg-parallax{
	will-change: transform;
}

.img-2 {
	margin-top: -100px;
}

.img-4 {
	max-width: 50%;
	margin-top: 20px;
}








/* ------------------------------------------------ MOBILE ------------------------------------------------ */

@media screen and (max-width: 767.98px) { 
	
	.container{
		padding-left: 40px;
		padding-right: 40px;
	}
	
	#lay-teaser{
		height: 930px;
	}
	
	.lars-ghost {
		height: 800px;
	}
	
	.big-lars {
		font-size: 80px;
	    margin-top: 190px;
	}
	
	.footer-content-wrap {
		flex-direction: column;
	}
	
	footer {
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.navbar {
		padding: 40px 40px 0 40px;
	}
	
	.navbar-brand img {
		width: 200px;
	}
	
	.navbar-toggler {
		top: 50px;
	}
	
	#lay-teaser .container-fluid {
		padding-right: 40px;
		padding-left: 40px;
	}
	
	.teaser-laufband {
		top: 280px;
		font-size: 75px;
		letter-spacing: 0;
	}
	
	.teaser-laufband-inner{
		gap: 40px;
	}
	
	.big-lars-teaser {
        font-size: 80px;
        text-align: left;
        margin-top: 420px;
	}
	
	.nav-link {
		margin-left: 0;
		margin-bottom: 10px;
		background-color: white;
		color: var(--lb-blue);
		text-align: center;
	}
	
	#menu-main-menu {
		padding-top: 40px;
	}
	
	.navbar-nav .nav-instagram .nav-link {
		background-color: transparent;
		display: block;
		margin: 0 auto;
	}
	
    .big-lars-teaser img {
        right: 0;
        bottom: 0;
        width: 105px;
        transform: translate(95px, 41px);
    }
	
	.teaser-text {
		margin-top: 50px;
		font-size: 24px;
	}
	
	.arrow-down {
		bottom: 0;
	}
	
	h1 {
		font-size: 42px;
		margin-bottom: 40px;
	}
	
    .home h1 {
        height: 168px;
    }
	
	.special-space {
		margin-bottom: 100px;
	}
	
	.intro-sec-1-margin {
		margin-bottom: 40px;
	}
	
	.left-box {
		margin-top: 0;
	}
	
	.left-box h4 {
		margin-top: 100px;
	}
	
	.right-box {
		margin-top: 100px;
	}
	
	.intro-sec-3-img {
		margin-top: 0;
	}
	
	.intro-sec-2{
		padding-bottom: 100px;
	}
	
	.acf-laufband {
		font-size: 40px;
	}
	
	.acf-laufband-top {
		top: 250px;
	}
	
	.acf-laufband-center {
		bottom: 60px;
	}
	
	.acf-laufband-bottom {
		bottom: 60px;
	}
	
	.spacer-vita {
		margin-top: 100px;
	}
	
	.intro-sec-3 {
		padding-bottom: 200px;
	}
	
	.accordion .card-body {
		padding: 0 15px 25px 15px;
	}
	
	.lay-topics-1 {
		padding-bottom: 100px;
	}
	
	.lay-topics-2 {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.img-ideas-left {
		margin-top: 0;
		margin-bottom: 100px;
	}
	
	.img-ideas-right {
		margin-top: 100px;
		margin-bottom: 100px;
	}
	
	.img-last {
		margin-bottom: 0;
		margin-top: 100px;
	}
	
	#lay-outro{
		padding-top: 100px;
	}
	
	.logo-bar img {
		width: 100%;
	}
	
	footer {
		background-position: -200px top;
	}
	
	.footer-right {
		margin-top: 30px;
		padding-bottom: 0;
		justify-content: start;
	}
	
	.pill-btn {
		margin: 0 5px;
		margin-left: 0;
		margin-right: 10px;
		margin-bottom: 10px;
	}
	
	.pill-btn.btn-blue {
		margin-left: 0;
	}

	.img-2 {
	margin-bottom: -50px;
		width: 100%;
}

.img-4 {
	width: 100%;
	max-width: 100%;
	margin-top: -20px;
}
	
}
/* ------------------------------------------------ Extra small devices ------------------------------------------------ */

@media screen and (max-width: 575.98px) { 
	

	
}





/* ------------------------------------------------ TABLET ------------------------------------------------ */

@media (min-width: 768px) and (max-width: 991.98px) { 
	
	.big-lars {
		font-size: 100px;
	}
	
	.footer-right {
		justify-content: end;
	    padding-bottom: 50px;
	}
	
	.pill-btn {
		margin-top: 10px;
	}
	
	footer {
		padding-left: 90px;
	}
	
	.acf-laufband-bottom {
		bottom: -50px;
	}
	
	.acf-laufband-center {
		bottom: 30px;
	}
	
	.acf-laufband-top {
		top: -80px;
	}
	
	.nav-link {
		margin-left: 0;
		margin-bottom: 10px;
		background-color: white;
		color: var(--lb-blue);
		text-align: center;
	}
	
	#menu-main-menu {
		padding-top: 40px;
	}
	
	.navbar-nav .nav-instagram .nav-link {
		background-color: transparent;
		display: block;
		margin: 0 auto;
	}
	
	
	.right-box {
		margin-top: 80px;
	}
	
    .home h1 {
        height: 200px;
		margin-bottom: 80px;
    }
	
}


/* ------------------------------------------------ SPECIAL ------------------------------------------------ */

@media (min-width: 768px) and (max-width: 1051px) { 

	.big-lars-teaser img {
		right: -75px;
		bottom: -61px;
		transform: translate(60%, -10%);
	}

}


/* ------------------------------------------------ Small Computers ------------------------------------------------ */

@media (min-width: 992px) and (max-width: 1199.98px) { 
	
	.acf-laufband-center {
		bottom: 78px;
	}	

	
	.acf-laufband-bottom {
		bottom: -20px;
	}
	
	.pill-btn {
		margin-top: 10px;
	}
	
    .home h1 {
        height: 200px;
		margin-bottom: 30px;
    }
	
}

/* ------------------------------------------------ SPECIAL ------------------------------------------------ */

@media screen and (max-width: 420px) { 

  .big-lars-teaser img {
        transform: translate(36px, -99px);
    }

}












