/* FAQ */

section.faq {
  /* padding-top: 57px; */
  padding: 57px 0;
  /* background-color: #e3fbfb; */
  background-image: url('../img/bg-red-bubbles.png');
  background-size: 1300px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  padding-bottom: 100px;
}
.faq-title {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 36px;
  text-align: center;
  color: #000000;
  /* margin: 0 24px 62px; */
  margin-bottom: 80px;
}
.faq-container {
  gap: 24px;
}
.faq-desktop {
  display: flex;
}
@media only screen and (max-width: 992px) {
  .faq-desktop {
    display: none;
  }
}
.faq-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .faq-mobile {
    display: flex;
  }
}
.faq-images,
.faq-questions {
  width: 50%;
}
.faq-images img {
  display: none;
  /* width: 100%;
  height: 100%;
  border-radius: 20px;
  max-height: 600px; */
}
.faq-images img.faq-active {
  display: block;
}
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* padding: 0 114px 24px; */
}
@media only screen and (max-width: 1200px) {
  .faq-questions {
    padding: 0 69px 24px;
  }
}
@media only screen and (max-width: 992px) {
  .faq-questions {
    padding: 0 24px 24px;
  }
}
@media only screen and (max-width: 992px) {
  .faq-container {
    flex-wrap: wrap;
  }
  .faq-images,
  .faq-questions {
    width: 100%;
  }
  .faq-images {
    order: 1;
  }
}
.faq-questions span {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #0f3838;
  cursor: pointer;
}
.faq-questions span,
.faq-questions span:hover {
  transition: background-color 0.2s ease-out;
}
.faq-questions span:hover,
.faq-questions span.faq-active {
  background-color: #a8dede;
}


.faq-slide-item {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 24px;
}

.faq-slide-item .faq-questions {
  padding-bottom: 0;
}


section.faq .slick-dots {
  bottom: -50px;
}

section.faq .slick-dots li {
  margin: 0;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  margin-right: 8px;
}

section.faq .slick-dots li button {
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--disabled-button-colour);
}

section.faq .slick-dots li.slick-active button {
  background: var(--hovered-button-colour);
  border-radius: 50%;
}