html,
body {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	background: #1B1B1B url(images/overlay.png) repeat;
	font-family: 'Georgia', serif;
	font-size: 11pt;
	font-weight: 400;
	color: #000000;
}


h1,
h2,
h3,
h4 {
	margin: 0;
	padding: 0;
}

p,
ol,
ul {
	margin-top: 0;
}

ol,
ul {
	padding: 0;
	list-style: none;
}

p {
	line-height: 180%;
}

strong {}

a {
	color: #0000FF;
}

a:hover {
	/* text-decoration: none; */
}


.container {
	margin: 0px auto;
	width: 80%;
}


/*********************************************************************************/
/* Form Style                                                                    */
/*********************************************************************************/

form {}

form label {
	display: block;
	text-align: left;
	margin-bottom: 0.5em;
}

form .submit {
	margin-top: 2em;
	background: #67128F;
	border-radius: 8px;
	line-height: 1.5em;
	font-size: 1.3em;
}

form input.text,
form select,
form textarea {
	position: relative;
	-webkit-appearance: none;
	display: block;
	border: 0;
	background: #fff;
	background: rgba(255, 255, 255, 0.75);
	width: 100%;
	border-radius: 0.50em;
	margin: 1em 0em;
	padding: 1.50em 1em;
	box-shadow: inset 0 0.1em 0.1em 0 rgba(0, 0, 0, 0.05);
	border: solid 1px rgba(0, 0, 0, 0.15);
	-moz-transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	outline: none;
}

form input.text:hover,
form select:hover,
form textarea:hover {}

form input.text:focus,
form select:focus,
form textarea:focus {
	box-shadow: 0 0 2px 1px #E0E0E0;
	background: #fff;
}

form textarea {
	min-height: 12em;
}

form .formerize-placeholder {
	color: #555 !important;
}

form ::-webkit-input-placeholder {
	color: #555 !important;
}

form :-moz-placeholder {
	color: #555 !important;
}

form ::-moz-placeholder {
	color: #555 !important;
}

form :-ms-input-placeholder {
	color: #555 !important;
}

form ::-moz-focus-inner {
	border: 0;
}


/*********************************************************************************/
/* Image Style                                                                   */
/*********************************************************************************/

.image {
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, .1);
}

.image img {
	display: block;
	width: 100%;
}

.image-full {
	display: block;
	width: 100%;
	margin: 0 0 3em 0;
}

.image-left {
	float: left;
	margin: 0 2em 2em 0;
}

.image-centered {
	display: block;
	margin: 0 0 2em 0;
}

.image-centered img {
	margin: 0 auto;
	width: auto;
}

/*********************************************************************************/
/* List Styles                                                                   */
/*********************************************************************************/

ul.style1 {}


/*********************************************************************************/
/* Social Icon Styles                                                            */
/*********************************************************************************/

ul.contact {
	margin: 0;
	padding: 1em 0em 0em 0em;
	list-style: none;
}

ul.contact li {
	display: inline-block;
	padding: 0em 0.20em;
	font-size: 1.2em;
}

ul.contact li span {
	display: none;
	margin: 0;
	padding: 0;
}

ul.contact li a {
	color: black;
}

ul.contact li a:before {
	display: inline-block;
	width: 4em;
	height: 4em;
	line-height: 4em;
	background: #7A9E9F;
	border-radius: 3em;
	border: 0px solid black;
	text-align: center;
}

@media only screen and (max-width: 980px) {
	ul.contact li a:before {
		width: 2.5em;
		height: 2.5em;
		line-height: 2.5em;
		font-size: 2.5em;
		border-radius: 3em
	}

}

@media only screen and (max-width: 480px) {
	ul.contact li a:before {
		width: 2em;
		height: 2em;
		line-height: 2em;
		font-size: 2em;
		border-radius: 3em
	}
}

/*********************************************************************************/
/* Button Style                                                                  */
/*********************************************************************************/

.button {
	display: inline-block;
	margin-top: 2em;
	padding: 0.6em 1em;
	background: #AFEEEE;
	border-radius: 4px;
	line-height: 1.8em;
	text-decoration: none;
	font-weight: 400;
	font-size: 1.2em;
	border: 2px solid black;
	color: #000;
}

.button:before {
	display: inline-block;
	background: #8DCB89;
	margin-right: 1em;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	text-align: center;
	color: #272925;
}

.button-small {
	position: relative;

}

@media only screen and (max-width: 980px) {
	.button {
		font-size: 1.8em;
		border: 4px solid black
	}

}

@media only screen and (max-width: 480px) {
	.button {
		font-size: 1em;
		border: 4px solid black
	}

}

/*********************************************************************************/
/* Heading Titles                                                                */
/*********************************************************************************/

.title {
	margin-bottom: 0.5em;
}

.title h2 {
	font-size: 2.8em;
	color: #261300;
}

.title h4 {
	font-size: 2em;
	color: #261300;
}

.title .byline {
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1.1em;
	color: black;
}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#header-wrapper {
	overflow: hidden;
	padding: 0.5em 0.5em;
	
}

#header {
}

/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

#logo {
	padding: 2em 0em;
	text-align: center;
}

#logo h1 {
	font-size: 5em;
	font-family: "Georgia", serif;
	padding-bottom: 5px
}


#logo h1 a {
	color: #000;
}

#logo a {
	text-decoration: none;
}

#logo span {
	letter-spacing: 0.10em;
	text-transform: uppercase;
	font-size: 1.50em;
	color: #3C3C3C;
	padding-bottom: 2px
}

#logo span a {
	color: #3C3C3C;
}

#logo .icon {
	display: inline-block;
	margin-bottom: 2em;
	padding: 1em;
	background: #6C2A6A;
	border-radius: 50%;
	font-size: 1.6em;
	color: #FFF;
}

@media only screen and (max-width: 980px) {
	#logo h1 {
		font-size: 7em;
	}

	#logo span {
		font-size: 2em
	}

}

@media only screen and (max-width: 480px) {
	#logo h1 {
		font-size: 3em;
	}

	#logo span {
		font-size: 1em
	}


}

/*********************************************************************************/
/* Menu                                                                          */
/*********************************************************************************/

#menu {}

#menu ul {
	text-align: center;
	padding-top: 0.5em;
}

#menu li {
	display: inline-block;
}

#menu li a,
#menu li span {
	display: inline-block;
	margin-left: 1.0em;
	padding: 0.5em 1.5em;
	letter-spacing: 0.20em;
	text-decoration: none;
	font-size: 1.25em;
	font-weight: 600;
	text-transform: uppercase;

	color: #3C3C3C;
}

#menu li:hover a,
#menu li.active a,
#menu li.active span {}

#menu .current_page_item a {
	border: 1px solid #3C3C3C;
	border-radius: 4px;
}

@media only screen and (max-width: 980px) {

	#menu li a,
	#menu li span {
		font-size: 1.75em;
	}

}

@media only screen and (max-width: 480px) {

	#menu li a,
	#menu li span {
		font-size: 1em;
	}
}

/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

#banner {}

/*********************************************************************************/
/* Wrapper                                                                       */
/*********************************************************************************/

#wrapper1 {
	background: #f5f5dc;
	width: 100%;
	border-bottom: 1rem solid #d6c6a1;
	

}

#wrapper2 {
	background: #f5f5dc;
}

#wrapper3 {
	overflow: hidden;
	padding: 0em 0em 2em 0em;
	background: #f5f5dc;
}

#wrapper4 {
	overflow: hidden;
	padding: 8em 0em 4em 0em;
}
#wrapper5 {
	overflow: hidden;
	padding: 0em 0em 0em 0em;
	background:#7A9E9F;
	/*#e7af7a;*/
}

#wrapper6 {
	background: #7A9E9F;
}

/*********************************************************************************/
/* Welcome                                                                       */
/*********************************************************************************/




#welcome {
	overflow: hidden;
	width: 80%;
	padding: 1em;
	text-align: center;
	font-size: 1.5em;
	color: black;
}

#welcome-bottom {
	overflow: hidden;
	width: 80%;
	padding-top: -2em;
	padding-left:1em;
	padding-right:1em;
	padding-bottom: 1em;
	text-align: center;
	font-size: 1.5em;
	color: black;
}

#welcome .content {
	font-size: 1.5em;
	padding: 0em 8em;
}

#welcome .title h2 {
	color: black;

}

#welcome a,
#welcome strong {
	color: rgba(255, 255, 255, 0.6);
}

#welcome .avatar {
	border-radius: 0%;
	display: inline-block;
	margin: 1em 1em 0em 0;
	padding: 0.5em;
	border: solid 0.1em black;
	background-color: black;
	float: left;
}

#welcome .avatar img {
	border-radius: 0%;
	display: block;
	width: 20em;
}

@media only screen and (max-width: 1280px) {
	#welcome {
		font-size: 1.5em;
	}

}

@media only screen and (max-width: 980px) {
	#welcome {
		font-size: 2.75em;
		padding: 1em 1em 3em 1em;
		width: 90%
	}

	#welcome .avatar {
		float: none;
		margin: 3.5em 0em -1.25em 0;
	}

	#welcome .avatar img {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#welcome {
		font-size: 1.25em;
		padding: 1em 1em 3em 1em;
		width: 90%
	}

	#welcome .avatar {
		float: none;
		margin: 1em 0em -1.25em 0;
	}

	#welcome .avatar img {
		width: 100%;
	}

}


/*********************************************************************************/
/* Page                                                                          */
/*********************************************************************************/

#page {}

/*********************************************************************************/
/* Content                                                                       */
/*********************************************************************************/

#content {}

/*********************************************************************************/
/* Sidebar                                                                       */
/*********************************************************************************/

#sidebar {}

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

#footer {
	padding: 4em 0em 4em 0em;
	text-align: center;

}


#footer .title h2 {
	color: black;
}


#footer .title .byline {
	letter-spacing: normal;
	text-transform: capitalize;
	font-size: 1.6em;
	color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 480px) {

	#footer .title {
		font-size: 1em
	}
}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

#copyright {
	overflow: hidden;
	padding: 5em 0em;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#copyright p {
	text-align: center;
	color: rgba(255, 255, 255, 0.2);
}

#copyright a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.4);
}

/*********************************************************************************/
/* Newsletter                                                                    */
/*********************************************************************************/

#newsletter {
	overflow: hidden;
	padding: 8em 0em;
	background: #EDEDED;
	text-align: center;
}

#newsletter .title h2 {
	color: rgba(0, 0, 0, 0.8);
}

#newsletter .content {
	width: 600px;
	margin: 0px auto;
}

/*********************************************************************************/
/* Portfolio                                                                     */
/*********************************************************************************/

#portfolio {
	padding-top: 2em;
	padding-bottom: 1em;

}

#portfolio .box {
	text-align: center;
	color: rgba(0, 0, 0, 0.7);
	padding-top: 3em;

}

#portfolio h3 #storymap h3 {
	display: block;
	padding-bottom: 0.5em;
	text-transform: uppercase;
	font-size: 1.2vw;
	color: rgba(0, 0, 0, 0.9);
}

#portfolio .title, #storymap .title {
	margin-bottom: 0em;
	text-align: center;
}

#portfolio .title h2, #storymap .title h2 {
	color: rgba(0, 0, 0, 0.8);
}

#portfolio .title .byline, #storymap .title .byline {
	letter-spacing: normal;
	text-transform: capitalize;
	font-size: 1.6em;
	color: black;
}

#portfolio .icon, #storymap .icon {
	display: inline-block;
	margin-bottom: 15em;
	font-size: 16em;
	color: rgba(0, 0, 0, 0.8);
}

#portfolio .fas {
	font-size: 4em;
}

.column {
	width: 33.33%;
	float: left;
}

.column1,
.column2,
.column3 {
	float: left;
	margin-right: 24px;
}

.column4 {
	float: right;
}

@media only screen and (max-width: 980px) {
	#portfolio .column {
		float: none;
		width: auto;
		padding-bottom: 1.5em;
	}

	#portfolio h3 {
		font-size: 2.5em
	}

	#portfolio p {
		font-size: 2.5em
	}

	#portfolio .title {
		margin-bottom: 1em
	}

	#portfolio .title .byline {
		font-size: 3em
	}

	#portfolio .title h2 {
		font-size: 6em
	}

	#portfolio {
		width: 90%
	}

	#portfolio .fas {
		font-size: 8em
	}

}

@media only screen and (max-width: 480px) {
	#portfolio .column {
		float: none;
		width: auto;
		padding-bottom: 1em;
	}

	#portfolio h3 {
		font-size: 1.25em
	}

	#portfolio p {
		font-size: 1.25em
	}

	#portfolio .title {
		margin-bottom: -1.5em
	}

	#portfolio .title .byline {
		font-size: 1.5em
	}

	#portfolio .title h2 {
		font-size: 3em
	}

	#portfolio {
		width: 90%;
		padding-top: 2.5em
	}

	#portfolio .fas {
		font-size: 4em
	}

}

/*********************************************************************************/
/* Grid                                                                    */
/*********************************************************************************/

#grid {
	padding-top: 2em;
	padding-bottom: 2em;
}

#grid .scroll-wrapper {
  display: flex;
  align-items: center;
 
}

#grid .box {
	text-align: center;
	color: rgba(0, 0, 0, 0.7);
}

/*#grid h3
{
display: block;
padding-bottom: 0.5em;
font-size: 4vw;
font-weight: lighter;
color: rgba(0,0,0,0.9);
}*/


#grid .title h2 {
	color: rgba(0, 0, 0, 0.8);
}

#grid .title .byline {
	letter-spacing: normal;
	text-transform: capitalize;
	font-size: 1.6em;
	color: black;
}

#grid .icon {
	display: inline-block;
	margin-bottom: 15em;
	font-size: 16em;
	color: grey;
}

#grid .grid-container {
	text-align: center;
	display: flex;
	overflow-x:auto;
	gap: 1em;
	align-items: stretch;
	justify-content: space-evenly;
	padding-bottom: 1em;
  	scroll-behavior: smooth;
  	/* Hide scrollbar */
  	scrollbar-width: none; /* Firefox */

}

#grid .fas {
	color: cadetblue ;
}

#grid .grid-item {
	padding: 1.5em;
	border: 1px solid grey;
	background: #f5f5dc ;
	height: 13em;
	/* min-width: 33%; */
	/* width: 8em;    */
}

#grid .grid-item h3 {
	display: block;
	padding-bottom: 0.5em;
	font-size: 120%;
	font-weight: lighter;
	color: rgba(0, 0, 0, 0.9);
}

#grid .title {
	margin-bottom: 1em;
	text-align: center;
}


#grid .wrap {
	cursor: pointer;
	max-width: 26%;
	flex: 0 0 26%;

}
#grid .scroll-row::-webkit-scrollbar { display: none; } 

#grid .scroll-arrow {
  background: #7A9E9F;
  color: #f5f5dc;
  border: 1px solid black;
  font-size: 2em;
  padding: 0.2em 0.5em;
  cursor: pointer;
  border-radius: 0.3em;
  margin: 0 0.5em;
}


@media only screen and (max-width: 980px) {
	#grid .grid-container {
		grid-template-columns: 100%;
		grid-template-rows: auto;
	}

	#grid .grid-item h3 {
		font-size: 250%
	}

	#grid p {
		font-size: 2.5em
	}

	#grid .title h2 {
		font-size: 6em
	}

	#grid .title .byline {
		font-size: 3em
	}

	#grid .grid-item {
		height: 16em
	}

	#grid {
		width: 90%
	}

}

@media only screen and (max-width: 480px) {
	#grid .grid-container {
		grid-template-columns: 100%;
		grid-template-rows: auto;
	}

	#grid .grid-item h3 {
		font-size: 100%
	}

	#grid p {
		font-size: 1.5em
	}

	#grid .title h2 {
		font-size: 3em
	}

	#grid .title .byline {
		font-size: 2em
	}

	#grid .grid-item {
		height: 12em
	}

	#grid {
		width: 90%
	}

}

/*********************************************************************************/
/* Three Columns                                                                 */
/*********************************************************************************/

#three-column {
	overflow: hidden;
	padding-bottom: 4em;
	text-align: center;
}

#three-column h2 {
	margin: 1em 0em;

	font-size: 1.5em;
	font-weight: 700;
}

#three-column .icon {
	position: relative;
	display: block;
	margin: 0px auto 0.80em auto;
	line-height: 150px;
	font-size: 4em;
	width: 150px;
	height: 150px;
	border-radius: 100px;
	text-align: center;
	color: #632F00;

}

#three-column #tbox1,
#three-column #tbox2,
#three-column #tbox3 {
	float: left;
	width: 320px;
	padding: 80px 40px 80px 40px;
}

#three-column .title {
	letter-spacing: 0.10em;
	text-align: center;
	text-transform: uppercase;
}

#three-column .title h2 {
	font-size: 1.60em;
	font-weight: 900;
	font-family: 'Open Sans', sans-serif;
	color: #261300;
}

#three-column .title .byline {
	padding-top: 0.50em;
	font-size: 0.90em;
	color: #858585;
}

#three-column .arrow-down {
	border-top-color: #292929;
}


/*********************************************************************************/
/* Video Contrainer                                                                */
/*********************************************************************************/
.video-container {
	display: flex;
	padding: 0em 0em;
	text-align: center;
	flex:1 0 50%
}

/*********************************************************************************/
/* StoryMap                                                                */
/*********************************************************************************/

#storymap {
	display: flex;
	padding:1em;
	align-items: stretch;
	gap: 1em;
}

#storymap h3{
	font-size: 1em;
	color:black

}

#storymap p{
	color:black
}

#storymap .fas {
	font-size: 3em;
	color: black;
}

#storymap .fas_proj {
	font-size: 3em;
	color: brown;
}


#storymap .body{
		margin: 0px;
	padding: 0px;
	background: #1B1B1B url(images/overlay.png) repeat;
	font-family: 'Georgia', serif;
	font-size: 11pt;
	font-weight: 400;
	color: #f5f5dc;
}

#storymap .button{
	display: inline-block;
	margin-top: 0em;
	padding: 0.6em 1em;
	background: pink;
	border-radius: 4px;
	line-height: 1.8em;
	text-decoration: none;
	font-weight: 400;
	font-size: 1em;
	border: 0px solid white;
	color: black;
	/* width: 30%; */

}

#storymap .proj_button{
	display: flex;
	margin-top: 0em;
	padding: 0.6em 1em;
	background: #7A9E9F;
	border-radius: 4px;
	line-height: 1.8em;
	text-decoration: none;
	font-weight: 400;
	font-size: 1em;
	border: 0px solid white;
	color: black;
	/* width: 30%; */

}

#storymap .grid-item {
	padding: 0;
	border: 0px solid grey;
	background-color: #7A9E9F/*#f5f5dc*/;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#storymap .grid-item2 {
	padding: 0;
	border: 2px solid grey;
	background-color: #d6c6a1/*#f5f5dc*/;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

 #storymap .box{
	text-align: center;
	color: rgba(0, 0, 0, 0.7);
	
 }

 

/*********************************************************************************/
/* Projects                                                               */
/*********************************************************************************/

#project {
	display: flex;
	flex-wrap: wrap;
	padding:0em;
	padding-top: 2em;
	padding-bottom: 2em;
	gap:0.5em;
	align-items: stretch;
	justify-content: space-evenly;
	
}


#project h3{
	font-size: 1em;
	color:black;
	padding-top: 1.5em

}

#project .fas {
	font-size: 3em;
	color: beige;
}



#project .body{
		margin: 0px;
	padding: 0px;
	background: #1B1B1B url(images/overlay.png) repeat;
	font-family: 'Georgia', serif;
	font-size: 11pt;
	font-weight: 400;
	color: black;
}

#project .button{
	display: inline-block;
	margin-top: 0em;
	padding: 0.6em 1em;
	background: #f5f5dc;
	border-radius: 4px;
	line-height: 1.8em;
	text-decoration: none;
	font-weight: 400;
	font-size: 1em;
	border: 0px solid white;
	color: black;
	/* width: 30%; */

}

#project .proj_button{
	display: inline-block;
	margin-top: 0em;
	padding: 0.6em 1em;
	background: #f5f5dc;
	border-radius: 4px;
	line-height: 1.8em;
	text-decoration: none;
	font-weight: 400;
	font-size: 1em;
	border: 0px solid white;
	color: black;
	/* width: 30%; */

}

#project .grid-item {
	padding: 0;
	border: 0px solid grey;
	background-color: #7A9E9F/*#f5f5dc*/;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#project .grid-item2 {
	padding: 0;
	border: 0px solid grey;
	background-color: #7A9E9F/*#C7B0B0 /*#d6c6a1/*#f5f5dc*/;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	flex-basis: 30%;
	
}

 #project .box{
	text-align: center;
	color: rgba(0, 0, 0, 0.7);
	padding: 1em;

 }