@keyframes section5_junping_anim {
  0% {
    left: -200px;
    opacity: 0%;
  }
  100% {
    left: 0px;
    opacity: 100%;
  }
}
section#s5 {
  padding: var(--padSide);
  margin-top: var(--mergPad);

  position: relative;
  text-align: center;
  display: grid;
  grid-auto-rows: max-content;
  justify-content: center;
  gap: var(--mergPad);
}
section#s5 > p {
  z-index: 2;
}
section#s5 > div#table {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, 210px);
  grid-gap: var(--mergPad);
  justify-content: center;
}
section#s5 .jumping_box_js {
  position: relative;
  height: 320px;
  width: 210px;
}
.jumping_box_js > div:first-of-type{
  display: grid;
  opacity: 0%;
  position: absolute;
  top: 0px;
  height: 320px;
  width: 210px;
  font-size: var(--title_2);
  font-weight: bold;
  grid-template-rows: max-content 1fr;
  gap: var(--titleGap);
}
.jumping_js {
  transition: all 2s ease-in-out;
  animation: section5_junping_anim 0.5s ease-in-out forwards;
}
section#s5 > div#table p + div {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  gap: var(--titleGap);
  padding: var(--titleGap);
  justify-items: center;
  font-weight: normal;
  background: #fffae7;
  border-radius: 35px;
  border: solid 0.2px rgba(50, 50, 93, 0.25);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
section#s5 > div:nth-child(3) {
  padding: var(--titleGap);
  display: grid;
  justify-items: center;
  gap: var(--titleGap);
  background: #fffae7;
  border: solid 0.2px rgba(50, 50, 93, 0.25);
  text-align: left;
  z-index: 2;
  border-radius: 35px;
  border: solid 0.2px rgba(50, 50, 93, 0.25);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  align-items: center;
}
section#s5 .circle {
  display: none;
}
section#s5 > a {
  z-index: 2;
}

/****** For Laptop *****/
@media screen and (min-width: 960px) {
  @keyframes section5_junping_anim {
    0% {
      top: 200px;
      opacity: 0%;
    }
    80% {
      top: -40px;
      opacity: 100%;
    }
    100% {
      top: 0px;
      opacity: 100%;
    }
  }
  section#s5 > div#table {
    grid-template-columns: repeat(3, 210px);
    justify-content: space-around;
    max-width: 1000px;
  }
  section#s5 > div:nth-child(3) {
    display: grid;
    grid-template-columns: minmax(min-content, 600px) max-content;
    justify-content: center;
    grid-gap: var(--mergPad);
    background: none;
    border: none;
    box-shadow: none;
  }
  section#s5 > div:nth-child(3) p {
    padding: 60px;
    margin-right: 2vw;
    text-align: left;
    background: #fffae7;
    border-radius: 50%/50%;
    border: solid 0.2px rgba(50, 50, 93, 0.25);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
      rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }

  /* Circles */
  section#s5 .circle {
    display: initial;
  }
  section#s5 div.circle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fec993;
  }
  section#s5 div#cercle_1 {
    left: 5%;
    top: 0px;
    border-radius: 100%;
    box-shadow: 0px 0px 80px 130px #fec993, 0px 0px 30px 130px #fff8d4,
      25px 50px 25px 170px #fff8d4;
  }
  section#s5 div#cercle_2 {
    left: 8%;
    top: 35%;
    border-radius: 100%;
    box-shadow: 0px 0px 40px 65px #fec993, 0px 0px 30px 65px #fff8d4,
      12px 25px 12px 90px #fff8d4;
  }
  section#s5 div#cercle_3 {
    left: 13%;
    top: 60%;
    border-radius: 100%;
    box-shadow: 0px 0px 30px 45px #fec993, 0px 0px 25px 45px #fff8d4,
      8px 18px 8px 55px #fff8d4;
  }
  section#s5 div#cercle_4 {
    left: 20%;
    top: 80%;
    border-radius: 100%;
    box-shadow: 0px 0px 15px 23px #fec993, 0px 0px 13px 23px #fff8d4,
      4px 9px 4px 27px #fff8d4;
  }
  section#s5 div#cercle_5 {
    left: 50%;
    bottom: 50px;
    border-radius: 100%;
    box-shadow: 0px 0px 8px 12px #fec993, 0px 0px 7px 12px #fff8d4,
      2px 5px 2px 14px #fff8d4;
  }
}
