.sec-faq.bg-snow:last-child{
  margin-bottom: 0;
}
.faq-outer{
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
.faq-item{
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: 0.8rem;
  padding: 0.8rem 0;
}
.faq-item:last-child{
  margin-bottom: 0
}
.faq-head{
  position: relative;
  display: flex;
  align-items: center;
  padding: 2.4rem 4.8rem 2.4rem 3.2rem;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 600;
}
.faq-head::after{
  position: absolute;
  content: "";
  right: 3.2rem;
  width: 1rem;
  height: 0.7rem;
  background: url(../images/icon-down.png);
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.faq-item.expand .faq-head::after{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.faq-body{
  display: none;
}
.faq-info{
  padding: 0 3.2rem 3.2rem;
}
@media(min-width:1200px) and (max-width:1359.98px){
  .faq-outer {
    max-width: 70rem;
  }
  .faq-head {
    padding: 2rem 4.8rem 2rem 3.2rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .faq-outer {
    max-width: 70rem;
  }
  .faq-item {
    margin-bottom: 1.6rem;
  }
  .faq-head {
    padding: 2rem 4.8rem 2rem 3.2rem;
    font-size: 1.5rem;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  .faq-item {
    margin-bottom: 1.6rem;
  }
  .faq-head {
    padding: 2rem 4rem 2rem 2.4rem;
    font-size: 1.5rem;
  }
  .faq-info {
    padding: 0 2.4rem 2.4rem;
  }
}
@media(max-width:767.98px){
  .sec-faq .title{
    text-align: center;
  }
  .faq-outer {
    max-width: 100%;
  }
  .faq-head {
    padding: 1.6rem 3.2rem 1.6rem 1.6rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .faq-head::after {
    right: 1.4rem;
  }
  .faq-info {
    padding: 0 1.6rem 1.6rem;
  }
}