:root {
  --site-header-height: 159px;
}
@media screen and (max-width: 767px) {
  :root {
    --site-header-height: 5.3rem ;
  }
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  color: #242424;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.8rem;
  }
}

p {
  margin: 0;
}

html {
  height: 100%;
  background-color: #FAFAFA;
}

body {
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.hero {
  height: 100vh;
  width: 100%;
  padding: 1rem;
}
.hero__container {
  justify-content: center;
  flex-direction: column;
  gap: 6rem;
}
.hero__image {
  margin: 0 2rem;
  width: 100%;
  max-height: 65vh;
}
.hero__text p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .hero__text p {
    font-size: 1.2rem;
  }
}

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