.faq {
  background: #678A2B;
}
.faq__content {
  display: flex;
  flex-flow: column;
  gap: 64px;
  padding: 50px 0px;
  padding-bottom: 148px;
}
.faq__head {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
}
.faq__title {
  max-width: 63%;
  width: 100%;
  font-family: Geist;
  font-weight: 300;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -2.8%;
  color: #f0f2f5;
}
.faq__title strong {
  font-weight: 300;
  color: #121212;
}
.faq__body {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.faq__separator {
  width: 40%;
}
.faq__list {
  display: flex;
  flex-flow: column;
  width: 100%;
	max-width: 66%;
}
.faq__item {
  width: 100%;
  display: flex;
  flex-flow: column;
	position: relative;
}

.faq__item::before {
	content: '';
    position: absolute;
    top: 0;
    left: 52px;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1215686275);
}

.faq__item:last-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 52px;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1215686275);
}
.faq__accordion {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
}

.faq__accordion:hover .faq__button {
	background: #fff;
}

.faq__accordion:hover .faq__button svg path {
	fill: #001c36;
}

.faq__question-container {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 32px;
}
.faq__digits {
  font-family: Geist Mono;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -1%;
  color: #121212;
}
.faq__question {
  font-family: Geist;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4%;
  vertical-align: middle;
  color: #fff;
}
.faq__button {
  padding: 7px 18px;
  border: 1px solid rgba(144, 164, 174, 0.6509803922);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
	transition: 0.3s ease;
}

.faq__button svg path {
	transition: 0.3s ease;
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.faq__panel p {
  font-family: Geist;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
  max-width: 480px;
  padding-left: 54px;
}

@media (max-width: 1024px) {
  .faq__content {
    padding: 48px 0;
  }
  .faq__list {
		max-width: 100%;
	}
  .faq__head {
    flex-flow: column;
    align-items: flex-start;
	justify-content: space-between;
  }
  .faq__title {
    max-width: 100%;
	  padding-top: 42px;
  }
  .faq__separator {
    display: none;
  }
  .faq__accordion {
    gap: 16px;
  }
	
	.faq__item::before {
		left: 0;
	}
	
	.faq__question-container {
		align-items: flex-start;
		gap: 16px;
	}
	
	.faq__question {
		text-align: left;
	}
	
	.faq__item:last-child::after {
		left: 0;
	}
}/*# sourceMappingURL=style.css.map */