* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Work Sans, Arial;
}

body {
  background-image: url("assets/images/background-pattern-desktop.svg");
  background-repeat: repeat-x;
  justify-content: center;
  align-items: center;
  padding-bottom: 300px;
}

p {
  font-family: Work Sans, Arial;
}

.container {
  display: flex;
  margin-top: 130px;
  justify-content: center;
  align-items: center;
}

.main-container {
  display: flex;
  column-gap: 20px;
  flex-direction: column;
  background: white;
  border-radius: 15px;
  width: 40%;
  height: 40%;
  padding: 20px 30px;
  box-shadow: 5px 5px 10px hsl(294, 25%, 71%);
}

.FAQS {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.faqs {
  font-size: 50px;
  margin-left: 20px;
  font-family: Work Sans, Arial;
}

.icon-star,
.icon-minus,
.icon-plus {
  height: 35px;
  width: 35px;
}

.intro-to-fem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.icon-star {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.intro-desc {
  font-size: 16px;
  font-weight: bold;
}

.fem-description-content {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  color: hsl(292, 16%, 49%);
  line-height: 1.3;
  margin-top: 20px;
}

.faqs-section {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.faqs-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
}

.faqs-questionaire {
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
}

hr {
  border: 1px solid whitesmoke;
}

/* Desktop:  1440px*/
/* 1440px / 16px = 90rem */
@media (max-width: 90rem) {
  .container {
    margin-top: 120px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .main-container {
    width: 45%;
    height: 30%;
  }

   .icon-plus, .icon-minus {
    margin-left: 50px;
  }
}

/* Mobile: 375px*/
@media (max-width: 24rem) {
  body {
    font-size: 10px;
    background-image: url("assets/images/background-pattern-desktop.svg");
    background-repeat: repeat-x;
    background-position: top;
  }
  .icon-plus {
    margin-left: 50px;
  }
  .container {
    margin-top: 170px;
  }

  .main-container {
    width: 100%;
    padding: 20px 20px;
    height: 50%;
  }
}
