.btn-primary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-primary {
    padding: 16px 48px;
  }
}

.btn-secondary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-secondary {
    padding: 16px 48px;
  }
}

.qna .container {
  flex-direction: column;
}
.qna .container .content {
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}
.qna .container .content .box {
  display: flex;
  flex-direction: column;
}
.qna .container .content .box .fs-12 {
  color: #DF4133;
  text-transform: uppercase;
  font-weight: 500;
}
.qna .container .content .box .item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #A2A9B0;
  padding: 24px 0 16px;
  cursor: pointer;
}
.qna .container .content .box .item .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qna .container .content .box .item .row .fs-16 {
  font-weight: 500;
}
.qna .container .content .box .item .row .open {
  height: 16px;
  min-width: 16px;
  border: 1px solid #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
}
.qna .container .content .box .item .row .open div {
  height: 6px;
  min-width: 6px;
  background-image: url("../img/qna/open.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 250ms ease;
}
.qna .container .content .box .item .show {
  display: none;
  flex-direction: column;
  padding-top: 32px;
}
.qna .container .content .box .item .show p {
  color: #4F4F4F;
  font-weight: 400;
}
.qna .container .content .box .item .show p:nth-child(n+2) {
  margin-top: 24px;
}
.qna .container .content .box .item .show p.info {
  padding: 24px;
  background-color: #F7F8FA;
}
.qna .container .content .box .item.active .open div {
  transform: rotate(45deg);
}
.qna .container .content .box:nth-child(n+3) {
  margin-top: 80px;
}