.main-content {
  padding: 10em 1em;
  background-image: linear-gradient(to right, #9fdfbf, white);
}
.faqs {
  margin: 0 auto;
  max-width: 50em;
}
.faqs h2 {
  text-align: center;
  padding: 1em;
}
.collapsible {
  background-color: #0d261a;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #3bab75;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.collapse,
.collapsible:hover {
  background-color: black;
  box-shadow: 0 0 3px #3bab75;
}

.collapsible:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.collapse:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  /* For tablets: */
  .faqs {
    width: 85%;
  }
}
