/**
 * Hero
 */

.hero {
  text-align: center;
  position: relative;
}
.hero__content {
  margin-top: -10rem;
  position: relative;
  z-index: 2;
}
.hero__wrapper {
  width: 95%;
  max-width: 732px;
  background-color: #fff;
  padding: 2rem 0 0 0;
  margin: 0 auto;
  box-shadow: 0px -26px 30px rgba(0, 0, 0, 0.1);
}
.hero h1,
.hero h2 {
  font-size: var(--heading-size);
  margin: 0;
}
.hero .breadcrumb {
  font-size: var(--paragraph-size-small);
  color: #666666;
  text-align: center;
}
.hero .breadcrumb a{
  color: #666666;
}
.hero .breadcrumb li::before {
  content: ">";
}
.hero .breadcrumb li:first-child::before {
  content: none;
}
.hero__text {
  padding: 0.5rem 2rem;
}
.hero__table-of-content {
  margin: 1rem 0;
}
@media all and (min-width: 768px) {
  .hero {
    max-width: 1400px;
  	padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    background-color: var(--brand-secondary-light-color);
  }
  .hero__image {
    width: 50%;
  }
  .hero__content {
    margin-top: 0;
    width: 50%;
    max-width: 550px;
    padding-right: 2rem;
  }
  .hero__wrapper {
    width: 100%;
    max-width: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  .hero .breadcrumb {
    text-align: left;
  }
  .hero__text {
    padding: 0.5rem 0;
  }
}