.heading-fluid  {
  position: relative;
  background-image: url(../../assets/images/flexi-cap/darkbluebanner.jpg);
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
  padding-block: clamp(7rem, 9vw, 11rem);
  padding-inline: clamp(0rem, 9vw, 0rem);
}


.mythSection .accordion {
  cursor: pointer;
  padding: 24px;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: var(--yellow-light-grey, #FBF8F0);
}
@media (max-width: 767px) {
  .mythSection .accordion {
    padding: 16px 12px;
    align-items: center;
    gap: 16px;
  }
}
.mythSection .accordion h4 {
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 767px) {
  .mythSection .accordion h4 {
    font-size: 14px;
    line-height: 22px;
  }
}
.mythSection .accordion img {
  transform: rotate(0deg);
  transition: all 0.6s;
  display: block;
}
.mythSection .accordion.active {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}
.mythSection .accordion.active img {
  transform: rotate(180deg);
}
.mythSection .panel {
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  display: none;
  margin-top: 0px;
  padding: 24px;
  padding-top: 0;
  border-radius: 0px 0px 8px 8px;
  background: var(--yellow-light-grey, #FBF8F0);
}
@media (max-width: 767px) {
  .mythSection .panel {
    padding: 16px 12px;
    padding-top: 0;
  }
}
.mythSection .panel .content_myth {
  border-radius: 8px;
  background: var(--white, #FFF);
  padding: 16px 24px;
}
.mythSection .panel .content_myth p {
  color: var(--dark-black, #1E1B1B);
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .mythSection .panel .content_myth p {
    color: var(--dark-black, #1E1B1B);
    font-size: 12px;
    line-height: 20px;
  }
}
.mythSection .panel .content_myth span {
  color: var(--dark-black, #1E1B1B);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  display: block;
}
@media (max-width: 767px) {
  .mythSection .panel .content_myth span {
    color: var(--dark-black, #1E1B1B);
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .mythSection {
    padding: 16px 12px;
  }
}
.mythSection h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .mythSection h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
.mythSection .mythWrapper {
  margin: 40px 0;
}
.mythSection .mythContent {
  margin-bottom: 24px;
}