@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{
	margin: 0px;
	height: auto;
	background-color: rgba(108,7,107,.75);
	padding: 0px 15px 5px 25px;
	color: whitesmoke;
	align-content: left;
	bottom: 50px;
}

.box{
	margin: 0px;
	min-height: 60%;
	background-color: rgba(95,108,7,1.00);
	padding: 0px 15px 20px;
	color: whitesmoke;
	align-content: left;
	bottom: 50px;
}

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

/*Photos in row start*/
*{box-sizing: border-box;
}

.column {
	float: left;
	width: 33.33%;
	padding: 5px;
	font-size: 1.5em;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}
/*photos in row end*/

/*text above photos in row start*/
p a:link {
	color: rgba(95,108,7,1.00);
	text-decoration: none;
}

p a:hover {
	color: rgba(108,7,107,1.00);
}

/* Text above images Begins*/
.container {
	position: relative;
	text-align: center;
	color: white;
	font-size: 1em;
}

.top-left {
	position: absolute;
	top: 65%;
	left: 85px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: bold;
}

.centered {
	position:absolute;
	top: 70%;
	left: 47.4%;
	transform: translate(-40%,-51%);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: bold;
}

.bottom-right {
	position: absolute;
	bottom: 39px;
	right: 73px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: bold;
}
/*Text Above Images End*/

