.faq .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
@media (min-width: 1200px) {
  .faq .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.faq .container {
  max-width: 1440px;
}

.faq-item__hidden ul {
  list-style: none !important;
  text-align: left;
}
.faq-item__hidden ul > li {
  margin-bottom: 20px;
  padding-left: 18px;
  font-size: 0.875rem;
  line-height: 1.375rem;
  position: relative;
  color: var(--textColor);
}
.faq-item__hidden ul > li:last-child {
  margin-bottom: 0;
}
.faq-item__hidden ul > li:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background: var(--blueSecondary);
}
.faq-item__hidden ul > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid var(--pink);
}

.faq-item__hidden p, .faq-item__hidden ul > li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

.faq-item__shown p {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.faq {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.faq-list {
  position: relative;
  width: 100%;
  max-width: 1320px;
  border-radius: 20px;
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--blueSecondary);
  box-shadow: 0 0 40px 0 #e8ecfc;
}
@media (min-width: 744px) {
  .faq-list {
    padding: 60px;
  }
}
.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--blueSecondary);
}
.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.faq-item.open p.shown-title::after {
  transform: rotate(180deg);
}
.faq-item__shown {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__shown p {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: var(--textColor);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding-right: 30px;
}
@media (min-width: 744px) {
  .faq-item__shown p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.faq-item__shown p::after {
  content: "";
  height: 10px;
  width: 18px;
  position: absolute;
  right: 0;
  border-radius: 20px;
  transition: var(--transitionEase);
  background: no-repeat center/contain url(../../img/faq-arrow.svg);
}
.faq-item__hidden {
  padding: 16px 34px 0 0;
}
@media (min-width: 744px) {
  .faq-item__hidden {
    padding-right: 50px;
  }
}
.faq-item__hidden p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--textColor);
}
.faq-item__hidden p:not(:last-child) {
  margin-bottom: 16px;
}
.faq-item__hidden p a {
  color: var(--darkPurple);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transitionEase);
}
.faq-item__hidden p a:hover {
  color: var(--textColor);
}
.faq-item__hidden ul:not(:last-child) {
  margin-bottom: 16px;
}
.faq-item .shown-title {
  cursor: pointer;
  margin: 0;
  display: flex;
}
.faq h2 {
  margin-bottom: 48px;
  color: var(--textColor);
  text-align: center;
}
