@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;0,600;0,700;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway&display=swap');

body{
	margin:0;
	font-family: 'Poppins', sans-serif;

}

*{
	box-sizing: border-box;
	margin:0;
}

.container{
	max-width: 1140px;
	margin: auto;
}

.row{
	display: flex;
	flex-wrap: wrap;
}

header{
	position: absolute;
	left: 0px;
	right: 0px;
	border-bottom: 1px solid #404040;
	padding: 0px 15px;
	z-index: 10;
}

header .brand-name a{
	text-decoration: none;
	font-size: 22px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	position: relative; 
}

header .brand-name a.active::before{
	content: '';
	height: 3px;
	background-color: #ffffff;
	width: 100%;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

header .row{
	justify-content: space-between;
	align-items: center;
}

header .navbar ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

header .navbar ul li{
	display: inline-block;
	margin-left: 35px;
}

header .navbar ul li a{
	font-size: 15px;
	text-decoration: none;
	line-height: 72px;
	color: #ffff;
	display: block;
	font-weight: 600;
	position: relative;
}

header .navbar ul li a::before{
	content: '';
	height: 3px;
	background-color: #ffffff;
	width: 0%;
	position: absolute;
	right: 0px;
	bottom: -1px;
	transition: all .5s ease;
}

header .navbar ul li a.active::before{
	width: 100%;
	left:0;
}

header .navbar ul li a:hover::before{
	width: 100%;
	left:0;
}

.home{
	min-height: 100vh;
	background-size: cover;
	background-color: #262626;
	background-position: center;
	padding: 15px;
	background-image: url("img/ground5.jpg");
}

.home .full-screen{
	min-height: 100vh;
}

.home .home-content{
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.home .home-content .block{
	flex: 0 0 75%;
	max-width: 75%;
	padding-left: 35px;
	border-left: 5px solid #ffffff;
	margin-top: 50px;
}

.home .home-content .block h6{
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.home .home-content .block h1{
	color: #ffffff;
	font-size: 70px;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.home .home-content .block h3{
	color: #ffffff;
	font-size: 25px;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.home .home-content .block .button{
	padding-top: 20px;
}

.home .home-content .block .button a{
	border-radius: 4px;
	color: #ffffff;
	border: 1px solid #ffffff;
	padding: 12px 25px;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	transition: all .5s ease;
	background-color: transparent;
}

.home .home-content .block .button a:hover{
	background-color: #ffffff;
	color: #000000;
}


.about{
	min-height: 100vh;
	background-size: cover;
	background-color: #262626;
	background-position: center;
	padding: 15px;
	background-image: url("img/aboutback.jpg");
}

.about .full-screen{
	min-height: 100vh;
}

.about .home-content{
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.about .home-content .block{
	flex: 0 0 75%;
	max-width: 75%;
	padding-left: 35px;
	border-left: 5px solid #ffffff;
	margin-top: 50px;
}

.about .home-content .block h6{
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.about .home-content .block h1{
	color: #ffffff;
	font-size: 70px;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.about .home-content .block p{
	color: #ffffff;
	font-size: 15px;
	font-weight: 300;
	margin: 0;
	padding: 0;
	font-family: 'open sans';
}

.video{
	min-height: 100vh;
	background-size: cover;
	background-color: #262626;
	background-position: center;
	padding: 15px;
}

.video .full-screen{
	min-height: 100vh;
}

.video .home-content{
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.video .home-content .block{
	flex: 0 0 75%;
	max-width: 100%;
	padding-left: 35px;
	border-left: 5px solid #ffffff;
	border-right: 5px solid #ffffff;
	margin-top: 50px;
}

.video .home-content .block h6{
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	padding: 0;
}

.video .home-content .block h1{
	color: #ffffff;
	font-size: 70px;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.video .home-content .block p{
	color: #ffffff;
	font-size: 15px;
	font-weight: 300;
	margin: 0;
	padding: 0;
	font-family: 'open sans';
}

.page2{
	min-height: 100vh;
	background-size: cover;
	background-color: #262626;
	background-position: center;
	padding: 15px;
	background-image: url("img/page2.jpg");
}

.page2 .full-screen{
	min-height: 100vh;
}

.page2 .home-content{
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.page2 .home-content .block{
	flex: 0 0 25%;
	max-width: 100%;
	padding-left: 35px;
	border-left: 5px solid #ffffff;
	margin-top: 50px;
}


.page2 .home-content .block p{
	color: #ffffff;
	font-size: 15px;
	font-weight: 300;
	margin: 0;
	padding: 0;
	font-family: 'open sans';
}



