body {
  color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.lp-yeti {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  background-color: #005580;
  background-image: url('../images/bg-bottom.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-head {
  z-index: 1;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 24rem;
  display: flex;
  position: relative;
}

.h1 {
  color: #ff8622;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  background-color: #ff8622;
  background-image: linear-gradient(#ff8622, #d16323);
  border-radius: .5rem;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  text-decoration: none;
  display: flex;
}

.buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.bg-top {
  z-index: 0;
  object-fit: cover;
  align-self: flex-start;
  width: 120vw;
  max-width: none;
  margin-top: -8%;
  position: absolute;
  inset: 0% 0% auto;
}

.mascot {
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 991px) {
  .lp-yeti {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .lp-yeti {
    flex-flow: column;
    height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-head {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  .lp-yeti {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}


