﻿@import url('layout.css');
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	
	background: linear-gradient(90deg, #E7E2DE, #CEC3BF, #B5A79C, #9F897A); /* Body page Color */
	/* Trail 1: background: linear-gradient(90deg, #F8F0DB, #F3E2B7, #EBD192, #E6C36F); */
	/* Trail 2: background: linear-gradient(90deg, #E7E2DE, #CEC3BF, #B5A79C, #9F897A); */
	/* Trail 3: background: linear-gradient(90deg, white, #ECE001, orange, #BE1E2D); */
	/* Trail 4: background: linear-gradient(90deg, white, #ECE001, orange, #BE1E2D); */



}

h3{padding: 7px 4px 1px 4px; border-bottom: 2px solid #9b0303;  margin: 30px 0px 20px 0px;  font-size: 140%;;}

#container {
	width: 100%;
	
}
#masthead {
	text-align: center;
	width: 100%;
	border-right: 1px solid #a9a9a9;
	border-left: 1px solid #a9a9a9;
	
	/* background: linear-gradient(270deg, #636c73, #b2b3b3, #b18a59); Header Color */

}
#navigation {
 
	/* background: linear-gradient(270deg, #636c73, #b2b3b3, #b18a59); Navigation box Color */

}
#content {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 5%;
	margin-right: 5%;
	padding: 10px;
	
	/* background: linear-gradient(270deg, #636c73, #b2b3b3, #b18a59); Main contents Color */

}
#footer {
	text-align: center;
	clear: both;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	border-right: 1px solid #a9a9a9;
	border-left: 1px solid #a9a9a9;
	
	/* background: linear-gradient(270deg, #636c73, #b2b3b3, #b18a59); Main contents Color */
}
/* Masthead Styles */
#masthead h1 {
	color: black;
}
#masthead h3 {
	color: black;
}



/* Content Styles - #5f8ea9; */
#content h1,h2,h3,h4,h5,h6 {
	color: black;
}
#content img {
	padding: 5px;
	border: 1px solid #808080;
}
/* Footer Styles */
#footer p {
	color: #808080;
	margin-top: 5px;
}
a {
	text-decoration: underline;
	color: #784937;
}

/* #footer a {
	color: #784937;
	text-decoration: underline;
}
#footer a:hover {
	color: #BB8034;
	text-decoration: none;
} */

a:hover {
	color: #BB8034;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}
/* Contact page related settings */
.contact-container{
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}
.contact-left{
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
}
.contact-left-title h2{
	font-weight: 600;
	color: black ;
	font-size: 40px;
	margin-bottom: 5px;
}
.contact-left-title hr{
	border: none;
	width: 100%;
	height: 5px;
	background-color: black ;
	border-radius: 10px;
	margin-bottom: 20px;
}
.contact-inputs{
	width: 80%;
	height: 30px;
	border: thick black solid ;
	outline: black ;
	padding-left:25px;
	font-weight: 500;
	color: gray;
	border-radius: 50px;	
}
.contact-left textarea{
	height: 100px;
	padding-top: 15px;
	border-radius: 20px;
}
.contact-inputs:focus{
	border: 2px solid orange;
}
.contact-inputs:: placeholder{
	color:gray
}
.contact-left button{
	display: flex;
	align-items: center;
	padding: 15px 30px;
	font-size: 16px;
	color: Black;
	gap: 10px;
	border: none;
	border-radius: 50px;
	background: linear-gradient(270deg, #BB8034, #9F8A7B);
	cursor: pointer;
}
.contact-right img{
	width: 500px;
	border-style: none;
	border: 0;
	
}

@media (max-width:800px){
	.contact-inputs{
		width:80vw;
	}
	.contact-right{
		display:none;
	}
	.sometimes-hidden-img {
    display: none;
    }
  }

}