@charset "UTF-8";
/* CSS Document */
/* text-transform - capitalize, full-width, inherit, lowercase, none, uppercase */
/* text-align - center, inherit, justify, left, right */
/* backgroud-size - auto, contain, cover */

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial, sans-serif;
}

header {
	padding: 32px;
}

img {
	width: 100%;
	max-width: 100%;
	height: 200px;
	vertical-align: middle;
}

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

body {
	margin-left: auto;
	margin-right: auto;
	background: #FFFFFF;
}

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

.style-nav ul {
	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/image1.jpg);
	background-size: cover;
	padding: 40px 20px 50px 20px;
	color: #FFFFFF;
	text-align: center;
}

.hero2 {
	background-image: url(images/image1.jpg);
	background-size: cover;
	padding: 20px 20px 50px 20px;
	color: #FFFFFF;
	text-align: center;
	height: 1100px;
}

h1 {
	font-size: 60x;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 40px;
}

h2 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 23px;
}

h3 {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 50px;
}

h4 {
	font-size: 28px;
	font-weight: 200;
	margin-bottom: 35px;
}

h5 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 23px;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 35px;
}

.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
}

.buttonb {
	border: 2px #000000 solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #000000;
	text-decoration: none;
}

.buttonc {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 10px;
}
/* background-color: #b9a88e; tan or 2D2D35 for Dark */

.info-box-tan {
	background-color: #FFDAB9;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
	height: 220px;
}

.info-box-tan2 {
	color: #000000;
	padding: 30px 20px 60px;
	text-align: center;
	height: 1100px;
}

.info-box-dark {
	background-color: #152837;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
	height: 220px;
}

.info-box-dark2 {
	background-color: #152837;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
	height: 350px;
}

.footer-text {
	font-size: 10px;
	margin-bottom: 5px;
}

.col {
	width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

.profile-img-container {
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	height: 23%; /* Ensure the image container takes up the full height of the column */
}
.profile-img {
	width: 150px; /* Adjust the size as needed */
}



/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 778px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	h1 {
		font-size: 40px;
		margin-bottom: 90px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	}
	
	.hero2 {
		height: 890px;
	}
	
	.info-box-tan2 {
		height: 1300px;
	}
	
	.profile-img-container {
	justify-content: center;
	align-items: center;
	height: 30%; /* Ensure the image container takes up the full height of the column */
	}
	
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.col-lg-one-fourth {
		width: 25%;
	}
	
	.hero2 {
		height: 750px;
	}
	
	.info-box-tan2 {
		height: 1000px;
	}
	
	.profile-img-container {
	justify-content: center;
	align-items: center;
	height: 35%; /* Ensure the image container takes up the full height of the column */
	}
	
}

