/*
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}
*/

html {
  height: 100%;
}

body {
  font-family: 'Roboto Slab', sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, h5 {
  font-family: 'Raleway', serif;
  font-weight: 500;
}

h1 {
  font-size: 2.25em;
}

h2 {
  font-size: 1.8em;
}

small {
  font-weight: 300;
}

p.a-subtitle {
  font-size: 1.2em;
}

ul.a-services-list {
  padding-left: 15px;
}

hr.a-section-separator {
  width: 50%;
  height: 1px;
  background-color: #0B6F36;
  color: #0B6F36;
}

hr.a-form-separator {
  margin: 0;
}

hr.a-footer-separator {
  height: 2px;
  background-color: #0B6F36;
  color: #0B6F36;
}

div.a-form-container {
  background-color: #fafafa;
}

button.a-contact-submit,
button.a-contact-submit.disabled,
button.a-contact-submit:disabled {
  background-color: #086F36;
  border-color: #086F36;
}

button.a-contact-submit:focus,
button.a-contact-submit:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
}

button.a-contact-submit:hover,
button.a-contact-submit:not(:disabled):not(.disabled):active {
  background-color: #0c7d3d;
  border-color: #0c7d3d;
}

body.a-our-story {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body.a-our-story hr.a-footer-separator {
  width: 100%;
}

.a-page-header {
  padding-top: 20px;
  padding-bottom: 20px;
}

.a-header-logo {
  width: 100%;
  max-width: 240px;
}

.a-header-contact {
  font-size: 1.1rem;
  font-weight: 500;
  background-color: #fd6a02;
  color: #ffffff;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.a-header-contact:hover {
  font-size: 1.12rem;
  color: #ffffff;
  background-color: #008000;
}

.a-header-contact:focus {
  box-shadow: 0 0 0 0.2rem rgba(0,80,0,.2);
}

.a-hero-image,
.a-hero-image2,
.a-hero-not-found,
.a-hero-blog {
  height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
}

.a-hero-image {
  background-image: url(/images/header-home.jpg);
  background-position: center;
}

.a-hero-image2 {
  background-image: url(/images/header-about.jpg);
  background-position: center;
}

.a-hero-blog {
  background-image: url(/images/header-blog.jpg);
  background-position: center;
}

.a-hero-not-found {
  background-image: url(/images/not-found.jpg);
  background-position: top left;
}

.a-page-content {
  flex: 1 0 auto;
}


.a-page-footer {
  flex-shrink: 0;
  font-size: 0.85em;
  color: #606060;
}

div.g-recaptcha {
  transform: scale(0.90);
  transform-origin: left top;
}

/* From Wordpress blog */
img.alignleft {
  display: inline;
  float: left;
  margin-right: 15px;
}

img.alignright {
  display: inline;
  float: right;
  margin-left: 15px;
}

.wp-caption.alignright {
  margin: 0 0 20px 30px;
  float: right;
}

.wp-caption {
  max-width: 96%;
  margin-bottom: 10px;
  padding: 8px;
  padding-top: 4px;
  border: 1px solid #ddd;
  background-color: #f3f3f3;
  text-align: center;
}

.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 12px;
}

blockquote {
  border-color: #1f3d0a;
}

blockquote {
  margin: 20px 0 30px;
  padding-left: 20px;
  border-left: 5px solid;
}

blockquote, q {
  quotes: none;
}

/* Media queries */
@media only screen and (max-width: 991px) {
  .a-hero-image,
  .a-hero-image2,
  .a-hero-not-found {
    height: 240px;
  }
}

@media only screen and (max-width: 575px) {
  html {
    font-size: 12px;
  }
  .a-hero-image,
  .a-hero-image2,
  .a-hero-not-found {
    height: 180px;
  }
  div.g-recaptcha {
    transform: scale(0.75);
  }
}