section:first-of-type {
  box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
}

.circle-purple {
  width: 500px;
  height: 500px;
  border-radius: 500px;
  background: var(--colour-purple);

  & p {
    font-size: var(--font-size-subheading);
    text-align: center;
    max-width: 300px;
  }
}

.cta {
  max-width: 532px;
  text-align: center;


  & > h2,
  & > h3 {
    font-size: var(--font-size-subheading);
    font-weight: 400;
  }
}

.cta-header {
  position: relative;

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

.video-container {
  overflow: hidden;
  border-radius: var(--gutter-large);
  border: 4px solid var(--colour-white);
}

.statistic-container {
  & h2 {
    text-align: center;
  }

  & h3 {
    font-size: 96px;
  }

  & h4 {
    font-size: var(--font-size-subheading);
    font-weight: 400;
    max-width: 500px;
    text-align: center;
  }
}

.family {
  width: 500px;
}

.alien-container {
  & h2 {
    text-align: center;
  }

  & h3 {
    font-size: var(--font-size-subheading);
    font-weight: 400;
    text-align: center;
    margin: var(--gutter-small);
  }
}

.alien {
  width: 150px;
  position: absolute;
}


.alien-green {
  position: absolute;
  top: 0;
  left: 0;
  rotate: 135deg;
  transform: translate(5%, 5%);
  /* transform: translate(-130%, 75%); */
}

.alien-pink {
  position: absolute;
  top: 0;
  right: 0;
  rotate: -135deg;
  transform: translate(-20%, 10%);
}

.alien-purple {
  position: absolute;
  bottom: 0;
  left: 33%;
  /* transform: translate(80%, 75%); */
}

.alien-blue {
  position: absolute;
  bottom: 0;
  right: 33%;
  rotate: 4deg;
  /* transform: translate(100%, 85%); */
}

.phone-preview {
  height: 400px;
}

.arrow-left {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-75%, 25%);
  scale: 0.8;
}

.arrow-right {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(75%, 25%);
  scale: 0.8;
}

.icon-container {
  position: relative;
  height: 144px;
  width: 144px;
  border-radius: 144px;

  & img {
    position: absolute;
    height: 96px;
    width: 96px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.app-badges-cta {
  display: flex;
  flex-direction: row;

  & > a {
    cursor: pointer;    
  }
}



@media screen and (width <=1024px) {
  /* Bad CSS Hack to force content to flow to start */
  section:first-of-type {
    justify-content: start;
  }

  .statistic-container {
    height: calc(var(--section-height) * 1.25);

    & h3,
    & h4 {
      color: var(--colour-purple)
    }

    & h3 {
      font-size: var(--font-size-heading);
    }
  }

  .talking-container {
    height: calc(var(--section-height) * 1.25);
    & > div {
      gap: unset;
    }
  }

  .circle-purple {
    width: 300px;
    height: 300px;

    & h3 {
      font-size: var(--font-size-heading);
      color: var(--colour-white) !important;
    }

    & p {
      font-size: 14px;
      max-width: 200px;
    }
  }

  .alien-purple {
    left: 0;
    rotate: 45deg;
    transform: translate(0%, 35%);
  }

  .alien-blue {
    right: 0;
    rotate: -45deg;
    transform: translate(10%, 25%);
  }
  
  .arrow-left,
  .arrow-right {
    display: none;
  }

  .app-badges-cta {
    flex-direction: column;
    gap: var(--gutter-medium);
    margin-bottom: calc(var(--gutter-large) * -1);
  }
}

@media screen and (width >1024px) and (width <1366px) {
  .scaled-image-large {
    width: 350px;
  }
}