#happiness-intro,
#happiness-intro-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#happiness-intro-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#happiness-intro-cover {
  display: flex;
  justify-content: center;
  align-items: center;
}


#happiness-intro-anim {
  --lottieWidth: 435px;
  --lottieHeight: 355px;
  /* for some reason the css variables don't play nicely with lottie initialization process */
  /* the width and height is multiplied by three from the variables above */
  width: 1305px;
  height: 1065px;
  min-width: 1305px;
  min-height: 1065px;
}


.hc-anim-cover {
  position: absolute;
  background: var(--backgroundColor);
}

#cover-left {
  top: 0;
  left: 0;
}

#cover-right {
  bottom: 0;
  right: 0;
}

#happiness-intro-video {
  position: relative;
  object-fit: cover;
}

#happiness-intro-text {
  position: absolute;
  left: 50%;
  text-align: center;
  color: var(--midGreen);
  width: 0;
  height: 0;
}

#happiness-intro-text-wrapper {
  width: 460px;
}

#happiness-intro-text-top {
  font-size: var(--fs33);
}

#happiness-intro-text-bottom {
  font-size: var(--fs22);
  margin-top: 12px;
}

#happiness-intro-trigger {
  position: absolute;
  top: 50%;
  height: 1px;
}

#happiness-circle-text {
  position: absolute;
  left: 50%;
  top: calc(50% + 64px);
  color: var(--midGreen);
}

#happiness-circle-text-wrapper {
  width: 365px;
  text-align: center;
}

#happiness-circle-title {
  font-size: var(--fs55);
}

#happiness-circle-text-text {
  font-size: var(--fs22);
  margin-top: 34px;
}

#scene-2 {
  background: var(--backgroundColor);
  z-index: 1;
}

.hc-flex-container-left {
  display: flex;
}

.hc-flex-container-right {
  min-height: 40em;
}

.hc-center-text-align-wrapper {
  margin: auto;
  font-size: inherit !important;
}

.hc-title {
  color: var(--midGreen);
  font-size: var(--fs2-75);
  line-height: 1.25;
  margin-bottom: 1em;
}

.hc-text {
  font-size: var(--fs1-125);
}

#happiness-return-scene-2-trigger {
  position: absolute;
  top: 10%;
  height: 40%;
}

#happiness-return-scene-2-logo-0 {
  position: absolute;
  left: 50%;
  top: calc(50% + 6em);
}

#happiness-return-scene-2-logo-1 {
  position: absolute;
  left: calc(50% + 9em);
  top: calc(50% - 12em);
}

#happiness-return-scene-2-logo-1 .inner-circle {
  width: 6.625em;
}


#happiness-return-scene-2-logo-0 .inner-circle {
  text-align: center;
  color: var(--backgroundColor);
  line-height: 1.25;
  width: 18.875em;
}

.hc-circle-title {
  font-size: var(--fs2-3);
  line-height: 1.1;
}

.hc-circle-text {
  font-size: var(--fs1-4);
  margin-top: 1.6em;
}

#happiness-return-scene-2-logo-0 .hc-circle-title span {
  font-size: var(--fs1-6);
}

#scene-3 {
  --circleSize: 476px;
  background: var(--backgroundColor);
}

#happiness-return-scene-3-trigger {
  position: absolute;
  top: 0;
  height: 200%;
}

#happiness-return-circle-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

#circ-cta {
  --transition: 0.3s ease-out;
  --primaryColor: var(--midGreen);
  --secondaryColor: var(--backgroundColor);
  border: 2px solid var(--midGreen);
  background: var(--secondaryColor);
  color: var(--primaryColor);
  transition: background var(--transition), color var(--transition);
}

#circ-cta:hover {
  --primaryColor: var(--backgroundColor);
  --secondaryColor: var(--midGreen);
}

#scene-3 .circle {
  transform: unset;
}

#scene-3 .inner-circle,
#scene-3 .circle {
  width: var(--circleSize);
  height: var(--circleSize);
}

#circ-cta .inner-circle.hc-span-text {
  padding: 1em;
}

#circ-cta .inner-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--fs44);
  pointer-events: none;
  text-align: center;
}

#circ-cta .inner-circle a {
  pointer-events: auto;
  border-radius: 50%;
  overflow: hidden;
}

#circ-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}


@media only screen and (max-width: 992px) {
  #circ-2 {
    visibility: hidden;
  }
}