body {
  background-color: var(--brand-color-blue-light);
}


/* ====================================================
                        Title
==================================================== */

.hero-title-wrapper {
  position: absolute;
  left: 20vw;
  top: 20vh;
  z-index: 100;
  text-align: center;
}

.hero-title {
	color: black;
  font-size: 4vw;
  max-width: 60vw;
	font-weight: 700;
  pointer-events: none;
}

/* portrait tablet and landscape phone */
@media only screen and (max-width: 819.98px) {

  .hero-title-wrapper {
    left: 10vw;
  }

  .hero-title {
    font-size: 5vw;
    max-width: 80vw;
  }
}

/* portrait phone */
@media only screen and (max-width: 575.98px) {
  .hero-title-wrapper {
    left: 5vw;
    top: 30vh;
  }

  .hero-title {
    font-size: 6vw;
    max-width: 90vw;
  }
}

/* ====================================================
                        Morph
==================================================== */

.hero-morph-wrapper,
.hero-morph-wrapper-mobile {
  width: 100%;
}

.hero-morph-wrapper {
  height: fit-content;
  z-index: 5;
}

.hero-morph-bk-left,
.hero-morph-bk-right {
  height: 100vh;
  position: absolute;
}

.hero-morph-bk-left {
  left: 0px;
}

.hero-morph-bk-right {
  right: 0px;
}

.hero-button-wrapper {
  z-index: 100;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -70%);
  padding: 1.5rem 0;
  filter: url('#goo');
}

.hero-morph-mobile {
  height: 100vh;
  width: 100%;
}


.hero-morph-wrapper-mobile {
  display: none;
}

/* portrait tablet and landscape phone */
@media only screen and (max-width: 819.98px) {
  .hero-morph-wrapper-mobile {
    display: inline-block;
  }

  .hero-morph-wrapper {
    display: none;
  }

}


/* ====================================================
                        Button
        Cite: https://codepen.io/ines/pen/oeZdYv
==================================================== */

.button {
  display: inline-block;
  text-align: center;
  background-color: var(--brand-color-blue);
  color: white;
  font-weight: 600;
  padding: 20px 60px 18px;
  line-height: 1;
  border-radius: 1.5em;
  position: relative;
  min-width: 8.23em;
  text-decoration: none;
  font-size: 18px;
  transition-property: all !important;
  transition-duration: 1s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

/* .button:hover {
  background-color: var(--brand-color-pink);
} */

.button:before,
.button:after {
  width: 4.4em;
  height: 2.95em;
  position: absolute;
  content: "";
  display: inline-block;
  background-color: var(--brand-color-blue);
  border-radius: 50%;
  transition: transform 1s ease-out;
  transform: scale(0);
  z-index: -1;
}

.button:before {
  top: -25%;
  left: 20%;
}

.button:after {
  bottom: -25%;
  right: 20%;
}

.button:hover:before,
.button:hover:after {
  transform: none;
}

a.button {
  text-decoration: none;
}