@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: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", 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;
}

.box{
	position: fixed;
    display: inline-block; /* Make the width of box same as image */
	width: 50px;
    }

.box .text{
	position: absolute;
    z-index: 999;
    margin: 0 auto;    
    text-align: center;
    top: 250px;
	left: 250px;/* Adjust this value to move the positioned div up and down */
	background: rgba(95,108,7, .85);
    font-family: Arial,sans-serif;
    color: white;
    width: 1000px; /* Set the width of the positioned div */
    }
