
/* OFFBOARDING */
.offboarding__top {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.offboarding__top > div {
  width: 50%;
  min-height: 450px;
}

.offboarding__winner {
  background-color: var(--pink);
  position: relative;
}

.offboarding__winner p {
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 40px;
}

.offboarding__stickers {
  position: relative;
  width: 170px;
  margin: 100px auto;
}

.offboarding__avatar {
  width: 100%;
  height: auto;
  display: block;
}

.offboarding__winner-sticker {
  position: absolute;
  right: -185px;
  bottom: -45px;
}

.offboarding__play-again {
  background-color: var(--dark-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

#offboarding button {
  font-family: 'rocgrotesk';
  font-size: 20px;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 10px 0;
  width: 255px;
  border-radius: 3px;
  margin-bottom: 20px;
}

#offboarding button:hover {
  opacity: 0.9;
}

.offboarding__navy-button {
  background-color: var(--navy);
  color: var(--white);
}

.offboarding__pink-button {
  background-color: var(--light-pink);
  color: var(--navy);
}

.offboarding__play-again a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 40px;
}

.offboarding__play-again a:hover {
  text-decoration: none;
}

#offboarding__intro {
  background-color: var(--navy);
  padding: 100px 0;
}

#offboarding__intro h2 {
  width: 90%;
  max-width: 1030px;
  color: var(--white);
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
  margin: 0 auto 80px;
  text-align: center;
}

#offboarding__intro p {
  width: 90%;
  max-width: 980px;
  color: var(--white);
  font-size: 30px;
  line-height: 38px;
  margin: 0 auto;
  text-align: center;
}

#offboarding__rounds {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.offboarding__card {
  width: 15%;
  height: 200px;
  background-color: var(--light-pink);
  border-radius: 15px;
  margin: 0 10px 55px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  font-size: 16px;
  color: var(--navy);
}

#offboarding__outro {
  background-color: var(--navy);
  height: 550px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#offboarding__outro h2 {
  width: 50%;
  max-width: 650px;
  color: var(--white);
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
  margin: 60px auto 80px;
  text-align: center;
}

#offboarding__stickers-left {
  position: absolute;
  bottom: -30px;
  left: -40px;
}

#offboarding__stickers-right {
  position: absolute;
  top: 50px;
  right: -50px;
}

@media only screen and (max-width: 1100px) {
  .offboarding__top > div {
    min-height: 410px;
  }

  .offboarding__stickers {
    width: 120px;
  }

  .offboarding__winner-sticker {
    width: 190px;
    right: -105px;
    bottom: -40px;
  }

  #offboarding__intro h2 {
    font-size: 36px;
    line-height: 45px;
  }

  #offboarding__intro p {
    font-size: 26px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 700px) {
  .offboarding__top {
    flex-direction: column;
  }

  .offboarding__top > div {
    width: 100%;
    min-height: 300px;
  }

  .offboarding__stickers {
    width: 100px;
    margin: 60px auto;
  }

  .offboarding__winner-sticker {
    width: 160px;
    right: -100px;
    bottom: -27px;
  }

  .offboarding__winner p {
    font-size: 22px;
  }

  #offboarding__intro {
    padding: 40px 0;
  }

  #offboarding__intro h2 {
    font-size: 22px;
    line-height: 29px;
    margin: 0 auto 25px
  }

  #offboarding__intro p {
    font-size: 14px;
    line-height: 24px;
  }

   #offboarding__outro {
    height: 450px;
  }

  #offboarding__outro h2 {
    width: 80%;
    max-width: 650px;
    font-size: 22px;
    line-height: 29px;
    margin: 40px auto;
  }

  #offboarding__stickers-left {
    bottom: -30px;
    left: -40px;
    width: 150px;
  }

  #offboarding__stickers-right {
    width: 150px;
    top: 10px;
    right: -50px;
  }
}

/* RESOURCE SECTION */
.resource-section {
  width: 100%;
  padding: 100px 0;
}

.resource-section.green {
  background-color: var(--light-green);
}

.resource-section.green .resource-section__explore div {
  background-color:var(--dark-green);
}

.resource-section.pink {
  background-color: var(--light-pink);
}

.resource-section.pink .resource-section__explore div {
  background-color:var(--pink);
}

.resource-section.forest {
  background-color: var(--light-forest);
}

.resource-section.forest .resource-section__explore div {
  background-color:var(--forest);
}

.resource-section.red {
  background-color: var(--light-red);
}

.resource-section.red .resource-section__explore div {
  background-color:var(--red);
}

.resource-section__info {
  width: 85%;
  max-width: 1170px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 120px;
}

.resource-section__text {
  width: 40%;
  color: var(--navy);
}

.resource-section__text h3 {
  font-size: 40px;
  line-height: 49px;
  font-weight: 700;
  margin-bottom: 25px;
}

.resource-section__text p {
  font-size: 20px;
  line-height: 27px;
}

.resource-section__explore {
  width: 40%;
  position: relative;
}

.resource-section__explore img {
  position: absolute;
  top: -50px;
  left: -50px;
}

.resource-section__explore div {
  color: var(--white);
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  padding: 20px;
  border-radius: 15px;
}

.resource-section__cards {
  width: 85%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.resource-section__card {
  width: 18%;
  background-color: var(--white);
  border-radius: 15px;
  padding: 20px 30px 40px;
  margin: 0 4% 40px;
  position: relative;
  text-align: center;
}

.resource-section__question {
  color: var(--navy);
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 40px;
}

.resource-section__card h4 {
  color: var(--navy);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 25px;
}

.resource-section__answer {
  color: var(--pink);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
}

.resource-section__avatar {
  width: 60px;
  height: auto;
  position: absolute;
  left: -20px;
  bottom: 35%;
}

.resource-section__sticker {
  max-width: 65px;
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.resource-section__no-cards {
  color: var(--navy);
  font-size: 30px;
  line-height: 38px;
}

@media only screen and (max-width: 700px) {
  .resource-section {
    padding: 40px 0;
  }

  .resource-section__info {
    width: 85%;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto 40px;
  }

  .resource-section__text {
    width: 100%;
    margin-bottom: 40px;
  }

  .resource-section__text h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .resource-section__text p {
    font-size: 14px;
    line-height: 21px;
  }

  .resource-section__explore {
    width: 100%;
  }

  .resource-section__explore div {
    font-size: 14px;
    line-height: 19px;
  }

  .resource-section__explore img {
    width: 175px;
    position: absolute;
    top: -30px;
    left: -20px;
  }

  .resource-section__cards {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .resource-section__card {
    width: 160px;
  }

  .resource-section__no-cards {
    font-size: 23px;
    line-height: 31px;
    text-align: center;
  }
}