/**
 * Hero
 */

.hero {
  background-color: var(--color-primary-xlight);
}
.hero__header {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  text-align: center;
}
.hero__header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__content h1 {
  line-height: 150%;
  font-size: 2rem;
  margin: 0;
}
.hero__content h1 strong {
  font-size: 2.5rem;
}
.hero__content p {
  margin: 0.25rem 0;
  font-weight: 300;
  font-size: 1.250rem;
  line-height: normal;
}
.hero__content a {
  display: block;
  margin: 1rem 0;
  padding: 1rem 2rem;
  border-radius: 40px;
  border: 1px solid var(--color-white);
  font-weight: 700;
  line-height: normal;
  color: var(--color-white);
  transition: 0.1s;
  max-width: max-content;
}
.hero__content a:hover {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  text-decoration: none;
}
.hero__controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero__controls button {
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.40);
  width: 40px;
  height: 40px;
  text-indent: -999px;
  overflow: hidden;
  background-image: url("../../images/hero/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}
.hero__controls button[data-controls="next"] {
  transform: rotate(180deg);
}
@media all and (min-width: 750px) {
  .hero__controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero__controls button[data-controls="next"] {
    transform: translateY(-50%) rotate(180deg);
    right: 50px;
  }
  .hero__controls button[data-controls="prev"] {
    left: 50px;
  }
}
@media all and (min-width: 1000px) {
  .hero__content h1 {
    line-height: 140%;
    font-size: 2.75rem;
  }
  .hero__content h1 strong {
    font-size: 3.5rem;
  }
  .hero__content p {
    font-size: 1.75rem;
  }
  .hero__controls button {
    background-size: 24px 24px;
    width: 68px;
    height: 68px;
  }
}
@media all and (min-width: 1300px) {
  .hero__content h1 {
    font-size: 4rem;
  }
  .hero__content h1 strong {
    font-size: 5rem;
  }
  .hero__content p {
    font-size: 2rem;
  }
}

/**
 * Quick Access
 */

.hero__quick-access {
  background-color: var(--color-primary-dark);
  padding: 2rem;
}
.hero__quick-access-title {
  color: var(--color-white);
  font-size: 2rem;
  margin: 0 0 2rem 1.5rem;
  font-weight: 700;
}
.quick-link-item {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.615rem;
}
.quick-link-item::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.quick-link-item::after {
  background-image: url("../../images/footer/arrow.svg");
  margin-left: auto;
  transition: 0.1s;
}
.quick-link-item:hover {
  text-decoration: none;
}
.quick-link-item:hover:after {
  transform: translateX(5px);
}
@media all and (min-width: 700px) {
  .hero__quick-access-items {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 0.5rem));
    gap: 1rem;
  }
}
@media all and (min-width: 750px) {
  .hero__quick-access {
    position: relative;
    z-index: 5;
    width: 90%;
    margin: 0 auto;
    max-width: 1333px;
    border-radius: 5px;
    margin-top: -10%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
}
@media all and (min-width: 950px) {
  .hero__quick-access {
    padding: 2rem 4rem;
  }
  .hero__quick-access-items {
    grid-template-columns: repeat(2, calc(50% - 1rem));
    gap: 1rem 2rem;
  }
}
@media all and (min-width: 1250px) {
  .hero__quick-access {
    margin-top: -120px;
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .hero__quick-access-title {
    margin: 0 4rem 0 2rem;
    max-width: 175px;
    font-size: 3rem;
  }
  .hero__quick-access-items {
    flex: 1;
    margin-right: 4rem;
  }
}
