
/** faq-section **/

.faq-section{
  position: relative;
  background-color: #d8c6b4;
}

.faq-image-top{
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.faq-image-top .image-rounded{
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.10);
  width: 100%;
}

.faq-image-top .image-rounded img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.faq-image-top .award-box{
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: var(--secondary-color);
  text-align: center;
  border-radius: 20px;
  padding: 25px 35px;
  z-index: 1;
  min-width: 200px;
}

.faq-image-top .award-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 20px;
  z-index: -1;
}

.faq-image-top .award-box:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 8px;
  top: 8px;
  border-radius: 20px;
  z-index: -2;
}

.faq-image-top .award-box .icon-box{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.faq-image-top .award-box h4{
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  margin: 0;
}

.content-column.centred{
  margin: 0 auto;
  float: none;
  text-align: left;
}

.content-column.centred .content_block_three .content-box{
  margin: 0 auto;
  max-width: 100%;
}

.content-column.centred .sec-title.centred{
  text-align: center;
}

.content-column.centred .sec-title.centred p{
  text-align: center;
  font-size: 17px;
  line-height: 28px;
  color: #555;
  max-width: 700px;
  margin: 15px auto 0;
}

.content-column.centred .sec-title.centred h2{
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 20px;
  font-weight: 700;
}

.content-column.centred .sec-title.centred .sub-title{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.content_block_three .content-box{
  position: relative;
  display: block;
}

.content_block_three .content-box .accordion{
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.content_block_three .content-box .accordion:hover{
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.content_block_three .content-box .accordion:last-child{
  margin-bottom: 0px;
}

.content_block_three .content-box .accordion .acc-btn{
  position: relative;
  padding: 24px 70px 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.content_block_three .content-box .accordion .acc-btn:hover{
  background: #f8f8f8;
}

.content_block_three .content-box .accordion .acc-btn.active{
  background: var(--theme-color);
}

.content_block_three .content-box .accordion .acc-btn.active:hover{
  background: var(--theme-color);
  opacity: 0.95;
}

.content_block_three .content-box .accordion .acc-btn h3{
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease;
  margin: 0;
}

.content_block_three .content-box .accordion .acc-btn.active h3{
  color: #fff;
}

.content_block_three .content-box .accordion .acc-btn .icon-box{
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.content_block_three .content-box .accordion .acc-btn.active .icon-box{
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(180deg);
}

.content_block_three .content-box .accordion .acc-btn:hover .icon-box{
  background: rgba(0, 0, 0, 0.1);
}

.content_block_three .content-box .accordion .acc-btn.active:hover .icon-box{
  background: rgba(255, 255, 255, 0.3);
}

.content_block_three .content-box .accordion .acc-content{
  position: relative;
  display: none;
  padding: 0px 32px 28px 32px;
  background: #fff;
  overflow: hidden;
}

.content_block_three .content-box .accordion .acc-content.current{
  display: block;
  animation: fadeInDown 0.3s ease;
}

/* Ensure content is visible when jQuery sets inline display */
.content_block_three .content-box .accordion .acc-content[style*="display: block"],
.content_block_three .content-box .accordion .acc-content[style*="display:block"] {
  display: block !important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content_block_three .content-box .accordion .acc-content .text{
  position: relative;
  display: block;
}

.content_block_three .content-box .accordion .acc-content .text p{
  font-size: 16px;
  line-height: 28px;
  color: #333;
  margin-bottom: 0px;
  font-weight: 400;
}

.image_block_two .image-box{
  position: relative;
  display: block;
}

.image_block_two .image-box .image{
  border-radius: 245px 245px 30px 245px;
}

.image_block_two .image-box .image img{
  width: 100%;
}

.image_block_two .image-box .award-box{
  position: absolute;
  left: 0px;
  bottom: 110px;
  width: 250px;
  text-align: center;
  border-radius: 30px 30px 80px 30px;
  padding: 39px 40px 33px 40px;
  z-index: 1;
}

.image_block_two .image-box .award-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 30px 30px 80px 30px;
  z-index: -1;
}

.image_block_two .image-box .award-box:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 10px;
  top: 13px;
  border-radius: 30px 30px 80px 30px;
  z-index: -2;
}

.image_block_two .image-box .award-box .icon-box{
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.image_block_two .image-box .award-box h4{
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
}

.faq-section.alternat-2 .content_block_three .content-box{
  max-width: 630px;
  margin: 0 auto;
}


/** rtl-css **/

.rtl .image_block_two .image-box{
  margin-left: 0px;
  margin-right: 30px;
}

.rtl .content_block_three .content-box{
  margin-right: 0px;
  margin-left: 30px;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){
  
}

@media only screen and (max-width: 991px){
  .content_block_three .content-box{
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .rtl .content_block_three .content-box{
    margin-left: 0px;
  }

  .image_block_two .image-box{
    margin-left: 0px;
  }

  .rtl .image_block_two .image-box{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px){
  .faq-section{
    padding: 65px 0px 70px 0px;
  }

  .faq-section.pt_0.pb_0{
    padding: 0px 0px;
  }

}

@media only screen and (max-width: 599px){
  .content_block_three .content-box .accordion .acc-content{
    padding-right: 30px;
  }
}

@media only screen and (max-width: 499px){

}











































