@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

*{
	transition: 500ms;
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
}
body{
	min-height: 100vh;
	background-color: black;
}

h1, h2, h3, h5{
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
}

a, p{
	font-size: 10px;
	font-family: "Urbanist", sans-serif;
	line-height: 25px;
}

/*-------------------------------------------- Navigation-----------------------------------------------------*/


nav{
	width: 100%;
	position: fixed;
	z-index: 3;
	background-color: #181818;
}

nav ul{
	width: 100%;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

nav li{
	height: 120px;
}

nav li a{
	height: 100%;
	text-decoration: none;
	color: white;
	display: flex;
	align-items: center;
	padding: 0px 50px;
	border-radius: 5px;
	font-size: 15px;
}

li:first-child{
	margin-right: auto;
}

li img:first-child{
	width: 100px;
	margin-left: 50px;
	margin-top: 5px;
}

li a:hover{
	background-color: #595959;
	color: white;
}

.sidebar{
	position: fixed;
	top: 0;
	right: 0;
	height: 105vh;
	width: 200px;
	z-index: 999;
	background-color: #181818;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sidebar li{
	width: 100%;
}

.sidebar a{
	width: 100%;
}
.sidebar nav li a img{
	width: 10px;
}

.burger{
	display: none;
}
/*------------------------------------ First container ------------------------------------------*/



#start{
	height: 200vh;
	background: url("../img/pexels-photo-998641.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	animation: darkeng linear forwards;
	animation-timeline: view();
	animation-range: exit -600px;
}


#start .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
}

 

#start h1{
	transform: translateY(-150px);
	position: fixed;
	background-image: linear-gradient(0deg, #BEAEC9, #738CC2);
	background-clip: text;
	color: transparent;
	font-size: 500px;
	animation-range: exit -150px;
	z-index: 1;
	animation: anima 2s ease;
}

@keyframes anima{
	from{
		opacity: 0;
		transform: translateY(0);
	}
	
	to{
		opacity: 1;
		transform: translateY(-150px);
	}
}
#start img{
	z-index: 2;
	width: 800px;
	transform: translateY(400px);
}

#start h2{
	font-size: 150px;
	color: white;
	font-weight: 200;
	text-align: center;
	z-index: 2;
	transform: translateY(100px);
	animation: fade-out linear forwards;
	animation-timeline: view();
	animation-range: exit -150px;
}


/*------------------------------------ Second container ------------------------------------------*/

#hmid{
	background-image: url("../img/pexels-photo-998641.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	animation: dark linear forwards;
	animation-timeline: view();
	animation-range: enter -20px;
	
}

@keyframes dark{
	60%{
		opacity: 1;
	}
	0%{
		opacity: 0;
		
	}
}

#hmid .container{
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

#hmid h3{
	text-align: center;
	font-size: 55px;
	margin-left: 50px;
}

#hmid p{
	font-size: 20px;
	margin-left: 100px;
	padding: 30px 0; 
}

#hmid img{
	width: 1200px;
	margin-left: -250px;
	transform: translateX(500px);
	animation: spin 240s linear infinite forwards;
}

@keyframes spin{	
	from{
		transform: translateX(500px);
		
	}
	to{
		transform: translateX(500px) rotate(360deg);
		
	}
}

.colored{
	color: #FD8562;
}
#hmid a{
	display: block;
	width: 30%;
	margin: 0 auto;
	text-decoration: none;
	color: black;
	text-align: center;
	background-color: white;
	font-size: 20px;
	padding: 20px 40px;
	border-radius: 15px;
	font-weight: 700;
}

#hmid a:hover{
	color: black;
	transform: translateY(-10px);
	box-shadow: 0px 5px 40px 1px #FFBCA8 ;
}

/**********************************Third Container******************************************/

#mid{
	background-image: url("../img/pexels-photo-998641.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: darkeng linear forwards;
	animation-timeline: view();
	animation-range: exit -200px;
	overflow: hidden;
}

@keyframes darkeng{
	0%{
		opacity: 1;
	}
	60%, 100%{
		opacity: 0;
	}
}

#mid .container{
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	max-height: 200vh;
	
}

#mid h3{
	font-size: 55px;
	margin-left: 50px;
}

#mid p{
	font-size: 20px;
	margin-right: 100px;
	padding: 20px 0; 
}

#mid img{
	z-index: 2;
	width: 900px;
	margin-right: 50px;
	transform: translateX(500px);
	transform: translateY(400px);
}


/*******************************Forth container******************************************/

#lmid{
	background-image: url("../img/pexels-photo-998641.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: dark linear forwards;
	animation-timeline: view();
	animation-range: enter -200px;
}

@keyframes dark{
	60%{
		opacity: 1;
	}
	0%{
		opacity: 0;
		
	}
}


#lmid .container{
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	height: 200vh;
	margin-top: 50px;
	scroll-padding-top: 250px;
}

#lmid h3{
	font-size: 55px;
	margin-left: 100px;
	text-align: center;
}

#lmid p{
	font-size: 20px;
	margin-left: 100px;
	padding: 20px 0; 
}

#lmid img{
	width: 350px;
	border-radius: 30px;
	margin-left: 500px;
}

#lmid article .right{
	transform: translateX(-300px);
}

#lmid article .left{
	transform: translateX(-200px);

	
	
}

#lmid article img:hover{
	z-index: 1;
	box-shadow: 10px 10px 10px 10px rgba(f,f,f, 0.1);
	scale:1.2;
}

#bottom article{
	position: relative;
}
	
	/*********************************Bottom*****************************************/
	
	

#bottom .container{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50vh;
	gap: 100px;
}

#bottom h2{
	color: white;
	font-size: 50px;
}

#bottom a{
	color: white;
	text-decoration: none;
}

#bottom a img{
	width: 50px;
}

#bottom a img:hover{
	transform: translateY(-10px)
}

#bottom .social{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

#bottom form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-image: url("../img/marsph1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 60px 100px;
	border-radius: 10px;
}

#bottom h5{
	text-align: center;
	margin-bottom: 20px;
	font-size: 30px; 
	color: white;
}


#bottom form input{
	background-color: white;
	color: black;
	font-size: 15px;
	font-family: "Urbanist", sans-serif;
	padding: 20px 62px 20px 20px;
	border-radius: 5px;
	border: 0;
}


#bottom aside input{
	display: block;
	background-color: black;
	color: white;
	font-size: 15px;
	padding: 20px 95px;
	border-radius: 10px;
	margin-top: 13px;
}

#bottom aside input:hover{
	transform: translateY(-3px);
	box-shadow: 0px 6px 5px 1px rgba(0,0,0, .3);
	background-color: white;
	color: black;
}

#bottom p{
	color: #595959;
	text-align: center;
	font-size: 15px;
	margin-bottom: 10px;
}
/************************************Responsivity********************************************/

/***********************Tablet***************************/
@media (max-width: 820px){
	
.hideOnMobile{
		display: none;
	}
	
.burger{
		display: block;
	}
	
.sidebar{
	position: fixed;
	top: 0;
	right: 0;
	height: 105vh;
	width: 400px;
	z-index: 999;
	background-color: #181818;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
	
.sidebar li:first-child{
	margin-left: -10px;
}
	
.sidebar li{
	width: 100%;
}

.sidebar a{
	width: 100%;
}
	
li{
	margin: 10px;
}

li a{
	height: 50%;
	text-decoration: none;
	color: white; 
	display: flex;
	align-items: center;
	padding: 20px 20px;
	border-radius: 15px;
	font-size: 25px;
	
}


li img:first-child{
	width: 100px;
	margin-left: 50px;
	margin-top: 5px;
}



	
#start h1{
		transform: translateY(-200px);
		font-size: 350px;
	}
	
@keyframes anima{
	from{
		opacity: 0;
		transform: translateY(0);
	}
	
	to{
		opacity: 1;
		transform: translateY(-200px);
	}
}
	
#start h2{
	transform: translateY(300px);
	font-size: 120px;
}
	
#start img{
	width: 800px;
	transform: translateY(400px);
	}
	
#hmid img{
	transform: translateX(720px);
	width: 1000px;
	margin-left: -700px;
	}
	
@keyframes spin{	
	from{
		transform: translateX(720px);

		}
	to{
		transform: translateX(720px) rotate(360deg);

		}
}
	
#hmid p{
	margin-left: 20px;
}
	
#hmid a{
	font-size: 25px;
}
	
#mid img{
	width: 600px;
	margin-right: -200px;
	transform: translateX(-300px);

}
	
#mid h3{
	font-size: 55px;
	margin-left: 20px;
}
	
#mid p{
	font-size: 20px;
	margin-right: 20px;
	padding: 20px 0; 
}
	
#lmid .container{
	height: 100vh;
}
	
#lmid h3{
	text-align: center;
	font-size: 55px;
	margin-left: 20px;
}
	
#lmid img{
	width: 250px;
	border-radius: 30px;
	margin-left: 120px;
}

#lmid article .right{
	transform: translateX(-100px);
}

#lmid article .left{
	z-index: 0;
	transform: translateX(100px);
	transform: translateY(-100px);
	
}
	
#lmid p{
	font-size: 20px;
	margin-left: 20px;
	padding: 20px 0; 
}
	
#bottom .container{
	flex-direction: column;
	gap: 40px;
}
	
#bottom h2{
	color: white;
	font-size: 50px;
}

#bottom a{
	color: white;
	text-decoration: none;
}

#bottom a img{
	width: 50px;
}
	
#bottom form{
	overflow: hidden;
	background-size: cover;
	padding: 60px 90px;
	border-radius: 20px;
}

#bottom h5{
	text-align: center;
	font-size: 30px;
	margin-bottom: 20px;
	color: white;
}

#bottom form input{
	background-color: white;
	color: black;
	font-size: 25px;
	font-family: "Urbanist", sans-serif;
	padding: 20px 50px 20px 20px;
	border-radius: 5px;
	border: 0;
}

#bottom aside input{
	display: block;
	background-color: black;
	color: white;
	font-size: 25px;
	padding: 25px 130px;
	border-radius: 10px;
	margin-top: 15px;
}

#bottom aside input:hover{
	transform: translateY(-3px);
	box-shadow: 0px 6px 5px 1px rgba(0,0,0, .3);
	background-color: white;
	color: black;
}

#bottom p{
	color: #595959;
	text-align: center;
	font-size: 22px;
	margin: 70px 0 15px;
	
}
	
}

/**************************************Smartphone********************************************/
@media (max-width: 400px) {	
	
	
.hideOnMobile{
		display: none;
	}
	
.burger{
		display: block;
	}

.sidebar li:first-child{
	margin-left: -10px;
}
	
li img:first-child{
	width: 80px;
	margin-left: 20px;
	margin-top: 0px;
}
	
nav li{
	height: 80px;
	color: white;
}
	
.sidebar{
	position: fixed;
	top: 0;
	right: 0;
	height: 105vh;
	width: 300px;
	z-index: 999;
	background-color: #181818;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
	
#start{
	height: 150vh;
	animation-range: exit -100px;
}
	

	
#start h1{
	transform: translateY(-50px);
	font-size: 170px;
	}
	
@keyframes anima{
	
from{
	opacity: 0;
	transform: translateY(0);
	}
	
to{
	opacity: 1;
	transform: translateY(-50px);
	}
}
	
#start h2{
	transform: translateY(170px);
	font-size:70px;
}

#start img{
	width: 400px;
	transform: translateY(250px);
	}
	
#hmid{
	height: 100vh;
	animation-range: enter 100px;
	}
	
#hmid img{
		transform: translateX(350px);
		width: 500px;
		margin-left: -350px;
	}
	
@keyframes spin{
	
from{
	transform: translateX(350px);
		
	}
	
to{
	transform: translateX(350px) rotate(360deg);
		
	}
}
	
#hmid h3{
	text-align: center;
	font-size: 35px;
	margin-left: -10px;
}

	
#hmid p{
	margin-left: 10px;
	font-size: 15px;
	line-height: 21px;
}
	
#hmid a{
	font-size: 15px;
	width: 40%;
	margin: 0 auto;
	background-color: white;
	padding: 15px 40px;
	border-radius: 10px;
	
}
	
#mid{
		height: 100vh;
}
	
#mid img{
		width: 400px;
	margin-top: 200px;
		margin-right: -150px;
		transform: translateX(-270px);


}
	
#mid h3{
	text-align: center;
	font-size: 35px;
	margin-left: -100px;
}
	
#mid p{
	margin-left: -100px;
	font-size: 15px;
	line-height: 21px;
	margin-right: 10px;
	padding: 20px 0; 
}

#lmid{
		height: 150vh;
}
	
#lmid .container{
		height: 100vh;
}
	
#lmid h3{
	text-align: center;
	font-size: 35px;
	margin-left: 20px;
}
	
#lmid img{
	width: 150px;
	border-radius: 10px;
	margin-top: 20px;
	margin-left: 40px;
}

#lmid article .right{
	transform: translateX(0px);
}

#lmid article .left{
	transform: translateX(0px);
	transform: translateY(0px);
	
}
	
#lmid p{
	margin-left: 20px;
	font-size: 15px;
	line-height: 21px;
	margin-right: -20px;
	padding: 20px 0; 
}
	
#bottom{
		height: 60vh;
	}
	
#bottom h2{
		font-size: 40px;
	}
	
#bottom .container{
	flex-direction: column;
	gap: 40px;
}
	
#bottom form{
	overflow: hidden;
	background-size: cover;
	padding: 30px 20px;
	border-radius: 15px;
}

#bottom h5{
	text-align: center;
	margin-bottom: 20px;
	font-size: 25px;
	color: white;
}

#bottom form input{
	background-color: white;
	color: black;
	font-size: 15px;
	font-family: "Urbanist", sans-serif;
	padding: 20px 50px 20px 20px;
	border-radius: 5px;
	border: 0;
}

#bottom aside input{
	display: block;
	background-color: black;
	color: white;
	font-size: 15px;
	padding: 25px 90px;
	border-radius: 10px;
	margin-top: 10px;
}

#bottom aside input:hover{
	transform: translateY(-3px);
	box-shadow: 0px 6px 5px 1px rgba(0,0,0, .3);
	background-color: white;
	color: black;
}

#bottom p{
	color: #fff;
	text-align: center;
	font-size: 15px;
	margin: 50px 0 0px;
}

}