@charset "UTF-8";
/* CSS Document */
/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* LAYOUT */
html, body {
  height: 100%;
  margin: 0;
  font: 400 15px arial, sans-serif;
}
.navbar {
  width: 100%;
  position: fixed;
  z-index: 10;
  background: #74c155;
  padding: 15px;
  text-transform: uppercase;
}
.navbar a {
  text-decoration: none;
  margin: 10px;
  color: #fff;
}
.navbar a:hover {
  letter-spacing: 1px;
}
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5 {
  position: relative;
  /*opacity: 0.95;*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bgimg-1 {
  background-image: url("../media/field.jpg");
  min-height: 100%;
}
.bgimg-2 {
  background-image: url("../img-beyond/beyondburger.jpg");
  min-height: 500px;
}
.bgimg-3 {
  background-image: url("../img-beyond/beyondforest.jpg");
  min-height: 500px;
}
.bgimg-4 {
  background-image: url("../img-beyond/grinder.jpg");
  min-height: 500px;
}
.bgimg-5 {
  background-image: url("../img-beyond/beyondgroundmeat.jpg");
  min-height: 100%;
}
.caption-text {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #fff;
}
.border {
  text-transform: uppercase;
  padding: 18px;
  font-size: 25px;
  letter-spacing: 10px;
}
.words1, .words2, .words3 {
  color: #fff;
  background-color: #74c155;
  padding: 50px 80px;
  text-align: justify;
  font-size: 16px;
  line-height: 25px;
  font-family: Helvetica Neue, Helvetica, Verdana, Arial, sans-serif;
}
.words2 img {
  padding: 10px 25px 15px 0;
  float: left;
  width: 35%;
}
.words1 img {
  padding: 0 0 20px 0;
  width: 65%;
}
.position {
  position: relative;
}
video {
  width: 60%;
  padding: 10px 25px 15px 0;
}
p {
  clear: both;
}
footer {
  width: 100%;
  background: #74c155;
}
footer p {
  text-align: right;
  padding: 0 10px 5px 0;
}
.logo img {
  height: 60px;
}
.to-top {
  position: fixed;
  bottom: 1.2rem;
  right: 1.5rem;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  -mox-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .3));
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .3))
}
.to-top.active {
  bottom: 1.2rem;
  opacity: 0.5;
}
footer a:hover {
  -mox-transform: scale(1.1) translateY(-7px);
  -webkit-transform: scale(1.1) translateY(-7px);
  transform: scale(1.1) translateY(-7px);
}
@media screen and (min-width: 1441px) {
  .bgimg-2 {
    min-height: 700px;
  }
  .bgimg-3 {
    min-height: 700px;
  }
  .bgimg-4 {
    min-height: 700px;
  }
 
  .words2 img {
    padding: 15px 25px 10px 0;
    max-width: 30%;
    float: left;
  }
  .words1 img {
    padding: 0 0 20px 0;
    max-width: 45%;
    float: left;
  }
  video {
    max-width: 45%;
    padding: 10px 25px 15px 0;
    float: left;
  }
}
@media screen and (max-width: 980px) {
  .words2 img {
    padding: 5px 0 15px 0;
    width: 60%;
  }
  .words1 img {
    padding: 0 0 5px 0;
    width: 100%;
  }
  video {
    padding: 5px 15px 10px 0;
    width: 100%;
  }
  .border {
    padding: 14px;
    font-size: 22px;
    letter-spacing: 8px;
  }
}
@media screen and (max-width: 680px) {
  .words2 img {
    padding: 10px 0 15px 0;
    width: 100%;
  }
  .words1 img {
    padding: 0 0 5px 0;
    width: 100%;
  }
  .words1, .words2, .words3 {
    padding: 40px 10px;
  }
  video {
    padding: 10px 0 10px 0;
    width: 100%;
  }
  .border {
    padding: 8px;
    font-size: 18px;
    letter-spacing: 6px;
  }
}