@charset "UTF-8";

@font-face {
    font-family: 'AG Bold';
    src: url('.../images/akzidgrostdbol-webfont.woff2') format('woff2'),
         url('.../images/akzidgrostdbol-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AG Medium';
    src: url('.../images/akzidgrostdmed-webfont.woff2') format('woff2'),
         url('.../images/akzidgrostdmed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AG Regular';
    src: url('.../images/akzidgrostdreg-webfont.woff2') format('woff2'),
         url('.../images/akzidgrostdreg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
	padding: 0px;
	margin: 0px;
}

body {
	background-color: rgba(232,234,218,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

/*Navigation/Top Bar Start*/
header {
	min-height: 0px;
	background-color: black;
}

.ag-bold{
	font-family: 'AG Bold', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.ag-medium {
	font-family: 'AG Medium', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.ag-regular{
	font-family: 'AG Regular', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.logo {
	width: 100px;
	position: relative;
}

nav {
	background-color: black;
	position: relative;
	z-index: 100000;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0px 0px;
	display: flex; /* turn column to line */
	justify-content: center;
} /* use to modify specifically to our bullets in our nav tag. more than one nav with bullets use class style */

nav ul li a {
	background-color: black;
	display: block;
	padding: 20px 50px 20px 50px;
	color: white;
	font-size: 1.25em;
	text-decoration: none;
} /* looking for anchor tags within list items, ulisted items, within nagivations */

nav ul li a:hover {
	background-color: white;
	color: rgba(95,108,7,1.00);
}

nav ul li ul {
	display: none;
	position: absolute; /*prevent button from stretching */
}

nav ul li:hover ul {
	display: block;
}

nav ul li ul li:first-child {
	border-left: none;
}

nav ul li ul li:last-child {
	border-right: none;
	border-bottom: 1px solid white;
}

.box2{
	height: 30%;
	background-color: rgba(95,108,7,1.00);
	padding: 0px 15px 20px 30px;
	color: whitesmoke;
	align-content: left;
}

/*Photos in row start*/
img{
	width: 100%;
	margin-bottom: 10px;
}

.box{
	width: 30%;
	float: left;
	margin: 0px 20px 0px 27px;
	background-color: rgba(108,7,107,.75);
	padding: 0px;
	border-radius: 8px;
	box-shadow: 0 5px 5px rgba(0,0,0,0.15);
}

.box p1{
	margin-bottom: 10px;
	color: rgba(108,108,7,1.00);
	position: absolute;
	top: 100%;
	left: 95px;
	font-size: 2em;
	font-weight: bold;
}

.box p2{
	margin-bottom: 10px;
	color: rgba(95,108,7,1.00);
	position: absolute;
	top: 100%;
	right: 600px ;
	font-size: 2em;	
	font-weight: bold;
}

.box p3{
	margin-bottom: 10px;
	color: rgba(95,108,7,1.00);
	position: absolute;
	top: 100%;
	right: 90px;
	font-size: 2em;
	font-weight: bold;
}

.box p{
	font-size: 20px;
	line-height: 25px;
	overflow: hidden;
	color: whitesmoke;
	padding: 0px 15px;
	margin-top: 0px;
}

/*Text Above Images End*/
