.SF-FAQ {
  max-width: 980px;
  margin: 0 auto;
  color: #333333;
  padding: 20px 0;
  padding-top: 40px;
}

.SF-FAQ__title {
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  font-family: "ClarinsRegular", "Clarins";
  font-weight: normal;
  margin: 0 auto;
}

.SF-FAQ__description {
  margin: 0 auto;
  margin-top: 20px;
  font-size: 16px;
  line-height: 22px;
  font-family: "Gotham SSm medium A", "Gotham SSm medium B", Helvetica, Arial, sans-serif;
  text-align: center;
}

.SF-FAQ__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
}

.SF-FAQ__col {
  width: 50%;
  padding: 0 20px;
}

button.SF-FAQ__question {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  min-width: auto;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  text-align: left;
  color: #333333;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  text-transform: none;
}

button.SF-FAQ__question:hover {
  color: #333333;
  border: none;
  background-color: rgba(255, 255, 255, 0);
}

button.SF-FAQ__question > span {
  padding-right: 20px;
}

button.SF-FAQ__question,
.SF-FAQ__response {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  font-family: "Gotham SSm book A", "Gotham SSm book B", Helvetica, Arial, sans-serif;
}

button.SF-FAQ__question[is-open="true"]::after {
  transform: rotate(45deg);
}

.SF-FAQ__response {
  padding-bottom: 15px;
  display: none;
}

button.SF-FAQ__question::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/cross.png);
  transition: transform 0.3s;
}

.SF-FAQ__item {
  border-bottom: solid 1px #d2d2d2;
}

.SF-FAQ__response a {
  text-decoration: underline;
}

@media screen and (max-width: 761px) {
  .SF-FAQ__container {
    flex-direction: column;
  }

  .SF-FAQ__col {
    width: 100%;
  }
}
