.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
  margin-bottom: 0px;
  z-index: 0;
}

/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.accordion_in {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom:1px solid rgba(22 37 76 / 20%);
  margin-bottom:0px;
  cursor: pointer;
  background-color:var(--white);
}
.accordion_in .acc_head {
   
    padding:26px 30px 26px 0;
	   
}
.accordion_in .acc_head .faqquestion
{
	 font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--theme);
	margin:0;
	padding:0;
	font-family:var(--font-body-family);
}

/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */

.accordion_in .acc_head .acc_icon_expand {
  position: absolute;
  right: 0px;
  width: 22px;
  height: 22px;
  top:28px;
  display:inline-block;
}
 .accordion_in .acc_head .acc_icon_expand:before{
  content:'';
  position: absolute;
  top: 0%;
  right: 0;
  margin:0px;
  left: 0;
  bottom: 0;
  width:22px;
  height:22px;
  background:url('../images/svg/plus-icon.svg') no-repeat center center;
}
.accordion_in.acc_active .acc_head .acc_icon_expand:before
{
	 background:url('../images/svg/minus-icon.svg') no-repeat center center;

}

.accordion_in .acc_content p {
  font-size:18px;
  line-height:26px;
  letter-spacing:0px;
  color:var(--primary);
  font-weight:normal;
}
.accordion_in .acc_content p:last-of-type {
  margin-bottom: 0;
}



/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */

.accordion_in .acc_content {
  padding:26px 0;
 display: none;
  border-top:1px solid rgba(22 37 76 / 20%);
}
/* 
.smk_accordion .accordion_in .acc_content p {
  line-height: 26px;
  font-weight: normal;
  color: #4d4d4d;
  font-size: 14px;
} */


/**
 * --------------------------------------------------------------
 * General
 * --------------------------------------------------------------
 */

.accordion_in.acc_active > .acc_content {
  display: block;
	background-color:#Ffffff;
}
.faq-head {
  font-size:18px;
  letter-spacing:0.36px;
  color:#2E2E2E;
  font-weight:800;
 line-height:26px;
  padding: 20px 30px 20px 0px;
  cursor: pointer;
}


.smk_accordion .accordion_in:last-child{margin-bottom:0;}


/* RESPONSIVE  MEDIA QUERY */
@media (max-width: 1599.98px){

}

@media(max-width:1439.98px){
	.accordion_in .acc_head{
          padding: 18px 30px 18px 0;
        font-size:18px;
  }
  .accordion_in .acc_head .acc_icon_expand{
    top:20px;
  }
  .accordion_in .acc_content{
    padding:18px 0;
  }
	.accordion_in .acc_head .faqquestion{
		font-size:18px;
	}
}
@media (max-width: 1199.98px) {
	    
}
@media (max-width:991.98px) {
	.accordion_in .acc_head{
    font-size:18px;
    line-height:1.2;
  }  
	.accordion_in .acc_head .faqquestion{
			 font-size:18px;
    line-height:1.2;
	}
	.accordion_in .acc_content p{
    font-size:16px;
    line-height:24px;
    letter-spacing:0.16px;
  }
	.accordion_in .acc_head .acc_icon_expand{
		    top: 16px;
	}
}
@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
	.accordion_in .acc_head .acc_icon_expand{
    width: 18px;
    height: 18px;
    top:20px;
  }
  .accordion_in .acc_head .acc_icon_expand:before{
    width: 18px;
    height: 18px;
  }
}

