@charset "UTF-8";

html {
	padding: inherit;
	margin: 0;
	font-family: 'Helvetica', sans-serif;
	font-size: inherit;
	position: relative;
	width: auto;
	height: auto;
}

body {}
header{
	background-image: url('../../assets/images/background/variation_bg_color_purple.svg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	min-height: 300px;
}

/* Font Sizes */
h1{
	font-size: 4.06em !important;
	font-weight: 200 !important;
	color: white !important;
	text-transform: uppercase;
	text-align: center;
	padding: 20px 0;
	margin: 0 auto;
}

h4{
	font-size: 36px;
	font-style: italic;
	text-align: center;
	padding-bottom: 10px;
	margin: 0 auto;
}

.lead{
	color: #0b1f40;
	text-align: center;
	margin-bottom: 40px;
}

small{
	font-weight: 200 !important;
}

/* Backgrounds */
.bg_purple{ background-color: #4f2d64; }
.bg_blue{ background-color: #173059; }
.bg_gray{ 
	background-image: url('../../assets/images/background/texture_bg.png');
	background-repeat: repeat;
	background-color: #f4f4f4;
}

.hero{}
.logo{
	padding: 60px 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.logo img{
	display: inline-block;
	width: 450px;
	height: 100%;
}

/* General Styling */
.block_content{
	position: relative;
	display: block;
}

.chevron{
	width: 100%;
	height: 20px;
	background: #4f2d64;
	position: relative;
}

.chevron::before{
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	width: 50%;
	height: 100%;
	background: #4f2d64;
	-webkit-transform: skew(0deg, -1.5deg);
	-moz-transform: skew(0deg, -1.5deg);
	-ms-transform: skew(0deg, -1.5deg);
	-o-transform: skew(0deg, -1.5deg);
	transform: skew(0deg, -1.5deg);
}

.chevron::after{
	content: "";
	position: absolute;
	top: -10px;
	right: 0;
	width: 50%;
	height: 100%;
	background: #4f2d64;
	-webkit-transform: skew(0deg, 1.5deg);
	-moz-transform: skew(0deg, 1.5deg);
	-ms-transform: skew(0deg, 1.5deg);
	-o-transform: skew(0deg, 1.5deg);
	transform: skew(0deg, 1.5deg);
}

.header_bg{
	background-color: #0b1f40;
	position: relative;
	z-index: 1;
}

.header_bg::before{
	content: "";
	position: absolute;
	left: 0;
	top: -25px;
	width: 100%;
	height: 150%;
	background: #0B1f40;
	-webkit-transform: skewY(1.5deg);
	-moz-transform: skewY(1.5deg);
	-ms-transform: skewY(1.5deg);
	-o-transform: skewY(1.5deg);
	transform: skewY(1.5deg);
	-webkit-backface-visibility: hidden;
	z-index: -2;
}

.header_bg::after{
	content: "";
	position: absolute;
	left: 0;
	top: -25px;
	width: 100%;
	height: 150%;
	background: #173059;
	-webkit-transform: skewY(-1.5deg);
	-moz-transform: skewY(-1.5deg);
	-ms-transform: skewY(-1.5deg);
	-o-transform: skewY(-1.5deg);
	transform: skewY(-1.5deg);
	-webkit-backface-visibility: hidden;
	z-index: -1;
}

.header_bg h1{
	color: #fff;
	font-weight: 200;
	letter-spacing: 2px;
	padding-top: .4em;
}

.header_bg h1 small{
	font-size: 30%;
	font-weight: 100;
	text-transform: capitalize;
}

.section{
	margin: 0 auto;
	padding: 100px 0;
	display: block;
	position: relative;
	z-index: 99;
}

.section h1{
	margin-bottom: 20px;
}

.section h4{
	color: #0b1f40;
}

.description{
	color: white;
	padding: 0 0 40px 0;
}


.main-image{
	text-align: center;
	width: 100%;
	position: relative;
	z-index: 2;
}

.main-image img{
	display: inline;
	box-shadow: 0px 1px 1px 0 #606060;
	-moz-box-shadow: 0px 1px 1px 0 #606060;
	-webkit-box-shadow: 0px 1px 1px 0 #606060;
	-ms-box-shadow: 0px 1px 1px 0 #606060;
}


/* buttons */
.btn{
	padding: 0.575rem 4rem !important;
	text-transform: uppercase;
	border-radius: 0 !important;
}

.btn-primary{
	color: white;
	background: #142e54 !important;
	border: none !important;
	transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-webkit-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
}

.btn-primary:hover{
	background: #051835 !important;
}

.contact_info{
	padding: 10px 0;
	margin: 20px 0;
	color: white;
	font-size: 22px;
	display: block;
	position: relative;
	border-top: 2px solid white;
	border-bottom: 2px solid white;
	opacity: 1;
	vertical-align: middle;
}

.contact_info:hover{
	color: white;
	opacity: .75;
}

/* ================= not using atm

.contact_info{
	color: white;
	width: 60px;
	height: 60px;
	display: block;
	position: relative;
	bottom: 25px;
	left: -10px;
	border-radius: 50%;
	background-color: #142e54;
	box-shadow: 0 1px 1px 1px #1f1e1e;
	-moz-box-shadow: 0px 1px 1px 1px #1f1e1e;
	-webkit-box-shadow: 0px 1px 1px 1px #1f1e1e;
	-ms-box-shadow: 0px 1px 1px 1px #1f1e1e;
	
	transition: all 120ms ease;
	-webkit-transition: all 120ms ease;
}

.contact_info:hover{
	background-color: white;
}

.contact_info span{
	top: 20px;
	left: 20px;
	font-size: 140%;
}

==================== */

ul.cta_button{
	padding: 0;
	margin: 0;
}

ul.cta_button li{
	display: inline-block;
	list-style: none;
	padding: 0 40px 0 0;
	margin: 20px 0 0;
	text-transform: uppercase;
	position: relative;
}

ul.cta_button li a{
	color: white;
	text-decoration: none;
	padding: 0;
	margin: 0;
	display: block;
}

ul.cta_button li a:hover{
	color: #dedede;
}

.vertical_line{
	border-left: 4px solid #fff;
	width: 0 ;
	height: 100px;
	margin: 0 auto;
	padding: 0;
}


/*
.overlay{
	position: relative;
}

.overlay:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
*/

/* Individual Sauters Section */
.definition{
	color: white;
	padding-top: 80px;
}

.definition h2{
	font-weight: 800;
	text-align: center;
}

.innovation{}
.awesome-sauters{}
.awesome-sauters .arrow{
	padding: 20px 0;
	text-align: center;
	position: relative;
	display: block;
}

.envano{
	display: block;
	background-color: #502d64;
	position: relative;
}

.envano::after{
	content: "";
	background-image: url('../../assets/images/background/envano_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.sauter-development{
	display: block;
	background-color: rgba(55, 100, 45, 1);
	position: relative;
}

.sauter-development::after{
	content: "";
	background-image: url('../../assets/images/background/sauter_development_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: .25;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.david-sauter{
	display: block;
	background-color: rgba(50,50,50, 1);
	position: relative;
}

.david-sauter h1{
	text-align: left !important;
}

.david-sauter::after{
	content: "";
	background-image: url('../../assets/images/background/david_sauter_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.alexis-sauter{
	display: block;
	background-color: rgba(50,50,50, 1);
	position: relative;
}

.alexis-sauter h1{
	text-align: left !important;
}

.alexis-sauter::after{
	content: "";
	background-image: url('../../assets/images/background/alexis_sauter_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.sauter-pianos{
	display: block;
	background-color: rgba(50, 50, 50, 1);
	position: relative;
}

.sauter-pianos::after{
	content: "";
	background-image: url('../../assets/images/background/sauter_pianos_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.sauter-controls{
	display: block;
	background-color: rgba(55, 129, 166, 1);
	position: relative;
}

.sauter-controls::after{
	content: "";
	background-image: url('../../assets/images/background/sauter_controls_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.morsels-of-kindness{
	display: block;
	background-color: rgba(209, 169, 106, 1);
	position: relative;
}

.morsels-of-kindness::after{
	content: "";
	background-image: url('../../assets/images/background/morsels_of_kindness_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.sauter-stetten{
	display: block;
	background-color: rgba(55, 129, 166, 1);
	position: relative;
}

.sauter-stetten::after{
	content: "";
	background-image: url('../../assets/images/background/sauter_stetten_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.scod{
	display: block;
	background-color: rgba(35, 133, 135, 1);
	position: relative;
}

.scod::after{
	content: "";
	background-image: url('../../assets/images/background/scod_bg_img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.sauter-electromenager{
	display: block;
	background-color: rgba(35, 133, 135, 1);
	position: relative;
}

.sauter-electromenager::after{
	content: "";
	background-image: url('../../assets/images/background/sauter_electromenager_bg_img.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

ul.other-sauters-lists{
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	text-align: center;
}

ul.other-sauters-lists li{
	width: 32%;
	padding-bottom: 40px;
	display: inline-block;
	font-weight: bold;
	font-size: 18px;
	color: #0b1f40;
}

ul.other-sauters-lists li a{
	font-size: 0.7em;
	font-weight: 200;
}

.sauter-name{
	display: block;
	background-color: #f3f1e8;
	position: relative;
}


/* media styles */
.media-object{
	width: 50px;
	height: 50px;
}


/* Forms */
.contact_form{}
.form-group{}
label{
	visibility: hidden;
}

.form-control{
	padding: 0.875rem .95rem !important;
	border: .0625rem solid #efefef !important;
	border-radius: 0 !important;
}

.hide{
	display: none;
}



/* Footer */
footer{
	padding: 0;
	margin: 0 auto;
	height: 80px;
	width: 100%;
	display: block;
	background-color: black;
}


/* Mobile Styling */
@media (max-width: 720px){
	h1{
		font-size: 2.7em !important;
	}
	
	.vertical_line{
		display: none;
	}
	
	.section.definition p{
		text-align: center;
	}
	
	ul.other-sauters-lists li{
		width: 49%;
	}
}

@media (max-width: 480px){
	.header_bg::before{
		height: 150%;
	}
	
	.header_bg h1{
		padding: 20px 0;
	}
	
	.header_bg::after{
		height: 150%;
	}
	
	ul.other-sauters-lists li{
		width: 100%;
	}
}



