*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,body{
	width: 100%;
	font-size: 16px;
	font-family: roboto-regular;
}
header{
	position: fixed;
	top: 0;
}
header img{
	width: 58%;
	padding: 32px;
}
.root{}
.root .main{
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.main .bg{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	filter: opacity(0.4) contrast(0.3) grayscale(1);
}
.main .content{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}
.main-content{
	position: relative;
	top: 22%;
	text-align: center;
}
.main-content .logo-2{
	width: 38%;
}
.main-content h1{
	font-family: roboto-light;
	font-size: 84px;
	letter-spacing: 12px;
	color: #000;
	text-transform: uppercase;
	margin: 3% 0;
}
.main-content p{
	font-family: roboto-light;
	font-size: 28px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.main-content a.butn{
	font-family: roboto-light;
	font-size: 26px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #fff;
	padding: 16px 40px;
	background: linear-gradient(180deg, #a6cf5b 52%, #6B8935 90%);
	border: none;
	display: inline-block;
	margin-top: 1%;
	border-radius: 0;
	text-decoration: none;
	transition: all .5s linear;
}
.main-content a.butn:hover{
	background: linear-gradient(180deg, #6B8935 52%, #a6cf5b 90%);
}
.social-content{
	position: relative;
	bottom: 5%;
}
.social-content a{
	color: #000;
	border: 1px solid #000;
	border-radius: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	margin: 0 8px;
	text-decoration: none;
	transition: all .5s linear;
}
.social-content a:hover{
	background: #000;
	color: #fff;
}