@import url(//fonts.googleapis.com/css?family=Open+Sans:300,700);
@import url(//fonts.googleapis.com/css?family=Oswald:300,400);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.625;
  background-color: #ccd3cd;
  width: 100%;
}

.header {
  text-align: left;
  padding-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  max-width: 980px;
  margin: 0 auto;
}

.header h2 {
  font-size: 4vh;
  font-weight: 500;
  margin-top: 2vh;
}

.header p {
  font-size: 2vh;
  font-weight: 500;
  color: rgb(0, 163, 0);
}

.content {
  margin: 0 auto;
  max-width: 980px;
}

.main {
  width: 100%;
  background-color: #fff;
}

.nav {
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Oswald', sans-serif;
  background-color: rgb(0, 163, 0);
  color: white;
}

.nav li {
  display: inline-block;
  padding: 2.5vh;
  font-size: 2vh;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: white;
}

.bg img {
  width: 100%;
  height: 13vh;
  object-fit: cover;
}

.text {
  padding: 2vh 4vh 10vh 4vh;
  line-height: 1.5;
}

.text h4 {
  font-size: 2.5vh;
}

.text h5 {
  font-size: 2vh;
  font-weight: 500;
  color: #8a8a8a;
  margin: -20px 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  line-height: 1.4;
}

h1, .h1 {
  font-size: 2.6rem;
}

h2, .h2 {
  font-size: 2.4rem;
}

h3, .h3 {
  font-size: 2.2rem;
}

h4, .h4 {
  font-size: 2.0rem;
}

h5, .h5 {
  font-size: 1.8rem;
}

h6, .h6 {
  font-size: 1.6rem;
}

.footer {
  background-color: rgb(0, 163, 0);
  width: 100%;
  height: 9rem;
  font-size: 1.5rem;
  text-align: center;
  color: white;
  font-family: 'Oswald', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:600px) {
  body {
    width: 100%;
  }
  .header {
    font-size: 1.5rem;
  }

  .nav{
    text-align: center;
    font-size: 100%;
  }

  .text p{
    font-size: 150%;
  }
}

@media (max-width: 959px) {
  body {
    width: 100%;
  }
  .header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text p{
    font-size: 150%;
  }
}

@media (min-width: 960px) {
  body {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
  }

  .text p{
    font-size: 110%;
  }
}

