html,
body {
  overflow-x: hidden;
}

body {
  background: #fff;
}

section.faq {
  padding: 20px 0;
}

section.faq h1 {
  margin: 50px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  color: #232323;
}

.accordion {
  padding-bottom: 40px;
}

.accordion-button {
  border: 1px solid #eee;
  background: #fcfcfc;
  border-radius: 10px;
  color: #232323;
  font-weight: 400;
  margin-right: 10px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  margin: 15px 0;
  border: none;
}

.accordion-body {
  background: #fff;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.accordion-button::after {
  display: none;
}

/* Add custom icons */
.accordion-button .accordion-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: auto;
  transition: transform 0.2s ease-in-out;
  color: #FC4C9E;
}

.accordion-button:not(.collapsed) {
  background: #fcfcfc;
}

.accordion-button:not(.collapsed) .fa-plus {
  display: none;
}

.accordion-button.collapsed .fa-minus {
  display: none;
}

.shape-left {
  position: absolute;
  top: 60%;
}

.shape-top {
  position: absolute;
  left: 15%;
  top: 0;
  z-index: -1;
}

.ellipse-right {
  position: absolute;
  right: 0;
  top: 60%;

}

.hamburger-menu {
  display: none;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  padding: 20px;
  color: #fff;
  font-weight: 500;
}

.menu-content {
  background-color: white;
  height: 100vh;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  transition: left 0.3s ease;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .menu-content ul li {
} */

.menu-content ul li a {
  text-decoration: none;
  color: gray;
  display: block;
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-weight: 400;
  border-radius: 0;
}

.menu-content ul li a.active {
  color: #FC4C9E;
  font-weight: 700;
}

.menu-content ul li a:hover {
  background: #eee;
  color: #FC4C9E;
}

.close-icon {
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  text-align: right;
}

@media only screen and (max-width: 800px) {
  .hamburger-menu {
    display: block;
  }

  .bannersection {
    display: none;
  }
}

.active-footer-link {
  color: #FC4C9E;
}