#container_perguntas {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}

#img1 {
  position: absolute;
  right: 0;
  height: 500px;
  top: 190px;
}

#img2 {
  position: absolute;
  left: 0;
  bottom: -46px;
}

h1 {
  font-family: "Unimed Sans Bold", sans-serif;
  color: #00995d;
  font-weight: normal;
  font-size: 24px;
}

.hr_listagem {
  width: calc(100% - 40px);
  margin: auto;
  background-color: #b1d34b;
  border-color: transparent;
  border-width: 0.5px;
}

#wrapper_conteudo {
  padding: 0 20px 175px;
}

.wrapper_perguntas {
  width: 76%;
}

.pergunta_title {
  font-family: "Unimed Sans SemiBold", sans-serif;
  color: #00995d;
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 28px;
  position: relative;
}

.pergunta_resposta {
  font-family: "Unimed Sans Regular", sans-serif;
  font-size: 14px;
  color: #444444;
  margin: 0;
  line-height: 26px;
  display: none;
}

.wrapper_control {
  min-width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid #00995d;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -46px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.wrapper_control .fas {
  position: absolute;
}

.wrapper_control .fa-minus,
.wrapper_control .fa-plus {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  cursor: pointer;
  position: absolute;
}

.wrapper_control .fa-plus {
  transform: rotateY(0);
}

.wrapper_control .fa-minus {
  transform: rotateY(-180deg);
}

.wrapper_componente_pergunta {
  display: flex;
  margin: 24px 0;
  padding: 0 0 0 46px;
  cursor: pointer;
}

.wrapper_componente_pergunta.active .wrapper_control .fa-minus {
  transform: rotateY(0deg);
}

.wrapper_componente_pergunta.active .wrapper_control .fa-plus {
  transform: rotateY(-180deg);
}

.wrapper_busca {
  position: relative;
}

.wrapper_busca i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #afafaf;
}

.wrapper_busca input {
  width: 50%;
  border-radius: 5px;
  border: 1px solid #b7b7b7;
  padding: 12px 40px;
  outline: none;
}

.wrapper_busca input:focus {
  border-color: #00995d;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #797979;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #797979;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #797979;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #797979;
}

.msg_explicativa {
  font-size: 14px;
  font-family: "Unimed Sans Regular", sans-serif;
  margin: 22px 0;
}

.msg_qtd_result {
  color: #797979;
  font-size: 14px;
  font-style: italic;
}

.msg_explicativa a {
  color: #00995d;
  text-decoration: underline;
}

@media (max-width: 768px) {
  h1 {
    font-size: 18px;
  }

  #img1 {
    display: none;
  }

  .wrapper_perguntas {
    width: 100%;
  }

  .wrapper_busca input {
    width: 100%;
  }

  .pergunta_title {
    font-size: 14px;
    line-height: 20px;
  }

  .pergunta_resposta {
    font-size: 12px;
    line-height: 20px;
  }

  #wrapper_conteudo {
    padding: 0 10px 175px;
  }

  .wrapper_control {
    min-width: 25px;
    height: 25px;
    left: -35px;
  }

  .wrapper_componente_pergunta {
    padding: 0 0 0 35px;
  }
}
