.title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title > div {
  display: flex;
  width: 100%;
  max-width: var(--main-width);
  justify-content: space-between;
}
.title > div > div:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.title > div > div:first-of-type > p {
  font-size: 0.9rem;
}
@media screen and (width <= 767px) {
  .title > div > div:first-of-type > h1 {
    font-size: 1rem;
  }
}
@media screen and (width <= 767px) {
  .title > div > div:nth-of-type(2) > img {
    width: 60px;
  }
}
.how {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.how > div {
  display: flex;
  width: 100%;
  max-width: var(--main-width);
  flex-direction: column;
}
.how > div > p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.how > div > div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.how > div > div > div {
  display: flex;
  gap: 1.2rem;
  position: relative;
}
.how > div > div > div > span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--purple);
  color: var(--white);
  font-size: 1rem;
  border-radius: 50%;
}
.how > div > div > div > div > p:first-of-type {
  font-size: 0.8rem;
  color: var(--black);
}
.how > div > div > div > div > p:nth-of-type(2) {
  font-size: 0.8rem;
  color: var(--text-1);
}
.how > div > div > div:not(:last-of-type) > span:before {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 15px);
  left: 18px;
  top: 40px;
  background-color: var(--border-1);
}
.faq {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq > div {
  display: flex;
  width: 100%;
  max-width: var(--main-width);
  flex-direction: column;
  gap: 0.1rem;
}
.faq > div > p {
  font-size: 1.6rem;
}
.faq > div > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq > div > div > div {
  padding: 0.7rem 0 1rem;
}
.faq > div > div > div > div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--black);
  cursor: pointer;
  gap: 1rem;
}
.faq > div > div > div > div:first-of-type > span {
  text-transform: capitalize;
}
.faq > div > div > div > div:first-of-type > button {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.faq > div > div > div > div:first-of-type > button > span {
  display: inline-block;
  background-color: var(--red);
  height: 2px;
  width: 80%;
  position: absolute;
  left: 3px;
  rotate: 0;
  transition: all 0.3s;
}
.faq > div > div > div > div:first-of-type.active > button > span:last-of-type {
  rotate: 90deg;
}
.faq > div > div > div:not(:last-of-type) {
  border-bottom: 1px solid var(--border-1);
}
.faq > div > div > div > div:last-of-type {
  font-size: 0.8rem;
  color: var(--text-1);
  line-height: 1.5;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.faq > div > div > div > div:first-of-type.active + div:last-of-type {
  height: 60px;
}
