
/** faq-section **/

.faq-section{
  position: relative;
}

.accordion{
  position: relative;
  background: #fff;
  box-shadow: 0px 2px 70px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.accordion .acc-btn{
  position: relative;
  padding: 20px 70px 20px 40px;
  cursor: pointer;
  background: #fff;
}

.accordion .acc-btn h5{
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
}

.accordion .acc-btn.active {
  background: var(--theme-color);
}

.accordion .acc-btn.active h5{
  color: #fff;
}

.accordion .acc-btn {
  position: relative;
  padding: 15px 60px 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #f9f9f9;
  border-radius: 6px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
  user-select: none;
}

.accordion .acc-btn.active {
  background-color: #0f4469;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(15, 68, 105, 0.3);
}

.accordion .acc-btn .icon-box {
  position: absolute;
  top: 50%;
  right: 20px;
  transform-origin: center;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border: 1px solid rgba(103, 103, 103, 1);
  border-radius: 50%;
  color: #0f4469;
  text-align: center;
  background: white;
  transform: translateY(-50%);
  cursor: pointer;
}

.accordion .acc-btn.active .icon-box {
  transform: translateY(-50%) rotate(180deg);
  background-color: #0f4469;
  border-color: #0f4469;
  color: white;
  box-shadow: 0 0 8px rgba(15, 68, 105, 0.6);
}

.accordion .acc-content {
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  border-left: 3px solid #0f4469;
  margin-bottom: 15px;
  opacity: 0;
  transition-property: max-height, padding, opacity;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.accordion .acc-content.open {
  padding: 20px;
  max-height: 1000px; /* large enough for any content */
  opacity: 1;
}


.faq-section .image-layer{
  position: absolute;
  left: 300px;
  bottom: 0px;
}





/** RTL-CSS **/




/** RESPONSIVE-CSS **/


@media only screen and (max-width: 1200px){

  .faq-section .image-layer{
    display: none;
  }

}

@media only screen and (max-width: 991px){


}

@media only screen and (max-width: 767px){



}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){


}












































