.SectionBanner {
  background: url(../images/home/bg-banner.jpg) no-repeat center center;
  background-size: cover;
}

.accordion .accordion-item {
  border: 1px solid rgba(255, 144, 0, 0.3);
  margin-bottom: 24px;
}
.accordion .accordion-item.show {
  border: 1px solid #FF9000;
}

.accordion-header {
  display: grid;
  grid-template-columns: 60px calc(100% - 120px) 60px;
  cursor: pointer;
  height: 60px;
  align-items: center;
}
.accordion-header span:nth-child(1) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #FF9000;
}
.accordion-header span:nth-child(2) {
  padding-right: 10px;
  line-height: 1;
}
.accordion-header i.arrow {
  width: 60px;
  height: 60px;
  display: inline-block;
  background-color: rgba(255, 144, 0, 0.2);
  font-size: 0;
  position: relative;
  transition: all 0.3s linear;
}
.accordion-header i.arrow:after, .accordion-header i.arrow:before {
  z-index: 1;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #fff;
  font-size: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.accordion-header i.arrow:after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s linear;
}

@media (width >= 48rem) {
  .accordion-header:hover i.arrow {
    background-color: #FF9000;
  }
}
.accordion-header.active i.arrow {
  background-color: #FF9000;
  transform: rotate(90deg);
  transition: all 0.3s linear;
}
.accordion-header.active i.arrow::before {
  opacity: 0;
  transition: all 0.3s linear;
}

.accordion-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 60px 0;
}
.accordion-content p {
  margin: 0px 0 15px;
}
.accordion-content.open {
  margin-bottom: 5px;
}/*# sourceMappingURL=commonpage.css.map */