
/** faq-section **/

.faq-section{
  position: relative;
}

.faq-section:before{
  position: absolute;
  content: '';
  width: 660px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.faq-section .pattern-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 660px;
  background-repeat: no-repeat;
}

.accordion-box .block{
  position: relative;
  display: block;
  border: 1px solid #e1e7ee;
  margin-bottom: 12px;
  background: #fff;
  transition: all 500ms ease;
}

.accordion-box .block.active-block{
  box-shadow: 0 0px 50px rgba(0, 0, 0, 0.07);
  border: 1px solid #e6edf4;
}

.accordion-box .block:last-child{
  margin-bottom: 0px;
}

.accordion-box .block .acc-content.current{
  display:block;  
}

.accordion-box .block .acc-btn{
  position: relative;
  display: block;
  padding: 22px 60px 23px 40px;
  cursor: pointer;
}

.accordion-box .block .acc-btn h5{
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h5{

}

.accordion-box .block .acc-btn .icon-outer{
  position: absolute;
  top: 19px;
  right: 38px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer i:before{
  position: relative;
  font-size: 14px;
  font-family: 'Font Awesome 5 Pro';
  margin: 0px;
  content: "\f068";
  color: #1c1c1c;
}

.accordion-box .block .acc-content{
  position:relative;
  display:none;
  padding: 5px 70px 30px 40px;
}

.accordion-box .block .acc-content p{
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  margin: 0px;
}

.content_block_7 .content-box .sec-title{
  margin-bottom: 54px;
}

.faq-section .content_block_7 .content-box{
  margin-right: 60px;
}

.image_block_4 .image-box{
  position: relative;
  display: block;
  margin-left: 25px;
  margin-top: 5px;
}

.image_block_4 .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.image_block_4 .image-box .image img{
  width: 100%;
}

.image_block_4 .image-box .image:after{
  position: absolute;
  top: 0;
  left: -80%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.image_block_4 .image-box:hover .image:after{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}