html, body {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  margin: 0;
  background: #f6f6f8; }
  html *, body * {
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    font-variant-numeric: slashed-zero;
    color: #111; }

h1, h2, h3, h4, h5, h6, p, a {
  margin: 0; }

h1, h2, h3 {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  text-transform: uppercase; }

p {
  line-height: 28px; }

input,
textarea,
button,
select,
a, label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

div.all-container {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  position: relative; }

.header-contain {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  overflow: hidden; }
  .header-contain:before {
    content: '';
    height: 5rem;
    width: 100%;
    background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .3; }

header {
  width: 100%;
  z-index: 100;
  height: 5rem;
  overflow: hidden;
  max-width: 1100px; }
  @media screen and (min-width: 768px) {
    header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start; } }
  header .logo {
    padding: 1rem .5rem .5rem 1rem;
    position: relative;
    z-index: 1;
    display: inline-block; }
    @media screen and (min-width: 1260px) {
      header .logo {
        padding-left: 0; } }
    header .logo object {
      height: 1.5rem;
      pointer-events: none; }
      @media screen and (min-width: 768px) {
        header .logo object {
          height: 1.65rem; } }
      @media screen and (min-width: 1024px) {
        header .logo object {
          height: 1.9rem; } }
  header nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    margin: 0; }
    @media screen and (min-width: 768px) {
      header nav {
        display: flex;
        position: relative;
        width: auto;
        padding: 0;
        margin-right: 3rem;
        box-shadow: 0 3px 36px rgba(0, 0, 0, 0.16); }
        header nav:before, header nav:after {
          content: '';
          height: 100%;
          width: 4rem;
          background: #fff;
          position: absolute;
          top: 0;
          z-index: 0; }
        header nav:before {
          left: -1rem;
          transform: skewX(25deg);
          border-bottom-left-radius: 6px; }
        header nav:after {
          right: -1rem;
          transform: skewX(-25deg);
          border-bottom-right-radius: 6px; } }
    @media screen and (min-width: 1024px) {
      header nav:before {
        left: -2rem; }
      header nav:after {
        right: -2rem; } }
    header nav .mobile-btn-open, header nav .close-btn {
      display: flex;
      position: absolute;
      right: -1rem;
      top: 0;
      background: #fff;
      transform: skewX(25deg);
      height: 3rem;
      width: 5rem;
      border-bottom-left-radius: 10px;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.16); }
      @media screen and (min-width: 768px) {
        header nav .mobile-btn-open, header nav .close-btn {
          display: none; } }
      header nav .mobile-btn-open object, header nav .mobile-btn-open div, header nav .close-btn object, header nav .close-btn div {
        display: block;
        transform: skewX(-25deg);
        position: relative;
        left: 1.25rem;
        pointer-events: none; }
    header nav .close-btn {
      display: none;
      z-index: 10; }
      header nav .close-btn div {
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        color: #16C98D;
        position: relative;
        top: 1rem; }
    header nav ul {
      margin: 0;
      padding: 4rem 0 0;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: #fff;
      display: none; }
      @media screen and (min-width: 768px) {
        header nav ul {
          display: flex;
          position: relative;
          height: auto;
          width: auto;
          background: #fff;
          padding: 0rem;
          z-index: 2; } }
      header nav ul li {
        list-style: none;
        display: flex;
        align-items: center; }
        @media screen and (min-width: 768px) {
          header nav ul li {
            margin: 0 .5rem; } }
        header nav ul li:first-child a {
          border-top: 1px solid #eee; }
          @media screen and (min-width: 768px) {
            header nav ul li:first-child a {
              border: 0; } }
        header nav ul li a {
          display: block;
          font-size: 18px;
          text-transform: uppercase;
          font-weight: 500;
          text-decoration: none;
          text-align: center;
          border-bottom: 1px solid #eee;
          padding: 2rem 0;
          width: 100%;
          border-left: 3px solid rgba(22, 201, 141, 0);
          white-space: nowrap;
          transition: .25s color; }
          header nav ul li a:hover {
            color: #16C98D; }
          @media screen and (min-width: 768px) {
            header nav ul li a {
              border-bottom: 0;
              border-left: 0;
              border-top: 3px solid rgba(22, 201, 141, 0);
              padding: 1rem 8px;
              font-size: 14px;
              letter-spacing: .5px; } }
          @media screen and (min-width: 1024px) {
            header nav ul li a {
              padding: 1rem 1.25rem;
              letter-spacing: .75px; } }
          header nav ul li a:active {
            color: #16C98D; }
          header nav ul li a.selected {
            color: #16C98D;
            border-left: 3px solid #16c98d; }
            @media screen and (min-width: 768px) {
              header nav ul li a.selected {
                border-left: 0;
                border-top: 3px solid #16c98d; } }
          @media screen and (min-width: 1024px) {
            header nav ul li a.contact-us {
              border: 1px solid red;
              height: 2rem;
              display: flex;
              align-items: center;
              border: 3px solid #16C98D;
              background: #16C98D;
              padding: 0 1rem;
              color: #fff;
              transition: .3s color, .25s backgorund;
              margin-left: 1rem; }
              header nav ul li a.contact-us:hover, header nav ul li a.contact-us.selected {
                color: #16C98D;
                background: #fff; } }

footer {
  border-top: 1px solid #eee;
  position: relative;
  overflow: hidden; }
  @media screen and (min-width: 1024px) {
    footer {
      height: 12rem; } }
  footer:after {
    content: '';
    display: block;
    width: 28rem;
    height: 25rem;
    background: url("../img/recycle-symbol.svg") 50% 50% no-repeat;
    background-size: cover;
    position: absolute;
    left: 2rem;
    top: -4rem;
    z-index: 0;
    transform: rotate(20deg);
    opacity: .025; }
  @media screen and (min-width: 1024px) {
    footer .footer-contain {
      display: flex;
      justify-content: space-between;
      height: 100%;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1; } }
  footer div > ul {
    width: 100%;
    padding: 1rem 0; }
    @media screen and (min-width: 1024px) {
      footer div > ul {
        display: flex;
        padding: 0; } }
    footer div > ul li {
      list-style: none;
      text-align: center;
      white-space: nowrap; }
      @media screen and (min-width: 1024px) {
        footer div > ul li {
          margin-right: 1.5rem;
          text-align: left; } }
      footer div > ul li a {
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 500;
        padding: 1rem 0;
        display: block;
        font-size: 14px; }
        footer div > ul li a:hover {
          color: #16C98D; }
        @media screen and (min-width: 1024px) {
          footer div > ul li a {
            padding: 1rem; } }
    footer div > ul li ul {
      padding: 0; }
      footer div > ul li ul a {
        font-weight: 400;
        font-size: 13px;
        padding: .5rem;
        text-transform: none;
        letter-spacing: 1px;
        color: #4D4D4D; }
        @media screen and (min-width: 1024px) {
          footer div > ul li ul a {
            padding: .5rem 1rem; } }
  footer .any-questions {
    width: 100%;
    background: #16C98D;
    padding: 1.5rem; }
    @media screen and (min-width: 768px) {
      footer .any-questions {
        text-align: center; } }
    @media screen and (min-width: 1024px) {
      footer .any-questions {
        text-align: left;
        max-width: 17rem; } }
    footer .any-questions h6 {
      font-size: 32px;
      font-family: "Anton", sans-serif;
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: #fff;
      font-weight: 100;
      line-height: 36px; }
    footer .any-questions p {
      font-size: 28px;
      color: #fff; }
  footer .copy {
    text-align: center;
    padding: 1rem;
    font-size: 12px;
    color: #4D4D4D;
    opacity: .25; }
    @media screen and (min-width: 768px) {
      footer .copy {
        position: absolute;
        left: 0;
        bottom: 0; } }

.slanted-right-btn {
  display: inline-block;
  border: 2px solid #16C98D;
  padding: .5rem 1rem;
  transform: skewX(-25deg);
  margin-top: 2rem;
  margin-left: 10px;
  transition: .2s background;
  text-decoration: none; }
  .slanted-right-btn span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    transform: skewX(25deg);
    user-select: none;
    transition: .2s color; }
  .slanted-right-btn:hover {
    background: #16C98D; }
    .slanted-right-btn:hover span {
      color: #fff; }

.secondary-hero {
  position: relative;
  height: 14rem;
  width: 100%;
  padding-top: 6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media screen and (min-width: 768px) {
    .secondary-hero {
      height: 16rem; } }
  @media screen and (min-width: 1024px) {
    .secondary-hero {
      align-items: flex-start;
      justify-content: flex-start;
      padding-top: 6rem;
      height: 22rem; } }
  .secondary-hero .hero-text {
    position: relative;
    z-index: 2; }
    @media screen and (min-width: 1024px) {
      .secondary-hero .hero-text {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 2rem 3rem; } }
    @media screen and (min-width: 1260px) {
      .secondary-hero .hero-text {
        padding: 2rem 0; } }
    .secondary-hero .hero-text * {
      text-align: center; }
      @media screen and (min-width: 1024px) {
        .secondary-hero .hero-text * {
          text-align: left; } }
    .secondary-hero .hero-text h1 {
      color: #fff;
      background: #000;
      padding: 0 .5rem;
      font-size: 28px;
      display: inline-block;
      flex-direction: column;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .secondary-hero .hero-text h1 {
          font-size: 36px;
          padding: 0 .75rem; } }
      @media screen and (min-width: 1024px) {
        .secondary-hero .hero-text h1 {
          font-size: 48px; } }
  .secondary-hero .background-vid {
    position: absolute;
    top: -2rem;
    left: 0;
    height: 100%;
    width: 100vw;
    overflow: hidden;
    transform: skewY(4deg);
    z-index: 1; }
    @media screen and (min-width: 1024px) {
      .secondary-hero .background-vid {
        top: -4rem;
        height: 100%; } }
    .secondary-hero .background-vid:after {
      z-index: 2;
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #16c98d;
      background: -moz-linear-gradient(45deg, #16c98d 0%, #6fdaff 100%);
      background: -webkit-linear-gradient(45deg, #16c98d 0%, #6fdaff 100%);
      background: linear-gradient(45deg, #16c98d 0%, #6fdaff 100%);
      opacity: .5; }
    .secondary-hero .background-vid:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      opacity: .5;
      z-index: 2; }
    .secondary-hero .background-vid img {
      z-index: 1;
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      height: 110%;
      width: auto;
      transform: translateX(-50%) skewY(-4deg); }
      @media screen and (min-width: 768px) {
        .secondary-hero .background-vid img {
          height: auto;
          width: 100%; } }
      @media screen and (min-width: 1024px) {
        .secondary-hero .background-vid img {
          top: 3rem; } }
      @media screen and (min-width: 1260px) {
        .secondary-hero .background-vid img {
          top: auto;
          bottom: -8rem; } }

/*# sourceMappingURL=style.css.map */
