 @import url("https://use.typekit.net/nig5eff.css");

 :root{
 	--cameraZ: 0;
 }

 *{
 	box-sizing: border-box;
 	/*cursor: none;*/
 }

 a{
 	text-decoration: none;
 	color: inherit;
 }

 html {
    scroll-behavior: smooth;
}

 body{
 	/*-moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -webkit-perspective: 1000px;*/
  background-color: #000;
}

html{
	font-size: 24px;
}

html, body{
	margin: 0;
	padding: 0;
}

body{
	font-family: futura-pt, sans-serif;
	color: #fff;
}

h1, h2, h3, h4, h5{
	font-family: fatfrank, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	text-shadow: 0 4px 6px rgba(0, 0, 0, .7);
	letter-spacing: 0.06em;
}

strong{
	font-weight: 700;
}

/* Cursor */

.phone{
	position: fixed;
    right: 0;
    bottom: 1rem;
    background-color: white;
    width: 5rem; 
	transform: translateX(1rem);
    height: 2.5rem;
    z-index: 998;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 1.0);
    transition: transform 0.3s;
}

.phone svg{
	width: auto;
	height: 100%;
}

.phone:hover{
	transform: translateX(0rem);
}

/*.cursor{
	will-change: transform;
	width: 60px;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	border: 2px solid;
	border-color: #C1272D;
	background-color: rgba(0, 0, 0, 0.5);
	transform: scale(0.6);
	border-radius: 50%;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: opacity 2s 3s, background-color 0.5s;
}*/

.cursor{
	/*display: none;*/
	will-change: transform;
	width: 60px;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	/*border: 2px solid;
	border-color: #C1272D;*/
	background-color: #C1272D;
	transform: scale(0.2);
	border-radius: 50%;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	/*transition: opacity 0.3s 2s;*/
	/*transition: opacity 2s 3s, background-color 0.5s;*/
}

.cursor.loaded{
	/*display: inline-block;*/
	/*opacity: 1;*/
}

/*.cursor.active{
	background-color: rgba(193, 39, 45, 0.4);
	border-color: #C1272D;
}*/

.center{
	text-align: center;
}

/*--------------------------------------------------------*/


header{
	position: fixed;
	width: 100%;
	top: 50%;
	padding: 0 2rem;
	transform: translate3d(0, -50%, 0);
	will-change: transform, top;
	z-index: 999;
	font-family: fatfrank, sans-serif;
	font-weight: 400;
	transition: all 1.5s 1s;
	/*background-color: #FCF4E2;*/
}

header.loaded{
	top: 1rem;
	transform: translate3d(0, 0, 0);
}

header .contact_wrap{
	padding: 0.5em 0;
	display: flex;
	-webkit-display: flex;
	justify-content: center;
	-webkit-justify-content: center;
	background-color: #F1F1F1;
	font-size: 0.8em;
}

header .contact_wrap .cont{
	margin: 0 1em;
}

header .max_1300{
	max-width: calc(1100px + 2rem);
	margin: 0 auto;
}

header .logo_wrap{
	width: 100%;
	text-align: center;
	position: relative;
}

header .logo_wrap .link{
	display: inline-block;
}

header .logo_wrap .logo{
	/*display: flex;*/
	/*-webkit-display: flex;*/
	/*justify-content: center;*/
	/*-webkit-justify-content: center;*/
	padding: 0.5em;
	margin: 0 auto;
	height: 5rem;
	width: 8rem;
	z-index: 2;
	background-color: #fff;
	position: relative;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .logo_wrap .logo svg{
	position: absolute;
	width: auto;
	height: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	display: block;
}

header.loaded .logo_wrap .logo{
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
}


header .logo_wrap .logo:before{
	content: '';
	position: absolute;
	/*top: 50%;
	left: 50%;*/
	/*transform: translate(-50%, -50%);*/
	transform-origin: center;
	width: 150vh;
	height: 100vh;
	border-radius: 8px;
	transition: transform 1.5s 0.5s ease;
	z-index: -1;
	background-color: #fff;
	transform-box: fill-box;
}

header.loaded .logo_wrap .logo:before{
	transform: scale(0);
}

header .logo_wrap nav.menu_desktop{
	background-color: #C1272D;
	filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.7));
	position: absolute;
	width: 100%;
	top: 50%;
	transition: transform 1.2s 1.2s;
	transform: translate3d(0, -50%, 0) scaleX(0);
}

header .logo_wrap nav.menu_mobile{
	display: none;
}

header.loaded .logo_wrap nav.menu_desktop{
	transform: translate3d(0, -50%, 0) scaleX(1);
}

header .max_1300 nav.menu_desktop ul{
	display: flex;
	position: relative;
	width: calc(100% - 2.5rem);
	margin: 0 auto;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	padding: 0.6rem;
	background-color: #303030;
}

header .max_1300 nav.menu_desktop ul:before, header .max_1300 nav.menu_desktop:before{
	content: '';
	position: absolute;
	height: calc(2.2rem / 1.414);
	width: calc(2.2rem / 1.414);
	transform: rotate(45deg);
	transform-origin: top left;
	left: 0;
	top: 0;
	background-color: #303030;
}

header .max_1300 nav.menu_desktop ul:after, header .max_1300 nav.menu_desktop:after{
	content: '';
	position: absolute;
	height: calc(2.2rem / 1.414);
	width: calc(2.2rem / 1.414);
	transform: rotate(-45deg);
	transform-origin: top right;
	right: 0;
	top: 0;
	background-color: #303030;
}

header .max_1300 nav.menu_desktop:before, header .max_1300 nav.menu_desktop:after{
	background-color: #C1272D;
	z-index: -1;
}

header .max_1300 nav.menu_desktop ul:before{
	filter: drop-shadow(-3px 3px 3px rgba(0, 0, 0, 0.3));
}

header .max_1300 nav.menu_desktop ul:after{
	filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}

header .max_1300 nav.menu_desktop ul li{
	opacity: 0;
	position: relative;
	list-style: none;
	margin: 0 2rem;
	line-height: 1rem;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: opacity 0.8s 2.2s;
	cursor: pointer;
	z-index: 2;
}

header .max_1300 nav.menu_desktop ul li:before{
	position: absolute;
    content: attr(data-content);
    top: 0;
    left: 0;
    width: 0;
    color: #cecece;
    white-space: nowrap;
    overflow: hidden;
    transition: width 275ms ease;
}

header .max_1300 nav.menu_desktop ul li:hover:before{
	width: 100%;
}

header.loaded .max_1300 nav.menu_desktop ul li{
	opacity: 1;
}

header.h_home .max_1300 nav.menu_desktop ul li:nth-of-type(2){
	margin-right: calc(7rem);
}

header.h_home .max_1300 nav.menu_desktop ul li:nth-of-type(3){
	margin-left: calc(7rem);
}

header .menu_icon{
	display: none;
	height: 1rem;
	width: 1.5rem;
	position: relative;
	z-index: 2;
}

header .menu_icon .lines{
  width: 1.5em;
  height: 39px;
  position: relative;
/*  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;*/
}

header .menu_icon .lines .line{
  display: block;
  position: absolute;
  height: 0.2em;
  width: 100%;
  background: #fff;
  border-radius: 4px;
}

header .menu_icon .lines .line:nth-of-type(1){
	top: 0;
}

header .menu_icon .lines .line:nth-of-type(2){
	top: 0.4em;
}

header .menu_icon .lines .line:nth-of-type(3){
	top: 0.8em;
}

section.front_image{
	overflow: hidden;
	height: 100vh;
	width: 100%;
	top: 0;
	position: fixed;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-moz-transform: perspective(1000px);
	-moz-transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	transform: translate3d(0, 0, 0);
	/*will-change: transform;*/
}

section.front_image .image{
	/*transform: translateZ(calc(var(--cameraZ) * -0.2px));*/
	/*will-change: transform;*/
	position: absolute;
	top: -10%;
	left: -10%;
	height: 120%;
	width: 120%;
	background-image: url(images/hintergrund.jpg);
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 1;
}

section.front_image .image .black{
	position: absolute;
	/*will-change: opacity;*/
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
}

section.front_image h1.title.one{
	transform: translate3d(-50%, -50%, 0);
	transform-origin: center;
}

section.front_image .scroll-icon{
	  position: absolute;
    opacity: 0;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    transition: all 1s;
}

section.front_image .scroll-icon.loaded{
	opacity: 1;
}


h1.title{
	margin: 0 auto;
	color: #fff;
	padding: 0 1rem;
	text-align: center;
	max-width: calc(1100px + 2rem);
	width: 100%;
}

h1.title.one{
	position: absolute;
	text-align: left;
	top: 55%;
	left: 50%;
}

h1.title span{
	display: inline-block;
}

h1.title .t_top{
	font-size: 3.5rem;
	line-height: 1em;
}

h1.title .span_hidden{
	overflow: hidden;
}

h1.title .t_top .span_hidden:last-of-type span{
	position: relative;
}

h1.title .t_top .span_hidden:last-of-type span:after{
	content: '';
	right: -0.4em;
	bottom: 0.15em;
	height: 0.3em;
	width: 0.3em;
	background-color: #C1272D;
	border-radius: 50%;
	position: absolute;
}

h1.title .t_bottom{
	font-size: 1rem;
	margin: 0 2em;
	position: relative;
}

h1.title .t_bottom:before,
h1.title .t_bottom:after{
	content: '';
	position: absolute;
	left: -1.8em;
	top: 50%;
	transform: translateY(-50%);
	height: 0.2em;
	width: 1.3em;
	font-size: 1rem;
	background-color: #C1272D;
	border-radius: 4px;
}

h1.title .t_bottom:after{
	left: inherit;
	right: -1.8em;
}

section.inhalt{
	z-index: 2;
	position: absolute;
	width: 100%;
	top: 100vh;
	background-color: #000;
}


section.inhalt .max_1300, section.rechtliches .max_1300{
	overflow: hidden;
	width: 100%;
	padding: 0 2rem;
	max-width: calc(1100px + 2rem);
	margin: 0 auto;
}

section.rechtliches{
	padding-top: 8rem;
}

section.about{
	padding: 4rem 0;
}

section.about .grid_wrap{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1rem;
	padding-bottom: 2rem;
	/*will-change: transform, opacity;*/
}

/*section.about .grid_wrap .grid_item:first-of-type{
	padding-top: 3rem;
}*/

section.about .grid_wrap .grid_item:last-of-type{
	display: flex;
	-webkit-display: flex;
	align-self: center;
	-webkit-align-self: center;
	justify-content: center;
	-webkit-justify-content: center;
}

section.about .grid_wrap .grid_item:last-of-type img{
	width: 70%;
	height: auto;
	/*will-change: transform, opacity;*/
}

section.about .image_slider{
	width: 100%;
	padding: 1rem 0;
	background-color: #C1272D;
	box-shadow: 0px 0px 30px 5px #c1272d;
	z-index: 100;
	position: relative;
	overflow: scroll; 
    overflow-x: hidden;
    will-change: transform;
}

/*section.about .image_slider .swiper {
	width: 100%;
	height: 100%;
}
*/
/*section.about .image_slider .swiper-slide-image{
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
	filter: saturate(0) brightness(0.6);
	transition: filter 0.5s;
}*/

/*section.about .image_slider .carousel {
	display:flex;
      flex-wrap:wrap;
      flex-direction:column;
}*/

/*section.about .image_slider .carousel .swiper-slide-image{
	padding-bottom: 80%;
	width: 500px;
    background-size: cover;
    background-position: center;
}*/

section.about .image_slider #container {
	    display: grid;
	    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	    grid-gap: 1rem;
	    will-change: transform;
    }    

section.about .image_slider #container img{
    	width: 450px;
    	height: 450px;
    	object-fit: cover;
	/*filter: saturate(0) brightness(0.6);*/
}

/*section.about .image_slider .swiper-slide-image:hover{
	filter: saturate(100%) brightness(1.0);
}*/

section.services{
	padding: 0 0 4rem 0;
	text-align: center;
}

section.services ul{
	padding: 0;
	margin-top: 2rem;
	position: relative;
}

section.services ul li{
	list-style: none;
	font-weight: 500;
	margin: 0.5rem 0;
}

section.services ul .wrench{
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
}

section.services ul .wrench.one{
	width: 5rem;
	height: 4rem;
	top: 20%;
	left: 10%;
}

section.services ul .wrench.two{
	width: 5rem;
	height: 4rem;
	top: 40%;
	right: 10%;
	transform: rotate(-100deg);
}

section.services ul .wrench.three{
	width: 5rem;
	height: 4rem;
	top: 60%;
	left: 15%;
	transform: rotate(-120deg);
}

section.services ul .wrench.four{
	width: 5rem;
	height: 4rem;
	top: 80%;
	right: 15%;
	transform: rotate(180deg);
}

section.testimonials .max_1300{
	overflow: inherit;
}

section.testimonials .stackcards-wrap{
	margin-top: 2rem;
	display: grid;
    grid-auto-rows: 1fr;
}

section.testimonials .stackcards-item{
	width: 100%;
	/*padding-bottom: 30%;*/
	margin-bottom: 2rem;
	position: sticky;
	background-color: #303030;
	box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 40%);
	transform-origin: top;
	border-radius: 4px;
}

section.testimonials .stackcards-item.one{
	top: 200px;
}

section.testimonials .stackcards-item.two{
	top: 230px;
}

section.testimonials .stackcards-item.three{
	top: 260px;
}

section.testimonials .stackcards-item.four{
	top: 290px;
}

section.testimonials .stackcards-item.five{
	height: 0;
	margin-bottom: 0;
	transform: scale(0);
}

section.testimonials .stackcards-item .grid_wrap{
	display: grid;
	grid-template-columns: 2fr 1fr;
	position: relative;
	height: 100%;
}

section.testimonials .stackcards-item .grid_wrap .grid_item{
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.testimonials .stackcards-item .grid_wrap .grid_item:before{
	content: '';
    background-image: url(images/quote.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 6%;
    transform: translateX(-100%);
    /*filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));*/
    left: 64%;
}

section.testimonials .stackcards-item .grid_wrap .grid_item:after{
	content: '';
    background-image: url(images/quote.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 3rem;
    height: 3rem;
    position: absolute;
    bottom: 6%;
    transform: translateX(0%);
    /*filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));*/
    left: 6%;
}

section.testimonials .stackcards-item .grid_wrap .grid_item .name{
	font-weight: 600;
	font-size: 1.1em;
}

section.testimonials .stackcards-item .grid_wrap .grid_item .bild{
	width: 8rem;
    height: 8rem;
    position: absolute;
    left: -4rem;
    top: 1rem;
    background-size: cover;
    background-position: center;
    border: 4px solid;
    border-radius: 50%;
}

section.testimonials .stackcards-item .grid_wrap .grid_item svg{
	position: absolute;
    left: 0rem;
    bottom: 0;
    height: 90%;
    opacity: 0.1;
    z-index: -1;
    max-height: 100%;
}

section.testimonials .stackcards-item .grid_wrap .grid_item:first-of-type{
	padding: 2rem 4rem 2rem 8rem;
}

section.testimonials .stackcards-item .grid_wrap .grid_item:last-of-type{
	background-color: #7F1216;
}

section.testimonials .stackcards-item .grid_wrap .grid_item:last-of-type span{
	font-size: 10rem;
	line-height: 1em;
	font-family: fatfrank, sans-serif;
	color: #C1272D;
}

section.contact{
	background-color: #2C2C2C;
	padding: 4rem 0;
	margin-top: 2rem;
	overflow: hidden;
	position: relative;
}

section.contact:before{
	content: '';
    background-color: #C1272D;
    width: 1rem;
    height: 25rem;
    position: absolute;
    left: -2rem;
    top: -4rem;
    transform: rotate(45deg);
}

section.contact:after{
	content: '';
    background-color: #C1272D;
    width: 1rem;
    height: 25rem;
    position: absolute;
    right: -2rem;
    top: -4rem;
    transform: rotate(-45deg);
}

/*section.contact #map{
	background-image: url(map.png);
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	border: 4px solid #fff;
}*/

section.contact #map{
	height: 100%;
	width: 100%;
	border: 5px solid;
	border-radius: 4px;
}

section.contact .grid_wrap{
	margin-top: 2rem;
	display: grid;
	grid-template-columns: 2fr 5fr;
	grid-gap: 2rem;
}

section.contact .grid_wrap .grid_item:first-of-type{
	/*padding-bottom: 2rem;*/
}

section.contact .grid_wrap .grid_item:first-of-type div p:first-of-type{
	font-weight: bold;
}

section.contact .grid_wrap .grid_item:first-of-type div p{
	margin: 0;
}

section.contact .grid_wrap .grid_item:first-of-type div:nth-of-type(2),
section.contact .grid_wrap .grid_item:first-of-type div:nth-of-type(3){
	margin: 1.5rem 0;
}

section.contact #car{
	width: 60%;
	position: absolute;
	left: -20%;
	bottom: 0;
}

footer{
	padding: 1rem 0;
	background-color: #C1272D;
	text-align: center;
	font-size: 0.8em;
}

footer .max_1300{
	display: flex;
	justify-content: space-between;
}

footer .left a{
	margin: 0 1rem 0 0;
}

@media only screen and (max-width: 1240px) {
	html{
		font-size: 22px;
	}

	header.loaded .max_1300 nav.menu_desktop ul li{
		margin: 0 1rem;
	}

	header .max_1300 nav.menu_desktop ul li:nth-of-type(2){
		margin-right: calc(5rem);
	}

	header .max_1300 nav.menu_desktop ul li:nth-of-type(3){
		margin-left: calc(5rem);
	}
}

@media only screen and (max-width: 1100px) {
	html{
		font-size: 20px;
	}

	/*.max_1300{
		max-width: 800px;
	}*/
}


@media only screen and (max-width: 900px) {

	section.inhalt .max_1300{
		padding: 0 1rem;
	}

	section.rechtliches .max_1300{
		padding: 8rem 1rem 1rem;
	}

	header .max_1300 nav.menu_desktop ul li{
		display: none;
	}

	header .max_1300 nav.menu_desktop ul{
		justify-content: flex-end;
		-webkit-justify-content: flex-end;
	}

	header .max_1300 nav.menu_mobile{
		display: flex;
	    justify-content: center;
	    -webkit-justify-content: center;
	    align-items: center;
	    -webkit-align-items: center;
	    padding: 2rem;
	    position: fixed;
	    height: 100vh;
	    width: 100%;
	    top: -2rem;
	    left: 0;
	    z-index: -1;
	    background-color: #303030;
	    transform: translateX(-100%);
	}

	header.active .menu_icon .lines .line:nth-of-type(1){
		transform: rotate(45deg) translateY(-50%);
	}

	header.active .menu_icon .lines .line:nth-of-type(2){
		opacity: 0;
	}

	header.active .menu_icon .lines .line:nth-of-type(3){
		transform: rotate(-45deg) translateY(-50%);
	}

	header .max_1300 nav.menu_mobile ul{
		text-align: right;
    	list-style: none;
    	margin: 0;
    	padding: 2rem 0 0;
	}

	header .max_1300 nav.menu_mobile ul li{
		font-size: 3.5rem;
		overflow: hidden;
		margin: 1rem 0;
		text-align: center;
	}

	header .max_1300 nav.menu_mobile ul li span{
		display: block;
	}

	header .menu_icon{
		display: flex;
		margin-right: 0rem;
	}

	h1.title{
		text-align: center;
		padding: 0rem;
	}

	h1.title.one{
		padding: 0rem 1rem;
		text-align: center;
	}

	section.about .grid_wrap{
		grid-template-columns: 1fr;
	}

	section.about .grid_wrap .grid_item:last-of-type img{
		width: 50%;
	}

	section.about .grid_wrap .grid_item:first-of-type{
		padding-top: 0;
	}

	section.about .image_slider #container img{
		width: 300px;
		height: 300px;
	}

	section.testimonials .stackcards-item{
		border-left: 6px solid #C1272D;
	}

	section.testimonials .stackcards-item .grid_wrap .grid_item:last-of-type{
		display: none;
	}

	section.testimonials .stackcards-item .grid_wrap{
		grid-template-columns: 1fr;
	}

	section.testimonials .stackcards-item.one{
		top: 150px;
	}

	section.testimonials .stackcards-item.two{
		top: 180px;
	}

	section.testimonials .stackcards-item.three{
		top: 210px;
	}

	section.testimonials .stackcards-item.four{
		top: 240px;
	}

	section.testimonials .stackcards-item .grid_wrap .grid_item .bild{
		width: 5rem;
		height: 5rem;
		left: 1rem;
		top: 1rem;
	}

	section.testimonials .stackcards-item .grid_wrap .grid_item:before{
		left: 97%;
	}

	section.testimonials .stackcards-item .grid_wrap .grid_item:first-of-type{
		padding: 4rem 2rem;
	}

	section.contact{
		padding: 4rem 0 2rem;
	}

	section.contact .grid_wrap{
		grid-template-columns: 1fr;
	}

	section.contact .grid_wrap .grid_item:first-of-type div{
		text-align: center;
	}

	section.contact #map{
		height: 400px;
	}
}

@media only screen and (max-width: 568px) {

	section.testimonials .stackcards-item .grid_wrap .grid_item svg{
		width: 100%;
		height: auto;
	}
	
	section.about .grid_wrap .grid_item:last-of-type img{
		width: 70%;
	}

	h1.title .t_top{
		font-size: 2.6rem;
	}

	header .max_1300 nav.menu_mobile ul li{
		font-size: 2.6rem;
	}

	section.services ul .wrench.one{
		left: 6%;
	}

	section.services ul .wrench.two{
		right: 6%;
	}

	section.services ul .wrench.three{
		left: 7%;
	}

	section.services ul .wrench.four{
		right: 10%;
	}

	footer .max_1300{
		display: block;
	}

	footer .left a{
		margin: 0 1rem;
	}

	footer .right{
		margin-top: 1rem;
	}
}

@media only screen and (max-width: 400px) {
}

@media only screen and (orientation: landscape){
	header .logo_wrap .logo:before{
		width: 150vw;
		height: 100vw;
	}
}
