.section01 {
  margin: 0 0 4rem;
  background: url("../images/section1bg.png") no-repeat;
  background-position: 150% 111%;
  background-size: 80%;
}
@media (max-width: 1199px) {
  .section01 {
    background-position: 50% 100%;
    background-size: 130% 58vh;
  }
}

.maintit {
  position: relative;
  text-align: center;
}
.maintit::before {
  content: "";
  background: url(../images/bg-1.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 9vw;
  left: 6%;
  width: 80px;
  height: 65px;
  opacity: 0.5;
  animation: opacity2 3s infinite;
}
.maintit::after {
  content: "";
  background: url(../images/bg-2.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 27%;
  right: -8%;
  width: 80px;
  height: 80px;
  opacity: 0.5;
  animation: opacity2 -1.5s 3s infinite;
}
@media (max-width: 767px) {
  .maintit::after {
    right: 0%;
    top: auto;
    bottom: 20%;
    width: 35px;
  }
}
@media (max-width: 767px) {
  .maintit > img {
    max-width: 90%;
    margin: auto;
    display: block;
  }
}

.circlebg::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 1%;
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  opacity: 0.5;
  animation: opacity2 -1.5s 3s infinite;
}
.circlebg::after {
  content: "";
  position: absolute;
  top: 37%;
  right: -6%;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  opacity: 0.5;
  animation: opacity2 -1.5s 2.5s infinite;
}
@media (max-width: 767px) {
  .circlebg::after {
    right: 6%;
  }
}

.circle {
  position: absolute;
  left: -5%;
  top: 65%;
  animation: opacity2 -2s 2s infinite;
}

.btns {
  margin-top: -3vh;
  position: relative;
}
.btns::before {
  content: "";
  background: url(../images/bg-3.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 12%;
  left: 35%;
  width: 50px;
  height: 45px;
  opacity: 0.5;
  animation: opacity2 -1s 2s infinite;
}
.btns > img {
  max-width: 350px;
  width: 50%;
  margin: 4em 2em 0 0;
}
@media (max-width: 767px) {
  .btns > img {
    position: absolute;
    right: 0;
    top: -2rem;
    margin: 0;
    max-width: 55%;
    z-index: -1;
  }
}

@keyframes opacity2 {
  0%, 100% {
    opacity: 0.05;
  }
  50% {
    opacity: 1;
  }
}
.imdexbg {
  position: absolute;
  left: -5%;
  top: 15%;
  max-width: 24vw;
}
.imdexbg::before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: 28%;
  bottom: 32%;
  background: url("../images/bg-1-2.png") no-repeat;
  background-size: contain;
  animation-name: fly;
  animation-duration: 2.3s;
  animation-iteration-count: infinite;
}

.index_people {
  position: relative;
}
.index_people::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 130px;
  background: url("../images/talk.png") no-repeat;
  background-size: contain;
  right: 10%;
  top: 0;
  background-size: contain;
  transform-origin: 10% bottom;
  animation: talk 1s ease infinite;
}
@media (max-width: 767px) {
  .index_people::before {
    right: 0%;
    width: 65px;
  }
}
.index_people::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 150px;
  background: url("../images/paper.png") no-repeat;
  background-size: contain;
  right: 4%;
  top: 42%;
  background-size: contain;
  animation: fly 5s infinite;
}
@media (max-width: 767px) {
  .index_people::after {
    width: 110px;
  }
}

@keyframes talk {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.go_test {
  max-width: 360px;
  padding: 10px;
  transition: all 0.5s;
  margin-top: 3.5rem;
  display: block;
}
.go_test img {
  filter: drop-shadow(0px 8px 0px #000000);
  transition: all 0.5s;
}
.go_test:hover {
  transform: scale(1.05);
  transition: all 0.5s;
}
.go_test:hover img {
  transition: all 0.5s;
  filter: none;
}
@media (max-width: 991px) {
  .go_test {
    max-width: 60%;
    position: relative;
    margin: 1.5rem auto 0;
    text-align: center;
  }
}

@keyframes shinee {
  0% {
    transform: translateY(0px);
  }
  50% {
    filter: drop-shadow(0px 0px 10px yellow);
  }
  100% {
    transform: translateY(0px);
  }
}
.section02 {
  margin-top: -8em;
}

#barchart1 {
  height: 450px;
}
@media (max-width: 767px) {
  #barchart1 {
    height: 350px;
  }
}

.stati,
.average {
  border-radius: 30px;
  padding: 2%;
  text-align: center;
  margin-bottom: 1.5rem;
  background: #fff;
  border: 2px solid #000;
  box-shadow: 0 6px 0px rgb(0, 0, 0);
}
.stati h2,
.average h2 {
  margin-top: -4rem;
}
@media (max-width: 767px) {
  .stati h2,
  .average h2 {
    margin-top: -35px;
  }
}
.stati h2 img,
.average h2 img {
  max-width: 80%;
}

@media (max-width: 767px) {
  #piechart1 {
    height: 300px !important;
  }
}

.barbg,
.score {
  width: 100%;
  background: #fff;
}

.average_num {
  padding: 10px 0;
  color: #40007a;
  font-size: 1.3rem;
  font-weight: bold;
}

.index-btn {
  background: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  color: #000;
  transition: all 0.5s;
  box-shadow: 0 12px 21px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}
.index-btn:hover {
  background: #40007a;
  color: #fff;
  transition: all 0.5s;
  box-shadow: none;
  transform: translateY(5px);
}

/* keyframes */
@keyframes fly {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.indexPerson {
  max-width: 765px;
  animation-name: fly;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@media (max-width: 1199px) and (min-width: 768px) {
  .indexPerson {
    margin-top: -12%;
  }
}
@media (max-width: 767px) {
  .indexPerson {
    max-width: 90%;
    margin-right: 11%;
    margin-top: -5%;
  }
}

.type_block {
  display: inline-block;
  width: 50%;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  background: #a6dad5;
  padding: 5px;
}
.type_block.active {
  background: #f74d98;
}
.type_block:hover {
  background: #ff9100;
  color: #000;
}

.score {
  display: none;
}

.score.active {
  display: block;
}/*# sourceMappingURL=index2.css.map */