:root {
  --brandGreen: #363d30;
  --white: #ffffff;
  --warning: #ff0000;
  --grey: #787878;
  --lightGrey: #E3D7CA;
  --background: #F2F2F2;
  --text: #322E29;
  --textSecondary: #A3A3A3;
  --tab: #D6D6D6;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  background: var(--background);

  font-family: "Inter", sans-serif;
}

.inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.main-header {
  height: 5rem;
  padding: 1rem;

  background: var(--brandGreen);
}

.main-header h1 {
  margin: 0;

  font-size: 2rem;
}

.main-header h1 img {
  height: 3rem;
}

.hero {
  padding: 6rem 0 2rem;

  background: var(--grey) no-repeat center center / cover;

  color: white;
}

.hero__text {
  display: inline-block;
  padding: .5rem 3rem .75rem 1rem;

  background: rgba(0, 0, 0, 0.6);
}

.hero h1 {
  margin-top: 0;
  margin-bottom: .5rem;

  font-size: 1.5rem;
}

.hero h2 {
  margin: 0;

  font-size: 1rem;
  font-weight: 500;
}

.content-section {
  padding: 2rem 1rem;
}

.content-section h1 {
  margin-top: 0;

  text-align: center;
}

.content-section .inner-container {
  max-width: 800px;
}

.features {
  background: white;
}

.main-footer {
  padding: 1rem;
  background: var(--background); /*white;*/
}

.main-footer .inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.main-footer img {
  width: 2rem;
}

.footer-nav {
  margin-top: 1rem;

  a {
    color: var(--brandGreen);
    text-decoration: none;
    margin-right: .5rem;
  }

  a:hover {
    text-decoration: underline;
  }
}


@media (min-width: 600px) {
  .hero {
    padding: 8rem 0 3rem;
  }

  .hero__text {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    padding-right: 8rem;
  }

  .hero h1 {
    margin-bottom: 1rem;

    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .features {
    padding: 4rem 1rem;
  }

  .features li {
    padding: .25rem 0;
  }
}


@media (min-width: 768px) {
  .hero {
    padding-top: 18rem;
  }

  .hero__text {
    padding-right: 12rem;
  }
}


@media (min-width: 1200px) {
  .hero {
    position: relative;
    padding-top: 38rem;
  }

  .hero__text {
    position: absolute;
    left: 0;
    bottom: 4rem;
  }
}


@media (min-width: 1232px) {
  .hero__text {
    padding-left: calc(((100% - 1200px) / 2));
  }
}
