:root {
  --brand--light-grey: #e9eced;
  --brand--dark-green: #003839;
  --brand--white: white;
  --brand--yellow: #fbba46;
  --brand--lightblue: white;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--brand--light-grey);
  color: var(--brand--dark-green);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Funnel Display, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 44px;
}

p {
  color: var(--brand--dark-green);
  margin-bottom: 10px;
}

a {
  color: var(--brand--dark-green);
  text-decoration: none;
}

.body {
  background-color: var(--brand--light-grey);
}

.container {
  width: 100%;
  max-width: 100rem;
}

.top {
  background-color: var(--brand--dark-green);
  color: var(--brand--white);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 37.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: flex;
}

.row {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  position: relative;
}

.col {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  max-width: 40rem;
  display: flex;
}

.logo {
  width: 100%;
  max-width: 25rem;
}

.bottom {
  color: var(--brand--white);
  align-items: flex-start;
  min-height: 37.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: flex;
}

.btn {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--brand--yellow);
  padding: .75rem;
  font-family: Funnel Display, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.btn:hover {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--brand--white);
}

.image {
  width: 747px;
  height: auto;
  position: absolute;
  bottom: -8rem;
  right: -8rem;
}

@media screen and (max-width: 991px) {
  .top {
    grid-column-gap: 3.5rem;
    grid-row-gap: 3.5rem;
    align-items: flex-start;
  }

  .col {
    width: 100%;
  }

  .image {
    width: 100%;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}


