.faq__container {
  padding-top: 15rem;
  padding-bottom: 8rem;
  background-color: #fff;
  border-radius: 0 0 6rem 6rem;
}
@media only screen and (max-width: 834px) {
  .faq__container {
    padding-top: 10rem;
  }
}
.faq__subtitle {
  max-width: 68rem;
}
.faq__subtitle * {
  font-size: 20px;
}
@media (max-width: 1356px) {
  .faq__subtitle * {
    font-size: calc(16px + 4 * (100vw - 375px) / 981);
  }
}
.faq__tabs {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .faq__tabs {
    display: flex;
    overflow: auto;
  }
}
.faq__tab {
  margin: 0 auto;
  max-width: 80rem;
  padding: 1.2rem 1.6rem;
  border-radius: 2rem 2rem 0 0;
  border: 1px solid #305d69;
  color: #305d69;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all ease-in-out 0.35s;
}
@media only screen and (max-width: 1024px) {
  .faq__tab {
    min-width: 20rem;
  }
}
.faq__tab.active {
  background-color: #305d69;
  color: #FFFFFF;
}
.faq__list {
  margin: 0 auto;
  padding: 8rem 6rem 6rem;
  border: 1px solid #305d69;
  border-top: 0;
  border-radius: 0 0 3rem 3rem;
}
@media only screen and (max-width: 1024px) {
  .faq__list {
    padding: 6rem 4rem;
  }
}
@media only screen and (max-width: 834px) {
  .faq__list {
    padding: 4rem 2rem 4rem;
  }
}
.faq__list__item {
  margin-bottom: 2rem;
  padding: 2rem 3.2rem;
  border-radius: 6rem;
  border: 1px solid #161F28;
}
@media only screen and (max-width: 576px) {
  .faq__list__item {
    border-radius: 4rem;
    padding: 1.6rem 2.4rem;
  }
}
.faq__list__item:last-child {
  margin-bottom: 0;
}
.faq__list__item.active .faq__list__item_head svg {
  transform: rotate(90deg);
}
.faq__list__item.active .faq__list__item_content {
  margin-top: 2rem;
}
.faq__list__item_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
}
.faq__list__item_head svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  transition: all ease-in-out 0.35s;
}
@media only screen and (max-width: 576px) {
  .faq__list__item_head svg {
    width: 2rem;
    height: 2rem;
  }
}
.faq__list__item_content {
  color: #454545;
  font-size: 1.8rem;
}
@media only screen and (max-width: 576px) {
  .faq__list__item_content {
    font-size: 1.6rem;
  }
}