/*
Theme Name: Amari_child
Theme URI: 
Author: Martin Pelijak
Template: genesis
Description: Webseite für Re.Ich
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: 
*/

@import url("https://use.typekit.net/wwm1cgw.css");

*{
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: none;
}

*:focus{
	outline: none;
}

a{
	color: inherit;
	text-decoration: none;
}

input{
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	font-family: josefin-sans, sans-serif;
	-webkit-appearance: none;
}

iframe{
	overflow: hidden;
}

iframe html{
	overflow: hidden;
}

strong{
	font-weight: 500 !important;
}

h1, h2, h3{
	font-family: josefin-sans, sans-serif;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 100;
	margin-bottom: 26px;
	margin-top: 0;
	line-height: 1.5em;
}

h3{
	font-size: 26px;
}

.title{
	/*text-align: center;*/
}

.title h2{
	font-size: 56px;
	margin: 0 0 40px;
	color: #fff;
	line-height: 1em;
	position: relative;
	/*display: inline-block;*/
}

.title h2:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -10px;
	transform: scaleX(0);
	transform-origin: left;
	background-image: linear-gradient(to right, rgba(107, 107, 107, 0), rgba(107, 107, 107, 1));
	transition: all 1s;
}

.title h2.active:after{
	transform: scaleX(1);
}

#loading_overlay {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	background: #171717;
	z-index: 99999;
}

#loading_overlay.loaded{
	-webkit-animation: loaded 0.8s forwards ease-in-out;
	animation: loaded 0.8s forwards ease-in-out;
}

@-webkit-keyframes loaded {
	0% { opacity: 1;}
	99% { opacity: 0; }
	100% { opacity: 0;}
}

#loading_overlay.destroy{
	display: none;
}

#loading_overlay .percent{
	width: 100%;
	text-align: center;
	font-size: 30px;
}

.overlay__inner {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.overlay__content {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.spinner {
	width: 75px;
	height: 75px;
	display: inline-block;
	border-width: 2px;
	border-color: rgba(107, 107, 107, 0);
	border-top-color: rgba(107, 107, 107, 1);
	animation: spin 1s infinite linear;
	border-radius: 100%;
	border-style: solid;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

html, body{
	margin: 0;
	padding: 0;
	font-family: josefin-sans, sans-serif;
	font-weight: 300;
	font-size: 18px;
	background-color: #0C0C0C;
	color: #fff;
	line-height: 1.5em;
}

header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	transition: background-color 0.3s;
	background-color: rgba(0, 0, 0, 0);
}

header.scroll{
	background-color: rgba(0, 0, 0, 0.6);
}

header.impress{
	background-color: rgba(0, 0, 0, 0.6);
}

header .wrap{
	width: 100%;
	display: flex;
	align-items: center;
}

header .max_100{
	position: relative;
	max-width: inherit;
	width: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 9999;
	padding: 60px 20px 20px;
}

header .max_100 .menu_hamburger{
	z-index: 9999;
	display: none;
}

header .max_100 .menu_hamburger .line{
	margin: 4px 0;
	background-color: #fff;
	height: 1px;
	width: 20px;
	transition: transform 0.5s;
}

header .max_100 .menu_icons{
	display: flex;
	padding: 10px 20px;
	border-radius: 4px 0 0 4px;
	z-index: 9999;
	position: absolute;
	right: 20px;
	/*top: 50%;
	transform: translateY(-50%);*/
	transition: background-color 0.3s;
}

header .max_100 .menu_icons:after{
	content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0px;
    transform-origin: left;
    background-image: linear-gradient(to right, rgba(107, 107, 107, 0), rgba(107, 107, 107, 1), rgba(107, 107, 107, 0));
}


header .max_100 .menu_icons div{
	content: '';
	height: 1em;
	width: 1em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 0;
	/*top: 50%;
	transform: translateY(-50%);*/
	margin: 0 5px;
}

header .max_100 .menu_icons div.instagram{
	background-image: url(images/icons/instagram.svg);
}

header .max_100 .menu_icons div.facebook{
	background-image: url(images/icons/facebook.svg);
}

header .max_100 .menu_icons div.youtube{
	background-image: url(images/icons/youtube.svg);
}

header .max_100 .cross_wrap{
	width: 30px;
	position: relative;
	cursor: pointer;
}

header .max_100 .cross_wrap .line{
	width: 100%;
	height: 2px;
	border-radius: 2px;
	top: 50%;
	background-color: #fff;
	transform: translateY(-50%);
	position: absolute;
	transition: all 0.3s;
}

header .max_100 .cross_wrap .line:nth-of-type(1){
	top: calc(50% - 7px);
}

header .max_100 .cross_wrap .line:nth-of-type(3){
	top: calc(50% + 7px);
}

header .max_100 .cross_wrap.active .line:nth-of-type(1){
	transform: translateY(-50%) rotate(45deg);
	top: calc(50%);
}

header .max_100 .cross_wrap.active .line:nth-of-type(2){
	opacity: 0;
}

header .max_100 .cross_wrap.active .line:nth-of-type(3){
	transform: translateY(-50%) rotate(-45deg);
	top: calc(50%);
}

header .max_100 .menu_wrap{
	width: 100%;
	transition: transform 0.3s;
}

header.active .max_100 .menu_wrap{
	transform: translateY(0);
}

header .max_100 .menu_wrap nav ul{
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .max_100 .menu_wrap nav ul li{
	transition: all 1s;
	font-size: 24px;
	list-style: none;
	line-height: 1em;
	position: relative;
	text-align: center;
	font-family: josefin-sans, sans-serif;
	font-weight: 100;
}

header.active .max_100 .menu_wrap nav ul li{
	opacity: 1;
	transform: translateY(0px);
}

header.active .max_100 .menu_wrap nav ul li:nth-of-type(1){
	transition-delay: 0.4s;
}

header.active .max_100 .menu_wrap nav ul li:nth-of-type(2){
	transition-delay: 0.6s;
}

header.active .max_100 .menu_wrap nav ul li:nth-of-type(3){
	transition-delay: 0.8s;
}

header.active .max_100 .menu_wrap nav ul li:nth-of-type(4){
	transition-delay: 1s;
}

header.active .max_100 .menu_wrap nav ul li:nth-of-type(5){
	transition-delay: 1.2s;
}

header .max_100 .menu_wrap nav ul a li{
	text-decoration: none;
	position: relative;
	margin: 0 20px;
}

header .max_100 .menu_wrap nav ul a li:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -5px;
	transform: scaleX(0);
	transform-origin: left;
	background-image: linear-gradient(to right, rgba(107, 107, 107, 0), rgba(107, 107, 107, 1));
	transition: all 0.3s;
}

header .max_100 .menu_wrap nav ul a li.active:after{
	transform: scaleX(1);
}

header .max_100 .menu_wrap nav ul li{

}

header .max_100 .menu_wrap nav ul a:hover li:after{
	transform: scaleX(1);
}

header .max_100 .logo_wrap{
	position: relative;
	z-index: 9999;
	display: none;
}

header .max_100 .logo_wrap a{
	text-decoration: none;
	display: flex;
	align-items: center;
}

header .max_100 .logo_wrap .logo{
	height: 80px;
	transition: height 0.5s;
}

header.up{
	background-color: #fff;
	position: fixed;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
	animation: slide-down 0.5s;
}

@keyframes slide-down{
	0%{
		transform: translateY(-100%);
	}

	100%{
		transform: translateY(0%);
	}
}

header.up .max_100{
	
}

header.up .max_100 .logo_wrap .logo{
	height: 1.5em;
}

.max_1300{
	overflow: hidden;
	width: calc(100% - 40px);
	max-width: 1100px;
	padding: 60px 60px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.max_500{
	overflow: hidden;
	width: calc(100% - 40px);
	max-width: 500px;
	padding: 60px 60px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.changecolor{
	color: #eee;
	font-weight: 500;
}

section.page{
	margin-top: 100px;
}

section.start{
	width: 100%;
	height: 100vh;
	position: relative;
}

section.start .bild{
	width: 100%;
	height: calc(100vh + 100px);
	position: absolute;
	left: 0;
	background-size: cover;
	background-position: center 150%;
	background-repeat: no-repeat;
}

section:not(.s_startseite) section.start .bild:after{
	content: '';
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
}

section.start .text{
	position: absolute;
	right: 15%;
	top: 50%;
	transform: translateY(-50%);
	width: 20%;
	max-width: 250px;
}

section.start .text svg{
	opacity: 0;
	transition: opacity 1s ease;
	text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
	width: 100%;
}

section.start.active .text svg{
	opacity: 1;
}

section.start .scroll{
	position: fixed;
	top: calc(100vh - 100px);
	width: 50px;
	height: 50px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	-webkit-filter: drop-shadow( 3px 3px 10px rgba(0, 0, 0, 0.5));
	filter: drop-shadow( 3px 3px 10px rgba(0, 0, 0, 0.5));
	transition: all 0.3s;
	z-index: 2;
}

section.start .cls-st{
	fill: rgba(255, 255, 255, 0);
	stroke-dasharray: 1920;
    stroke-dashoffset: 1920;
}

section.start.active .cls-st{
	fill: rgba(255, 255, 255, 0);
	stroke-dasharray: 1920;
    stroke-dashoffset: 1920;
	animation: dash2 3s 0s ease-in forwards;
}

section.start .cls-1{
	fill: rgba(255, 255, 255, 0);
}

section.start.active .cls-1{
	fill: rgba(255, 255, 255, 0);
	animation: fill 1s 1s ease-in forwards;
}

@keyframes dash2 {
	0% {
      stroke-dashoffset: 1920;
    }

    30%{
    	stroke-dashoffset: 1700;
    	fill: rgba(255, 255, 255, 0);
    }
    100% {
      	stroke-dashoffset: 0;
		fill: rgba(255, 255, 255, 1);
    }
}

@keyframes fill {
	0% {
      fill: rgba(255, 255, 255, 0);
    }

    100% {
		fill: rgba(255, 255, 255, 1);
    }
}

section.start .scroll.hide{
	opacity: 0;
	transform: translateX(-50%) scale(1.5);
	pointer-events: none;
}

section.start .scroll:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-position: center;
	background-image: url(images/down.svg);
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
}

/*______________________________________________________________________*/

section.wrap_inner{
	position: relative;
	overflow: hidden;
	padding-top: 100px;
	/*background-color: #171717;*/
}

/*______________________________________________________________________*/

.s_startseite section.intro{
	position: relative;
	padding-bottom: 100px;
	background-color: #0C0C0C;
}

.s_startseite section.intro:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: -100px;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent #0C0C0C transparent;
}

.s_startseite section.intro .max_1300{
	position: relative;
}

.s_startseite section.intro .max_1300:after{
	content: '';
	width: 40%;
	padding-bottom: 40%;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	background-image: url(images/icons/note.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
}

.s_startseite section.intro .max_1300 p:last-of-type{
	margin-bottom: 0;
}

/*______________________________________________________________________*/


.s_startseite section.releases{
	position: relative;
	padding-bottom: 100px;
	background-color: #171717;
}

.s_startseite section.releases:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: -100px;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent #171717 transparent;
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap{
	margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #6B6B6B;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    cursor: pointer;
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .top{
	width: 100%;
	position: relative;
	padding: 0 20px
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .top:after{
	content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(images/icons/arrow_down.svg);
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .top h3{
	margin: 0;
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .item_wrap{
	width: 100%;
	padding: 20px 20px 0;
	display: none;
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .item_wrap .flex_wrap{
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .item_wrap .flex_wrap{
	margin-bottom: 10px;
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .item_wrap .flex_wrap .link{
	position: relative;
	cursor: pointer;
}

.s_startseite section.releases .max_1300 .art_wrap .fade_wrap .item_wrap .flex_wrap .link:after{
	content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    position: absolute;
    transform-origin: left;
    background-image: linear-gradient(to right, rgba(107, 107, 107, 0), rgba(107, 107, 107, 1));
}

.s_startseite section.overlay{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    left: 0;
    top: 0;
}

.s_startseite section.overlay .close{
	position: absolute;
	top: 40px;
	right: 40px;
	cursor: pointer;
	z-index: 1;
}
.s_startseite section.overlay .services_wrap{
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s_startseite section.overlay .services_wrap .releases_item{
	max-width: 500px;
	width: 100%;
	padding: 40px;
	border: 1px solid #fff;
}

.s_startseite section.overlay .services_wrap .releases_item .flex_wrap{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

/*.s_startseite section.overlay .max_1300 .releases_item .icons{
	min-width: 150px;
	border-left: 1px solid #6B6B6B;
	padding: 0 10px;
}*/

.s_startseite section.overlay .releases_item .release:not(:last-of-type){
	margin-bottom: 20px;
}

.s_startseite section.overlay .releases_item .flex_wrap span:last-of-type{
	text-align: right;
}

.s_startseite section.overlay .releases_item .flex_wrap span{
	position: relative;
}

.s_startseite section.overlay .releases_item .flex_wrap span:last-of-type:after{
	content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    position: absolute;
    transform-origin: left;
    background-image: linear-gradient(to right, rgba(107, 107, 107, 0), rgba(107, 107, 107, 1));
}

.s_startseite section.overlay .releases_item .icon_wrap{
	display: flex;
	justify-content: center;
}

.s_startseite section.overlay .releases_item .icon{
	width: 1.5em;
    height: 1.5em;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
    margin: 0 5px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.s_startseite section.overlay .releases_item .release:hover .icon{
    opacity: 1;
}

.s_startseite section.overlay .releases_item .icon.youtube{
	background-image: url(images/icons/youtube.svg);
}

.s_startseite section.overlay .releases_item .icon.spotify{
	background-image: url(images/icons/spotify.svg);
}

.s_startseite section.overlay .releases_item .icon.apple{
	background-image: url(images/icons/apple.svg);
}

.s_startseite section.overlay .releases_item .icon.tidal{
	background-image: url(images/icons/tidal.svg);
}
/*______________________________________________________________________*/

.s_startseite section.images{
	position: relative;
	background-color: #0C0C0C;
	padding-bottom: 100px;
}

.s_startseite section.images:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: -100px;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent #0C0C0C transparent;
}

.s_startseite section.images .max_1300{
}

.s_startseite section.images .max_1300 .grid_wrap{
	display: grid;
	grid-template-columns: 0.45fr 0.55fr;
	grid-template-rows: 300px 300px 300px 300px;
	grid-gap: 40px;
	grid-auto-flow: dense;
}

.s_startseite section.images .max_1300 .grid_wrap .image{
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: translateY(40px);
	transition: all 2s ease-out;
}

.s_startseite section.images .max_1300 .grid_wrap .image.active{
	opacity: 1;
	transform: translateY(0);
}

.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(1){
	background-image: url(images/bild1.jpg);
}

.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(2){
	background-image: url(images/bild2.jpg);
}

.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(3){
	grid-row: 2 / span 2;
	background-image: url(images/bild3.jpg);
}

.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(4){
	background-image: url(images/bild4.jpg);
}

.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(5){
	background-image: url(images/bild5.jpg);
}

.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(6){
	grid-row: 3 / span 2;
	background-image: url(images/bild6.jpg);
}




/*______________________________________________________________________*/

.s_startseite section.news{
	position: relative;
	padding-bottom: 100px;
	background-color: #171717;
}

.s_startseite section.news:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: -100px;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent #171717 transparent;
}

.s_startseite section.news .max_1300 .news_wrap .news_item{
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 10px;
}

.s_startseite section.news .max_1300 .news_wrap .news_item:after{
	content: '';
	position: absolute;
	width: 20%;
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	transform-origin: left;
	background-image: linear-gradient(to right, rgba(107, 107, 107, 0), rgba(107, 107, 107, 1), rgba(107, 107, 107, 0));
	transition: all 0.3s;
}

.s_startseite section.news .max_1300 .news_wrap .news_item .top{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.s_startseite section.news .max_1300 .news_wrap .news_item .top h3{
	margin-bottom: 0;
}

.s_startseite section.news .max_1300 .news_wrap .news_item .text p:first-of-type{
	margin-top: 0;
}

.s_startseite section.news .max_1300 .news_wrap .news_item .text p:last-of-type{
	margin-bottom: 0;
}

/*______________________________________________________________________*/

.s_startseite section.contact{
	position: relative;
	background-color: #171717;
}

.s_startseite section.contact:after{
	content: '';
	width: 20%;
	padding-bottom: 20%;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	background-image: url(images/icons/newsletter.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;

}

.s_startseite section.contact:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: -100px;
	border-style: solid;
	border-width: 0 0 100px 100vw;
	border-color: transparent transparent #171717 transparent;
}

.s_startseite section.contact .max_500{
	text-align: center;
}

.s_startseite section.contact .max_500 .icons{
	display: inline-block;
	margin: 0 auto 40px;
	text-align: left;
}

.s_startseite section.contact .max_500 .icons span{
	display: block;
	padding-left: 2em;
	position: relative;
	margin-bottom: 10px;
}

.s_startseite section.contact .max_500 .icons span:before{
	position: absolute;
	content: '';
	height: 1em;
	width: 1em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.s_startseite section.contact .max_500 .icons a:nth-of-type(1) span:before{
	background-image: url(images/icons/mail.svg);
}

.s_startseite section.contact .max_500 .icons a:nth-of-type(2) span:before{
	background-image: url(images/icons/instagram.svg);
}

.s_startseite section.contact .max_500 .icons a:nth-of-type(3) span:before{
	background-image: url(images/icons/facebook.svg);
}

.s_startseite section.contact .max_500 .newsletter input{
	width: 100%;
	line-height: 2.5em;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 0 20px;
	color: #fff;
	/*font-family: josefin-sans, sans-serif !important;*/
}

/*.s_startseite section.contact .max_500 .newsletter input[type='submit']{
	background-color: #fff;
	color: #0C0C0C;
	cursor: pointer;
	font-weight: 600;
}

.s_startseite section.contact .max_500 .newsletter .submit_wrap{
	margin-top: 20px;
	position: relative;
}*/

.s_startseite section.contact .max_500 .newsletter .submit_wrap:before{
	content: '';
	position: absolute;
	left: 20px;
	height: 1.5em;
	width: 1.5em;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(images/icons/formmail.svg);
}

.newsletter #sib-container{
	padding: 0 !important;
}

.newsletter #sib-container{
	padding: 0 !important;
}

.newsletter .sib-form-block{
	padding: 0 !important;
}

.newsletter .sib-form{
	padding: 0 !important;
}

.newsletter .sib-form .entry__field{
	background: #000 !important;
}

.newsletter .sib-form-block__button-with-loader{
	color: #000 !important;
    background-color: #fff !important;
    width: 100%;
    text-align: center !important;
}

..sib-form .entry__specification{
	color: #fff !important;
}

.sib-form__declaration{
	padding: 0 !important;
}

.sib-form .input_replaced:checked+.checkbox_tick_positive{
	background: #000 !important;
	border-color: #000 !important;
}

.sib-form .clickable_link:focus, .sib-form .clickable_link:hover, .sib-form .clickable_link{
	color: #fff !important;
}

footer{
	background-color: #171717;
	font-size: 14px;
}

footer .max_1300{
	text-align: center;
	padding: 20px 0 0;
}

footer .max_1300 p{
	margin: 0;
}

footer .max_1600{
	padding: 20px;
	max-width: 100%
}

footer .max_1600 .impdatins{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .max_1600 .impdatins a{
	text-decoration: none;
	margin: 0 10px;
	color: inherit;
	text-decoration: none;
}

@media (max-width: 780px) {

	html, body{
		font-size: 14px;
	}

	h2{
		font-size: 24px;
	}

	h3{
		font-size: 20px;
	}

	.title h2{
		font-size: 26px;
	}

	h1, h2, h3, h4, h5, h6{
		margin-bottom: 16px;
	}

	header .max_100{
		padding: 20px;
	}

	header .max_100 .menu_wrap{
	    position: fixed;
	    width: 100%;
	    height: 100vh;
	    top: 0;
	    left: 0;
	    transform: translateY(-100%);
    	transition: transform 0.5s ease;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    background-color: #000;
	}

	header .max_100 .menu_hamburger{
		display: block;
	}

	header.active .max_100 .menu_hamburger .line:nth-of-type(1){
	   	transform: translateX(-6px);
	}

	header.active .max_100 .menu_hamburger .line:nth-of-type(3){
	   	transform: translateX(-6px);
	}

	header.active .max_100 .menu_wrap{
	    transform: translateY(0%);
	}

	header .max_100 .menu_wrap nav ul{
		display: block;
		text-align: center;
	}

	header .max_100 .menu_wrap nav ul a{
		display: block;
		margin-bottom: 20px;
	}

	header .max_100 .menu_wrap nav ul a li{
		display: inline-block;
	}

	.max_1300, .max_500{
		padding: 20px;
	}

	.s_startseite section.images .max_1300 .grid_wrap{
		grid-template-columns: 1fr;
		grid-template-rows: 400px;
		grid-gap: 20px;
	}

	.s_startseite section.images .max_1300 .grid_wrap .image{
		width: 100%;
		height: 400px;
	}

	.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(5){
		background-position: center left;
	}

	.s_startseite section.images .max_1300 .grid_wrap .image:nth-of-type(3){
		grid-row: inherit;
	}

	section.start .bild{
		background-position: 40%;
		height: 120vh;
	}

	footer .max_1600 .impdatins{
		justify-content: center;
	}

	section.start .scroll{
		width: 30px;
		height: 30px;
	}

}
