@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
	font-weight: 100;
  margin: auto;
  background: #ffffff;
}

h2 {
	
	color: #927e61;
	text-transform: uppercase;
	text-align: center;
}

.title {
	
	color: #871e22;
	font-weight: bold;
	
}

h4, h3 {
	
	color: #871e22;
	
}

a {
	
	text-decoration:  none;
	color: #871e22;
	font-weight: bold;
}

a:hover {
	
	text-decoration:  none;
	color: #000000;
	font-weight: bold;
}

.quote {
	
	text-align: center;
	font-style: italic;
	color: #871e22;
	text-shadow: 1px 1px #927e61;
}

.button {
  background-color: #ee5051; 
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
	border-radius: 12px;
	box-shadow: 2px 2px 8px 1px #000000;
	transition-duration: 0.4s;
}

.button:hover {
	
	background-color: #ffffff;
	color: #000000;
	border: 1px solid #ee5051;
}


/* Header/Blog Title */

	* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}
	
	.search {
	float: right;
  
}

.column input[type=text] {
  padding: 6px;
  margin-top: 15px;
  font-size: 17px;
  border: none;
}

.search button {
  float: right;
  padding: 6px;
  margin-top: 15px;
  margin-right: 16px;
  background: #A06B00;
	border-radius: 10px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
	color: #ffffff;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.search button:hover {
  background: #f7e0b3;
	color: #000000;
}

.search img {
	
	width: 25px;
}

.search img:hover {
	
	opacity: 0.7;
}

#searchbtn {
	background: #A06B00;
	border-radius: 10px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
	color: #ffffff;
  font-size: 17px;
  border: none;
  cursor: pointer;
	
}

#searchbtn:hover {
background: #f7e0b3;
	color: #000000;
}

.social {
	
	margin: 15px 0px 0px 175px;
}

.social a {
	
	text-decoration:  none;
	color: #871e22;
	font-size: 14px;
}

.social a:hover {
	
	text-decoration:  none;
	color: #000000;
}
/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #871e22;
	 background-image: linear-gradient(to right, #871e22, #927e61, #efa717);
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  color: #000000;
}

.dropdown-content a:hover {
  background-color: #927e61;
  color: #ffffff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 800px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 25%;
}

.leftmenu .sub {
	
	margin-left: 20px;
}

.leftmenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #f1f1f1;
}

.leftmenu li {
	list-style-type: none;
}

.leftmenu li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}

.leftmenu li a.active {
  background-color: #871e22;
  color: white;
}

.leftmenu li a:hover:not(.active) {
  background-color: #871e22;
  color: white;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 75%;
  background-color: #f1f1f1;
  padding-left: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
	
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ffffff;
  margin-top: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.footer table {
	
	margin: auto;
	width: 100%;
	text-align: center;
}

.container {
  position: relative;
}

.image {
  display: block;
  width: 100%;
}

.overlay1 {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #871e22;
	opacity: 0.85;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
	 border-radius: 10px;
}

.overlay2 {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #927e61;
	opacity: 0.85;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
	 border-radius: 10px;
}

.overlay3 {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #efa717;
	opacity: 0.85;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
	 border-radius: 10px;
}

.container:hover .overlay1 {
  bottom: 0;
  height: 100%;
}

.container:hover .overlay2 {
  bottom: 0;
  height: 100%;
}

.container:hover .overlay3 {
  bottom: 0;
  height: 100%;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.footer a {
	
	color: #871e22;
	text-decoration: none;
}

.footer a:hover {
	
	color: #000000;
	text-decoration: none;
}

.responsive {
  width: 100%;
  height: auto;
}

.contact {
	
	margin: auto;
	margin-top: 15px;
	margin-bottom: 20px;
	padding: 10px;
	width: 90%;
	align-content: center;
}

.contact table {
	
	margin: auto;
	width: 100%;
	text-align: left;
}

.contact h4 {
	text-transform: uppercase;
}

.contact a {
	
	color: #871e22;
	text-decoration: none;
}

.contact a:hover {
	
	color: #000000;
	text-decoration: none;
}

.footercolumn {
  float: left;
  width: 33.33%;
  padding: 15px;
}

.footerrow::after {
  content: "";
  display: table;
  clear: both;
}


.contactcolumn {
  float: left;
  width: 50%;
  padding: 15px;
}

.contactrow::after {
  content: "";
  display: table;
  clear: both;
}


@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}