@font-face {
  font-family: "Work Sans";
  src: url(../assets/fonts/WorkSans-VariableFont_wght.ttf);
}
/* General body styling */
body {
  position: relative; /* Ensures the body is positioned relative to its normal flow */
  display: flex; /* Enables flexbox layout */
  justify-content: center; /* Centers content horizontally */
  min-height: 100vh; /* Ensures the body takes up at least the full viewport height */
  font-family: "Work Sans";
  font-style: normal;
  line-height: normal;
  background: #F8EEFF;
  font-feature-settings: "liga" off, "clig" off;
}

/* Media query for screens with a width of up to 375px */
@media screen and (max-width: 375px) {
  body {
    min-height: 100%; /* Ensures the body takes up at least the full height of its parent container */
  }
}
.d-none {
  display: none;
}

main {
  position: relative;
  width: 100%;
}
main .top img {
  width: 100%;
}
main .top .desktop {
  display: none;
}
main .accordion {
  margin: 0 1.5rem;
  padding: 1.5rem;
  position: absolute;
  top: 8.90625rem;
  border-radius: 16px;
  background: white;
  box-shadow: 0px 32px 56px 0px rgba(80, 0, 118, 0.1);
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
main .accordion .heading {
  display: flex;
  column-gap: 1.5rem;
  align-items: center;
}
main .accordion .heading img {
  width: 1.5rem;
  height: 1.5rem;
}
main .accordion .heading h1 {
  color: #301534;
  font-size: 2rem;
  font-weight: 700;
}
main .accordion .article_wrapper article:not(:last-child) {
  border-bottom: 1px solid #F8EEFF;
  padding-bottom: 1.5rem;
}
main .accordion .article_wrapper article:not(:first-child) {
  padding-top: 1.5rem;
}
main .accordion .article_wrapper article.question header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1.5rem;
}
main .accordion .article_wrapper article.question header h2 {
  color: #301534;
  font-size: 1rem;
  font-weight: 600;
}
main .accordion .article_wrapper article.question header button.btn {
  border: none;
  background: none;
  width: 1.875rem;
  height: 1.875rem;
}
main .accordion .article_wrapper article.question header:hover {
  cursor: pointer;
}
main .accordion .article_wrapper article.question header:hover h2 {
  color: #AD28EB;
}
main .accordion .article_wrapper article.question p {
  color: #8B6990;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%; /* 21px */
  margin-top: 1.5rem;
}

@media screen and (min-width: 756px) {
  main .top .mobile {
    display: none;
  }
  main .top .desktop {
    display: block;
  }
  main .accordion {
    top: 21.875rem;
    max-width: 37.5rem;
    margin: 0;
    left: 50%; /* Move right by 50% of the parent's width */
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1440px) {
  main .accordion {
    padding: 2.5rem;
    top: 28.125rem;
  }
  main .accordion .heading img {
    width: 2.5rem;
    height: 2.5rem;
  }
  main .accordion .heading h1 {
    font-size: 3.5rem;
  }
  main .accordion .article_wrapper article.question header h2 {
    font-size: 1.125rem;
  }
  main .accordion .article_wrapper article.question p {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
