.s-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1f0f9;
  cursor: none;
  color: #0c0b0e;
  font-family: "Fira Sans", sans-serif;
}
.s-hero .s__title {
  position: absolute;
  top: 2vw;
  left: 2vw;
  margin: 0;
  padding: 0;
  font-size: 1.25vw;
}
.s-hero .s__catcher {
  top:0vw;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 700;
  font-size: 10vw;
  letter-spacing: -0.025em;
  text-align: center;
  white-space: nowrap;
}
.s-hero .s__burger {
  position: absolute;
  top: 2vw;
  right: 2vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 56px;
  height: 48px;
}
.s-hero .s__burger__line {
  margin: 5px 0;
  width: 100%;
  height: 2px;
  background: #0c0b0e;
}

.s-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1425c;
  -webkit-mask: url(#mask);
          mask: url(#mask);
  color: #f1f0f9;
  pointer-events: none;
  background-image: url('mao0001.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.s-scene .s__title {
  position: absolute;
  top: 2vw;
  right: 2vw;
  left: 2vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 10vw;
  letter-spacing: -0.025em;
  line-height: 0.9;
}
.s-scene .s__title__line:nth-child(2) {
  margin-left: auto;
}
.s-scene .s__word {
  --max-scale: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  font-family: "Climate Crisis", sans-serif;
  font-size: 20vw;
  font-weight: 800;
  text-transform: uppercase;
}
@-webkit-keyframes char-scale {
  0% {
    scale: 1 0.1;
  }
  50% {
    scale: 1 var(--max-scale);
  }
  100% {
    scale: 1 0.1;
  }
}
@keyframes char-scale {
  0% {
    scale: 1 0.1;
  }
  50% {
    scale: 1 var(--max-scale);
  }
  100% {
    scale: 1 0.1;
  }
}
.s-scene .s__word__char {
  -webkit-animation: char-scale 1.25s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: char-scale 1.25s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  transform-origin: 50% 86.5%;
}
.s-scene .s__word__char:nth-child(1) {
  color: #fe6319;
}
.s-scene .s__word__char:nth-child(2) {
  color: #ff68a8;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.s-scene .s__word__char:nth-child(3) {
  color: #009800;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.cursor {
  position: fixed;
  top: -1.5vw;
  left: -1.5vw;
  z-index: 2;
  width: 3vw;
  height: 3vw;
  background: #88f901;
  border-radius: 50%;
  transform: translate3d(var(--x), var(--y), 0);
  pointer-events: none;
}

.s-svg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.menu {
  filter: url("#shadowed-goo");
}

.menu-item, .menu-open-button {
  background: #f1425c;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  position: absolute;
  top: 20px;
  color: white;
  text-align: center;
  line-height: 80px;
  transform: translate3d(0, 0, 0);
  transition: transform ease-out 200ms;
}

.menu-open {
  display: none;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  transition: transform 200ms;
}

.hamburger-1 {
  transform: translate3d(0, -8px, 0);
}

.hamburger-2 {
  transform: translate3d(0, 0, 0);
}

.hamburger-3 {
  transform: translate3d(0, 8px, 0);
}



/**
 * Material Modal CSS
 */
.modal {
  will-change: visibility, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: $modal-delay;
}
.modal--active {
  visibility: visible;
  opacity: 1;
}
.modal--align-top {
  align-items: flex-start;
}
.modal__bg {
  background: transparent;
}
.modal__dialog {
  max-width: 600px;
  padding: 1.2rem;
}
.modal__content {
  will-change: transform, opacity;
  position: relative;
  padding: 2.4rem;
  background: #ffebee;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__content--active {
  opacity: 1;
}
.modal__close {
  z-index: 1100;
  cursor: pointer;
}
.modal__trigger {
  position: relative;
  display: inline-block;
  padding: 1.2rem 2.4rem;
  color: rgba(0,0,0,0.7);
  line-height: 1;
  cursor: pointer;
  background: #ffebee;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__trigger--active {
  z-index: 10;
}
.modal__trigger:hover {
  background: #e5d3d6;
}
#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffebee;
  transform: none;
  opacity: 1;
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/**
 * Demo specific CSS
 */
body {
  height: 100vh;
  background: #f44336;
}
img {
  max-width: 100%;
}
.demo-btns header {
  padding: 7vh 10vw;
  background: #ffebee;
  display: flex;
  align-items: center;
}
.demo-btns header h1 {
  margin: 0;
  color: rgba(0,0,0,0.54);
  font-weight: 300;
}
.demo-btns .info {
  background: #f44336;
  padding: 3vh 10vw;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
}
.demo-btns p {
  text-align: center;
  color: #fff;
}
.demo-btns .link {
  font-size: 20px;
}
.demo-btns .modal__trigger {
  margin-right: 3px;
}
@media (max-width: 640px) {
  .demo-btns .modal__trigger {
    margin-bottom: 0.8rem;
  }
}
.demo-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.2rem;
  padding: 0.6rem;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
  width: 24px;
  fill: #fff;
  pointer-events: none;
  vertical-align: top;
}
.demo-close:hover {
  background: rgba(0,0,0,0.6);
}
.logo {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 2;
}
.logo img {
  width: 45px;
  transform: rotate(0);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.logo img:hover {
  transform: rotate(180deg) scale(1.1);
}