@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

body{
	overscroll-behavior-y: none;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	line-height: 1.5;
	font-size: 15px;
	letter-spacing: 0;
}

body {
	font-family: 'Alata', sans-serif;
	letter-spacing: 2px;
	height: 100vh;
	width: 100vw;
	overflow-x: hidden;
}

.header{    
	width: 100%;
	height: 0;
    position: fixed;
    z-index: 222222;
}

.headerWithBackground{     
	height: 72px;
    background: white;
}

a:not(.background-slide, .background-image){
	color: #000;
	cursor: pointer;
	text-transform: lowercase;
	font-family: 'Alata';
	letter-spacing:2px;
	font-weight: 600;    
	padding: 5px 20px;
	text-decoration: none;
}

a:hover:not(.background-slide, .background-image){
	color:#fff!important;
	background:#000;
}

a.background-slide{
    text-decoration: none;
	pointer-events:none;
}
a.background-slide[href^=mailto], a.background-slide[href^=https] {
	pointer-events:all;
}
a.background-slide[href^=mailto] {
	cursor:default;
}
a.background-slide[href^=mailto] h1:nth-child(3) {
	cursor: pointer;
	text-decoration: underline;
}
/* GET IT */
.page-id-854 a.background-slide[href^=mailto] h1 {
	background: #fff;
	color: #000!important;
	margin-bottom: 30px;
	font-style: normal;
	font-size: 12px;
}

/* SLIDER */

.slider-container {
	position: relative;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

.slider-container h1 {
	font-size: 20px;
	margin-bottom: 40px;
	margin-top: -30px;
	background: black;
	color: white!important;
	padding: 0px 15px;
	width: 60%;
	max-width: 320px;
	word-break: break-word;
	font-style: italic;
}

.slide {
	height: 100%;
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.5s ease-in-out;
}

	.left.slide {
		left: 0;
	}

	.right.slide {
		left: 50%;
	}

.page-id-854 .slide {
	height: 50%;
	width: 100%;
}
.page-id-854 .right.slide {
	top: 50%;
	left: 0;
}
.page-id-854 .slide-video {
	height: 100%;
}

.centered-text {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.category-slide.centered-text{
	text-align: left;
	padding: 40px;
}

.category-slide.centered-text > span {
	width: 50%;
}
.left-slide .category-slide.centered-text > span {
    align-self: self-end;
}

.category-slide.centered-text h1{
	/* width: 80%;
	max-width: 230px; */
	width: unset;
	max-width: unset;
	font-size: 12px;
	margin-bottom: 15px;
	position: relative;
    left: -8px;
	display: inline-block;
    text-align: left;
	padding: 0px 8px;
}
.category-slide.centered-text p{
	font-size: 11px;
}
.horizontal-slider .background-image{
	overflow: hidden;
	padding: 20px;
}
.category-slide.background-image{
	overflow: hidden;
	padding: 20px;
}
.horizontal-slider{
	height: 100%;
	width: 100%;
	flex-wrap: wrap;
	display: flex;
	flex-direction: column;
	transform: translateX(0px);
	transition: transform 0.5s ease-in-out;
}

.text-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	transition: transform 0.5s ease-in-out;
}

.text-slide {
	background: none;
}

.background-image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100%;
	width: 100%;
}

.slide-video-container{
	height: 100%;
}

.slide-video {
	object-fit: cover;
	height: 100vh;
	width: 100vw;
}

/* NAVBAR */

#logo, .menu-btn-container{
	transform: translateY(-75px);
	transition: all 1.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body[class*="term-"] #logo, body[class*="term-"] .menu-btn-container{
	transform: translateY(-50px);
}

body[class*="term-"] #logo{
	width: 80px!important;
}
body[class*="term-"] .header, body[class*="term-"] .header + div{
	height: 50px!important;
}



/* BURGER MENU ICON */

.menu-btn-container {
	position: absolute;
	z-index: 1;
	top: 8px;
	right: 16px;
}

.menu-btn {
	width: 40px;
	height: 40px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .5s ease-in-out;
	transform: scale(0.65);
}

.menu-btn__burger {
	width: 40px;
	height: 5px;
	background: #000;
	transition: all .5s ease-in-out;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 5px;
	background: #000;
	transition: all .5s ease-in-out;
}

.menu-btn__burger::before {
	transform: translateY(-12px);
}

.menu-btn__burger::after {
	transform: translateY(12px);
}


.menu-btn.open .menu-btn__burger {
	background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
	transform: rotate(45deg);
	background: #000;
}

.menu-btn.open .menu-btn__burger::after {
	transform: rotate(-45deg);
	background: #000;
}

body[class*="term-"] .menu-btn{
	transform: scale(0.5);
}
body[class*="term-"] .menu-btn-container{
	top: 5px;
	right: 12px;
}


/* MENU SLIDE */

.nav-bar {
	position: absolute;
	z-index: 1;
	background-color: #fff;
	top: 0;
	right: -50vw;
	height: 100vh;
	width: 50vw;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.open-menu {
	right: 0;
	box-shadow: 1px 0 15px 2px rgba(0, 0, 0, 0.4);
}

.menu {
	list-style: none;
}
.menu li:nth-child(1), .menu li:nth-child(6) {
	margin-bottom: 20px;
}

li[class^=menu-item], li[class^=page_item] {
	text-align: left;
	padding: 5px 0;
}


li[class^=menu-item] > a, li[class^=page_item] > a {
	color: #000;
	font-size: 12px;
	text-decoration: none;
	position: relative;
	padding-bottom: 5px;
	padding-left: 20px;
	padding-right: 20px;
	display: block;
	line-height: 1;
}

/*
.menu-item>a::before, .page_item>a::before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	transform: scaleX(0);
	transition: transform 0.4s ease-in-out;
	transform-origin: left;
	-webkit-transition: transform 0.4s ease-in-out;
	-moz-transition: transform 0.4s ease-in-out;
	-ms-transition: transform 0.4s ease-in-out;
	-o-transition: transform 0.4s ease-in-out;
}

.menu-item>a:hover::before, .page_item>a:hover::before {
	transform: scaleX(1);
} */

/* START VIDEO */
.whiteBackdrop{
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
}

#fullSizeStartVideo{
	position: absolute;
	top:0;
	left:0;
	z-index: 99999;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
}

.skipButton{
	position: absolute;
	bottom: 15px;
  	right: 30px;
	z-index: 100000;
	font-size: 12px;
}

.impressumButton{
	position: absolute;
	bottom: 15px;
  	right: 200px;
	z-index: 100000;
	font-size: 12px;
}
.datenschutzButton{
	position: absolute;
	bottom: 15px;
  right: 30px;
	z-index: 100000;
		font-size: 12px;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.centered-text.category-slide p{
	max-width: 600px;
	white-space: break-spaces;
}


/*body.term-photography div.centered-text.category-slide > span{
	display: none;
}*/

.plain {
	font-family: 'Alata';
	padding: 20px;
}
.plain h1{
    font-size: 32px;
	padding: 20px 0;
}
.plain h2{
    font-size: 24px;
	padding: 10px 0;
}
.plain a{
	color: #000;
    text-transform: none;
	padding: 0px;
    text-decoration: underline;
}

/* lightbox */
#glightbox-body.glightbox-container .goverlay {
	/*background: rgb(255,255,255);*/
}
@media (min-width: 769px){
	#glightbox-body.glightbox-container .goverlay {
		/*background: rgba(255,255,255,.92);*/
	}
}

/* about */
.page-id-798 video {
	object-fit: contain;
}
.page-id-798 .background-image {
	background-size: contain;
}

.onlyMobile{
	display:none;
	position: absolute;
	z-index: 999999;
}

#fullscreenButton{
	position: absolute;
	bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background: #000;
	color: white!important;
}
