/* -- LAYOUT --*/
html,body {
	margin: 0;
	color: #222;
	background-color: #ccc;
	font-family: "Red Hat Display", sans-serif;
	width: 100%;
	font-size: 3vh;
	overflow-x: hidden;
	position: relative;
}

.page {
	margin-top: 8.2vh;
	display: flex;
	flex-direction: column;
}

.subpage {
	align-items: center;
	padding: 0 2vw; 
}

.subpage p {
	width: 30vw;
	text-align: center;
}

.block {
	display: flex;
	align-items: center;
}

.block-image {
	width: 44vw;
	height: fit-content;
	margin: 3vw;
}

.block-text {
	display: flex;
	padding: 5vw;
	flex-direction: column;
}

.block-gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 3vw;
	width: 40vw;
}

.block-gallery img {
	width: 20vw;
	margin: 1vw;
}

#header-logo {
	position: fixed;
	z-index: 99;
	width: 14vh;
	border: 10px solid #000;
	margin: 1vw;
}

#header, #footer {
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100vw;
	
}

#header {
	height: 8vh;
	position: fixed;
	padding: 0.1vw 0.2vw;
	z-index: 97;
}

#header hr {
	width: 70vw;
}

#header img {
	height: 7vh;
	cursor: pointer;
}

#footer {
	color: #999;
	font-size: 2vh;
}

/* -- SUPPORT -- */
.shadow {box-shadow: 0px 0px 10px #555;}

.hidden {display: none !important;}

.showMenu {transform: translateX(0) !important;}

.mobile-tiled {display: none;}
.desktop-tiled {display: block;}

/* -- OBJECT -- */
hr {
	color: #b83;
	background-color: #b83;
	height: 1.5px;
	width: 40vw;
border: 0;
}

.button {
	color: #222;
	text-decoration: none;
	border: 3px solid #b83;
	padding: 1.5vh;
	border-radius: 1vh;
	transition: 0.3s;
	margin-left: auto;
	margin-right: auto;
}

.button:hover {
	background-color: #b83;
}

#menu-button {
	cursor: pointer;
	z-index: 99;
	right: 1vw;
	position: fixed;
	height: 8vh;
	display: flex;
	align-items: center;
}

#bar1, #bar2, #bar3 {
	width: 35px;
	height: 5px;
	background-color: #fff;
	margin: 6px 0px;
	transition: 0.4s;
}

.clicked #bar1 {transform: translate(0, 11px) rotate(-45deg);}
.clicked #bar2 {opacity: 0;}
.clicked #bar3 {transform: translate(0, -11px) rotate(45deg);}

#menu {
	z-index: 98;
	position: fixed;
	height: 100vh;
	width: min(70vw, 300px);
	color: #fff;
	background-color: #555;
	right: 0;
	display: flex;
	font-size: max(2vw, 30px);
	transform: translateX(75vw);
	transition: 0.3s;
	box-shadow: 3px 0px 10px #000;
}

#menu-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	shadow: 0px 0px 10px #555;
}

#menu-buttons > a {
	padding: 0.5vw;
	margin: 1.5vw;
	border: 3px solid #888;
	width: 80%;
	text-align: center;
	border-radius: 1vh;
	transition: 0.1s;
	cursor: pointer;
}

#menu-buttons > a:hover {
	background-color: #888;
}

.current-button {
	border-color: #b83 !important;
}

.current-button:hover {
	background-color: #b83 !important;
}

#contact {
	display: flex;
	flex-direction: column;
	padding: 2vh;
}

#contact span {
	padding: 0.1vh;
	padding-right: 1vh;
}

#socials {
	padding: 2vh;
	display: flex;
}

#socials a {
	box-shadow: 0px 0px 10px #333;
	color: #999;
	text-decoration: none;
	font-size: 4vh;
	width: 4vh;
	height: 4vh;
	border-radius: 20%;
	padding: 1vh;
	text-align: center;
	border: 2px solid #b83;
	margin: 1vh;
}

#socials svg {
	height: 3.5vh;
	padding-bottom: 1vh;
}

#socials a:hover {
	background-color: #b83;
}

h1 {
	font-size: max(3vw, 6vh);
	margin: 2vw 0 0 0;
}

#webshop-close {
	position: absolute;
	right: 2vw;
	top: 2vw;
	font-size: 4vh;
	cursor: pointer;
}

#webshop-close:hover {
	color: #b83;
}

#webshop-page {
	z-index: 99;
	background: #ccc;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	overflow: auto;
}

#webshop-page > div {
	margin: 3vh;
}

.webshop-image {
	cursor: pointer;
}

.webshop-gallery-large img {
	width: 50vw;
}

.webshop-gallery-small {
	overflow: auto;
	white-space: nowrap;
	width: 50vw;
}

.webshop-gallery-small img {
	width: 15vw;
	cursor: pointer;
}

.webshop-text {
	width: 30vw;
	margin: 3vw;
}
.webshop-text hr {
	width: 80%;
	margin-left: 0;
}

.webshop-text p {
	text-align: left !important;
}




#carousel {
	display: flex;
	align-items: stretch;
}

#carousel-ghost {
	height: 28.125vw;
}

.carousel-image {
	width: 100vw;
	opacity: 0;
	position: absolute;
	transform: translateX(100%);
	transition: transform 0.2s;
}

.carousel-active {
	opacity: 1;
	transform: translateX(0);
}

.carousel-leaving {
	opacity: 1;
	transform: translateX(-100%);
}

.carousel-control {
	font-size: max(4vw, 28px);
	position: absolute;
	width: 6vw;
	height: 28.125vw;
	background: rgba(0, 0, 0, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	cursor: pointer;
	z-index: 2;
}

.carousel-control-left > span {
	transform: translateX(3vw);
}

.carousel-control-right > span {
	transform: translateX(-3vw);
}

.carousel-control-left {
	transform: translateX(-3vw);
}

.carousel-control-right {
	right: 0;
	transform: translateX(3vw);
}

.carousel-control:hover {
	color: #aaa;
	background: radial-gradient(closest-side, rgba(0,0,0,0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

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

.gallery > img {
	width: calc(33% - 6vh);
	margin: 2vh;
}

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

.webshop-gallery > img {
	width: calc(33% - 6vh);
}

@media (max-width: 1180px) {
	h2 {text-align: center;}
	.subpage p {width: 90%;}
	.page p {text-align: center;}
	
	.block {flex-direction: column;}
	.block-image {width: 94vw;}
	.block-text {align-items: center;}

	
	#header hr {display: none;}
	#footer {flex-direction: column;}

	.mobile-tiled {display: block;}
	.desktop-tiled {display: none;}

	#menu-button {right: 6vw;}
	#menu-buttons > a {
		margin: 25px 0px 25px 0px;
	}

	.webshop-text {
		width: 98vw;
		margin-bottom: 1vw;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	
	.webshop-text p {text-align: left !important;}
	.webshop-text hr {margin-left: auto;}

	
	.webshop-gallery-large img {width: 98vw;}

	.webshop-gallery-small {width: 98vw;}
	.webshop-gallery-small img {width: 45vw;}
	
	.gallery > img {
		width: 100%;
		margin: 2vh 0 2vh 0;
	}
	



	.carousel-controll-left > span {
		translate: transferX(6vw);
	}

	.carousel-controll-right > span {
		translate: tranferX(-6vw);
	}

	.block-gallery {
		width: 94vw;
		flex-direction: column;
	}

	.block-gallery div {
		display: flex;
		flex-direction: column;
	}

	.block-gallery img {
		width: 100%;
		margin: 0;
		margin-top: 3vw;
	}

	#header-logo {
		margin: 1.25vh;
		width: 7vh;
		border: none;
	}
}

#home-video {
	width: 100vw;
	height: 28.125vw;
	object-fit: fill;
}
