.faq-card {
  background: #fffffff5;
  color: #333;
  width: 90%;
  max-width: 50rem;
  min-height: 30rem;
  border-radius: 2rem;
}

.faq-container {
  margin-top: 10px;
}

.faq-hero {
  display: flex;
  justify-content: center;
  transform: translateY(-55%);
}
.faq-hero .faq-img {
  filter: drop-shadow(0rem 1.5rem rgba(0, 0, 0, 0.1));
  transition: 0.3s ease-out;
  width: 500px;
}
.faq-card:hover .faq-img {
  filter: drop-shadow(0rem 2.5rem rgba(0, 0, 0, 0.1));
}

.faq-title {
  text-align: center;
  font-size: 3rem;
  padding: 1rem;
  margin-top: -120px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.faq-acc-btn {
  width: 100%;
  padding: 2rem 0;
  font-size: 2rem;
  cursor: pointer;
  background: inherit;
  border: none;
  outline: none;
  text-align: left;
  transition: all 0.5s linear;
}
.faq-acc-btn:after {
  content: "\27A4";
  color: #fa8d0c;
  float: right;
  transition: all 0.3s linear;
}
.faq-acc-btn.is-open:after {
  transform: rotate(90deg);
}
.faq-acc-btn:hover,
.faq-acc-btn.is-open {
  color: #000;
  font-weight: bold;
}

.faq-acc-content {
  max-height: 0;
  color: rgba(0, 0, 0, 0.75);
  font-size: 1.5rem;

  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  border-bottom: 1px solid #ccc;
}

@media only screen and (min-device-width: 280px) and (max-device-width: 540px) {
  .faq-title {
    margin-top: -130px;
  }

  .faq-hero {
    transform: translateY(-80%);
  }
  .faq-hero .faq-img {
    width: 300px;
  }
  .faq-acc-btn {
    padding: 1.6rem 0;
  }
  .faq-card {
    width: 95%;
    margin-bottom: 2rem;
  }
  .faq-acc-content {
    margin: 0 !important;
    padding-left: 0 !important;
  }
}
