* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: worksans;
  src: url("/assets/fonts/WorkSans-VariableFont_wght.ttf");
}
body {
  font-family: worksans;
  font-size: 16px;
  color: hsl(0, 0%, 100%);
  color: hsl(275, 100%, 97%);
  color: hsl(292, 16%, 49%);
  color: hsl(292, 42%, 14%);
}
.header {
  width: 100%;
  height: max-content;
}
.banner {
  width: 100%;
  height: 100%;
}
.banner img {
  width: 100%;
  height: 100%;
}
.faq-section {
  width: 100%;
  background-color: hsl(275, 100%, 97%);
  /* height: auto; */
  min-height: 550px;
  /* position: relative; */
}
.faq-box-container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.faq-box {
  width: 35%;
  position: absolute;
  padding: 20px;
  top: -150px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
  height: max-content;
  -webkit-box-shadow: 0px 1px 31px -8px rgba(220, 220, 220, 1);
  -moz-box-shadow: 0px 1px 31px -8px rgba(220, 220, 220, 1);
  box-shadow: 0px 1px 31px -8px rgba(220, 220, 220, 1);
}

.faq-title {
  display: flex;
  justify-content: start;
}
.faq-title h1 {
  font-size: 2rem;
  line-height: 3rem;
  padding-left: 10px;
}
.answer {
  display: none;
}
.answer.show {
  display: block;
}
.question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
.question .icon img {
  width: 20px;
  height: 20px;
}
.faq-part {
  padding: 20px 0;
}
.faq-part:not(:last-child) {
  border-bottom: 1px solid hsl(275, 100%, 97%);
}
.faq-part .answer {
  padding: 15px 0;
}
