.header {
  height: 400px;
}
.header h2 {
  font-size: 48px;
  font-family: Poppins, Poppins;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 72px;
  text-align: center;
}
.header .input-box {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 12px;
  width: -moz-fit-content;
  width: fit-content;
  height: 75px;
  overflow: hidden;
  margin: 66px auto;
}
.header .input-box input {
  width: 950px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  height: 100%;
  padding-left: 22px;
  font-size: 20px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  color: #666666;
  line-height: 30px;
}
.header .input-box .btn {
  width: 170px;
  height: 75px;
  background: #DF5149;
  border-radius: 0px 12px 12px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .input-box .btn p {
  font-size: 20px;
  font-family: Poppins, Poppins;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 30px;
}

.faq-content {
  padding: 140px 0;
  background: #e4e4e4;
}
.faq-content .faq-container h3 {
  font-size: 48px;
  font-family: Poppins, Poppins;
  font-weight: bold;
  color: #181818;
  line-height: 72px;
  text-align: center;
}
.faq-content .faq-container .faq-list {
  margin-top: 79px;
  width: 1322px;
  display: flex;
  justify-content: space-between;
}
.faq-content .faq-container .faq-list .item {
  cursor: pointer;
  background: #EFEFEF;
  border-radius: 8px;
  border: 1px solid #C9C9C9;
  padding: 35px 28px;
  width: 640px;
  margin-bottom: 32px;
}
.faq-content .faq-container .faq-list .item .item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-content .faq-container .faq-list .item .item-top .question {
  font-size: 20px;
  font-family: Poppins, Poppins;
  font-weight: 500;
  color: #181818;
  line-height: 30px;
}
.faq-content .faq-container .faq-list .item .item-top img {
  width: 24px;
  height: 24px;
  transition: all 0.2s ease;
}
.faq-content .faq-container .faq-list .item .answer {
  margin-top: 35px;
  font-size: 16px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  color: #181818;
  line-height: 25px;
  display: none;
  overflow: hidden;
}
.faq-content .faq-container .faq-list .open .item-top img {
  transform: rotate(45deg);
}
.faq-content .faq-container .faq-list .open .answer {
  display: block;
}
@keyframes slideDown {
  0% {
    height: 0px;
  }
  100% {
    height: auto;
  }
}