@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes slideInLeft {
    0% {
      transform: translateX(-180px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
  }
  @media screen and (max-width: 768px) {
    @keyframes slideInLeft {
        0% {
          transform: translateY(-180px);
          opacity: 0;
        }
        100% {
          transform: translateX(0);
        }
        40%,100% {
          opacity: 1;
        }
      }
  }
@keyframes slideInLeft {
    0% {
      transform: translateX(-180px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
  }
  @media screen and (max-width: 768px) {
    @keyframes slideInLeft {
        0% {
          transform: translateY(-180px);
          opacity: 0;
        }
        100% {
          transform: translateX(0);
        }
        40%,100% {
          opacity: 1;
        }
      }
  }
@keyframes slideInRight {
    0% {
      transform: translateX(180px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
  }
  @media screen and (max-width: 768px) {
    @keyframes slideInRight {
        0% {
          transform: translateX(180px);
          opacity: 0;
        }
        100% {
          transform: translateX(0);
        }
        40%,100% {
          opacity: 1;
        }
      }
  }

.title-logo {
    visibility: hidden;
    animation: zoomIn 7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


.mv .text-wrapper {
    visibility: hidden;
    animation: zoomIn 7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fiva-logo-wrapper {
    visibility: hidden;
    animation: slideInRight 5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.countdown-wrapper{
    visibility: hidden;
    animation: slideInLeft 5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}