body { 
    padding: 0; 
    margin: 0; 
    font-family : 'PT Sans', sans-serif; 
    font-weight : 300;
    font-size: 18px;
    line-height: 28px;
    overflow-x: hidden;
  }
  
  h1 { 
    font-size: 112px; 
    line-height: 104px; 
    font-family : 'PT Sans', sans-serif; 
    font-weight : 400; 
    color:#fff;
  }

.backimg {
background-color: #9747FF;
border-radius: 100px;
height: 750px;
width: auto;
}

.gif {
  overflow: hidden;
}

.gif_main {
  height: 136%;
  width: auto;
  max-width: 200%; 
}

  h2 {
    color:#fff;
    font-size: 48px;
    text-align: left;
    justify-content: left;
    line-height: 36px;
  }

  .block-item.first {
    margin-top: 5px;
    padding: 20px;
    width: auto;
  }
  

  .second {
    width: calc(100% - 40px); 
    margin: 0 auto; 
    padding-bottom: 20px;
    box-sizing: border-box;
}

  .third {
    padding: 20px;
    padding-bottom: 0;
    padding-top: 0;
  }

  .fourth {
    height: auto;
    width: auto;
    padding: 20px;
    padding-top: 0;
  }

  .fifth {
    text-align: center;
    justify-content: center;
    padding: 20px;
    padding-top: 0;
  }
  

  .text1 {
    padding-top: 6.5rem;
    width: auto;
  }
  
  .centered-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#header {
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0px;
  background-color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: row;
}

#logo {
  float: left;
  width: 130px;
  text-decoration: none;
}

.logo {
  font-size: 54px;
  line-height: 100px;
  padding: 0;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  color: #9747FF;
  text-decoration: none;
}
  
#navigation {
  display: inline-block;
  justify-content: center;
  align-items: right;
  margin-left: 200px;
}

#mainnav {
  font-size: 0px;
  white-space: nowrap; 
}

#mainnav li {
  display: inline-block;
  font-size: 22px;
  margin: 15px;
  border-radius: 10px !important;
}

#mainnav li:last-child {
  margin-right: 0px;
}
#mainnav li a {
  text-decoration: none;
  color: #9747FF;
  border: none;
  padding: 5px 10px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 10px !important;
}

#mainnav li a:hover {
  color: #fff;
}

  
  .section { 
    min-height: 700px;
    overflow: hidden;
      
  }

/* download button */
.button-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  border-radius: 30px;
  z-index: 0;
  overflow: hidden;
}

.download-button {
  background-color: #fff;
  width: 270px;
  height: 80px;
  border-radius: 45px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: background-color 0.35s, color 0.35s;
  text-decoration: none;
}

.download-button:hover {
  background-color: #EFAEFF;
  color: #fff;
}

.download-text {
 font-size: 30px;
 transition: color 0.35s;
 color: #9747FF;
 letter-spacing: 2px;
}

.download-button:hover .download-text {
  color: #fff; 
}

/* header animation */

  .anim{
    display: inline-block;
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    font-family: sans-serif;
    text-decoration: none;
    color: #9747FF;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    transition: all .35s;
    border-radius: 30px;
    border-width: 5px;
  }
  
  .anim span{
    position: relative;
    z-index: 2;
    border-radius: 30px;
    border-width: 5px;
  }
  
  .anim:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #9747FF;
    transition: all .35s;
    border-radius: 30px;
    border-width: 5px;
  }
  
  
  .anim:hover{
    color: #fff;
    border-radius: 30px;
  }
  
  .anim:hover:after{
    width: 100%;
    border-radius: 40px;
    border-width: 5px;
  } 

/* grid */

#grid {
    height: 85vh;
    transition: 500ms;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    background: #fff;
    max-width: 100%; 
    justify-content: space-between;
  }
  
  :where(.left, .center, .right) {
    transition: 300ms;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
  }
.left {
  background-image: url("../images/1.png");
  background-size: cover; 
  background-position: top; 
  background-repeat: no-repeat;
  transition: opacity 300ms; 
  border-radius: 50px;
}

.center {
  background-image: url("../images/2.png");
  background-size: cover; 
  background-position: top; 
  background-repeat: no-repeat;
  transition: opacity 300ms; 
  border-radius: 50px;
}

.right {
  background-image: url("../images/3.png");
  background-size: cover; 
  background-position: top; 
  background-repeat: no-repeat;
  transition: opacity 300ms; 
  border-radius: 50px;
}

  
  :where(.left, .center, .right):hover {
    background: #fff;
    border-radius: 30px;
  }
  
  #grid:has(.left:hover) {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    border-radius: 30px;
  }
  
  #grid:has(.center:hover) {
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    border-radius: 30px;
  }
  #grid:has(.right:hover) {
    grid-template-columns: 0.9fr 0.9fr 1.2fr;
    border-radius: 30px;
  }


.hidden-content {
  display: none;
  height: 92%;
  padding: 30px;
  font-size: 32px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
}

 .hidden-container {
  width: 400px;
  text-align: left;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.left:hover .hidden-content,
.center:hover .hidden-content,
.right:hover .hidden-content {
  display: block;
  background-color: #9747FF;
  border-radius: 30px;
  color: #fff;
  text-align: left;
}


/* text animation*/

.container1 {
  overflow: hidden;
  text-align: center;
  gap: 70px;
  height: calc(100% - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 0;
  width: auto;
  flex-direction: column;
}

.container1 span {
  font-size: 64px;
  font-weight: 200;
}

.places_container {
  height: 66px;
  overflow-y: hidden; 
}

.places {
  display: flex;
  flex-direction: column;
  animation: change 28s linear infinite alternate;
  justify-content: center;
  align-items: center;
}

.places span {
  font-size: 64px;
  font-weight: 400;
  height: 64px;
  line-height: 64px; 
}

@keyframes change {
  0%,
  3% {
    transform: translate3d(0, 0px, 0);
  }
  3.5%,
  6.5% {
    transform: translate3d(0, -65px, 0);
  }
  7%,
  10% {
    transform: translate3d(0, -129px, 0);
  }
  10.5%,
  13.5% {
    transform: translate3d(0, -193px, 0);
  }
  14%,
  17% {
    transform: translate3d(0, -257px, 0);
  }
  17.5%,
  20.5% {
    transform: translate3d(0, -321px, 0);
  }
  21%,
  24% {
    transform: translate3d(0, -385px, 0);
  }
  24.5%,
  27.5% {
    transform: translate3d(0, -449px, 0);
  }
  28%,
  31% {
    transform: translate3d(0, -513px, 0);
  }
  31.5%,
  34.5% {
    transform: translate3d(0, -577px, 0);
  }
  35%,
  38% {
    transform: translate3d(0, -641px, 0);
  }
  38.5%,
  41.5% {
    transform: translate3d(0, -705px, 0);
  }
  42%,
  45% {
    transform: translate3d(0, -769px, 0);
  }
  45.5%,
  48.5% {
    transform: translate3d(0, -833px, 0);
  }
  49%,
  52% {
    transform: translate3d(0, -897px, 0);
  }
  52.5%,
  55.5% {
    transform: translate3d(0, -961px, 0);
  }
  56%,
  59% {
    transform: translate3d(0, -1025px, 0);
  }
  59.5%,
  62.5% {
    transform: translate3d(0, -1089px, 0);
  }
  63%,
  66% {
    transform: translate3d(0, -1153px, 0);
  }
  66.5%,
  69.5% {
    transform: translate3d(0, -1217px, 0);
  }
  70%,
  73% {
    transform: translate3d(0, -1281px, 0);
  }
  73.5%,
  76.5% {
    transform: translate3d(0, -1345px, 0);
  }
  77%,
  80% {
    transform: translate3d(0, -1409px, 0);
  }
  80.5%,
  83.5% {
    transform: translate3d(0, -1473px, 0);
  }
  84%,
  87% {
    transform: translate3d(0, -1537px, 0);
  }
  87.5%,
  90.5% {
    transform: translate3d(0, -1601px, 0);
  }
  91%,
  94% {
    transform: translate3d(0, -1665px, 0);
  }
  94.5%,
  97.5%,
  100% {
    transform: translate3d(0, -1729px, 0);
  }
}

.text-header {
  background-color: #BDC3FF;
  border-radius: 70px;
  color: #9747FF;
  font-size: 64px;
  font-weight: 100;
  line-height: 64px;
  text-align: left;
  justify-content: left;
  padding: 40px;
  margin: 0;
}

/* test block */
.test {
margin-bottom: 20px;
}

.test-button {
  background-color: #9747FF;
  width: 270px;
  height: 80px;
  border-radius: 45px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: background-color 0.35s, color 0.35s;
  text-decoration: none;
}

.test-button:hover {
  background-color: #EFAEFF;
}

.test-text {
 font-size: 30px;
 transition: color 0.35s;
 color: #fff;
 letter-spacing: 2px;
 z-index: 1;
}

.octo {
  height: auto;
  position: relative; 
  padding: 50px;
  padding-bottom: 30px;
  width: 300px;
  transition: background-image 1s ease-in-out;
}

.octo:hover {
  content: url("../images/octo.png");
  cursor: pointer;
}

.bento {
  height: 620px;
  z-index: -2;
  background-color: #eaeeff;
}

/* text bubbles */

.box{
	width: 60vh;
	margin: auto;
	position: relative;
	display: block;
  padding-top: 40px;
}

.dialog-1{
  	height: 100px;
  	width: 40%;
  	background-color: #EFAEFF;
  	position: absolute;
  	border-radius: 100px;
    right: -70px;
}

.bubble-text {
  color: #fff;
  font-size: 24px;
}

.dialog-2{
  height: 100px;
  width: 40%;
  background-color: #EFAEFF;
  position: absolute;
  border-radius: 100px;
  left: -100px;
  top: 120px;
}

.left-point {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #EFAEFF;
}

.right-point {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #EFAEFF;
  transform: translate(200px, -10px);
}

/* Media queries */

@media (max-width: 1200px) {
  .logo {
    font-size: 4.8vw; 
  }
  #mainnav li {
    font-size: 1.6vw; 
    margin: 1vw; 
  }
  .backimg {
    height: auto; 
    max-height: 58vh; 
    border-radius: 5vw; 
    padding-bottom: 10px;
  }

  .text1 {
    padding-top: 4vw; 
    font-size: 7vw; 
    line-height: 1; 
  }

  .button-wrapper {
    margin-top: 2vh;
  }

  .download-button {
    width: 25vw; 
    height: 8vh; 
    font-size: 1.2vw; 
  }
  .block-item.first {
    margin-top: 7vh; 
  }

.text-header {
  font-size: 54px;
  line-height: 64px;
}
.hidden-content {
  height: 92%;
  padding: 30px;
  font-size: 20px;
  line-height: 30px;
}

 .hidden-container {
  width: 200px;
  text-align: left;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}
h2 {
font-size: 24px;
}
.gif_main {
  height: 130%;
  width: auto;
  max-width: 200%;
}
.box {
  width: 50vh;
  padding-top: 30px;
}

.dialog-1, .dialog-2 {
  width: 45%;
}

.dialog-1 {
  right: -80px;
}

.dialog-2 {
  left: -120px;
  top: 100px;
}

.bubble-text {
  font-size: 22px;
}

.octo {
  width: 250px;
}
.container1 span, .places span {
  font-size: 54px;
}

.places_container {
  height: 56px;
}

.places span {
  height: 56px;
  line-height: 56px;
}

@keyframes change {
  0%, 3% {
    transform: translate3d(0, 0px, 0);
  }
  3.5%, 6.5% {
    transform: translate3d(0, -56px, 0);
  }
  7%, 10% {
    transform: translate3d(0, -112px, 0);
  }
  10.5%, 13.5% {
    transform: translate3d(0, -168px, 0);
  }
  14%, 17% {
    transform: translate3d(0, -224px, 0);
  }
  17.5%, 20.5% {
    transform: translate3d(0, -280px, 0);
  }
  21%, 24% {
    transform: translate3d(0, -336px, 0);
  }
  24.5%, 27.5% {
    transform: translate3d(0, -392px, 0);
  }
  28%, 31% {
    transform: translate3d(0, -448px, 0);
  }
  31.5%, 34.5% {
    transform: translate3d(0, -504px, 0);
  }
  35%, 38% {
    transform: translate3d(0, -560px, 0);
  }
  38.5%, 41.5% {
    transform: translate3d(0, -616px, 0);
  }
  42%, 45% {
    transform: translate3d(0, -672px, 0);
  }
  45.5%, 48.5% {
    transform: translate3d(0, -728px, 0);
  }
  49%, 52% {
    transform: translate3d(0, -784px, 0);
  }
  52.5%, 55.5% {
    transform: translate3d(0, -840px, 0);
  }
  56%, 59% {
    transform: translate3d(0, -896px, 0);
  }
  59.5%, 62.5% {
    transform: translate3d(0, -952px, 0);
  }
  63%, 66% {
    transform: translate3d(0, -1008px, 0);
  }
  66.5%, 69.5% {
    transform: translate3d(0, -1064px, 0);
  }
  70%, 73% {
    transform: translate3d(0, -1120px, 0);
  }
  73.5%, 76.5% {
    transform: translate3d(0, -1176px, 0);
  }
  77%, 80% {
    transform: translate3d(0, -1232px, 0);
  }
  80.5%, 83.5% {
    transform: translate3d(0, -1288px, 0);
  }
  84%, 87% {
    transform: translate3d(0, -1344px, 0);
  }
  87.5%, 90.5% {
    transform: translate3d(0, -1400px, 0);
  }
  91%, 94% {
    transform: translate3d(0, -1456px, 0);
  }
  94.5%, 97.5%, 100% {
    transform: translate3d(0, -1512px, 0);
  }
}

.test-button {
  width: 230px;
  height: 50px;
}

.test-text {
  font-size: 28px;
}

.container1 {
  padding-bottom: 0;
}
}

@media (max-width: 992px) {
  .logo {
    font-size: 4.2vw; 
  }
  #navigation {
    margin-left: 10vw; 
  }
  .backimg {
    height: auto;
    max-height: 52vh; 
    border-radius: 5vw; 
    padding-bottom: 10px;
  }

  .text1 {
    padding-top: 5vw; 
    font-size: 7vw; 
    line-height: 1; 
  }

  .button-wrapper {
    margin-top: 2vh; 
  }

  .download-button {
    width: 30vw; 
    height: 7vh; 
    font-size: 1vw; 
  }
  .block-item.first {
    margin-top: 7vh; 
  }
  .text-header {
    font-size: 48px;
    line-height: 54px;
  }
  #grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .hidden-content {
    height: 92%;
    padding: 30px;
    font-size: 24px;
    line-height: 32px;
  }
  
   .hidden-container {
    width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
  }
  h2 {
  font-size: 24px;
  }
  .backimg {
    height: 600px;
  }

  .gif_main {
    height: 120%;
    max-width: 180%;
  }
  }

@media (max-width: 768px) {
  .centered-wrapper {
    padding: 0 1vw; 
    max-width: 100%; 
  }
  .logo {
    font-size: 4.8vw; 
  }
  #mainnav li {
    display: none; 
  }
  #mainnav li a {
    display: none; 
  }
  .backimg {
    height: auto;
    max-height: 40vh; 
    border-radius: 5vw; 
    padding-bottom: 10px;
  }

  .text1 {
    padding-top: 5vw; 
    font-size: 7vw; 
    line-height: 1; 
  }

  .button-wrapper {
    margin-top: 2vh; 
  }

  .download-button {
    width: 30vw; 
    height: 6vh; 
  }
  .block-item.first {
    margin-top: 7vh; 
  }

  .download-text {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .text-header {
    font-size: 48px;
    line-height: 54px;
  }
  #grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    height: auto;
  }
  .hidden-container {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }
  .hidden-content {
    height: 92%;
    padding: 30px;
    font-size: 20px;
    line-height: 30px;
  }
  
   .hidden-container {
    width: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
  }
  h2 {
  font-size: 20px;
  }
  .backimg {
    height: 500px;
  }

  .gif_main {
    height: 110%;
    max-width: 160%;
  }
  .box {
    width: 35vh;
    padding-top: 10px;
  }

  .dialog-1, .dialog-2 {
    width: 55%;
    height: 90px;
  }

  .dialog-1 {
    right: -80px;
  }

  .dialog-2 {
    left: -80px;
    top: 60px;
  }

  .bubble-text {
    font-size: 18px;
  }

  .octo {
    width: 150px;
  }
  .container1 span, .places span {
    font-size: 36px;
  }

  .places_container {
    height: 36px;
  }

  .places span {
    height: 36px;
    line-height: 36px;
  }
  @keyframes change {
    0%, 3% {
      transform: translate3d(0, 0px, 0);
    }
    3.5%, 6.5% {
      transform: translate3d(0, -36px, 0);
    }
    7%, 10% {
      transform: translate3d(0, -72px, 0);
    }
    10.5%, 13.5% {
      transform: translate3d(0, -108px, 0);
    }
    14%, 17% {
      transform: translate3d(0, -144px, 0);
    }
    17.5%, 20.5% {
      transform: translate3d(0, -180px, 0);
    }
    21%, 24% {
      transform: translate3d(0, -216px, 0);
    }
    24.5%, 27.5% {
      transform: translate3d(0, -252px, 0);
    }
    28%, 31% {
      transform: translate3d(0, -288px, 0);
    }
    31.5%, 34.5% {
      transform: translate3d(0, -324px, 0);
    }
    35%, 38% {
      transform: translate3d(0, -360px, 0);
    }
    38.5%, 41.5% {
      transform: translate3d(0, -396px, 0);
    }
    42%, 45% {
      transform: translate3d(0, -432px, 0);
    }
    45.5%, 48.5% {
      transform: translate3d(0, -468px, 0);
    }
    49%, 52% {
      transform: translate3d(0, -504px, 0);
    }
    52.5%, 55.5% {
      transform: translate3d(0, -540px, 0);
    }
    56%, 59% {
      transform: translate3d(0, -576px, 0);
    }
    59.5%, 62.5% {
      transform: translate3d(0, -612px, 0);
    }
    63%, 66% {
      transform: translate3d(0, -648px, 0);
    }
    66.5%, 69.5% {
      transform: translate3d(0, -684px, 0);
    }
    70%, 73% {
      transform: translate3d(0, -720px, 0);
    }
    73.5%, 76.5% {
      transform: translate3d(0, -756px, 0);
    }
    77%, 80% {
      transform: translate3d(0, -792px, 0);
    }
    80.5%, 83.5% {
      transform: translate3d(0, -828px, 0);
    }
    84%, 87% {
      transform: translate3d(0, -864px, 0);
    }
    87.5%, 90.5% {
      transform: translate3d(0, -900px, 0);
    }
    91%, 94% {
      transform: translate3d(0, -936px, 0);
    }
    94.5%, 97.5%, 100% {
      transform: translate3d(0, -972px, 0);
    }
  }

  .test-button {
    width: 160px;
    height: 40px;
  }

  .test-text {
    font-size: 20px;
  }

  .container1 {
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .centered-wrapper {
    padding: 0 1vw; 
    max-width: 100%; 
  }

  .logo {
    font-size: 8vw; 
  }
  #mainnav li {
    display: none; 
  }
  #mainnav li a {
    display: none; 
  }
  #header {
    height: 10vw; 
  }
  .backimg {
    height: auto;
    max-height: 34vh; 
    border-radius: 5vw; 
    padding-bottom: 10px;
  }

  .text1 {
    padding-top: 5vw; 
    font-size: 7vw; 
    line-height: 1; 
  }

  .button-wrapper {
    margin-top: 2vh; 
  }

  .download-button {
    width: 30vw; 
    height: 6vh; 
  }
  .block-item.first {
    margin-top: 7vh;
  }

  .download-text {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .text-header {
    font-size: 36px;
    line-height: 44px;
  }

  #grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap:5px;
    height: 50vh;
  }
  .hidden-container {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }
  .hidden-content {
    height: 92%;
    padding: 30px;
    font-size: 14px;
    line-height: 20px;
  }
  
   .hidden-container {
    width: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
  }
  h2 {
  font-size: 18px;
  }
  .backimg.gif {
    height: 600px;
  }

  .backimg {
    height: 400px;
  }

  .gif_main {
    height: 100%;
    max-width: 140%;
  }
  .box {
    width: 30vh;
    padding-top: 5px;
  }

  .dialog-1, .dialog-2 {
    width: 50%;
    height: 80px;
  }

  .dialog-1 {
    right: -50px;
    top: 15px;
  }

  .dialog-2 {
    left: -60px;
    top: 50px;
  }

  .bubble-text {
    font-size: 16px;
  }

  .octo {
    width: 120px;
  }
  
  .right-point {
display: none;
  }

  .left-point {
    display: none;
  }
  .container1 span, .places span {
    font-size: 24px;
  }

  .container1 {
    padding-bottom: 0;
  }
  .places_container {
    height: 24px;
  }

  .places span {
    height: 24px;
    line-height: 24px;
  }
  @keyframes change {
    0%, 3% {
      transform: translate3d(0, 0px, 0);
    }
    3.5%, 6.5% {
      transform: translate3d(0, -24px, 0);
    }
    7%, 10% {
      transform: translate3d(0, -48px, 0);
    }
    10.5%, 13.5% {
      transform: translate3d(0, -72px, 0);
    }
    14%, 17% {
      transform: translate3d(0, -96px, 0);
    }
    17.5%, 20.5% {
      transform: translate3d(0, -120px, 0);
    }
    21%, 24% {
      transform: translate3d(0, -144px, 0);
    }
    24.5%, 27.5% {
      transform: translate3d(0, -168px, 0);
    }
    28%, 31% {
      transform: translate3d(0, -192px, 0);
    }
    31.5%, 34.5% {
      transform: translate3d(0, -216px, 0);
    }
    35%, 38% {
      transform: translate3d(0, -240px, 0);
    }
    38.5%, 41.5% {
      transform: translate3d(0, -264px, 0);
    }
    42%, 45% {
      transform: translate3d(0, -288px, 0);
    }
    45.5%, 48.5% {
      transform: translate3d(0, -312px, 0);
    }
    49%, 52% {
      transform: translate3d(0, -336px, 0);
    }
    52.5%, 55.5% {
      transform: translate3d(0, -360px, 0);
    }
    56%, 59% {
      transform: translate3d(0, -384px, 0);
    }
    59.5%, 62.5% {
      transform: translate3d(0, -408px, 0);
    }
    63%, 66% {
      transform: translate3d(0, -432px, 0);
    }
    66.5%, 69.5% {
      transform: translate3d(0, -456px, 0);
    }
    70%, 73% {
      transform: translate3d(0, -480px, 0);
    }
    73.5%, 76.5% {
      transform: translate3d(0, -504px, 0);
    }
    77%, 80% {
      transform: translate3d(0, -528px, 0);
    }
    80.5%, 83.5% {
      transform: translate3d(0, -552px, 0);
    }
    84%, 87% {
      transform: translate3d(0, -576px, 0);
    }
    87.5%, 90.5% {
      transform: translate3d(0, -600px, 0);
    }
    91%, 94% {
      transform: translate3d(0, -624px, 0);
    }
    94.5%, 97.5%, 100% {
      transform: translate3d(0, -648px, 0);
    }
  }

  .test-button {
    width: 150px;
    height: 35px;
  }

  .test-text {
    font-size: 18px;
  }

}