@import url(common.css);

.content section {
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 52px;
}
@media screen and (max-width: 1139px) {
  .content section {
    padding-top: 16px;
    margin-bottom: 16px;
  }
}

.content p {
  margin-left: 4.5%;
  /* 30px */
  margin-right: 2.3%;
  /* 15px */
  opacity: 0;
  animation-name: answers;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes answers {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  40% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 991px) {
  .content p {
    padding-bottom: 1em;
  }
}
