@charset "utf-8";

/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}

body{
	background-image: url("BackgroundAll.webp");
	background-color: #fff;
	
	min-height: 100vh;
	overflow-x: hidden;
}

header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	
}

.Pream{
text-align: right;
	
} 


.logo{
	font-size: 2em;
	color: #359381;
	pointer-events: none;
}

.navigation a{
	text-decoration: none;
	color: #fff;
	padding: 6px 15px;
	border-radius: 20px;
	margin: 0 10px;
	font-weight: 600;
}

.navigation a:hover,
.navigation a.active{
	background: #FF0000;
	color: #fff;
}

.parallax{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

#text{
	position: absolute;
	font-size: 5em;
	color: #fff;
}


.parallax img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
}


.sec{
	position: relative;
	background: #BF2156;
	padding: 100px;
}

.sec h2{
	font-size: 3em;
	color: #fff;
	margin-bottom: 10px;
}

.sec p{
	font-size: 1em;
	color: #fff;
	margin-weight: 10px;
}
