
/* Intro */
.intro{
	position: relative;
	z-index: 20;
}
.intro:after{
    content: "";
    position: absolute;
    z-index: 20;
    left: 0px;
    bottom: 0px;

    display: block;
    width: 100%;
    height: 120px;

    background: linear-gradient(
		to bottom,
		hsla(0, 0%, 0%, 0) 0%,
	    hsla(0, 0%, 0%, 0.013) 8.1%,
	    hsla(0, 0%, 0%, 0.049) 15.5%,
	    hsla(0, 0%, 0%, 0.104) 22.5%,
	    hsla(0, 0%, 0%, 0.175) 29%,
	    hsla(0, 0%, 0%, 0.259) 35.3%,
	    hsla(0, 0%, 0%, 0.352) 41.2%,
	    hsla(0, 0%, 0%, 0.45) 47.1%,
	    hsla(0, 0%, 0%, 0.55) 52.9%,
	    hsla(0, 0%, 0%, 0.648) 58.8%,
	    hsla(0, 0%, 0%, 0.741) 64.7%,
	    hsla(0, 0%, 0%, 0.825) 71%,
	    hsla(0, 0%, 0%, 0.896) 77.5%,
	    hsla(0, 0%, 0%, 0.951) 84.5%,
	    hsla(0, 0%, 0%, 0.987) 91.9%,
	    hsl(0, 0%, 0%) 100%
	);
}

.intro__height-large{
	padding: 18% 0px 14% 0px;
}
.intro__height-normal{
	padding: 12% 0px 9% 0px;
}
.intro__height-small{
	padding: 9% 0px 5% 0px;
}


.intro__image-background{
	position: absolute;
	left: 0px;
	top: 0px;

	display: block;
	width: 100%;
	height: 100%;

	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000000;
}
.intro__image-overlay{
	position: absolute;
	left: 0px;
	top: 0px;

	display: block;
	width: 100%;
	height: 100%;

	background: rgba(0,0,0,0.2);
    box-shadow: inset 0px -30px 25px -15px rgba(0,0,0,1);
}
.intro__tagline{
	position: relative;
	z-index: 30;
	text-align: center;
}
.intro__tagline h1{
	display: inline-block;
	vertical-align: top;

	margin: 0px;
	padding: 0px;

    font-family: 'klilllight';
	font-weight: normal;
	font-size: 80px;
	line-height: 90px;
	letter-spacing: 6px;

	text-decoration: none;
	text-shadow: 0px 2px 15px rgba(0,0,0,0.7);

	color: #ffffff;	
}
.intro__btn{
	position: relative;
	z-index: 30;
	margin: 5% 0px 0px 0px;
	text-align: center;
}
.intro__btn-primary{
	display: inline-block;
	vertical-align: top;

	border: 0px none;
	margin: 0px 0px 15px 0px;
	padding: 12px 28px;
	border-radius: 3px;
	box-shadow: 0px 2px 15px rgba(0,0,0,0.3);

    font-family: 'latoblack';
    font-weight: normal;
    font-size: 24px;

    line-height: 32px;
    letter-spacing: 2px;
    text-decoration: none;

    color: #ffffff;
	background-color: rgba(233,81,38,0.75);

	transition: all 0.5s;
}
.intro__btn-primary:hover{
	transform: scale(1.04);
	box-shadow: 0px 2px 15px rgba(0,0,0,0.7);
	background-color: rgba(233,81,38,1);
}
.intro__btn-spacer{
	display: block;
	width: 100%;
	height: 0px;
}
.intro__btn-secondary{
	display: inline-block;
	vertical-align: top;

	border: 0px none;
	margin: 0px 0px 0px 0px;
	padding: 10px 24px;
	border-radius: 3px;
	box-shadow: 0px 2px 15px rgba(0,0,0,0.3);

    font-family: 'latobold';
    font-weight: normal;
    font-size: 16px;

    line-height: 24px;
    letter-spacing: 1px;
    text-decoration: none;

    color: #ffffff;
	background-color: rgba(48,96,47,0.9);

	transition: all 0.5s;
}
.intro__btn-secondary:hover{
	transform: scale(1.04);
	box-shadow: 0px 2px 15px rgba(0,0,0,0.7);
	background-color: rgba(48,96,47,1);
}


/* Info */
.info{
	position: relative;
	z-index: 10;

	padding: 60px 0px 30px 0px;
	background-color: #30602f;
	border-bottom: solid 120px #000000;
}
.info:before{
    content: "";
    position: absolute;
    z-index: 10;
    left: 0px;
    top: 0px;

    display: block;
    width: 100%;
    height: 60px;

	background:  linear-gradient(
		to top,
	    hsla(0, 0%, 0%, 0) 0%,
	    hsla(0, 0%, 0%, 0.013) 8.1%,
	    hsla(0, 0%, 0%, 0.049) 15.5%,
	    hsla(0, 0%, 0%, 0.104) 22.5%,
	    hsla(0, 0%, 0%, 0.175) 29%,
	    hsla(0, 0%, 0%, 0.259) 35.3%,
	    hsla(0, 0%, 0%, 0.352) 41.2%,
	    hsla(0, 0%, 0%, 0.45) 47.1%,
	    hsla(0, 0%, 0%, 0.55) 52.9%,
	    hsla(0, 0%, 0%, 0.648) 58.8%,
	    hsla(0, 0%, 0%, 0.741) 64.7%,
	    hsla(0, 0%, 0%, 0.825) 71%,
	    hsla(0, 0%, 0%, 0.896) 77.5%,
	    hsla(0, 0%, 0%, 0.951) 84.5%,
	    hsla(0, 0%, 0%, 0.987) 91.9%,
	    hsl(0, 0%, 0%) 100%
	);
}
.info:after{
    content: "";
    position: absolute;
    z-index: 10;
    left: 0px;
    bottom: 0px;

    display: block;
    width: 100%;
    height: 60px;

	background:  linear-gradient(
		to bottom,
	    hsla(0, 0%, 0%, 0) 0%,
	    hsla(0, 0%, 0%, 0.013) 8.1%,
	    hsla(0, 0%, 0%, 0.049) 15.5%,
	    hsla(0, 0%, 0%, 0.104) 22.5%,
	    hsla(0, 0%, 0%, 0.175) 29%,
	    hsla(0, 0%, 0%, 0.259) 35.3%,
	    hsla(0, 0%, 0%, 0.352) 41.2%,
	    hsla(0, 0%, 0%, 0.45) 47.1%,
	    hsla(0, 0%, 0%, 0.55) 52.9%,
	    hsla(0, 0%, 0%, 0.648) 58.8%,
	    hsla(0, 0%, 0%, 0.741) 64.7%,
	    hsla(0, 0%, 0%, 0.825) 71%,
	    hsla(0, 0%, 0%, 0.896) 77.5%,
	    hsla(0, 0%, 0%, 0.951) 84.5%,
	    hsla(0, 0%, 0%, 0.987) 91.9%,
	    hsl(0, 0%, 0%) 100%
	);
}

.info__image-background{
    position: absolute;
    left: 0px;
    top: 0px;

	display: block;
    width: 100%;
    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(100%);
    opacity: 0.1;
}
.info__image-overlay{
	position: absolute;
	left: 0px;
	top: 0px;

	display: block;
	width: 100%;
	height: 100%;
}
.info .row{
	margin: 0px -50px;	
}
.info__col{
	padding: 0px 50px 0px 50px;
}
.info__block{
	margin: 0px 0px 40px 0px;
}
.info__block-title{
	
}
.info__block-title h3{
	margin: 0px 0px 8px 0px;
	padding: 0px;

    font-family: 'breeserif';
	font-weight: normal;
	font-size: 25px;
	line-height: 28px;
	letter-spacing: 0px;

	color: #ffffff;	
}
.info__block-text{
	
}
.info__block-text h4{
	margin: 0px 0px 8px 0px;
	padding: 0px;

    font-family: 'breeserif';
	font-weight: normal;
	font-size: 23px;
	line-height: 28px;
	letter-spacing: 0px;

	color: #ffffff;	
}
.info__block-text p{
	margin: 0px 0px 20px 0px;
}
.info__block-text p:last-child{
	margin: 0px;
}
.info__block-text table{
	margin: 0px 0px 20px 0px;
}
.info__block-text a{
	color: #ffffff;
	text-decoration: underline;
}
.info__block-text strong,
.info__block-text b{
	font-family: 'latoblack';
	font-weight: normal;
}
.info__block-text em{
	font-style: italic;
}
.info__block-text u{
	text-decoration: underline;
}
.info__block-text img{
	max-width: 100%;
	height: auto;
}
.info__block-form form{
	margin: 20px 0px 0px 0px;
}
.info__block-form p{
	margin: 0px;
	padding: 0px;
}
.info__block-form br{
	display: none;
}
.info__block-form span{
	display: block;
}
.info__block-form small{
	display: block;
}
.info__block-form .hidden-fields-container{
	display: none;
}
.info__block-form input[type="text"]{
	display: block;
	width: 100%;

	margin: 0px 0px 8px 0px;
	padding: 4px 16px;
	border: 0px none;
	border-radius: 3px;

	font-family: 'latoregular', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-smoothing: antialiased;
	
	line-height: 29px;
	letter-spacing: 0px;

	color: #000000;
	background-color: #ffffff;
}
.info__block-form input[type="text"]::-webkit-input-placeholder { color: #000000; }
.info__block-form input[type="text"]:-ms-input-placeholder { color: #000000; }
.info__block-form input[type="text"]::placeholder { color: #000000; }
.info__block-form input[type="text"].wpcf7-not-valid{
	border: 2px solid #ff8800;
}

.info__block-form input[type="email"]{
	display: block;
	width: 100%;

	margin: 0px 0px 8px 0px;
	padding: 4px 16px;
	border: 0px none;
	border-radius: 3px;

	font-family: 'latoregular', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-smoothing: antialiased;
	
	line-height: 28px;
	letter-spacing: 0px;

	color: #000000;
	background-color: #ffffff;
}
.info__block-form input[type="email"]::-webkit-input-placeholder { color: #000000; }
.info__block-form input[type="email"]:-ms-input-placeholder { color: #000000; }
.info__block-form input[type="email"]::placeholder { color: #000000; }
.info__block-form input[type="email"].wpcf7-not-valid{
	border: 2px solid #e95126;
}

.info__block-form input[type="checkbox"]{
	display: inline-block;
	vertical-align: baseline;

	margin: 0px 12px 8px 0px;
}
.info__block-form input[type="checkbox"] + span{
	display: inline-block;
	vertical-align: baseline;

	margin: 0px 12px 8px 0px;
	padding: 0px;
}
.info__block-form input[type="checkbox"] + span a{
	color: #ffffff;
	text-decoration: underline;
}

.info__block-form input[type="text"]::-webkit-input-placeholder { color: #000000; }
.info__block-form input[type="text"]:-ms-input-placeholder { color: #000000; }
.info__block-form input[type="text"]::placeholder { color: #000000; }
.info__block-form input[type="text"].wpcf7-not-valid{
	border: 2px solid #ff8800;
}

.info__block-form textarea{
	display: block;
	width: 100%;
	min-height: 104px;

	margin: 0px 0px 8px 0px;
	padding: 4px 16px;
	border: 0px none;
	border-radius: 3px;

	font-family: 'latoregular', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-smoothing: antialiased;
	
	line-height: 28px;
	letter-spacing: 0px;

	color: #000000;
	background-color: #ffffff;
}
.info__block-form textarea::-webkit-input-placeholder { color: #000000; }
.info__block-form textarea:-ms-input-placeholder { color: #000000; }
.info__block-form textarea::placeholder { color: #000000; }
.info__block-form textarea.wpcf7-not-valid{
	border: 2px solid #e95126;
}

.info__block-form .wpcf7-recaptcha.wpcf7-not-valid iframe{
	border: 2px solid #e95126;
}

.info__block-form input[type="submit"]{
    display: inline-block;
    vertical-align: top;

    border: 0px none;
    margin: 24px 0px 0px 0px;
    padding: 10px 28px 14px 28px;
    border-radius: 3px;
    box-shadow: 0px 2px 15px rgba(0,0,0,0.3);

    font-family: 'breeserif';
    font-weight: normal;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 1px;
    text-decoration: none;

    color: #ffffff;
	background-color: rgba(233,81,38,0.75);

    cursor: pointer;

    transition: all 0.5s;
}
.info__block-form input[type="submit"]:hover{
	transform: scale(1.04);
	box-shadow: 0px 2px 15px rgba(0,0,0,0.7);
	background-color: rgba(233,81,38,1);
}

.info__block-form .screen-reader-response{
	display: none;
}
.info__block-form .wpcf7-not-valid-tip{
	display: block;
	margin: 0px 0px 22px 0px;
	color: #e95126;
}
.info__block-form .wpcf7-response-output{
	display: block;
	margin: 22px 0px 0px 0px;
    font-family: 'latoblack';
	color: #e95126;	
}

/* Google Maps */
.googlemaps{
	position: relative;

	display: block;
	width: 100%;
	height: 280px;

    font-family: 'latoblack';
    font-weight: normal;
    font-size: 20px;
   	line-height: 280px;
	text-align: center;

	color: #000000;
}
.googlemaps__wrapper{
	position: absolute;
	left: 0px;
	top: 0px;

	display: block;
	width: 100%;
	height: 280px;
}

/* MD */
@media only screen and (max-width: 1280px) {


}

/* SM */
@media only screen and (max-width: 992px) {

}

/* XS */ 
@media only screen and (max-width: 767px) {
	
	.intro__height-small{
		padding: 96px 0px 48px 0px;
	}
	.intro__height-normal{
		padding: 96px 0px 48px 0px;
	}
	.intro__height-large{
		padding: 96px 0px 48px 0px;
	}
	.intro__btn{
		margin: 24px 0px 0px 0px;
	}
	.intro__btn-primary{
	    padding: 12px 24px;
	    font-size: 22px;
	    line-height: 28px;
	    letter-spacing: 2px;		
	}
	.intro__btn-secondary{
	    padding: 8px 24px;
	    font-size: 16px;
	    line-height: 24px;		
	}
	.intro .container{
		padding: 0px 3%;
	}
	.intro__tagline h1{
		font-size: 50px;
		line-height: 56px;
		letter-spacing: 4px;
	}

	.aboutus .container{
		padding: 0px 3%;		
	}

	.info .container{
		padding: 0px 3%;		
	}
	.info .row{
		margin: 0px;
	}
	.info__col{
		padding: 0px;
	}

}
