/************************/
/* HEADER */
/************************/
.header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f4ecf7;

  /* Sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo-name:link,
.logo-name:visited {
  text-decoration: none;
  color: #8e44ad;
  font-size: 1.8rem;
  font-weight: 500;
}

.logo-name:hover,
.logo-name:active {
  color: #803d9c;
}

/************************/
/* NAVIGATION */
/************************/
.main-nav-list {
  list-style: none;
  display: flex;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #8e44ad;
}

/************************/
/* HERO */
/************************/
.section-hero {
  background-color: #f4ecf7;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9.6rem;
  align-items: center;
}

.heading-primary span {
  color: #8e44ad;
}

.hero-description {
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img-box {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: auto;
}

.hero-img-box::before,
.hero-img-box::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 15px 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-img-box::before {
  background-color: #ddc7e6;
  width: 45%;
  padding-bottom: 45%;
  z-index: 2;
}

.hero-img-box::after {
  width: 60%;
  padding-bottom: 60%;
  background-color: #e8daef;
  z-index: 1;
}

.hero-img {
  width: 50%;
  z-index: 3;
}
