/* .faq-banner  */
.faq-banner section {
  padding: 50px 0px;
}

.faq-banner .containerWrapper {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-banner .containerWrapper .content-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-banner .containerWrapper .content-img .image {
  width: 40%;
}

.faq-banner .containerWrapper .content-img .image img {
  width: 100%;
  height: auto;
}

.faq-banner .heading {
  display: block;
  font-size: 160px;
  line-height: 130px;
  font-weight: 700;
  color: #8DD9FF;
  -webkit-text-stroke: 1px #1DB4FF;
}

.faq-banner .subheading {
  display: block;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #233253;
}

.faq-banner .description {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #666666;
}

.faq-banner .description * {
  font-size: 16px;
  line-height: 30px;
}

.faq-banner .description a,
.faq-banner .description a:hover {
  color: #0056b3;
}

.faq-banner .description .highlight {
  color: #007BFF;
}

.faq-banner .description .readMoreText,
.faq-banner .description .readLessText {
  display: none;
  font-weight: 600;
  text-align: center;
  color: #0056A5;
  cursor: pointer;
  margin-bottom: 10px;
}

.faq-banner .faq-banner-cta {
  margin-top: 20px;
}

.faq-banner .faq-banner-cta .btn {
  display: inline-block;
  padding: 4px 14px;
  background-color: #ed1c24;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #d51d25;
}
.faq-banner .faq-banner-cta .btn:hover {
  box-shadow: 0 8px 12px rgba(237, 28, 36, 0.2);
  background: #ff3038;
}

.faq-banner .faq-banner-cta .btn.btn-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #ed1c24;
  border: 1px solid #d51d25;
}

@media screen and (max-width: 768px) {
  .faq-banner section {
    padding: 20px 0px;
  }

  .faq-banner .containerWrapper {
    padding: 0px 15px;
  }

  .faq-banner .containerWrapper .content-img {
    flex-direction: column;
    gap: 25px;
  }

  .faq-banner .heading {
    font-size: 60px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .faq-banner .subheading {
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 8px;
  }

  .faq-banner .containerWrapper .content-img .image {
    width: 80%;
  }

  .faq-banner .description  {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
  }

  .faq-banner .description .readMoreContainer {
    max-height: 90px;
    overflow: hidden;
    transition: all 0.5s linear;
  }

  .faq-banner .description .readMoreContainer.slideDown {
    max-height: 1000px;
  }

  .faq-banner .description .readMoreText {
    display: block;
  }
  .faq-banner .faq-banner-cta {
  text-align: center;
}
}