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

.hero-section {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.hero-container {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-height: 100dvh;
  display: flex;
}

.body {
  color: #fff;
  background-color: #ee3435;
  font-family: Montserrat, sans-serif;
}

.tag {
  text-transform: uppercase;
  background-color: #000;
  padding: 2vh;
  font-size: 2.5vh;
  font-weight: 500;
  line-height: 100%;
}

.button {
  text-transform: uppercase;
  background-color: #8cc400;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 1vh;
  padding: 2vh;
  font-size: 2.5vh;
  font-weight: 600;
  line-height: 120%;
  display: flex;
}

.h1 {
  text-transform: uppercase;
  margin-top: 2.5vh;
  margin-bottom: 2.5vh;
  font-size: 7vh;
  line-height: 120%;
}

.image-wrapper {
  background-image: url('../images/Bg-1.png');
  background-size: cover;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  min-height: 220px;
  display: flex;
  position: relative;
}

.image-wrapper.hide {
  display: none;
}

.image {
  flex: 1;
  align-self: center;
  height: 100%;
}

.grad {
  background-image: linear-gradient(rgba(238, 52, 53, 0), #ee3435);
  height: 12vh;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.content-wrapper {
  flex-flow: column;
  order: 0;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  padding: 3vh;
  display: flex;
}

.image-2 {
  flex: 1;
  align-self: baseline;
}

.image-3 {
  flex: 0 auto;
  align-self: center;
}

@media screen and (max-width: 479px) {
  .tag {
    padding: 3vw;
    font-size: 5.5vw;
  }

  .button {
    margin-top: 2vw;
    padding: 4vw;
    font-size: 5.5vw;
  }

  .h1 {
    margin-top: 4vw;
    margin-bottom: 4vw;
    font-size: 11vw;
  }

  .image-wrapper {
    background-position: 50% 0;
  }

  .grad {
    height: 30%;
  }

  .content-wrapper {
    padding: 2vh;
  }
}


