/* variables */
:root {
	--grid-max-width: 1410px;
	--grid-gap: 30px;
	--swiper-pagination-bullet-margin: 0 auto;
}

/* defaults */
html,
body {
	font-size: 18px;
	line-height: 1.66667;
	font-family: 'RMNeue-VF', sans-serif;
	font-weight: 400;
	color: #000000;
	background-color: #353535;
	box-sizing: border-box;
	width: 100%;
	min-height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
	scroll-behavior: smooth;
}

body {
	padding: 10px;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}
h2 {
	font-weight: 400;
}
p {
	font-weight: 300;
}

/* helper classes */
.space-between {
	justify-content: space-between;
}
.space-around {
	justify-content: space-around;
}
.radius-12 {
	border-radius: 12px;
}
.no-line-height {
	line-height: 0;
}

/* gsap stagger */
.gsap-stagger {
	opacity: 0;
	translate: 0px 30px;
}

/* header */
.logo {
	margin-top: 70px;
	width: 170px;
}

.btn {
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

/* styles for all reveal sections */
.content-section {
	margin-top: 30px;
	h2 {
		margin: 70px 0px 30px;
		font-size: 50px;
		color: #ffffff;
		line-height: 1;
	}
	p.sub-headline {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 100px;
		font-weight: 330;
		color: #6e6e6e;
		letter-spacing: -.1px;
	}
	.container {
		padding: 80px 15px;
	}
	.no-overflow {
		overflow: hidden;
	}
}

#headline {
	.container{
		h1 {
			color: #ffffff;
			font-size: 62px;
			line-height: 70px;
			margin: 200px 0px 60px;
			font-weight: 500;
			letter-spacing: 1px;
		}
		p {
			color: #999;
			font-weight: 380;
			font-size: 35px;
			line-height: 48px;
			margin-bottom: 250px;
		}
		.show-more {
			margin-bottom: 100px;
		}
	}
	.headline-mobile {
		display: none;
	}
}

#case-study {
	.container{
		background-color: #ffd300;
		position: relative;
		padding: 80px 15px;
		.content {
			display: flex;
			justify-content: center;
			align-items: center;
			img {
				padding: 180px 0px;
			}
		}
	}
}

/* editor */
#editor {
	.container{
		background-color: #151515;
	}
}

/* admin */
#admin {
	.container{
		background-color: #C3B098;
		margin-bottom: 10px;
		h2 {
			color: #2B2620;
		}
		p {
			color: #5E5244;
		}
	}
}

/* customize */
#customize {
	.container{
		background-color: #151515;
		justify-content: center;
		item.img {
			display: flex;
			padding: 42.5px;
			size: 32px 32px;
		}
		.customize__grid{
			display: grid;
			width: 100%;
			background-color: #0E0E0E;
			grid-template-columns: repeat(10, 1fr);
			border-radius: 12px;
			overflow: hidden;
		}
		button {
			width: 100%;
			height: 120px;
			display: flex;
			justify-content: center;
			align-items: center;
			border: none;
			box-shadow: none;
			outline: none;
			background-color: #0E0E0E;
			border-right: 1px solid #181818;
			cursor: pointer;
			transition: all .3s ease-out;
			svg {
				transition: all .3s ease-out;
			}
		}
		button.active {
			background-color: #000000;
			svg path {
				stroke: #ffd300;
			}
		}
		button:hover {
			background-color: #000000;
			opacity: 1 !important;
			transition: all .15s ease-out;
			svg {
				translate: 0px -5px;
				transition: all .15s ease-out;
			}
		}
		.customize__grid:hover{
			button {
				opacity: .5;
			}
		}
		/*
		button{
			background-color: transparent;
			border: 1px solid #151515;
			padding: 0;
			max-width: 100%;
			max-height: fit-content;
			position: relative;
			height: 117px;
			width: 120px;
		}
		*/
	}
}

.line {
	height: 1px;
	background-color: #262626;
	width: 100%;
	margin: 50px 0px;
}

/*showcase*/
#showcase {
	.container{
		background-color: #EBEBEB;
		h2{
			color: #000000;
		}
		p{
			color: #707070;
		}
		.item {
			margin-bottom: 50px;
			transition: all .2s ease-out;
			cursor: pointer !important;
		}
		.item img {
			width: 100%;
			max-width: 100%;
			border-radius: 12px;
		}
		.item p {
			text-align: center;
			font-size: 22px;
			line-height: 24px;
			font-weight: 600;
			color: #000000;
			margin-top: 20px;
			span {
				display: block;
				color: #A1A1A1;
				font-weight: 400;
				font-size: 18px;
			}
		}
		.item:hover {
			opacity: 1 !important;
			translate: 0px -10px;
		}
		.showcase-entries:hover .item {
			opacity: .7;
		}
		.showcase-entries {
			margin-bottom: -50px;
		}
	}
}

/*impressum*/

#impressum{
	padding: 250px 0px;
	justify-content: center;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	h2{
		margin-top: 100px;
		color: #FFFFFF;
		font-size: 52px;
		line-height: 64px;
	}
	p {
		font-size: 16px;
		color: #555555;
		font-weight: 400;
		span {
			color: #959595;
			font-weight: 500;
		}
		a {
			color: #555555;
			text-decoration: none;
			transition: all .1s ease-out;
		}
		a:hover {
			color: #aaaaaa;
		}
	}
	.divider {
		width: 50px;
		height: 2px;
		background-color: #323232;
		margin: 0 auto;
		margin: 100px auto 100px auto;
	}
}

/* wrapper */
.wrapper{
	position: relative;
	background-color: #000000;
	border-radius: 20px;
}

/* swiper */
.swiper {
	width: 100%;
	height: auto;
  }

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
}

  .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* swiper */
.swiper {
	--swiper-wrapper-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.swiper-pagination {
	--swiper-pagination-bottom: -50px;
}

.swiper-pagination-bullet{
	display: flex;
	justify-content: center;
	margin-top: 40px;
	--swiper-pagination-bullet-size: 2px;
	--swiper-pagination-bullet-width: 50px;
	--swiper-pagination-bullet-height: 2px;
	--swiper-pagination-bullet-inactive-opacity: 0.2;
	--swiper-pagination-bullet-horizontal-gap: 5px;
	--swiper-pagination-bullet-vertical-gap: 6px;
	--swiper-pagination-bullet-border-radius: none;
}

.swiper-pagination-custom {
	margin-top: 30px !important;
}

.swiper-pagination-editor {
	--swiper-pagination-color: #d9d9d9;
	--swiper-pagination-bullet-inactive-color: #d9d9d9;
	display: flex;
	justify-content: center;
}


.swiper-pagination-admin{
	--swiper-pagination-color: #151515 ;
	--swiper-pagination-bullet-inactive-color: #151515 ;
	display: flex;
	justify-content: center;
	margin-top: 40.47px;
}

.swiper-pagination-customize{
	--swiper-pagination-color: #d9d9d9 ;
	--swiper-pagination-bullet-inactive-color: #d9d9d9 ;
	display: flex;
	justify-content: center;
	margin-top: 40.47px;
}


.cursor-follower {
	opacity: 0;
    position: fixed;
    width: 100px;
    height: 47px;
		background-color: rgba( 98, 98, 98,.5);
    background-size: cover;
    pointer-events: none;
    z-index: 1000;
		transform-origin: center center;
    display: block;
		border: 1px solid white;
		border-radius: 10px;
		p {
			color: #ffffff;
			transform: translate(30%, 30%);
		}
}
