@charset "utf-8";

.domain_title {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.domain_text {
  -webkit-animation: focus-in-expand-fwd 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: focus-in-expand-fwd 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
    transform: translateZ(-800px);
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
    color: #d8ff00;
  }

  14% {
    transform: scale(1.03);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.03);
    color: #ffffff;
  }

  70% {
    transform: scale(1);
  }
}

.domain_btn li a {
  -webkit-animation: heartBeat 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;
  animation: heartBeat 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;

}

.domain_btn li:hover a {
  animation: sparkle 2s ease-in-out;
  animation-fill-mode: forwards;
  background: radial-gradient(circle at 50% 50%, #4b09e5 0%, #212121 60%, #212121 100%);
  background-size: 200% 600%;
  background-repeat: no-repeat;
  width: 100%;
  /* height: 100%; */
  border-radius: 0px;
  filter: blur(0px);
  /* z-index: -1; */
  transform: translateY(0px);
}

@keyframes sparkle {
  0% {
    background-size: 0% 0%;
    background-position: 50% 50%;
  }

  100% {
    background-size: 500% 1500%;
    background-position: 50% 50%;
  }
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fadeInUp {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fadeInLeft {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fadeInRight {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


.animated.fadeInline2 {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



.animated.fadeInUp_his {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInline2 {
  0% {
    -webkit-transform: all 100s;
    transform: all 100s;
    height: 1px;
    background: #000;
  }

  to {
    -webkit-transform: all 100s;
    transform: all 100s;
    height: 3000px;
    background: #000;
  }
}

@keyframes fadeInline2 {
  0% {
    -webkit-transform: all 100s;
    transform: all 100s;
    height: 1px;
    background: #000;
  }

  to {
    -webkit-transform: all 100s;
    transform: all 100s;
    height: 3000px;
    background: #000;
  }
}

.fadeInline2 {
  -webkit-animation-name: fadeInline2;
  animation-name: fadeInline2;
}



@-webkit-keyframes fadeInUp_his {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp_his {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp_his {
  -webkit-animation-name: fadeInUp_his;
  animation-name: fadeInUp_his;
}

.mouseover1 {
  animation-name: mouseover1;
  -webkit-animation-name: mouseover1;

  animation-duration: 0.2s;
  -webkit-animation-duration: 0.2s;

  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;

  visibility: visible !important;
}

@keyframes mouseover1 {
  0% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.mouseover2 {
  animation-name: mouseover2;
  -webkit-animation-name: mouseover2;

  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;

  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;

  visibility: visible !important;
}

@keyframes mouseover2 {
  0% {
    transform: scale(1.07);
    opacity: 0.1;
  }

  100% {
    transform: scale(1);
    opacity: 1.0;
  }
}

.popup_style01 {
  animation-name: popup_style01;
  -webkit-animation-name: popup_style01;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes popup_style01 {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

.popup_style02 {
  animation-name: popup_style02;
  -webkit-animation-name: popup_style02;
  animation-duration: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes popup_style02 {
  0% {
    opacity: 0.0;
  }

  100% {
    opacity: 1;
  }
}

.popup_style03 {
  animation-name: popup_style03;
  -webkit-animation-name: popup_style03;
  animation-duration: 1.0s;
  -webkit-animation-duration: 1.0s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes popup_style03 {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

.popup_style04 {
  animation-name: popup_style04;
  -webkit-animation-name: popup_style04;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes popup_style04 {
  0% {
    transform: translateY(-300%);
  }

  100% {
    transform: translateY(0%);
  }
}

.popup_style05 {
  animation-name: popup_style05;
  -webkit-animation-name: popup_style05;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes popup_style05 {
  0% {
    transform: translateY(-300%) scaleX(4.0);
  }

  100% {
    transform: translateY(0%) scaleX(1);
  }
}

.popup_style06 {
  animation-name: popup_style06;
  -webkit-animation-name: popup_style06;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes popup_style06 {
  0% {
    transform: translateY(-300%) scaleX(4.0);
  }

  50% {
    transform: translateY(2%) scaleX(1.3);
  }

  100% {
    transform: translateY(0%) scaleX(1);
  }
}

@keyframes game1 {
  0% {
    transform: scale(1) scaleX(1);
  }

  50% {
    transform: scale(1.03) scaleX(1.1);
    box-shadow: #fffc00 2px 2px 30px -1px;
  }

  100% {
    transform: scale(1.05) scaleX(1);
    box-shadow: #3e62e1 2px 2px 30px -1px;
  }
}