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

* {
  box-sizing: border-box;
}

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

p {
  margin: 0;
}

html {
  height: 100%;
}

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

main {
  color: white;
}

.container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
  padding: 0 1rem;
}
@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;
  }
}

.site-header {
  height: var(--site-header-height);
  position: relative;
  width: 100%;
  background: var(--header-bg);
  z-index: 1000;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.logo-container {
  float: left;
  position: relative;
  height: 4.3rem;
  width: 17.2rem;
}
@media screen and (max-width: 767px) {
  .logo-container {
    height: 1.5rem;
  }
}

.logo {
  height: 100%;
}

.hero {
  height: 65vh;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hero__text-container {
    align-items: end;
  }
}
.hero__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  position: absolute;
  z-index: -2;
}
.hero__text {
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 3rem;
    height: 40%;
    max-width: 100%;
  }
}
.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;
  }
}
.hero__jumbotron {
  min-height: 300px;
  overflow: hidden;
  position: relative;
  clip-path: ellipse(175% 60% at 50% 40%);
  --jumbotron-size: 200vw;
  --jumbotron-accent-offset-x: 4rem;
  --jumbotron-accent-offset-y: 2rem;
  --jumbotron-translate-x: 28%;
  --jumbotron-translate-y: 35%;
}
@media screen and (max-width: 767px) {
  .hero__jumbotron {
    min-height: calc(90vh - var(--site-header-height));
    --jumbotron-size: 350vw;
    --jumbotron-accent-offset-x: -2rem;
    --jumbotron-accent-offset-y: -4rem;
    --jumbotron-translate-x: -25%;
    --jumbotron-translate-y: 0%;
  }
}
@media screen and (min-width: 1200px) {
  .hero__jumbotron {
    --jumbotron-translate-x: 25%;
  }
}
.hero__jumbotron::before, .hero__jumbotron::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  width: var(--jumbotron-size);
  height: var(--jumbotron-size);
  z-index: -1;
  bottom: 50%;
}
.hero__jumbotron::before {
  box-shadow: 0px 0px 0px 1000vh rgba(8, 107, 52, 0.9);
  transform: translateX(var(--jumbotron-translate-x)) translateY(var(--jumbotron-translate-y));
}
.hero__jumbotron::after {
  box-shadow: 0px 0px 0px 1000vh rgba(216, 233, 223, 0.1);
  transform: translateX(calc(var(--jumbotron-translate-x) - var(--jumbotron-accent-offset-x))) translateY(calc(var(--jumbotron-translate-y) - var(--jumbotron-accent-offset-y)));
}
