:root {
  --white: white;
  --black: black;
}

body {
  color: #e31b00;
  font-family: Nunito Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 68px;
}

.hero-stack {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 30px;
  display: flex;
  position: absolute;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two {
  max-width: 750px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.hero-image {
  width: 100%;
  margin-top: 50px;
}

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

@media screen and (max-width: 767px) {
  h1 {
    font-size: 31px;
    line-height: 50px;
  }

  .hero-stack {
    padding: 60px 15px;
  }

  .margin-bottom-24px {
    font-size: 14px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 16px;
    line-height: 36px;
  }

  .container {
    max-width: none;
  }

  .margin-bottom-24px {
    font-size: 12px;
    line-height: 15px;
  }
}


