/**colours **
$light    = #f2f2f2;
$mid      = #d5d5d5;
$dark     = #bbbbba;
$darkest  = #383838;
$red      = #941a1d;
**/


/**GENERAL**/

body {
  line-height: 1.4;
  background: #f2f2f2;
  font-family: 'Open Sans', sans-serif;
  color: #383838;
  margin: 0;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**TEXT**/

h1, h2 {
  text-align: center;
}

h3, h4,h5, h6 {
  text-align: justify;
}

h1 {
  font-size: 1.5em;
  color: #941a1d;
}

h2 {
  font-size: 1.25em;
  color: #941a1d;
}

h3 {
  font-size: 1.15em;
  color: #941a1d;
}

p {
  font-size: 0.9em;
}

.sub-heading-center {
  font-weight: 600;
  text-align: center;
  color: #383838;
}

.sub-heading-justify {
  font-weight: 600;
  text-align: justify;
}

/**LINKS**/

a,
a:visited {
  color: #7d7d7d;
  text-decoration: none;
}

a:hover,
a:active {
  color: #941a1d;
  transition-duration: 0.4s;
}

/**NAV**/
nav {
  display: flex;
  background: #f2f2f2;
  box-shadow: #38383854 0px 7px 10px;
position: fixed;
width: 100%;
}

.nav.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin: 0 2.4em;
}

.nav.left {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 2em;

}

.nav.links {
  padding-top: 1.5em;
}

.nav img {
  height: 3.85em;
}

.nav.social {
}

nav a {
  padding: 0.25em 1em;
}

a.hide {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: #941a1d;
}

a.hide:hover {
  color: #383838;
  transition-duration: 0.4s;
}

/*nav.button {
padding: 0;
}*/

/**BUTTONS**/

.button {
  background: #941a1d;
  border-radius: 10px;
  color: #f2f2f2;
  padding: .7rem 1.3rem;
  text-align: center;
}

.button:hover {
  background: #bbbbba;
  color: #f2f2f2;
  transition-duration: 0.4s;

}

a.button {
  color: #f2f2f2;;
}

/**HERO**/

.hero {
  background: #d5d5d5;
  background-image: url(assets/images/Harvest_2000_hero.jpg);
  height: 350px;
  text-align: center;
  background-size: cover;
  width: 100%;
  margin-bottom: 2.75em;
}

/**ARTICLES**/

.article-wrapper {
  display: flex;
  flex-flow: row wrap;
  width: 800px;
  margin: 0 auto;
  flex-grow: 1;
}

.article-col {
  flex: 1;
}

.article {
  padding: 1.8em 1em;
}

.article-thumbnail {
  max-width: 90%;
}

/**BANNERS**/
.banner {
  background-color: #383838;
  padding: 4em;
}

.banner-wrapper {
  width: 100%;
  display: flex;
}

.banner-image {
  flex: 1;
  background-image: url("assets/images/Harvest_2000_hero1.jpg");
  background-size: cover;
  padding: 0 2em;
}

.banner-content {
  flex: 1;
  padding: 0 2em;
}

.banner-content h1,
.banner-content h4 {
  color: #f2f2f2;
  text-align: left;
}

/**CONTACT**/
#contact h2 {
  color: #383838;
  margin-bottom: 0.3em;
}

.contact-wrapper {
  display: flex;
}

.contact-col {
  flex: 1;
  padding: 0 1em;
  text-align-last: center;
}

/**FOOTER**/
footer {
  background: #383838;
  color: #f2f2f2;
  width: 100%;
  margin: 0;
  border-top: 5px #d2d2d261 solid;
}

.footer-logo {
  text-align: center;
  padding: 1em;
}

footer img {
  width: 5.25em;
  margin: 0 auto;
}

.footer-legal {
  display: flex;
  background: #f2f2f2;
  padding: 0.5em;
}

.footer-legal a {
  font-size: 1em;
  text-transform: uppercase;
}

.footer-col {
  flex: 1;
  padding: 0 0.75em;
}

.f-logo {
  text-align: right;
}

/** MEDIA QUERIES **/

@media only screen and (max-width: 750px) {

  section {
    margin: 0 2em;
  }

  .article-wrapper,
  .banner-wrapper,
  .contact-wrapper {
    display: block;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
    display: inline-block;
    width: 100%;
  }
  .f-logo {
    text-align: center;
  }

  .banner-image {
    height: 150px;
    background-position: -2em;
    background-repeat: no-repeat;
  }
}
