.explore {
  position: fixed;
  z-index: 201;
  display: block;
  top: 63%;
  transform: translate(-50%, -50%);
  left: 50%;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-name: fadIn;
  animation-name: fadIn;
}
.explore > div {
  background-color: #3eb3aa;
  border-radius: 50px;
  width: 100px;
  height: 100px;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 35px 0;
}
.explore > div:after {
  display: inline-block;
  font-size: 30px;
  color: white;
  line-height: 0;
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  font-family: "CMA Icon";
  content: "\e91c";
  font-weight: 400;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  -webkit-animation-name: arrow;
  animation-name: arrow;
}

.slogan-icon {
  display: none;
}

@keyframes fadIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  99% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes arrow {
  from {
    -webkit-transform: rotate(90deg) translateX(0);
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg) translateX(15px);
    transform: rotate(90deg) translateX(15px);
    opacity: 0;
  }
}

/*# sourceMappingURL=splash.css.map */
