* {
  -webkit-user-drag: none;
}

.faq-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* background-color: #fff; */
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.faq-title {
  display: flex;
  text-shadow: 2.85px 2.85px 0.532px black;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

.faq-title img{
  height: 3.5rem;
  object-fit: contain;
  padding-right: 1rem;
  transform: rotate(10deg);
}

.faq-question-section {
  height: fit-content;
  color: white;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  margin-top: 3rem;
  padding-right: 1rem;
}
.faq-question-section-left {
  width: 30%;
  box-sizing: border-box;
  padding-left: 2rem;
  display: flex;
  align-items: center;
}

.faq-question-section-right img {
  width: 100%;
  object-fit: cover;
  max-width: 300px;
}

.faq-question-section-right {
  width: 70%;
  box-sizing: border-box;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.445);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  margin: 0 auto;
}

.faqr-title-section {
  /* text-shadow: 4px 4px 15px black; */
  text-shadow: 2px 2px black;
  display: flex;
}

.faqr-title-section-left {
  display: flex;
  align-items: center;
}

.faqr-title-section-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faqr-title-section-right h2 {
  margin-bottom: 1.5rem;
}
.faqr-title-section-right p {
  margin-bottom: 0.5rem;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  user-select: none;
}

.faq-question {
  height: fit-content;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.411);
  padding: 0.5rem;
  border-radius: 10px;
  transition: 0.1s all ease-in-out;
  background-color: rgba(0, 0, 0, 0.349);
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.faq-question h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffffc5;
  text-shadow: 0 2px black;
}

.faq-question:hover h3 {
  color: #ffffff;
}

.faq-question:hover h3 i {
  color: #ffffff;
}

.faq-question h3 i {
  font-size: 25px;
  color: #ffffffc5;
  margin-left: 0.5rem;
}

.faq-question p {
  margin-top: 0.5rem;
  font-size: 14px;
  display: none;
  transition: 0.1s all ease-in-out;
}

.faq-question.active {
  background-color: rgba(0, 0, 0, 0.459);
}

/* .faq-question:hover p{
    display: block;
} */

.active p {
  display: block;
}

.faq-question p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-question.active p {
  display: block;
  max-height: auto;
}

/* Media queries */
@media screen and (max-width: 900px) {
  .faq-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .faq-question-section {
    padding-right: 0;
  }
  .faq-question-section-left {
    display: none;
    padding-right: 0;
  }
  .faq-question-section-right {
    margin: 0 auto;
    width: 90%;
  }
}

@media screen and (max-width: 650px) {
  .faqr-title-section {
    flex-direction: column;
  }
  .faqr-title-section-left {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .faqr-title-section-left img {
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  .faqr-title-section-left {
    display: none;
  }
}
