body{
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    font-weight: 300;
    font-size: 16px;
    color:#282828;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased !important;
}

body, html{
    overflow-x:hidden;
}

/* Link style
---------------------------------------------------------*/
a {
    color: #68c3a3;
}
a,
a > * {
    outline: none;
    cursor: pointer;
    text-decoration: none;
}
a:focus,
a:hover {
    outline: none;
    color: #333333;
    text-decoration: none;
}



/* === Typography === */

h1, h2, h3, h4, h5, h6{
    font-weight: 700;
    margin:0;
}

h1 {
    font-size: 36px;
    line-height: 36px;
}

h2 {
    font-size: 30px;
    line-height: 30px;
}

h3 {
    font-size: 24px;
    line-height: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}
/*p {
	margin-bottom:0px;
}*/

/* ---------------------------------------------- /*
 * Mouse animate icon
/* ---------------------------------------------- */

.mouse-icon {
	position: absolute;
	left: 50%;
	bottom: 15%;
	border: 2px solid #fff;
	border-radius: 16px;
	height: 50px;
	width: 30px;
	margin-left: -17px;
	display: block;
	z-index: 10;
}

.mouse-icon .wheel {
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: drop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.mouse-icon .wheel {
	position: relative;
	border-radius: 10px;
	background: #fff;
	width: 4px;
	height: 10px;
	top: 4px;
	margin-left: auto;
	margin-right: auto;
}

@-webkit-keyframes drop {
    0%   { top:5px;  opacity: 0;}
    30%  { top:10px; opacity: 1;}
    100% { top:25px; opacity: 0;}
}


@keyframes drop	{
	0%   { top:5px;  opacity: 0;}
	30%  { top:10px; opacity: 1;}
	100% { top:25px; opacity: 0;}
}

/* SECTION TITLE
----------------------------------------------------- */
.section-title {
    margin-bottom: 80px;
    text-align: center;
    font-size: 50px;
    line-height: 50px;
    color: #52b3d9;
    position: relative;
}

.section-title::after {
    content: "";
    background: url(../../assets/images/section-divider.png) no-repeat 0 0;
    height: 15px;
    width: 113px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    margin: 0 auto;
}

#home {
	background: url(../images/home2.jpg) no-repeat center center;
	-webkit-background-attachment: fixed;
    background-attachment: fixed;
	background-color: #222;
	background-size: cover;
	padding: 0;
	position: relative;
}
#home:before {
	content: "";
	background-color: rgba(26, 30, 40, 0.30);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.intro {
	position: absolute;
	width: 100%;
	top: 60%;
	left: 0;
	text-align: center;
	-webkit-transform: translate(0%, -50%);
	   -moz-transform: translate(0%, -50%);
		-ms-transform: translate(0%, -50%);
		 -o-transform: translate(0%, -50%);
			transform: translate(0%, -50%);
	padding: 0 15px;
}

.intro h1{
	font-size: 90px;
	line-height: 90px;
	color: #427c3b;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
	margin-bottom: 30px;
margin-top: 30px;
}
.intro h2 span{
	color: #fff;
/*	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.55);
*/
font-size: 50px;
line-height: 52px;
}

.intro p{
	color: #f7f7f7;
	margin-bottom: 40px;
}

.intro-sub {
	color: #fff;
	font-size: 50px;
	line-height: 52px;
	/*font-weight: 700;*/
	text-transform: uppercase;
	display: block;
	/*text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.55);*/
}



/* === Footer Wrapper === */
.header-wrapper {
	background: #fff;
	padding:  0;
	color: #fff;  
	border-top: 20px	solid #427c3b;
}


.footer-wrapper {
	background: #427c3b;
	padding: 36px 0;
	color: #fff;  
}
.logo img {
    height: auto;
	width: 250px;
}



