@charset "utf-8";
/* CSS Document */

.mainArea{padding:50px 0}
.faqBox{ border-radius:10px; padding:15px 30px 30px 30px; margin:30px; border:1px solid #dcdcdc;}


.faqList {
  margin: 0px auto 30px;
  counter-reset: item;
  transform: translateY(20px);
  opacity: 1;
}
.faqList > li {
  counter-increment: item;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faqList > li:nth-child(-n+9) h3::before {
  content: "0" counter(item) ".";
}
@media (min-width: 769px) {
  .faqList > li:nth-child(-n+9) h3::before {
    font-size: 28px;
  }
}

.faqList h3 {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 50px 10px 60px;
  position: relative;
  cursor: pointer;
}
.faqList h3:before {
  content: counter(item) ".";
  position: absolute;
  left: 7px;
  top: 6px;
  z-index: 1;
  font-size: 30px;
  font-family: "Poppins";
  line-height: 1;
  color: #00913A;
}

.toggleOpen {
  box-sizing: border-box;
  position: absolute;
  right: 5px;
  top: 50%;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-top: -15px;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  background-color: #00913A;
}
.toggleOpen.open:after {
  height: 0;
}
.toggleOpen:before, .toggleOpen:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin: auto;
  background-color: #ffffff;
}
.toggleOpen:before {
  width: 14px;
  height: 2px;
  margin-top: -1px;
  margin-left: -7px;
}
.toggleOpen:after {
  width: 2px;
  height: 14px;
  margin-top: -7px;
  margin-left: -1px;
}
.toggleOpen:hover {
  color: #ffffff;
  background-color: #006934;
}

.definition {
  display: none;
  margin-top: 10px;
  padding: 15px;
  line-height: 1.8;
  background-color: #f6f6f6;
}

@media (max-width: 768px) {
  .faqBox{ border-radius:10px; padding:0px 10px 10px 10px; margin:10px 0; border:1px solid #dcdcdc; }

.faqList {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .faqList > li {
    padding: 0px 0 10px 0;
  }
  .faqList h3 {
    padding-left: 50px;
  }
  .faqList h3:before {
    left: 9px;
    top: 12px;
    font-size: 20px;
  }
}