.questions {
  width: 100%;
  padding: 10vh 0;
  background-image: url('../assets/img/38033.jpg');
  background-position: center center;
  background-size: cover;
  position: relative;
}
.questions::after {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: '';
  background-color: rgba(210, 152, 35, 0.85);
  position: absolute;
}
.questions__body {
  color: #fff;
  position: relative;
  z-index: 100;
  width: 60vw;
  text-align: center;
  margin: 0 auto;
}
.questions__title {
  font-size: 2.3em;
  margin-bottom: 5vh;
  font-weight: 500;
}
.questions__quote {
  font-size: 1.2em;
  margin-bottom: 1vh;
}
.questions__text {
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 7vh;
}
.questions__button {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 2em;
  color: #fff;
  font-size: 1.2em;
  text-transform: uppercase;
  padding: 1.5vh 2vw;
  transition: background-color 500ms ease, color 500ms ease;
}
.questions__button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #d29723;
}

@media only screen and (max-width: 768px) {
  .questions__body {
    width: 80vw;
  }
}
