@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600&display=swap');

html, body {
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0;
}

header {
	height: 100vh;
	padding: 150px 50px;
	background: #23569c url("images/background.jpg") right center no-repeat;
	background-size: cover;
	text-align: center;
	box-sizing: border-box;
}

header #innerHeader {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}

header #innerHeader #proudToPresent {
	color: #FFF;
	font-size: 36px;
	font-weight: 400;
}

header #innerHeader #productName {
	color: #FFF;
	font-size: 60px;
	font-weight: 500;
    margin-bottom: 12px;	
}

header #innerHeader #productName span {
	font-weight: 600;
}

header #innerHeader #productDescription {
	color: #FFF;
	font-size: 36px;
	font-weight: 400;
	margin-bottom: 100px;
}

.downloadButton {
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	background-color:#FFFFFF;
	-webkit-border-top-left-radius:6px;
	-moz-border-radius-topleft:6px;
	border-top-left-radius:6px;
	-webkit-border-top-right-radius:6px;
	-moz-border-radius-topright:6px;
	border-top-right-radius:6px;
	-webkit-border-bottom-right-radius:6px;
	-moz-border-radius-bottomright:6px;
	border-bottom-right-radius:6px;
	-webkit-border-bottom-left-radius:6px;
	-moz-border-radius-bottomleft:6px;
	border-bottom-left-radius:6px;
	text-indent:0;
	border:1px solid #dcdcdc;
	padding: 18px 50px;
	display:inline-block;
	color:#265eab;
	font-size:36px;
	font-weight: 400;

	text-decoration:none;
	text-align:center;
	text-shadow:1px 1px 0px #ffffff;
}
.downloadButton:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;
}
.downloadButton:active {
	position:relative;
	top:1px;
}

main {
	padding: 150px 50px;
	background: #efefef;
	text-align: center;	
}

main #innerMain {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;	
}

main #wantToLearnMore {
	text-align: center;
	font-size: 36px;
}

main .visitWebsiteButton {
	-moz-box-shadow:inset 0px 1px 0px 0px #d9fbbe;
	-webkit-box-shadow:inset 0px 1px 0px 0px #d9fbbe;
	box-shadow:inset 0px 1px 0px 0px #d9fbbe;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b8e356), color-stop(1, #a5cc52) );
	background:-moz-linear-gradient( center top, #b8e356 5%, #a5cc52 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8e356', endColorstr='#a5cc52');
	background-color:#b8e356;
	-webkit-border-top-left-radius:6px;
	-moz-border-radius-topleft:6px;
	border-top-left-radius:6px;
	-webkit-border-top-right-radius:6px;
	-moz-border-radius-topright:6px;
	border-top-right-radius:6px;
	-webkit-border-bottom-right-radius:6px;
	-moz-border-radius-bottomright:6px;
	border-bottom-right-radius:6px;
	-webkit-border-bottom-left-radius:6px;
	-moz-border-radius-bottomleft:6px;
	border-bottom-left-radius:6px;
	text-indent:0;
	border:1px solid #83c41a;
	display:inline-block;
	color:#ffffff;
	padding: 18px 50px;
	font-size:32px;
	font-weight:normal;
	font-style:normal;
	text-decoration:none;
	text-align:center;
	text-shadow:1px 1px 0px #86ae47;
}
main .visitWebsiteButton:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #a5cc52), color-stop(1, #b8e356) );
	background:-moz-linear-gradient( center top, #a5cc52 5%, #b8e356 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a5cc52', endColorstr='#b8e356');
	background-color:#a5cc52;
}
main .visitWebsiteButton:active {
	position:relative;
	top:1px;
}

footer {
	padding: 12px;
	background-color: #FFFFFF;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	#xpertdocLogo {
		width: 350px;
	}
	header #innerHeader #proudToPresent {
		font-size: 30px;
	}		
	header #innerHeader #productName {
		font-size: 48px;
	}
	header #innerHeader #productDescription {
		font-size: 30px;
		margin-bottom: 50px;
	}
	header .downloadButton {
		font-size: 30px;
	}
	main #wantToLearnMore {
		font-size: 30px;		
	}
	main .visitWebsiteButton {
		font-size: 30px;
	}	
}

@media screen and (max-width: 768px) {
	#xpertdocLogo {
		width: 250px;
	}
	header {
		height: auto;
		padding: 50px 50px 80px 50px;
	}
	header #innerHeader #proudToPresent {
		font-size: 24px;
	}		
	header #innerHeader #productName {
		font-size: 40px;
	}
	header #innerHeader #productDescription {
		font-size: 24px;
	}
	header .downloadButton {
		font-size: 24px;
	}
	main {
		padding: 50px 50px 80px 50px;
	}
	main #wantToLearnMore {
		font-size: 24px;		
	}
	main .visitWebsiteButton {
		font-size: 24px;
	}
	footer {
		padding: 24px;
		font-size: 14px;
	}
}