#unFAQ {
  opacity: 1;
  background-color: #49bcce;
}

.FAQsec {
  width: 100%;
  margin: auto;
}

.faq-sec {
  width: 100%;
  margin: auto;
}
.faq-sec .titlebox {
  margin: 5% 10% 5% auto;
}
.faq-sec .titlebox .bullet {
  margin: 6px -25px;
  background-image: url("../pic/site/tittle bullet.png");
  height: 3%;
  width: 3%;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1000px) {
  .faq-sec .titlebox .bullet {
    width: 20px;
    width: 20px;
    margin: auto -1%;
  }
}
.faq-sec .titlebox .title {
  color: #49bcce;
  margin: auto 20px;
}
@media (max-width: 1000px) {
  .faq-sec .titlebox .title {
    font-size: 10px;
  }
}
.faq-sec .titlebox p {
  margin: 2% 4% 2%;
  font-weight: 500;
  font-size: large;
}
@media (max-width: 1000px) {
  .faq-sec .titlebox p {
    width: 80%;
    font-size: 12px;
    text-align: justify;
    color: #004059;
    line-height: 35px;
  }
}

.faq-box {
  width: 90%;
  margin: auto;
}
.faq-box .Question {
  width: 90%;
  margin: auto;
  background-color: rgba(73, 188, 206, 0.4980392157);
  cursor: pointer;
}
.faq-box .Question p {
  padding: 2%;
  width: 80%;
  line-height: 200%;
  color: #004059;
  font-size: 1.2em;
  font-weight: bold;
}
.faq-box .Question i {
  width: 2em;
  height: 2em;
  margin: 1.5em 75% auto;
  background-image: url("../pic/site/open bar.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
.faq-box .Question i:hover {
  opacity: 0.5;
  transition: all ease 0.5s;
}
.faq-box .Answer {
  width: 90%;
  margin: -1% auto;
  background-color: whitesmoke;
  height: 100%;
}
.faq-box .Answer p {
  padding: 3%;
  width: 90%;
  line-height: 250%;
  color: #004059;
  font-size: 1.1em;
  text-align: justify;
  font-weight: 600;
  color: #004059;
}

.boxcover {
  margin: -15px auto;
  overflow: hidden;
  height: 0;
}

.boxcover_on {
  animation: slidedown ease 0.5s normal;
  height: auto;
}

.boxcover_off {
  animation: slideup ease 0.5s normal;
}

.arrD {
  animation: rotatedown ease 0.5s normal forwards;
}

.arrU {
  animation: rotateup ease 0.5s normal forwards;
}

#en-sec {
  direction: ltr;
}

@keyframes slidedown {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 500px;
  }
}
@keyframes slideup {
  0% {
    height: 200px;
  }
  100% {
    height: 0px;
  }
}
@keyframes rotatedown {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes rotateup {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}/*# sourceMappingURL=faq.css.map */