#faco_hero {
  min-height: 100svh;
  height: fit-content;
  width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* padding: auto 0; */
  & #faco_introduce {
    z-index: 1;
    position: absolute;
    opacity: 0;
  }
  & .bg_grad {
    height: 30% !important;
    top: 70% !important;
    background-image: linear-gradient(
      0deg,
      var(--black),
      rgba(var(--black-rgb), 0)
    );
  }
  & .introduce_in {
    animation: fadeInHoldOut 1.6s ease-in-out forwards;
  }
  & #faco_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../asset/solutions/faco_bg.svg);
    background-size: cover;
    background-position: center;
    opacity: 0;
  }
  & .bg_in {
    animation: fadeInUp 2.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
  & .bg_grad {
    z-index: 0;
  }
  & #name_container {
    width: fit-content;
    height: fit-content;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 24svh;
    & #faco_title {
      opacity: 0;
      min-width: 200px;
      width: 32vw;
      height: 200px;
      align-content: center;
      & img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 16px;
      }
    }
  }
  & .title_in {
    animation: fadeInUp 1s ease-in-out forwards;
  }
  & .full_in {
    animation: opacityIn 0.6s ease-in-out forwards;
  }
  & #ui_container {
    width: 70%;
    height: fit-content;
    margin: 70vh 0 20vh;
    z-index: 1;
    position: relative;
    overflow: visible;
    & #ui_webapp {
      width: 100%;
      height: auto;
      margin: 0 auto;
      opacity: 0;
      backdrop-filter: blur(4px);
      z-index: 1;
      & img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    & .ui_exploded {
      position: absolute;
      z-index: 2;
      backdrop-filter: blur(2px);
      opacity: 0;
    }
    & #ui_register {
      width: 35%;
      top: 19%;
      left: 77%;
      filter: drop-shadow(-7px 2px 10px rgba(0, 0, 0, 0.5));
    }
    & #ui_dashboard {
      width: 42%;
      top: 68%;
      left: -6%;
      filter: drop-shadow(10px -4px 10px rgba(0, 0, 0, 0.5));
    }
    & #ui_user {
      width: 20%;
      top: 82%;
      left: 66%;
      filter: drop-shadow(-2px -7px 10px rgba(0, 0, 0, 0.5));
    }
    & .ui_in {
      animation: opacityIn 1s linear forwards;
    }
  }
}
@media only screen and (max-width: 750px) {
  #name_container {
    top: 12svh !important;
  }
  #ui_container {
    width: 130% !important;
    margin: 48vh 0 40vh !important;
    & #ui_register {
      width: 45% !important;
      top: -20% !important;
      left: 50% !important;
    }
    & #ui_dashboard {
      width: 50% !important;
      top: 90% !important;
      left: 7% !important;
    }
  }
}
@keyframes fadeInHoldOut {
  0% {
    top: 55vh;
    opacity: 0;
  }
  40% {
    top: 50vh;
    opacity: 1;
  }
  60% {
    top: 50vh;
    opacity: 1;
  }
  100% {
    top: 45vh;
    opacity: 0;
  }
}
@keyframes fadeInUp {
  0% {
    margin-top: 10vh;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes opacityIn {
  0% {
  }
  100% {
    opacity: 1;
  }
}

.faco_benefit {
  min-height: 100vh;
  height: fit-content;
  width: 100vw;
  position: relative;
  align-content: center;
  justify-content: center;
  overflow: visible;
  & .benefit_bg {
    background-image: url(../asset/solutions/faco_bg_01.jpg);
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100vw !important;
    position: absolute;
    top: 0;
    z-index: 0;
  }
  & .bg_grad {
    width: 100vw;
    height: 100%;
    background-image: linear-gradient(
      0deg,
      var(--black),
      rgba(var(--black-rgb), 0.35),
      var(--black)
    );
    position: absolute;
    top: 0;
    /* left: 0; */
    z-index: 1;
  }
}
