@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,700;1,300&family=Merriweather:wght@300;400&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: min(max(1rem, 4vw), 18px);
  scroll-behavior: smooth;
}

body {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 300;
  color: #202428;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-family: "Merriweather", serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.side-pad {
  padding-left: 1em;
  padding-right: 1em;
}

.center-text {
  text-align: center;
}

.section-heading {
  font-size: 1.75em;
  font-weight: normal;
  margin: 2em 0;
}

.rounded-button {
  display: inline-block;
  padding: 1em;
  font-size: 0.75em;
  font-weight: bold;
  text-transform: uppercase;
  color: #f1f1f1;
  background: #f4623a;
  border-radius: 10px;
  margin: 4em 0;
}

header {
  position: absolute;
  width: 100%;
  height: 50px;
  display: flex;
}

.header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header-container h2 {
  color: #f1f1f1;
  font-size: 1.25em;
  font-weight: normal;
}
.header-container .floating {
  background: #f1f1f1;
}

section {
  padding: 1px 0;
}

.landing {
  width: 100%;
  height: 100vh;
  color: #f1f1f1;
  background: linear-gradient(to bottom, rgba(92, 77, 66, 0.6) 0%, rgba(92, 77, 66, 0.8) 100%), url(../img/bg-landing.jpg) center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing h1 {
  font-size: 2.5em;
  text-transform: uppercase;
}

.overview {
  background: white;
  color: #202428;
}

.overview-card-stack {
  display: grid;
  grid-gap: 3em;
  margin-bottom: 3.5em;
}

.overview-card {
  text-align: center;
}
.overview-card i {
  color: #f4623a;
  font-size: 4em;
  margin: 0.25em 0;
}
.overview-card h3 {
  font-size: 1.25em;
  font-weight: normal;
  margin: 0.5em 0;
}
.overview-card p {
  font-size: 0.9em;
  color: #333a40;
}

.contact {
  color: #f1f1f1;
  background: linear-gradient(to bottom, rgba(92, 77, 66, 0.75) 0%, rgba(92, 77, 66, 0.75) 100%), url(../img/bg-contact.jpg) center;
  background-size: cover;
}

.contact-card-stack {
  display: grid;
  grid-gap: 2em;
  padding: 3em 0;
}

.contact-card i {
  color: #f4623a;
  font-size: 4em;
  margin: 0.25em 0;
}
.contact-card h3 {
  font-size: 1em;
}

footer {
  color: #f1f1f1;
  background: #f4623a;
}

.footer-container {
  display: grid;
  grid-template-areas: "nglcc top" "copy copy";
  align-items: center;
  grid-gap: 1em;
  padding: 1em 0.5em;
}
.footer-container i {
  font-size: 1.5em;
  display: block;
}

.footer-nglcc {
  grid-area: nglcc;
}
.footer-nglcc img {
  max-width: 125px;
  height: auto;
}

.footer-top {
  grid-area: top;
}

.footer-copy {
  grid-area: copy;
  font-size: 0.75em;
  font-weight: lighter;
}

@media (min-width: 600px) {
  .overview-card-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 801px) {
  .overview-card-stack {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-areas: "nglcc copy top";
  }
  .footer-container .footer-nglcc {
    justify-self: start;
  }
  .footer-container .footer-top {
    justify-self: end;
  }
}

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