
/* 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: 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: 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: 9px 24px 11px 24px;
	border-radius: 3px;
	box-shadow: 0px 2px 15px rgba(0,0,0,0.3);

    font-family: 'breeserif';
    font-weight: normal;
    font-size: 18px;

    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);
}


/* Section */
.section{
	position: relative;
	z-index: 15;

	padding: 60px 0px 60px 0px;
	background-color: #30602f;
}
.section:before{
    content: "";
    position: absolute;
    z-index: 15;
    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%
	);
}
.section:after{
    content: "";
    position: absolute;
    z-index: 15;
    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%
	);
}

.section:nth-child(even){
	position: relative;
	z-index: 20;
	background-color: #000000;
}
.section__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;
}
.section__image-overlay{
	position: absolute;
	left: 0px;
	top: 0px;

	display: block;
	width: 100%;
	height: 100%;
}
.section .container{
	position: relative;
	max-width: 660px;
}
.section__title{
	text-align: left;
}
.section__title h2{
	margin: 0px 0px 18px 0px;
	padding: 0px;

    font-family: 'breeserif';
	font-weight: normal;
	font-size: 29px;
	line-height: 36px;
	letter-spacing: 1px;

	color: #ffffff;
}

.section__text{
	margin: 0px 0px 0px 0px;
}
.section__text p{
	margin: 0px 0px 20px 0px;
	padding: 0px;
	transition: all 0.5s;
}
.section__text.expand p{
	margin: 0px 0px 20px 0px;
	padding: 0px;
}
.section__text p:last-child{
	margin: 0px;
}
.section__text a{
	color: #ffffff;
	text-decoration: underline;
}
.section__text h4{
    margin: 0px;
    padding: 0px;
    font-family: 'breeserif';
    font-weight: normal;
    font-size: 25px;
    line-height: 29px;
    letter-spacing: 0px;
    color: #ffffff;
}
.section__text strong,
.section__text b{
	font-family: 'latoblack';
	font-weight: normal;
}
.section__text em{
	font-style: italic;
}
.section__text u{
	text-decoration: underline;
}
.section__text img{
	max-width: 100%;
	height: auto;
}
.section__text img.alignright{
	float: right;
	margin: 0px 0px 20px 20px;
}
.section__text img.alignleft{
	float: left;
	margin: 0px 20px 20px 0px;
}
.section__text img.aligncenter{
	display: block;
	margin: 0px auto 20px auto;
}
.section__text table{
	margin: 0px 0px 20px 0px;
	border: 1px solid;
}
.section__text td{
	border: 1px solid;
}
.section__text iframe{
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0px none;
}

.section__text .extended__text{
	max-height: 0px;
	overflow: hidden;

	margin: 0px;
	padding: 0px;

	transition: all 0.5s;
}
.section__text.expand .extended__text{
	max-height: 1000px;
}
.section__text .extended__btn{
	display: inline-block;
	margin: 8px 0px 0px 0px;
	padding: 0px;

    font-family: 'latoblack';
	font-weight: normal;

	cursor: pointer;
}

/* Testimonials */
.testimonials{
	position: relative;
	z-index: 5;
	padding: 60px 0px 60px 0px;
	background-color: #000000;
}
.testimonials: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%
	);
}
.testimonials: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%
	);
}
.testimonials__image-background{
    position: absolute;
    left: 0px;
    top: 0px;

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

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonials__image-overlay{
	position: absolute;
	left: 0px;
	top: 0px;

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

	background: rgba(0,0,0,0.5);
}
.testimonials .container{
	position: relative;
	max-width: 710px;
}
.testimonial{
	margin: 0px 0px 24px 0px;
	padding: 12px 24px;

	background-color: #30602f;
	font-style: italic;
}
.testimonial:last-child{
	margin: 0px 0px 60px 0px;
}
.testimonial__title{
	text-align: left;
}
.testimonial__title h5{
    margin: 0px;
    padding: 0px;
    font-family: 'breeserif';
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0px;
    color: #ffffff;
}

.testimonial__text{
	margin: 0px 0px 0px 0px;
}
.testimonial__text p{
	margin: 0px;
	padding: 0px;
	transition: all 0.5s;
}
.testimonial__text.expand p{
	margin: 0px 0px 20px 0px;
	padding: 0px;
}
.testimonial__text p:last-child{
	margin: 0px;
}
.testimonial__text a{
	color: #ffffff;
	text-decoration: underline;
}
.testimonial__text strong,
.testimonial__text b{
	font-family: 'latoblack';
	font-weight: normal;
}
.testimonial__text em{
	font-style: italic;
}
.testimonial__text u{
	text-decoration: underline;
}
.testimonial__text .extended__text{
	max-height: 0px;
	overflow: hidden;

	margin: 0px;
	padding: 0px;

	transition: all 0.5s;
}
.testimonial__text.expand .extended__text{
	max-height: 1000px;
}
.testimonial__text .extended__btn{
	display: inline-block;
	margin: 8px 0px 0px 0px;
	padding: 0px;

    font-family: 'latoblack';
	font-weight: normal;

	cursor: pointer;
}
.testimonial__btn{
	position: relative;
	text-align: center;
	margin: 0px 0px 0px 0px;
}
.testimonial__btn-primary{
	display: inline-block;
	vertical-align: top;

	border: 0px none;
	margin: 0px 0px 15px 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: 32px;
    letter-spacing: 2px;
    text-decoration: none;

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

	transition: all 0.5s;
}
.testimonial__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);
}
.testimonial__btn-spacer{
	display: block;
	width: 100%;
	height: 0px;
}
.testimonial__btn-secondary{
	display: inline-block;
	vertical-align: top;

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

    font-family: 'breeserif';
    font-weight: normal;
    font-size: 18px;

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

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

	transition: all 0.5s;
}
.testimonial__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);
}

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

}

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

	.post__item-image{
		margin: 0px 0px 40px 0px ;
		padding: 0px;
	}

}

/* 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: 32px;		
	}
	.intro__btn-secondary{
	    padding: 8px 24px;
	    font-size: 16px;
	    line-height: 24px;		
	}
	.intro .container{
		padding: 0px 3%;
	}
	.intro__tagline h1{
		word-break: break-all;
		font-size: 50px;
		line-height: 56px;
		letter-spacing: 4px;
	}

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

	.testimonials .container{
		padding: 0px 3%;
	}
	.testimonial {
	    margin: 0px 0px 24px 0px;
	    padding: 12px 3%;
	}


}
