@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Medium.ttf);
}
@font-face {
  font-family: "Open Sans SemiBold";
  src: url(../fonts/OpenSans-SemiBold.ttf);
}
@font-face {
  font-family: "Open Sans Light";
  src: url(../fonts/OpenSans-Light.ttf);
}
* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans";
  font-weight: 400;
  box-sizing: border-box;
}

.light {
  font-family: "Open Sans Light";
  font-weight: 300;
}

.bold,
h1,
h2 {
  font-family: "Open Sans SemiBold";
  font-weight: 600;
}

h1 {
  font-size: 36px !important;
}

h2 {
  font-size: 32px !important;
}

h4 {
  font-size: 24px !important;
}

p {
  font-size: 18px !important;
}

.shadow {
  box-shadow: 0px 4px 8px 5px rgba(0, 0, 0, 0.1);
}

.bodyinlet {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 140px 50vh 80px auto 80px auto 80px 80px;
  grid-template-areas: "header header header header header header header header header header header header" ". hero hero hero hero hero hero hero hero hero hero ." ". . . . . . . . . . . ." ". topbox topbox topbox topbox topbox topbox topbox topbox topbox topbox ." ". . . . . . . . . . . ." ". leftbox leftbox leftbox leftbox . . rightbox rightbox rightbox rightbox ." ". . . . . . . . . . . ." "footer footer footer footer footer footer footer footer footer footer footer footer";
  -moz-column-gap: 8px;
       column-gap: 8px;
  justify-items: stretch;
  align-items: stretch;
}

header {
  /*
  grid-row: 1 / 3;
  grid-column: 1 / 13;
  */
  grid-area: header;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  justify-items: stretch;
  align-items: center;
  grid-gap: 8px;
  width: 100%;
  position: absolute;
  background-color: #fff;
}
header img {
  height: 80px;
  grid-row: 1/2;
  grid-column: 2/3;
}
header #logo_text {
  grid-row: 1/2;
  grid-column: 3/5;
  font-weight: 500;
  text-align: left;
  right: 0;
}
header #logo_text h1 {
  font-size: 28px;
  font-weight: 600;
}
header #logo_text p {
  font-weight: 600;
  font-size: 24px;
  margin-top: 0px;
}
header #head_contact {
  height: 80px;
  grid-row: 1/2;
  grid-column: 8/12;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  height: 80px;
  line-height: 80px;
}
header nav {
  background-color: rgb(231, 231, 240);
  grid-row: 2/3;
  grid-column: 2/12;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: right;
}
header nav ul:not(#dropdown) {
  margin-right: 20px;
  height: 60px;
  position: relative;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
header nav ul:not(#dropdown) li {
  right: 0;
  line-height: 60px;
  margin: 0 15px;
  position: relative;
}
header nav ul:not(#dropdown) li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
header nav ul:not(#dropdown) li a::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #000;
  position: absolute;
  top: 56px;
  display: none;
}
header nav ul:not(#dropdown) li .activepage::before {
  display: block;
}
header nav ul:not(#dropdown) li:first-of-type {
  margin: 0 15px 0 0;
}
header nav ul:not(#dropdown) li:last-of-type {
  margin: 0 0 0 0px;
}
header nav ul:not(#dropdown) li[dropdown]:hover #dropdown {
  display: block;
}
header nav #dropdown {
  z-index: 10;
  height: 120px;
  top: 60px;
  background: rgb(231, 231, 240);
  min-width: 450px;
  list-style-type: none;
  display: none;
  position: absolute;
  padding: 0 20px 0 0;
}
header nav #dropdown li {
  position: relative;
  padding: 0 0 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  text-align: left;
  display: block;
  line-height: 60px;
}
header nav #dropdown li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

#hero_image {
  /*grid-row: 3 / 4;
  grid-column: 2 / 12;
  */
  grid-area: hero;
  width: 100%;
  height: 100%;
}
#hero_image img {
  margin-top: 0;
  width: 100%;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}

.headline {
  /* grid-column: 1 / 13;
  grid-row: 3 / 4;
  */
  grid-area: hero;
  place-self: center center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -11%;
  z-index: 5;
  font-size: 1.5vw;
  width: 17%;
  text-align: center;
}

.small_headline {
  font-size: 1.6vw !important;
}

.container {
  grid-row: 4/6;
  grid-column: 2/12;
  position: relative;
  z-index: -2;
  background-color: #fff;
  box-shadow: 0px 4px 8px 5px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  min-height: 80%;
  padding: 50px;
}

.textcontainer {
  grid-column: 3/11;
  grid-row: 4/6;
  z-index: 3;
  line-height: 1.6;
  text-align: left;
  padding-bottom: 100px;
  display: grid;
  grid-template: subgrid;
}
.textcontainer ul {
  margin: 30px 0;
  margin-left: 8.33%;
  list-style-type: disc;
}
.textcontainer ul[padding] li {
  margin: 10px 0;
}
.textcontainer ul[last-list] {
  margin: 60px 0 7% 8.33%;
}
.textcontainer li {
  list-style-type: none;
}
.textcontainer li::before {
  content: "";
  width: 10px;
  height: 3px;
  background-color: #000;
  position: absolute;
  margin-top: 12px;
  margin-left: -25px;
  border-radius: 2px;
}
.textcontainer h1 {
  margin: 50px 8px;
  font-weight: 600;
}
.textcontainer h3 {
  font-size: 1.8vw;
  margin: 30px 20px;
  font-weight: 600;
}
.textcontainer p {
  text-align: left;
  margin: 10px 0;
}
.textcontainer img:not([be-logo]) {
  width: 20%;
  left: 60%;
  position: absolute;
  bottom: calc(140px + 5%);
}
.textcontainer #contactbtns {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
}
.textcontainer p[btn] {
  position: relative;
  text-align: center;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  background: rgba(45, 249, 187, 0.22);
  padding: 3px 8px;
  border-radius: 7px;
}

.textcontainer_be {
  grid-column: 2/11;
  grid-template-columns: repeat(10, 11.1111%);
  grid-template-rows: 100px 100px 40% auto;
}
.textcontainer_be h1 {
  grid-row: 1/2;
}
.textcontainer_be h3[subheading] {
  grid-row: 2/3;
}
.textcontainer_be * {
  grid-column: 2/10;
}
.textcontainer_be #leftbox {
  grid-column: 2/7;
  grid-row: 3/4;
  padding-right: 30px;
}
.textcontainer_be #bebox {
  background: rgba(231, 231, 240, 0.5);
  grid-column: 7/10;
  height: 90%;
  border-radius: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  flex-direction: column;
}
.textcontainer_be #bebox img {
  bottom: 0;
  position: relative;
  left: 0;
  max-width: 60%;
  max-height: 60%;
}
.textcontainer_be #bebox p {
  width: 90%;
  text-align: center;
  font-size: 0.9vw;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(231, 231, 240, 0.5);
  position: relative;
  padding: 60px 70px 100px 70px;
  padding-bottom: 100px;
  border-radius: 50px;
}
.box img {
  width: 320px;
  margin: 60px 0;
}
.box h2 {
  font-size: 4vw;
  text-align: center;
  line-height: 1.7;
  font-weight: 600;
}
.box img[src="img/recycle.png"] {
  width: 160px;
}
.box p {
  width: 100%;
  text-align: center;
}

.box[top] {
  /* grid-column: 2 / 12;
  grid-row: 5 / 6;
  */
  grid-area: topbox;
  display: grid;
  grid-template-columns: 30% 70%;
  grid-template-rows: auto;
  justify-items: center;
  align-content: center;
  flex-direction: row;
  width: 100%;
  height: 60vh;
  padding-bottom: 60px;
}
.box[top] img {
  justify-self: center;
  width: 65%;
}
.box[top] div {
  width: 100%;
  height: 100%;
  padding-top: 40px;
}
.box[top] div * {
  text-align: left;
}
.box[top] div h2 {
  font-size: 3vw;
  line-height: 1.3;
  font-weight: bold;
}
.box[top] div h4 {
  font-weight: 600;
  margin: 20px 0 40px;
}
.box[top] div p {
  font-size: 16px;
  line-height: 1.8;
}

.box[left] {
  /*grid-column: 2 / 6;
  grid-row: 5 / 6;
  */
  grid-area: leftbox;
}

.box[right] {
  /* grid-column: 8 / 12;
  grid-row: 5 / 6;
  */
  grid-area: rightbox;
}

footer {
  /*grid-row: 7 / 8;
  grid-column: 1 / 13;
  */
  grid-area: footer;
  width: 100%;
  height: 80px;
  background: rgba(45, 249, 187, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
footer #footer_links {
  position: relative;
  height: 80px;
  width: 30%;
}
footer #footer_links ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
footer #footer_links ul li {
  list-style-type: none;
}
footer #footer_links ul li a {
  font-size: 0.9vw;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

@media screen and (max-width: 1400px) {
  h1 {
    font-size: 4vw !important;
  }
  h2:not(#headline):not(#logo) {
    font-size: 1.8vw !important;
  }
  h4 {
    font-size: 1.8vw !important;
  }
  p {
    font-size: 1vw !important;
  }
}/*# sourceMappingURL=main.css.map */