@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@initial {
  .active {
    opacity: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.container {
  width: 340px;
  height: 680px;
  background-color: #f3e6fa;
  overflow: hidden;
}
.container__img {
  width: 100%;
  height: 35%;
  background-image: url("../assets/images/background-pattern-mobile.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.container__faq {
  background-color: white;
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  min-height: 450px;
  border-radius: 10px;
  padding: 20px;
}
.container__faq__header {
  display: flex;
  align-items: center;
}
.container__faq__header__text {
  font-size: 30px;
  font-weight: 700;
}
.container__faq__header__image {
  background-image: url("../assets/images/icon-star.svg");
  width: 25px;
  height: 25px;
  background-size: contain;
  margin-right: 20px;
}
.container__faq__question {
  width: 100%;
}
.container__faq__question__head {
  display: flex;
  margin-top: 25px;
  font-weight: 600;
  justify-content: space-between;
  align-items: center;
}
.container__faq__question__head:hover {
  color: purple;
  cursor: pointer;
}
.container__faq__question__head__button {
  background-image: url("../assets/images/icon-plus.svg");
  min-height: 30px;
  min-width: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}
.container__faq__question__head__button.clicked {
  background-image: url(../assets/images/icon-minus.svg);
}
.container__faq__question__answer {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #796d6d;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
}
.container__faq__question__answer.active {
  max-height: 100px;
  opacity: 1;
}
.container__faq__question > hr {
  margin-top: 10px;
  border: none;
  background-color: #d6d2d2;
  height: 1px;
}

@media screen and (min-width: 1200px) {
  .container {
    width: 85vw;
    height: 85vh;
    margin-top: 7.5vh;
    box-shadow: 0px 0px 24px -3px rgb(0, 0, 0);
  }
  .container__img {
    background-image: url(../assets/images/background-pattern-desktop.svg);
  }
  .container__faq {
    top: 25vh;
    width: 600px;
    min-height: 550px;
    padding: 50px;
  }
  .container__faq__header__text {
    font-size: 50px;
  }
  .container__faq__header__image {
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=main.css.map */