.banner-section {
  height: auto;
  padding:150px 0;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
/* about-section */
.about-section {
  padding: 40px 0;
  background: #dbe9ff;
}
.about-img {
  height: 250px;
  max-width: 400px;
  padding-left: 12px;
  padding-bottom: 12px;
  background-color: rgb(27, 74, 202);
}
.about-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about-section .title2 {
  color: #25801d;
  font-size: 32px;
  font-weight: 600;
}
.about-content p {
  font-size: 14px;
  max-width: 700px;
}
/* accordian section */
.accordion-sec {
  padding: 50px 0;
}
.accordion {
  width: 100%;
  /* border-radius: 8px; */
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion-header {
  background: #f4f4f4;
  cursor: pointer;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;

  /* border-bottom: 1px solid #000000; */

  /* border-bottom: 1px solid #ccc; */
}
.accordion-header:hover,
.active .accordion-header {
  background-color: #bee9fd !important;
}
.accordion-header p {
  margin-bottom: 0;
}

.accordion-header span {
  font-size: 24px;
  font-weight: 500;
  background-color: #001d53;
  border-radius: 50%;
  color: white;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
  font-size: 16px;
}
.accordion-content p {
  margin-bottom: 0;
}
.accordion.active .accordion-content {
  display: block;
}
.faq-title {
  position: relative;
  max-width: 150px;
  margin: 0 auto 30px;
  color: #25801d;
}
.faq-title::after,
.faq-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 3px;
  background-color: #ff9500;
}
.faq-title::after {
  right: -60px;
}
.faq-title::before {
  left: -60px;
}
.faq-btn {
  color: #ac6400;
  margin-left: 15px;
  margin-bottom: 20px;
}
.faq-btn:hover {
  color: #ff9500;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 576px) {
  .banner-section {
padding:50px 0;
  }
  .about-img {
    height: 200px;
  }
}
