/*   
The Tree. Concept for Website Theme
*/

/* Reset styles */
	
html, 
body, 
div, 
h1,
h2, 
p, 
a, 
strong {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
	
/* HTML5 display-role reset for older browsers */

body {
	line-height: 1;
}

/* end */

html {
	overflow: auto;
}
body {
	position: absolute;
	background: #fff;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow-y: scroll;
	overflow-x: hidden;
	font-family: 'Autour One', cursive;
	font-size: 16px;
	font-weight: 400;
	color: #555454;
}
strong {
	color: rgba(15, 15, 15, 0.9);
	font-size: 160%;
}
h1 {
	font-size: 62px;
	color: #FFFFFF;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
	margin: 50px 0;
	letter-spacing: -8px;
}
h2 {
	font-size: 58px;
	color: rgba(13, 121, 17, 0.5);
	letter-spacing: -9px;
	margin: 70px 0 30px;
}
h1, h2 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 700;
	text-align: center;
	padding: 0 10px;
}
a {
	color: #E2630E;
}
p {
	margin-top: 30px;
	line-height: 1.4;
}
img {
	max-width: 100%;
}
#line1 {
	width: 100%;
	background: #8190ba;
	text-align: center;
}
#line2 {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 10px;
}
#line3 {
	width: 100%;
	//background: #232426;
	text-align: center;
	margin: 60px 0 30px;
	background: url(images/bg.jpg);
	background-size: cover;
	box-shadow: 0 -80px 400px 200px rgba(22, 92, 114, 0.8) inset;
}
#line4 {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 10px;
}
#line4 p {
	text-align: justify;
}
#line5 {
	width: 100%;
	background: #baa881;
	text-align: center;
	margin: 60px 0 30px;
	//box-shadow: 1px 1px 10px rgba(0,0,0, 0.9) inset;
}
#link {
	width: 100%;
	text-align: center;
	margin: 30px 0;
}

/* Use a custom scrollbar. WebKit will turn off its built-in scrollbar and use custom one */

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: 2px 4px 9px 0px rgba(0, 0, 0, 0.9) inset;
}
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
	background: #E2630E;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: 2px 4px 9px 0px rgba(0, 0, 0, 0.3) inset;
    border-radius: 10px;
}