*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}
:root{
	--bg-color: #ffffff;
	--text-color: #000000;
	--main-font: 2.2rem;
	--p-font: 1.1rem;
}
header{
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	position: fixed;
	background: #000000;
	box-shadow: 0px 2px 18px 0 rgb(129 162 182 / 20%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 8%;
	transition: .3s;
}
.navbar{
	display: flex;
}
.navbar a{
	font-size: var(--p-font);
	color: var(--text-color);
	font-weight: 600;
	padding: 10px 15px;
	margin: 0 10px;
	transition: all .40s ease;
	color: #fff;
}
.navbar a:hover{
	background: var(--text-color);
	color: #EADED1;
}
body{
	background: #8B796C;
}
.home{
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../img/img2.png) no-repeat ;
	background-position: center;
	background-size: cover;
	padding-top: 50rem;
	padding-bottom: 10rem;
}
.home .content{
	text-align: center;
	width:60rem;
}
	
.home .content h3{
	color:var(--black);
	font-size: 3rem;
}
	
.home .content h3 span{
	color:var(--orange);
}
	
.home .content p{
	color:var(--light-color);
	font-size: 1.7rem;
	padding:1rem 0;
	line-height: 1.8;
}

.timeline{
	position: relative;
	max-width: 1500px;
	margin: 100px auto;
}
.container {
	padding: 10px 50px;
	position: relative;
	width: 50%;
}
.text-box{
	padding: 20px 30px;
	background-color: #fff;
	position: relative;
	border-radius: 6px;
	font-size: 20px;
}
.text-box p{
	padding: 20px 30px;
	background-color: #fff;
	position: relative;
	border-radius: 6px;
	font-size: 20px;
	text-align: center;
	
}
.text-box a{
	padding: 20px 30px;
	background-color: #fff;
	position: center;
	border-radius: 6px;
	font-size: 20px;
	display: block;
	margin: auto;
	text-align: center;
	border: 1px solid black;
	padding: 10px;
	width: 150px; 
	text-decoration: none; 
	color: black; 
	
}
.left-container{
	left: 0;
}
.right-container {
	left: 50%;
}
.timeline::after{
	content: '';
	position: absolute;
	width: 6px;
	height: 100%;
	background: #fff;
	top: 0;
	left: 50%;
	margin-left: -3px;
}
.contact{
	padding: 80px 17%;
	background: var(--text-color);
}
.main-contact{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, auto));
	gap: 2rem;
	margin-bottom: 3rem;
}
.contact-content-left li{
	margin-bottom: 15px;
	position: left;
}
.contact-content-left li a{
	display: block;
	color: var(--bg-color);
	font-size: var(--p-font);
	font-weight: 600;
	transition: all .40s ease;
}
.contact-content-left li a:hover{
	transform: translateX(-10px);
}
.contact-content-right li{
	margin-bottom: 15px;
	position: center;
}
.contact-content-right li a{
	display: block;
	color: var(--bg-color);
	font-size: var(--p-font);
	font-weight: 600;
	transition: all .40s ease;
}
.contact-content-right li a:hover{
	transform: translateX(-10px);
}

.action form{
	text-align: center;
}
.action form input[type="email"]{
	width: 460px;
	max-width: 100%;
	padding: 12px 15px;
	background: #515151;
	color: var(--bg-color);
	border: none;
	outline: none;
	margin: 0px 10px 20px 0px;
	font-size: 16px;
	font-weight: 600;
}

.action form input[type="submit"]{
	padding: 10px 35px;
	background: var(--bg-color);
	color: var(--text-color);
	border: none;
	outline: none;
	margin: 0px 10px 20px 0px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}
.last{
	text-align: center;
	padding: 17px;
	background: #000000;
}
.last p{
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
	header{
		padding: 15px 8%;
	}
	.navbar{
		top: -500px;
		left: 0;
		right: 0;
		position: absolute;
		flex-direction: column;
		background: var(--bg-color);
		box-shadow: 0px 2px 18px 0 rgb(129 162 182 / 20%);
		transition: all .40s ease;
	}
	.navbar a{
		display: block;
		padding: 1rem;
		margin: 0.5rem;
	}
	.navbar.active{
		top: 100%;
	}
	.home{
		display: flex;
		align-items: center;
		justify-content: center;
		background: url(../img/img1.png) no-repeat ;
		background-position: center;
		background-size: cover;
		padding-top: 0rem;
		padding-bottom: 0rem;
	}
	.container {
        width: 70%;
    }
	.timeline{
		align-items: center;
	}
	.timeline::after{
		width: 0px;
		height: 0%;
	}
	.left-container{
		left: 0;
	}
	.right-container {
		left: 0;
	}
}
@media only screen and (max-width: 768px) {
	
	header{
		padding: 15px 8%;
	}
	.navbar{
		top: -500px;
		left: 0;
		right: 0;
		position: absolute;
		flex-direction: column;
		background: var(--bg-color);
		box-shadow: 0px 2px 18px 0 rgb(129 162 182 / 20%);
		transition: all .40s ease;
	}
	.navbar a{
		display: block;
		padding: 1rem;
		margin: 0.5rem;
	}
	.navbar.active{
		top: 100%;
	}
		/* home */
	.home {
	padding-top: 25rem;
	padding-bottom: 5rem;
	}
	.home .content {
	width: 100%;
	}
	.home .content h3 {
	font-size: 2rem;
	}
	.home .content p {
	font-size: var(--p-font);
	}
	
	/* timeline */
	.timeline {
	margin: 50px 0;
	font : 0px;
	}
	.container {
	width: 90%;
	margin: 0 auto;
	padding: 10px;
	}
	.timeline::after{
		width: 0px;
		height: 0%;
	}
	/* contact */
	.contact {
	padding: 50px 5%;
	}
	.main-contact {
	grid-template-columns: repeat(1, auto);
	justify-items: center;
	text-align: center;
	}
	.contact-content-left li,
	.contact-content-right li {
	margin: 0;
	}
	.action form input[type="email"],
	.action form input[type="submit"] {
	width: 100%;
	max-width: 100%;
	margin: 0 0 20px 0;
	}
	}
	
	
