.faq .faq-container {
 	gap: 30px;
}
.faq .faq-item {
  border: 1px solid #C1C9D2;
  width: 100%;
  background-color: var(--subheader-bg-color);
  padding: 10px 15px;
  margin-top: 0;
  margin-bottom: 10px;
  border-radius: 6px;
}
.faq .faq-item__header{
  font-size: 16px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-right: 25px;
}
.faq .faq-item__header::before {
  content: "\e92c";
  position: absolute;
  right: 0;
  font-family: 'proxima-icons';
  font-size: 12px;
  transition: transform .3s ease, background-color .3s ease;
  color: var(--body-text-color);
  height: 26px;
  width: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq .faq-item__header.is-active::before {
	transform: rotate(180deg);
}

.faq .faq-item__content {
	font-size: 1rem;
  display: none;
  padding: 10px 0;
}
.faq .faq-item__content p {
	margin: 0;
}
.faq .faq-item-wrapper {
	flex: 0 0 50%;
}
.faq .faq-image {
	position: relative;
  height: 250px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .faq .faq-image {
  	height: 0;
    padding-bottom: 56.25%;
  }
  .faq .faq-item-wrapper {
		flex: 0 0 100%;
	}
}
.faq .faq-image img {
  	height: 100%;
    left: 0;
    object-fit: contain;
    object-position: center center;
    position: absolute;
    top: 0;
    width: 100%;
}