.hero {
  background-image: linear-gradient(to bottom, transparent 80%, rgb(0, 0, 0)), url(/img/index/index-hero.png);
}

.hero .message {
  display: grid;
  grid-template-rows: 20% 50% 30%;
  place-items: center;
  height: 100%;
}

.hero .message img {
  width: 350px;
  height: auto;
}

.hero .message p {
  font-size: 1.2rem;
  width: 60%;
  margin: auto;
}

#current-project {
  border-bottom: 1px solid var(--prim-color);
  padding: 6rem 0;
}

#citation {
  line-height: 1.6rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--prim-color);
  padding: 6rem 0;
}

#citation p {
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
}

/* needed for appear like effect */
#citation span {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: transparent;

  background: linear-gradient(180deg,
      rgb(255, 255, 255) 0%,
      rgb(255, 255, 255) 55%,
      rgb(0, 0, 0) 65%,
      rgb(0, 0, 0) 90%,
      rgb(0, 0, 0) 100%);
  background-size: 100% 1000%;
  background-position: 0 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: background-position 0.1s linear;
}

#missionAndVision {
  padding: 6rem 0;
  border-bottom: 1px solid var(--prim-color);
}

#missionAndVision>* {
  margin-bottom: 5rem;
}

.title-attached-paragraph h2 {
  font-size: 3.5rem;
  display: contents;
  line-height: 1.4rem;
}

.title-attached-paragraph p {
  display: inline;
}

.ctas {
  margin-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 7rem;
  row-gap: 3rem;
}

.ctas>a.btnlink {
  width: 300px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero .message p {
    font-size: 1.5rem;
    width: 90%;
    margin: auto;
  }

  .hero .message {
    grid-template-rows: 15% 50% 35%;
  }
}

@media (max-width: 600px) {
  .hero .message img {
    width: 250px;
    height: auto;
  }

  .hero .message h1 {
    font-size: 3rem;
  }

  .hero .message p {
    font-size: 1.1rem;
  }

  #citation p {
    font-size: 2rem;
  }

  .title-attached-paragraph p {
    font-size: 1.5rem;
  }
}