*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

:root{
  --color-main-light: #F1DADA;
  --color-main-medium: #E3B5B5;
}

body{
	
}

.flex{
	display: flex;
}
.flex-stretch { 
	flex: 1 1 auto; 
}

nav{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	transition: all 0.6s ease;
	z-index: 899;
}

.logo{
	position: relative;
	margin-left: 10vw;
	margin-top: 40px;
	text-decoration: none;
	transition: 0.6s;
}

.logo_icon{
	position: relative;
	width: 65px;
	height: 65px;
	margin: 10px;
	background-image: url(../img/logo_icon.png);
	background-size: cover;
	transition: 0.6s;
}

.logo_text{
	font-size: 12px;
	font-family: raleway;
	font-weight: 600;
	text-decoration: none;
	color: black;
	letter-spacing: 4px;
	transition: 0.6s;
}


nav ul{
	position: relative;
	width: 50em;
	padding-right: 10vw;
	display: flex;
	align-items: center;
	font-family: raleway;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
}

nav ul li{
	position: relative;
	width: 33%;
	text-align: center;
	list-style: none;
}


nav ul li a{
	position: relative;
	text-decoration: none;
	color: black;
	transition: 0.6s;
}

nav ul li a:hover{
	letter-spacing: 0.2em;
}

.logo:hover .logo_text{
	letter-spacing: 6px;
}


nav.sticky{
	padding: 20px 0px;
	background-color: rgba(255, 255, 255, 0.95);
	/*
	border-bottom-width: 1px;
	border-bottom-color: black;
	border-bottom-style: solid;
	*/
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}

nav.sticky .logo{
	display: flex;
	margin-top: 0px;
}

nav.sticky .logo_text{
	font-size: 14px;
	padding: 0;
	color: black;
}


nav.sticky .logo_icon{
	opacity: 0;
	margin: 0;
	width: 0px;
	height: 0px;
}

nav.sticky ul li a{
	color: black;
}




.nav_mobile{
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--color-main-medium);
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
	height: 60px;
	width: 100vw;
	display: none;
	z-index: 9999;
}

.logo_mobile{	
	font-size: 14px;
	line-height: 60px;
	padding: 0 10vw;
	font-family: raleway;
	font-weight: 600;	
	letter-spacing: 4px;
	transition: 0.6s;
}

.logo_mobile a{
	color: white;
	text-decoration: none;
}
.nav_mobile ul{
	position: fixed;
	margin: 0;
	padding: 60px 0;
	width: 100vw;
	height: 100vh;
	background-color: white;
	top: 60px;
	left: -100vw;
	text-align: center;
	z-index: 9998;
	transition: 0.6s;
}

.nav_mobile ul li{
	display: block;
	line-height: 100px;
}

.nav_mobile ul li a{
	color: var(--color-main-medium);
	font-family: raleway;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.checkbtn{
	font-size: 24px;
	color: white;	
	line-height: 60px;
	position: absolute;
	top: 0;
	right: 10vw;
	cursor: pointer;
}

#check{
	display: none;
}

#check:checked ~ ul{
	left: 0;
}



@media (max-width: 500px){
	nav{
		display: none;
	}

	.nav_mobile{
		display: block;
	}
	
}
/*#cursor{
	position: absolute;
	width: 2rem;
	height: 2rem;
	border: 1px solid black;
	border-radius: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	transition: all 0.3s ease;
	transition-property: background,transform;
	transform-origin: 100% 100%;
	z-index: 998;
}



.link-grow{
	transform: scale(2);
	background: black;
}

.hovered-link{
	color: white;
}

*/

footer{
	position: relative;
	width: 100vw;
	background-color: var(--color-main-medium);
	font-family: raleway;
	font-size: 0.9rem;
	letter-spacing: 2px;
	font-weight: 600;
	text-transform: uppercase;
	min-height: 100px;
	margin-top: 200px;
	padding: 20px 50px;
	justify-content: center;
	align-items: center;
}

.social-icon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
	flex-wrap: wrap;
	z-index: 101;
}

.social-icon li{
	list-style: none;
}

.social-icon li a{
	font-size: 2.5rem;
	color: white;
	margin: 0 20px;
	display: inline-block;
	transition: 0.4s;
}

.social-icon li a:hover{
	transform: translateY(-10px);
}


footer p{
	color: white;
	font-size: 0.9rem;
	text-align: center;

}

footer img{
	border: none;
}

@media (max-width: 500px){
	.social-icon li a{
		font-size: 2rem;
	}
}

.wave{
	position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100px;
	background: white url("../img/wave.png");
	background-size: 1000px 100px;
}

.wave#wave1{
	z-index: 100;
	opacity: 1;
	bottom: 0;
	animation: animateWave 4s linear infinite;
}

.wave#wave2{
	z-index: 99;
	opacity: 0.5;
	bottom: 0px;
	animation: animateWave_b 4s linear infinite;
}

@keyframes animateWave
{
	0%{
		background-position-x: 1000px;
	}
	100%{
		background-position-x: 0px;		
	}
}

@keyframes animateWave_b
{
	0%{
		background-position-x: 0px;
	}
	100%{
		background-position-x: 1000px;		
	}
}



.slider_container{
	width: 80vw;
	margin: 0 auto;
	padding: 80px 0;
	overflow: hidden;
}

.slider_cards{
	width: 200%;
	transition: 1s ease;
}


#slider_two:checked ~ .slider_cards{
	margin-left: -100%
}

.slider_card{
	width: 80%;
	margin: 40px auto;
	
	background-color: white;
	border-radius: 25px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	transition: 0.4s;
}

.slider_card:hover{
	transform: translateY(-20px);
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}

.slider_card a{
	color: black;
}

.slider_card img{
	border-radius: 25px 25px 0 0;
}

.slider_text{
	padding: 1em 2em 2em 2em;
}

.slider_text p{
	font-size: 0.8rem;
	padding: 1em 0;
}

.slider_button{
	display: flex;
	margin: 20px;
	justify-content: center;
}

.slider_button label{
	height: 20px;
	width: 20px;
	background-color: var(--color-main-medium);
	opacity: 0.5;
	margin: 0 4px;
	border-radius: 20px;
	transition: 0.6s;
}

.slider_button label.slider_active{
	width: 60px;
	opacity: 1;
}

#slider_one:checked ~ .slider_button label.slider_one{
	width: 60px;
	opacity: 1;
}

#slider_one:checked ~ .slider_button label.slider_two{
	width: 20px;
	opacity: 0.5;
}

#slider_two:checked ~ .slider_button label.slider_two{
	width: 60px;
	opacity: 1;
}

#slider_two:checked ~ .slider_button label.slider_one{
	width: 20px;
	opacity: 0.5;
}


input[type="radio"]{
	display: none;
}