/*
Theme Name: BAW 
Theme URI: http://html5reset.org
Description: BAW theme
Author: Ricardo Pedrosa (base theme by Monkey Do! + $ckhicks)
Author URI: http://monkeydo.biz
Version: 2.0
License: BSD 2-Clause
License URI: http://opensource.org/licenses/bsd-license.php
*/
/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/
/* A Linux- and Windows-friendly sans-serif font stack: http://prospects.mhurrell.co.uk/post/updating-the-helvetica-font-stack */
body {
  font: 13px Helmet, Freesans, sans-serif;
}
/* Using local fonts? Check out Font Squirrel's webfont generator: http://www.fontsquirrel.com/tools/webfont-generator */
/* We like off-black for text. */
body,
select,
input,
textarea {
  color: #333;
}
a {
  color: #03f;
}
a:hover {
  color: #69f;
}
/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}
/*	j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #333;
}
ins {
  background-color: #333;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #333;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Mozilla dosen't style place holders by default */
input:-moz-placeholder {
  color: #a9a9a9;
}
textarea:-moz-placeholder {
  color: #a9a9a9;
}
/* Custom by Ricardo Pedrosa */
.container-fluid {
  max-width: 1200px;
}
html {
  font-size: 62.5%;
  /* for REM units use, so that 1rem = 10px */
  -webkit-font-smoothing: antialiased !important;
}
code {
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace !important;
  font-size: 80%;
  color: #333;
  background-color: #ddd;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline;
}
img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignleft {
  float: left;
  padding: 2px 0 0 10px;
}
.alignright {
  float: right;
  padding: 2px 10px 0 5px;
}
.middle-align-block {
  display: inline-block;
  vertical-align: middle;
}
.middle-align-block-aux {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.valign-fix {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* And here begins the WordPress fun.
-------------------------------------------------------------------------------*/

body.home header#header {
	background-image: url('../../uploads/2019/11/baw-bg-3.jpg');
}
body.bg1 header#header {
	background-image: url('../../uploads/2019/11/baw-bg-1.jpg');
}
body.bg2 header#header {
	background-image: url('../../uploads/2019/11/baw-bg-2.jpg');
}
body.bg3 header#header {
	background-image: url('../../uploads/2019/11/baw-bg-3.jpg');
}
header#header {
  padding: 20px 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  /*background-image: url('images/header-home-bg.jpg');*/
  background-image: url('../../uploads/2019/11/baw-bg-3.jpg');
  background-position: center center ;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  text-align:center;
}
header#header:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  content: "";
}
/*header#header #logo {
  float: left;
}*/
header#header #logo img {
  height: 110px;
  width: auto;
  margin-bottom:25px;
}
header#header:not(.homepage) #logo img {
  height: 90px;
  margin: 10px 0 25px 0;
}
@media (max-width: 767px) {
  header#header #logo img {
    height: 80px;
	margin-bottom:0;
  }
}
header#header nav {
  /*float: right;*/
  height: 110px;
  /*display: flex;*/
  display: inline-block;	
  align-items: center;
  margin: 0;
}
header#header nav .menu {
  list-style-type: none;
  border-radius: 30px;
  padding: 5px;
  background-color: rgba(138, 168, 90, 0.55);
}
header#header nav .menu li {
  display: inline-block;
}
header#header nav .menu li a {
  display: block;
  padding: 10px 15px;
  border-radius: 20px;
  transition: background-color 0.2s linear;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
header#header nav .menu li a:hover,
header#header nav .menu li a:active {
  background-color: #8aa85a;
  text-decoration: none;
}
@media (max-width: 767px) {
  header#header nav {
    float: none;
    display: block;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    min-height: 100vh !important;
    background-color: #8aa85a;
    transition: right 0.3s ease-out;
    z-index: 99999;
  }
  header#header nav.open {
    right: 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
  header#header nav .menu {
    border-radius: 0;
    padding: 0;
  }
  header#header nav .menu li {
    display: block;
    padding: 0 25px;
    transition: background-color 0.2s linear;
    background-color: #8aa85a;
  }
  header#header nav .menu li:hover,
  header#header nav .menu li:active {
    background-color: #aec28c;
  }
  header#header nav .menu li a {
    display: block;
    padding: 15px 0;
    border-radius: 0;
    text-align: left;
    font-size: 18px;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header#header nav .menu li a:hover,
  header#header nav .menu li a:active {
    background-color: transparent;
  }
  header#header nav a#mobile-menu-close {
    color: #8aa85a;
    text-align: right;
    display: block;
    padding: 15px 15px 15px 0;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
header#header nav div#mobile-bottom-links > div {
  padding: 15px 25px;
}
header#header nav div#mobile-bottom-links > div i {
  color: rgba(255, 255, 255, 0.7);
}
header#header a#mobile-menu-open {
  color: #fff;
  float: right;
  cursor: pointer;
    margin:20px 0;
}
header#header.homepage {
  padding: 35px 0;
  box-shadow: none;
}
header#header.homepage:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  content: "";
}


header#header.homepage #homepage-title {
  font-size: 5.5rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 60px 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  header#header.homepage #homepage-title {
    font-size: 3.5rem;
    margin: 60px 0 35px;
  }
}
@media (max-width: 479px) {
  header#header.homepage #homepage-title {
    font-size: 2.5rem;
  }
}
main#content {
  padding-top: 50px;
  padding-bottom: 50px;
}
main#content .page-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 0;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
main#content .page-title:before {
  content: "//";
  color: #8aa85a;
  margin-right: 20px;
}
main#content article .entry {
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
}
main#content article .entry a,
main#content article .entry a:link,
main#content article .entry a:active,
main#content article .entry a:visited {
  color: #8aa85a;
}
main#content article .entry a:hover,
main#content article .entry a:link:hover,
main#content article .entry a:active:hover,
main#content article .entry a:visited:hover {
  text-decoration: underline;
}
main#content article #social-links a {
  color: transparent !important;
}
main#content article #social-links a:first-child {
  margin-right: 15px;
}
main#content article #social-links a .fa-twitter {
  color: #38A1F3;
}
main#content article #social-links a .fa-envelope {
  color: #555;
}
main#content article.news-item {
  margin-bottom: 30px;
}
main#content article.news-item header {
  margin-bottom: 30px;
  display: table;
}
main#content article.news-item header .news-date {
  display: table-cell;
  vertical-align: middle;
}
main#content article.news-item header .news-date > div {
  background-color: #8aa85a;
  padding: 5px;
  text-align: center;
  width: 50px;
}
main#content article.news-item header .news-date .day {
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
main#content article.news-item header .news-date .month {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-top: 2px;
  color: #fff;
}
main#content article.news-item header .news-date .year {
  font-size: 1.3rem;
  line-height: 100%;
  color: #fff;
}
main#content article.news-item header .news-title {
  display: table-cell;
  vertical-align: middle;
}
main#content article.news-item header .news-title h2 {
  margin: 0 0 0 25px;
}
main#content article.news-item header .news-title h2 a,
main#content article.news-item header .news-title h2 span {
  font-weight: 600;
  color: #333;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  main#content .subscribe-newsletter label.label-inline {
    width: 100% !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 768px) {
  main#content .subscribe-newsletter label.label-inline {
    width: 79% !important;
    padding-right: 10px !important;
  }
  main#content .subscribe-newsletter .submit-button-inline-label {
    width: 21%;
  }
}
main#content .subscribe-newsletter .newsletter-input {
  color: #333;
  border-radius: 4px;
  font-size: 18px;
  border: 0 !important;
  outline: 0 !important;
  line-height: 45px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
}
main#content .subscribe-newsletter .newsletter-input::placeholder {
  color: #aaa;
}
main#content .subscribe-newsletter button[type='submit'] {
  background-color: #8aa85a;
  border: 0;
  outline: 0;
  font-size: 18px;
  transition: 0.2s background-color linear;
}
main#content .subscribe-newsletter button[type='submit']:hover {
  background-color: #aec28c;
}
footer#footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
footer#footer small {
  font-size: 90%;
  font-weight: 600;
}
footer#footer small a {
  color:#fff;
}
footer#footer #copy-links {
  padding: 6px 0;
  background-color: #8aa85a;
  color: #fff;
  line-height: 2.6rem;
}
footer#footer #copy-links a:not(:last-child) {
  margin-right: 10px;
}
footer#footer #copy-links a .fa-stack.fa-2x {
  font-size: 2.6rem;
  height: 2.6rem;
  line-height: 2.8rem;
  width: 2.6rem;
}
footer#footer #copy-links a .fa-stack .fa-stack-1x {
  font-size: 1.3rem;
}
footer#footer #copy-links a .fa-stack .fa-stack-2x {
  font-size: 2.6rem;
  color: #fff;
}
footer#footer #copy-links a .fa-stack .fa-inverse {
  color: #8aa85a;
}
footer#footer #message-group {
  padding: 6px 0;
  background-color: #333;
  color: #eee;
  line-height: 100%;
}
.nav-previous a,
.nav-next a {
	background-color: #8aa85a;
	color: #fff !important;
	padding: 5px 10px;
}
body.custom-background {
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
}
/* HOMEPAGE SOON */
body.homepage-soon {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 767px) {
  body.homepage-soon {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  body.homepage-soon {
    font-size: 15px;
  }
}
body.homepage-soon:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  content: "";
}
body.homepage-soon header {
  display: none !important;
}
body.homepage-soon main#content {
  padding: 0;
}
body.homepage-soon main#content .home-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
body.homepage-soon main#content .home-wrapper .content-wrapper {
  padding: 40px 10px;
}
body.homepage-soon main#content .subscribe-newsletter .newsletter-input {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
body.homepage-soon main#content .subscribe-newsletter .newsletter-input::placeholder {
  color: #ccc;
}
body.homepage-soon .baw-logo {
  margin-bottom: 60px;
}
body.homepage-soon .baw-logo figure {
  width: 230px;
  max-width: 550px !important;
}
@media (max-width: 767px) {
  body.homepage-soon .baw-logo figure {
    width: 180px;
  }
}
@media (max-width: 479px) {
  body.homepage-soon .baw-logo figure {
    width: 160px;
  }
}
body.homepage-soon .homepage-title {
  margin-bottom: 30px;
  font-size: 4.5rem;
}
@media (max-width: 767px) {
  body.homepage-soon .homepage-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 479px) {
  body.homepage-soon .homepage-title {
    font-size: 2.5rem;
  }
}
body.homepage-soon .newsletter-box-desc {
  margin-top: 60px;
  font-style: italic;
  font-size: 2.2rem;
  text-align: center;
}
@media (max-width: 767px) {
  body.homepage-soon .newsletter-box-desc {
    font-size: 1.8rem;
    margin-top: 30px;
  }
}
body.homepage-soon footer {
  display: none !important;
}
body.homepage-soon footer small {
  color: #ccc;
}
/* TEMP */
body.homepage-soon .home-wrapper {
  display: block !important;
}
body.homepage-soon .home-wrapper .baw-logo figure {
  margin-left: 0;
  width: 125px;
}
@media (max-width: 767px) {
  body.homepage-soon .home-wrapper .baw-logo figure {
    width: 100px;
  }
}
/* */
/* Print styles!
-------------------------------------------------------------------------------*/
/* Media queries!
-------------------------------------------------------------------------------*/
/* Always do mobile-first, and consider using em units: http://blog.cloudfour.com/the-ems-have-it-proportional-media-queries-ftw

@media screen and (min-width: 480px) {

} */