@charset "utf-8";
/* CSS Document */


/* html applies globally */
html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
/*	background-color: #21A7AA;*/
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


header {
	padding: 32px;
}

body{
	margin-left: auto;
	margin-right: auto;
}

footer{
	padding: 20px 30px;
	background-color: #f7b954;
}

.style-logo{
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 160px;
}

.style-nav ul {
	/*remove bullets*/
	list-style-type: none;
	
}
.style-nav ul li a {
	text-decoration: none;
	color: #2F322A;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;	
}

.hero {
	background-image: url(images/hero.webp);
	background-size: cover;
	padding: 20px 20px 50px 20px;
	color: #FFFFFF;
	text-align: center;
}
.hero2 {
	background-image: url(images/hero2.webp);
	background-size: cover;
	padding: 20px 20px 50px 20px;
	color: #FFFFFF;
	text-align: center;
}
.hero3 {
	background-image: url(images/hero3.webp);
	background-size: cover;
	padding: 20px 20px 50px 20px;
	color: #FFFFFF;
	text-align: center;
}

h1{
	font-size: 88px;
	text-transform: uppercase;
	letter-spacing: 10px;
	font-weight: 600;
	margin-bottom: 60px;
/*
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-fill-color: white;
  	-webkit-text-stroke: .5px black;
	stroke-linejoin: round;
	text-rendering: optimizeLegibility;
*/
}
h2{
	font-size: 40px;
	text-transform: uppercase;
	letter-spacing: 10px;
	font-weight: 600;
	margin-bottom: 23px;
/*
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-fill-color: white;
  	-webkit-text-stroke: .5px black;
	stroke-linejoin: round;
	text-rendering: optimizeLegibility;
*/
}
h3{
	font-size: 40px;
	text-transform: uppercase;
	letter-spacing: 10px;
	font-weight: 500;
	margin-bottom: 120px;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
h4{
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 35px;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
p{
	font-size: 20px;
	font-weight: 450;
	margin-bottom: 35px;
/*	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
}
.button{
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
	
}
.info-box-orange{
	background-color: #493239 ;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
	
}
.info-box-dark{
	background-color: #373249 ;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
	
}


.row:before, .row:after {
	content: "";
	display: table;
}
.row:after {
	clear: both;
}
.footer-text{
	font-size: 14px;
	margin-bottom: 20px;
	
}

.col{
	width: 100%;
	
}

/* Tablet View */
@media (min-width: 868px){
	body{
		max-width: 878px;
	}
	.style-nav ul li {
		display: inline-block;
	}
	.style-nav ul {
		text-align: center;
	}
	h1 {
		font-size: 50px;
		margin-bottom: 90px;
	}
	.col-md-one-half{
		width: 50%;
	}
	.col{
		float: left;
		padding: 0px 7px 14px;
	}
}

/* Desktop View */
@media (min-width: 1124px){
	body{
		max-width: 1300px;
	}
	.style-logo {
		float: left;
	}
	.style-nav {
		float: right;
	}
	.col-lg-one-fourth{
		width: 25%;
	}
}