body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 2.4vh;
	background:
			url(../img/shadow.png) no-repeat 50% 0,
			#eaeaea url(../img/white.png) no-repeat 50% 0;

	background-size: 75vh;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.slideshow-container {
	position: relative;
	display: flex;
	justify-content: center;
	margin-top: 0;
	padding: 0;
	height: 75vh;
}

.slideshow-container img {
	height: 75vh;

}

header {
	position: absolute;
	max-width: 100vh;
	width: 90vw;
	display: flex;
	justify-content: flex-start;
	margin-top: 5vh;
	margin-right: 30vw;
}

.hover-block {
	display:inline-block;
	margin-right: 1.5em;
}

.hover-block:last-child {
	margin-right: 0;
}

.hover-link {
	text-decoration: none;
	color: #999999;
}

.hover-block:hover > .hover-link:first-child {
	visibility: visible;
	position: inherit;
}

.hover-link:first-child,
.hover-block:hover > .hover-link:last-child {
	visibility: hidden;
	position: absolute;
	left: -100px;
}

.hover-block > .hover-link:first-child {
	color: #e44e57;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1 {
	margin-top: -5vh;
	margin-bottom: 0;

	/*font-family: 'Cinzel', sans-serif;*/
	font-family: 'Raleway', sans-serif;
	color: #e44e57;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1.5vh;
	font-size: 9.5vh;
}

p {
	margin-top: 0;

	font-size: 2.3vh;
	color: #999999;
	width: 60%;
	text-align: center;
}

.button {
	margin-top: 0.2vh;
	width: 25vh;
	height: 5vh;
	background-color: #e44e57;
	color: white;
	text-transform: uppercase;
	font-size: 2vh;
	border-radius: 13vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-weight: 600;
}

.button:hover {
	margin-top: 0;
	width: 25.4vh;
	height: 5.4vh;
}

/* SLIDER */



.hover-block > .hover-link:first-child,
.hue-anim {
	animation-name: hue;
	animation-duration: 36s;
	animation-timing-function: linear;
	animation-iteration-count: infinite
}

@keyframes hue {
	0% {filter: hue-rotate(0deg);}
	100% {filter: hue-rotate(360deg);}
}



/* BURGER */
.hidden-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;

	position: fixed;
	list-style: none;
	box-sizing: border-box;

	width: 140px;

	padding: 10px;
	margin: 0;

	background-color: rgba(202, 192, 180, 0.8);
	height: 100vh;

	top: 0;
	right: -140px;

	transition: right 0.5s;
	z-index: 2;
}

.hidden-menu-ticker {
	display: none;
}

.btn-menu {
	color: #fff;
	padding: 5px;
	position: fixed;
	top: 5px;
	right: 5px;
	cursor: pointer;
	transition: 0.5s;
	z-index: 3;
	width: 32px;
 }

.btn-menu span {
	border-radius: 15%;
	display: block;
	height: 5px;
	background-color: rgba(202, 192, 180, 0.9);
	margin: 5px 0 0;
	transition: 0.5s;
	position: relative;
}

.btn-menu span.first {
	margin-top: 0;
}

.hidden-menu-ticker:checked ~ .btn-menu {
	right: 95px;
}
.hidden-menu-ticker:checked ~ .hidden-menu {
	right: 0;
}

.hidden-menu-ticker:checked ~ .btn-menu span{
	transition: 0.5s;
	background-color: white;
}
.hidden-menu-ticker:checked ~ .btn-menu span.first {
	transform: rotate(45deg);
	top: 10px;
}
.hidden-menu-ticker:checked ~ .btn-menu span.second {
	transform: rotate(45deg);
	opacity: 0;
}
.hidden-menu-ticker:checked ~ .btn-menu span.third {
	transform: rotate(-45deg);
	top: -10px;
}

.hidden-menu-ticker:checked ~ main {
	width: calc(100vw - 90px);
	left: 0;
}

.hidden-menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.social {
	align-self: flex-start;
	position: relative;
	display: flex;
	flex-direction: column;
}

.social > a,
.social div {
	position: relative;

	transform: rotate(90deg);
	margin-bottom: 95px;
	margin-left: -78px;
}

.social > a {
	text-decoration: none;
	color: #999999;
}

.social > a:hover {
	color: #1c96b8;
}

.social > div {
	width: auto;
	display: flex;
	flex-direction: row;
	flex-basis: 100%;
}

.social > div > span {
	width: 90px;
	color: #999999;
}

.hidden-menu img {
	align-self: center;
	width: 110px;
	object-fit: contain;
}

.social > div > a > img {
	width: 83px;
	height: auto;
}

