.hero--homepage {
  margin-bottom: -9.3rem;
}
.hero--homepage,
.hero__header {
  position: relative;
  width: 100%;
}
.hero__image {
  width: 100%;
  position: relative;
}
.hero__image::after {
  content: '';
  background: rgb(0,0,0) 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.5018207966780462) 0%, rgba(0,0,0,0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hero__image img {
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  max-height: 700px;
}
.hero__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1.5rem;
  text-align: center;
}
.hero__title h1 {
  color: var(--neutral-pure);
}
@media all and (min-width: 700px) {
  .hero--homepage {
    margin-bottom: -6.8rem;
  }
}
@media all and (min-width: 900px) {
  .hero--homepage {
    margin-bottom: -5.3rem;
  }
}
@media all and (min-width: 1000px) {
  .hero--homepage {
    display: grid;
    justify-items: center;
    margin-bottom: -5.8rem;
  }
  .hero__title {
    padding-left: 7%;
  }
}
@media all and (min-width: 1300px) {
  .hero__title {
    padding-left: 15.3%;
  }
}


/**
 * QUICK ACCESS
 */

 .hero__quick-access {
  background-color: var(--primary);
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateY(-50%);
}
.hero__quick-access-title p {
  font-size: 2.125rem;
  color: var(--neutral-pure);
  /* font-family: ; */
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}
.hero__quick-access-links {
  display: grid;
  row-gap: .5rem;
}
.hero__quick-access-links a {
  color: var(--neutral-pure);
  font-size: 1.125rem;
}
.hero__quick-access-links .link {
  display: flex;
  gap: 0.625rem;
  border-bottom: 1px rgba(255, 255, 255, 0.70) solid;
  padding-bottom: .5rem;
}
.hero__quick-access-links .link::after {
  content: '';
  background-image: url('../../images/icon/arrow_right.svg');
  width: 24px;
  height: 24px;
  display: block;
  margin-left: auto;
  transition: all ease 150ms;
}
.hero__quick-access-links .link:hover::after {
  content: '';
  background-image: url('../../images/icon/arrow_right.svg');
  width: 24px;
  height: 24px;
  display: block;
  margin-left: auto;
  transform: translateX(-10px);
}
.hero__quick-access-links .link__icon {
  padding-top: 3px;
}
@media all and (min-width: 700px) {
  .hero__quick-access {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .hero__quick-access-title {
    max-width: 180px;
    width: 100%;
  }
  .hero__quick-access-title p {
    font-size: 2.5rem;
  }
}
@media all and (min-width: 900px) {
  .hero__quick-access-links {
    grid-template-columns: repeat(2, auto);
    column-gap: 1.7rem;
  }
}
@media all and (min-width: 1000px ) {
  .hero__quick-access {
    padding: 2rem 3rem;
    justify-content: center;
    max-width: 1315px;
    width: 100%;
  }
  .hero__quick-access-title {
    max-width: 231px;
    width: 100%;
  }
  .hero__quick-access-links {
    width: 100%;
    column-gap: 2.5rem;
  }
}
