/* faq style start  */

.faq-container {
  width: 100%;
  margin: 0;
  background: transparent;
  backdrop-filter: blur(0);
  border-radius: 20px;
  box-shadow: none;
  font-family: roboto;
}

.faq-container .block-2 {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}

.faq-container .block-3 {
  margin-top: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  padding-bottom: 15px;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.349);
}

.accordion-item:hover {
  box-shadow: none;
  transform: none;
}

/* header  */
.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: none;
  background-color: #f5f6f7;
}
.accordion-title {
  font-size: 14px;
  line-height: 1.4;
}

.accordion-header.active {
  color: #373737;
}

.accordion-header .accordion-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../assets/icons/java-app/Chevron down.svg") no-repeat center
    center;
  background-size: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .accordion-icon::before {
  transform: rotate(180deg);
}

.accordion-header.active .accordion-icon {
  transform: none;
}

/* icon  */
.accordion-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #2d3748;
}

.accordion-header .accordion-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../assets/icons/java-app/Chevron down.svg") no-repeat center
    center;
  background-size: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .accordion-icon::before {
  transform: rotate(180deg);
}

.accordion-header.active .accordion-icon {
  transform: none;
}

/* faq content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  will-change: max-height, padding;
  background-color: #f5f6f7;
}

.accordion-content.active {
  max-height: 500px;
  padding: 20px;
  padding-top: 5px;
}

.accordion-text {
  font-family: roboto;
  font-weight: 400;
  font-size: 20px;
  color: black;
  line-height: 1.6;
}

/* faqs style end  */
