/* Hero */

.hero {
  position: relative;
  margin: 3rem 0;
  padding: 0 3rem;
}

.hero-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.hero-smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero-smoke img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 6rem 6rem;
  opacity: 50%;
}

/* Life */

.life {
  position: relative;
  margin: 12.5rem 0;
  padding: 0 3rem;
  padding-top: 9rem; 
}

h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: lighter;
  text-transform: uppercase;
  color: var(--color-blue);
}

p {
  font-size: 26px;
  font-weight: lighter;
  font-family: var(--font-body);
  color: white;
  line-height: 40px;
}

.life-title {
  position: absolute;
  right: 3rem;
  top: 0;
}

.life-container {
  display: flex;
  gap: 2rem
}

.life-left, .life-right {
  width: 56rem;
}

.life-left img {
  display: block;       
  margin: 2rem auto 0;
  height: 240px;
  width: auto;
}

.life-right img {
  height: auto;
  width: 100%;
  border-radius: var(--border-radius);
}

/* Career */

.career {
  position: relative;
  margin-bottom: 12.5rem;
  padding: 0 3rem;
  padding-top: 9rem; 
}

.career-title {
  position: absolute;
  left: 3rem;
  top: 0;
}

.career-container {
  display: flex;
  gap: 2rem
}

.career-left, .career-right {
  width: 56rem;
}

.career-left img {
  height: auto;
  width: 100%;
  border-radius: var(--border-radius);
}

/* Legacy */

.legacy {
  position: relative;
  margin-bottom: 8rem;
  padding: 0 18rem;
  padding-top: 9rem; 
}

.legacy-title {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}

.legacy-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.legacy-up {
  text-align: center;
}






