*{
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  transition: .3s;
}

::selection {
  background-color: #2e2d2b;
  color: #ffffff;
}

.clearfix{
  clear: both;
}

.line_break{
  display: none;
}

body{
  height: auto;
  width: 100%;
}

header{
  width: 100%;
  height: auto;
}

.header_bg{
  width: 100%;
  height: auto;
  margin: auto;
  background-color: #2e2d2b;
}

.header_top{
  max-width: 1400px;
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
}

.header_col{
  max-width: 33%;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  padding: 20px;
}

.header_col:first-of-type{
  text-align: left;
  text-align: -webkit-left;
  text-align: -moz-left;
  text-align: -ms-left;
}

.header_col:nth-of-type(2){
  width: 200px;
}

.header_col:last-of-type{
  text-align: right;
  text-align: -webkit-right;
  text-align: -moz-right;
  text-align: -ms-right;
}

.logo{
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: .3s;
}

.logo img{
  width: 100%;
  height: auto;
}

.logo_small{
  width: 35%;
}

.burger_nav{
  display: none;
}

.header_contact{
  color: white;
  display: inline-block;
  vertical-align: middle;
}

.header_contact p{
  color: inherit;
}

.header_contact a{
  color: inherit;
}

.header_contact.icon{
  margin-right: 5px;
  font-size: 20px;
}

.header_call_mob{
  margin-top: 10px;
}

.header_bottom{
  background-color: #c8af7a;
  width: 100%;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
  padding: 0 30px;
}

nav{
  width: auto;
}

nav ul li{
  display: inline-block;
  text-decoration: none;
  width: auto;
  padding: 10px;
  transition: .3s;
}

nav ul li:hover{
  background-color: #2e2d2b;
}

nav ul li a{
  color: #fff;
  text-decoration: none;
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 20px;
  cursor: pointer;
}

.overlay {
height: 0%;
width: 100%;
position: fixed;
z-index: 10000;
top: 0;
left: 0;
background-color: rgba(200,175,122, 0.9);
overflow-y: hidden;
transition: 0.5s;
}

.overlay_content {
position: relative;
top: 5%;
width: 100%;
text-align: center;
text-align: -webkit-center;
text-align: -moz-center;
text-align: -ms-center;
margin-top: 30px;
}

.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: white;
display: block;
transition: 0.3s;
font-family: 'Open Sans';
text-transform: uppercase;
}

.overlay a:hover, .overlay a:focus {
color: #2e2d2b;
}

.overlay .closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
}

h1 {
  font-family: 'Play';
  color: #c8af7a;
  font-size: 27px
}

h2{
  font-family: 'Play';
  color: #c8af7a;
  font-size: 24px;
}

h3{
  font-family: 'Play';
  color: #c8af7a;
  font-size: 21px;
}

h4{
  font-family: 'Open Sans';
  font-size: 20px;
  color: #787878;
}

h5{
  font-family: 'Open Sans';
  font-size: 18px;
  font-weight: normal;
  color: #c8af7a;
}

p{
  font-family: 'Open Sans';
  font-size: 17px;
  color: #4c4c4c;
}

a{
  color: #c8af7a;
  text-decoration: none;
}

.gold_p{
  color: #c8af7a;
}

.bullet{
  color: inherit;
  font-size: 22px;
  color: #c8af7a
}

.page{
  width: 100%;
  height: auto;
}

.content{
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 50px 40px;
}

.text_center{
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
}

/*----- Home Start -----*/

#home_top{
  width: 100%;
  height: 65vh;
  background-image: url(images/home-top.jpg);
  background-position: center;
  background-size: cover;
}

#intro{
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
}

#home_tabs{
  width: 100%;
  height: auto;
}

.home_tabs_container{
  max-width: 1100px;
  width: 100%;
  margin: auto;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
  display: flex;
}

.home_tab{
  width: 33%;
  display: inline-block;
  padding: 10px;
  margin: 5px;
  flex: 0 1 33%;
}

.home_tab img{
  width: 100%;
}

.tab_brown{
  background-color: #2e2d2b;
}

.tab_brown h3{
  color: #c8af7a;
}

.tab_brown p{
  color: #fff;
}

.tab_brown a{
  color: #fff;
}

.tab_gold{
  background-color: #c8af7a;
}

.tab_gold *{
  color: #2e2d2b;
}

.home_tab_text{
  padding: 15px;
}

.home_tab_text h3{
  font-size: 24px;
  margin-bottom: 10px;
}

.home_tab_text p{
  text-align: left;
  text-align: -webkit-left;
  text-align: -moz-left;
  text-align: -ms-left;
}

#working_with{
  text-align: center;
  text-align: -webkit-center;
}

.brands_container{
  padding-top: 10px;
}

.brands_container img{
  width: 13.5%;
  vertical-align: middle;
  margin: 0 10px;
}

/*-- Home End --*/

/*----- Services Start -----*/

.generic_top{
  width: 100%;
  height: 60vh;
}

#maintenance_top{
  background-image: url(images/maintenance-top.jpg);
  background-position: center;
  background-size: cover;
}

#drinks_dispense_top{
  background-image: url(images/beer-dispense-top.jpg);
  background-position: top;
  background-size: cover;
}

#line_cleaning_top{
  background-image: url(images/line-cleaning-top.jpg);
  background-position: center;
  background-size: cover;
}

#beer_cellar_cask_top{
  background-image: url(images/beer-cellar-cask-top.jpg);
  background-position: center;
  background-size: cover;
}

#mobile_bar_top{
  background-image: url(images/mobile-bar-top.jpg);
  background-position: center;
  background-size: cover;
}

.section_2{
  background-color: lightgrey;
}

.section_2_top{
  width: 100%;
  height: 45vh;
}

.section_2 h2{
  color: #9c875a;
}

#beer_wall_top{
  background: linear-gradient(to bottom right, rgba(0,0,0,0.4), rgba(0,0,0, 0.4)), url(images/beer-wall-top.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/*-- Services End --*/

/* ---- Gallery Start ---- */

.services_galley{
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding: 0 40px 50px;
  text-align: center;
  text-align: -webkit-center;
  text-align: -o-center;
  text-align: -moz-center;
  text-align: -ms-center;
}

.gallery{
  display: inline-block;
  width: 19%;
  padding: 5px;
  border-radius: 10px;
}

.gallery:hover img{
  opacity: 1;
}

.gallery img{
  width: 100%;
  opacity: 0.8;
  border-radius: 10px;
}

.lb-data .lb-caption{
  font-family: "Open Sans";
  font-size: 20px !important;
}

.lb-data .lb-number {
  font-family: "Open Sans";
}


/* Gallery End */

/*----- Contact Start -----*/

#contact{
  background: linear-gradient(to bottom right, rgba(0,0,0,0.55), rgba(0,0,0, 0.55)), url(images/contact-bg.jpg);
  background-position:center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  text-align: -webkit-center;
  text-align: -o-center;
  text-align: -moz-center;
  text-align: -ms-center;
}

#contact .content{
  padding: 50px 30px;
}

.contact_left {
  width: 50%;
  display: inline-block;
  text-align: left;
  text-align: -webkit-left;
  text-align: -o-left;
  text-align: -moz-left;
  text-align: -ms-left;
  vertical-align: top;
  padding-top: 25px;
}

.contact_right {
  width: 45%;
  height: auto;
  display: inline-block;
  text-align: center;
  text-align: -webkit-center;
  text-align: -o-center;
  text-align: -moz-center;
  text-align: -ms-center;
  vertical-align: top;
}

#branding-action-bar{
  display: none;
}

.contact_divider{
  border: 2px solid #c8af7a;
  width: 48px;
  margin: 10px 0;
}

.contact_left .gold_p{
  font-size: 17.5px;
  font-family: 'Play';
  font-weight: 400;
}

.contact_left h1{
  font-size: 36px;
  color: white;
}

.contact_left h2{
  font-size: 34px;
  color: white;
  padding-top: 10px;
}

.contact_p{
  font-size: 17.5px;
  color: white;
}

.contact_left h3{
  font-size: 30px;
  color: white;
  margin-top: 30px;
}

.contact_div{
  margin-bottom: 10px;
}

.contact_div:first-of-type{
  padding-top: 10px;
}

.contact_obj{
  display: table-cell;
  vertical-align: middle;
  padding-right: 12px;
}

.contact_obj .ion{
  color: #c8af7a;
}

.contact_obj p{
  font-size: 17.5px;
  color: white;
}

#contact a{
  text-decoration: inherit;
}

/*-- Contact End --*/

/*----- Footer Start -----*/

footer{
  width: 100%;
  height: auto;
  position: relative;
  bottom: 0;
  padding-top: 60px;
  font-family: 'Roboto';
  background-color: #2e2d2b;
}

footer a{
  text-decoration: none;
}

.footer_top{
  max-width: 1200px;
  height: auto;
  margin: auto;
  color: #fff;
}

.footer_top a{
  color: #fff;
  text-decoration: none;
}

.footer_top .logo{
  max-width: 50%;
  height: auto;
  width: 100%;
}

.columns{
  height: auto;
  width: 33%;
  display: inline-block;
  vertical-align: top;
  padding: 0 15px;
  box-sizing: border-box;
}

.columns:first-of-type{
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
  text-align: -o-center;
}

.columns h3{
  font-size: 28px;
}

.social_icons{
  margin: 10px 0;
}

.social_icon{
  display: inline-block;
  padding: 4px;
  margin: 3px;
  color: #fff;
}

.ion-social{
  font-size: 25px;
}

.footer_obj {
  display: table-cell;
  padding: 0 12px 0 0;
  vertical-align: middle;
}

.ion{
  font-size: 25px;
}

footer p{
  font-size: 14.5px;
  color: #fff;
}

footer ul{
  list-style: none;
}

footer ul li{
  padding-bottom: 3px;
}

footer ul li a{
  font-size: 14.5px;
  text-decoration: underline;
}

.footer_bottom{
  margin-top: 30px;
  border-top: 4px solid white;
  background-color: #c8af7a;
}

.footer_bottom p{
  color: black;
}

.footer_bottom a{
  color: black;
  font-weight: bold;
}

.footer_bottom_container{
  max-width: 1200px;
  padding: 15px;
  margin: auto;
}

footer .left{
  float: left;
  width: auto;
  height: auto;
}

footer .right{
  float: right;
  width: auto;
  height: auto;
}
