/* Hero */
h1 {
  font-size: 72px;
}

.hero-alien {
  height: 180px;
}

.hero-alien-blue {
  transform: scaleX(-1);
  height: 140px;
}

.hero-alien-pink {
  transform: scaleX(-1);
}

.hero-alien-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 1920px;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.intro-container {
  max-width: 500px;

  & p {
    font-size: 20px;
  }
}

.circle-child {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 250px;
}

.team-heading {
  size: var(--heading-size);
  color: var(--colour-teal);
}

.team-section {
  height: calc(var(--section-height) * 1.5);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gutter-medium);

  & img {
    height: calc(var(--section-height) / 4);
  }
}

.cta {
  position: relative;
}

.cta-bubble {
  width: 400px;
}

.cta-arrow {
  position: absolute;
  top: -45%;
  left: 50%;
}

.cta-header {
  position: relative;
  z-index: 1;

  & > h2 {
    position: absolute;
    color: var(--colour-orange);
    top: 45%;
    left: 50%;
    transform: translate(-53%, -50%);
    text-align: center;

    font-weight: 400;
    font-size: var(--font-size-heading);
  }

  & > h3 {
    position: absolute;
    color: var(--colour-orange);
    top: 70%;
    left: 50%;
    transform: translate(-53%, -50%);
    text-align: center;

    font-size: var(--font-size-heading);
  }
}

.cta-alien {
  width: 150px;
  position: absolute;
  top: 75%;
  left: calc(100% - 25px);
}

.cta-container {
  gap: 144px;
}

.persona {
  height: 400px;
  width: 300px;
}

@media screen and (width <=1024px) {
  .hero-alien {
    height: 100px;
  }

  .hero-alien-blue {
    height: 80px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-section {
    /* Custom for cards */
    height: calc(var(--section-height) * 3.75);
  }

  .cta-arrow {
    display: none;
    /* position: absolute;
    top: unset;
    left: 0;
    bottom: 0;
    transform: scale(1, -1) translate(-50%, -50%) rotate(-70deg); */
  }

  .cta-bubble {
    width: 300px;
  }

  .cta-alien {
    position: relative;
    top: unset;
    left: unset;
  }

  .bio-container {
    & > div {
      padding: unset;

      & > div {
        padding: unset;
      }
    }
  }

  .cta-container {
    gap: unset;
  }
}