@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap");
#inner-page-wrapper {
  margin-bottom: 0;
}

.word {
  white-space: nowrap;
  display: inline-block;
  position: relative;
}

.chars .char {
  position: relative;
  display: inline-block;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.7s, 0.7s, 1s;
  transition-timing-function: ease, ease, ease;
  transition-property: transform, opacity;
  transition-delay: calc(0.4s + 30ms * var(--char-index));
  transform: translateY(25px);
  opacity: 0;
}

.is-visible {
  opacity: 0;
}

.is-visible.ready-animate {
  opacity: 1;
}

.ready-animate .char, .aos-animate .char {
  will-change: opacity, transform;
  transform: translateY(0px);
  opacity: 1;
}

#inner-page-wrapper > .container {
  width: 100%;
  padding: 0;
}

#ip-faqs {
  position: relative;
  font-family: "Open Sans", serif;
  padding: 15px 0 0;
  font-size: 0;
}

.ip-faqs-container {
  position: relative;
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}
.ip-faqs-container h2 {
  /* font-family: "Baskervville", serif; */
  font-family: var(--font-family-title);
  font-size: 72px;
  font-weight: 500;
  color: #000000;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 32px;
}
.ip-faqs-container h2 span {
  letter-spacing: 0;
}

.ip-faqs-main {
  max-width: 955px;
  margin: 0 auto;
}
.ip-faqs-main h3 {
  font-family: "Baskervville", serif;
  font-size: 57.6px;
  font-weight: 500;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 18px;
}
.ip-faqs-main h4 {
  font-family: "Baskervville", serif;
  font-size: 30.6px;
  font-weight: 500;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ip-faqs-main h5 {
  font-size: 21.6px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.ip-faqs-main p {
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.ip-faqs-main p a {
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.4s ease-out;
  color: #015936;
}
.ip-faqs-main p a:hover {
  color: #015936;
  border-color: #015936;
  text-decoration: none;
}
.ip-faqs-main blockquote {
  margin: 30px 0;
  padding: 0 25px;
  border-left: 0;
}
.ip-faqs-main blockquote p {
  font-family: "Baskerville", serif;
  font-size: 30.6px;
  font-weight: 500;
  color: #015936;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 991px) {
  .ip-faqs-container h2 {
    font-size: 50px;
  }
  .ip-faqs-main h3 {
    font-size: 50px;
  }
  .ip-faqs-main p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .ip-faqs-container h2 {
    font-size: 45px;
  }
  .ip-faqs-main h3 {
    font-size: 45px;
  }
  .ip-faqs-main blockquote p {
    font-size: 20px;
  }
}