/* begining of top nav */
.topnav {
    overflow: hidden;
    background-color: #491000;
    position: fixed;
    width: 100%;
    margin-top: -18px;
    z-index: 10;
}

.topnav a {
  float: right;
  display: block;
  color: #DFD9AB;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #191312;
  color: #DFD9AB;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width : 1003px ){
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width : 1003px ){
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: right;
  }

}
/* end of nav */


/* Hero image */
body, html {
    height: 100%;
}
.hero-image {
    margin-top: 123px;
    background-image: url(img/beans.jpg);
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #DFD9AB;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: #491000;
  background-color: #DFD9AB;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: white;
  color: #883E24;
}
/* end of hero image */



/* boxes*/
.content-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

/* On Mobiles (screen width <= 767px) */
@media screen and (max-width: 767px) {
  .content-holder {
    flex-direction: row;
  }
  
  .text-div {
    margin-left: 10px;
  }
}
/*end of boxes*/

/*form start*/
#email_validation, #name_validation, #lastname_validation, #phone_validation {
    display:none;
}

label.required:after {
  content:'*';
  color:red;
}

span.error {
  background-color:#FFDFDF;
  color:red;
}
.row {
  margin:5px;
}
/*form end*/



/*general formatting*/
h1 {
    color: #491000;
	text-align: center;
		float: center;
	font-family: 'Bitter', sans-serif;
    font-size: 40px;
}
h1.topHeader{
	color: #DFD9AB;
}

hr.style1{
border-top: 6px solid #DFD9AB;
  width: 300px;
  float: center;
}



/*about us box*/
.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    height: 225px;
    background-color: #DFD9AB;
}

.flex-item {
    background-color: #DFD9AB;
    width: 300px;
    height: 200px;
    margin: 10px;
	font-family: 'Bitter', sans-serif;
    font-size: 14px;
	color: #491000;
}


/*Business # table*/
table {
    width:80%;
	float: center;
}
table, th, td {
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: center;
}
table#t01 tr:nth-child(even) {
    background-color: #ffffff;
}
table#t01 tr:nth-child(odd) {
   background-color:#fff;
}
table#t01 th {
    background-color: ffffff;
    color: #191312;
	font-family: 'Bitter', sans-serif;
    font-size: 30px;
}

table#t01 td {
    background-color: ffffff;
    color: #7E0000;
	font-family: sans-serif;
    font-size: 12px;
}

/*menu nav tabs*/

/* Style the tab */
div.tab {
    overflow: hidden;
    border: 1px solid #fff;
    background-color: #fff;
}

/* Style the buttons inside the tab */
div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
	color: #491000;
}

/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: #491000;
	color: #DFD9AB;
}

/* Create an active/current tablink class */
div.tab button.active {
    background-color: #883E24;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}


/*menu grid*/
{
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial;
}

.header {
    text-align: center;
    padding: 32px;
}

/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 19%;
    padding: 3px;
}

/*.column img {
    margin-top: 12px;
}*/

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
    .column {
        width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}

.imgcontainer{
	position: relative;
	display: inline-block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #883E24;
  color:#DFD9AB;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}

.imgcontainer:hover .overlay {
  width: 100%;
}

.text {
  white-space: nowrap; 
  color: white;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}







/*reviews*/
{box-sizing:border-box}
body {font-family: Verdana,sans-serif;}
.mySlides {display:none}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #491000;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: ##191312;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #883E24;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #DFD9AB;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}