.contentBox .leftBox {
  float: right;
  width: 20%;
}
@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
    padding: 0;
  }
}
.contentBox .rightBox {
  float: left;
  width: 74%;
}
@media (max-width: 640px) {
  .contentBox .rightBox {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}

.faqList {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.faqList .faqItem {
  border-bottom: 1px solid rgba(37, 37, 37, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  scale: 1;
}
.faqList .title {
  position: relative;
  padding: 16px 24px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.7px;
  color: #1d1d1d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1181px) {
  .faqList .title:hover {
    color: #f1bc47;
    scale: 1.02;
  }
}
.faqList .title span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
  font-size: 27px;
  font-weight: 500;
  color: #353535;
  width: 28px;
}
@media (max-width: 640px) {
  .faqList .title {
    padding: 16px 35px 16px 16px;
    letter-spacing: -1.4px;
  }
  .faqList .title span {
    margin-right: 15px;
  }
}

.toggleOpen {
  position: absolute;
  right: 24px;
  top: 50%;
  display: block;
  color: #242424;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #242424;
  border-right: 1px solid #242424;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  cursor: pointer;
}
.toggleOpen.rotate {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (max-width: 640px) {
  .toggleOpen {
    right: 19px;
  }
}

.definition {
  display: none;
  padding: 12px 24px;
  font-size: 14px;
  color: #686868;
  line-height: 1.8;
  background-color: #f8f8f8;
  margin-bottom: 1px;
}
.definition span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-size: 27px;
  font-weight: 500;
  color: #f1bc47;
  width: 28px;
}
.definition .definitionText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: calc(100% - 85px);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: #393939;
}
@media (max-width: 640px) {
  .definition {
    padding: 12px 16px;
  }
  .definition span {
    margin-right: 13px;
  }
  .definition .definitionText {
    font-size: 16px;
    max-width: calc(100% - 50px);
    letter-spacing: 0.4px;
  }
}