.title-box {
  position: relative;
  background-image: url("../../images/png/service-title-bg.png");
  background-position: center;
  height: 340px;
}
.title-box .title-text-box {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
}
.title-box .title-text-box p {
  font-size: 3rem;
}

#service-info {
  background-color: white;
  padding: 2rem;
}
#service-info .service-box {
  width: 300px;
  min-height: 300px;
  background-color: #f6f6fa;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem;
}
#service-info .service-box img {
  width: 70px;
  height: 70px;
}

@media (max-width: 990px) {
  #service-info {
    padding: 0.5rem;
  }
  #service-info .service-box {
    margin: 0.5rem;
    width: 90vw;
  }
}
#faqs .tap-list li,
#notices .tap-list li {
  background-color: #efeff3;
  border-radius: 2rem;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  margin: 0 0.5rem;
  cursor: pointer;
}
#faqs .tap-list li.active,
#notices .tap-list li.active {
  background-color: #20206e;
  color: white;
}
#faqs .qna-list,
#notices .qna-list {
  border-top: 2px solid #c4c4c4;
}
#faqs .qna-list .question,
#notices .qna-list .question {
  background-color: white;
  border-bottom: 1px solid #c4c4c4;
  cursor: pointer;
}
#faqs .qna-list .question i,
#notices .qna-list .question i {
  right: 10px;
}
#faqs .qna-list .answer,
#notices .qna-list .answer {
  background-color: #f8f9fa;
  display: none;
}