.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
  margin-bottom: 0px;
  z-index: 0;
  width: 100%;
}

/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 20px;
  border: 0px solid #c1c1c1;
  padding: 14px 0px 20px;
  border-radius: 6px 0 6px 0;
  border-bottom: 1px solid #e5e8ec;
}

.smk_accordion .accordion_in:last-child {
  margin-bottom: 0;
}

/*** -------------------------------
 				* Head *
 * -----------------------------***/

.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  position: relative;
}

/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_content {
  padding: 20px;
  font-size: 16px;
  line-height: 28px;
  border-top: 1px solid #c1c1c1;
  margin-top: 15px;
}
.smk_accordion .acc_head h3 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.smk_accordion .acc_head h3:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../../assets/images/svg/arrow-down.svg) no-repeat;
  width: 12px;
  height: 7px;
  bottom: 0;
  margin: auto 0;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}

.smk_accordion .accordion_in .acc_content p {
  font-size: 16px;
  line-height: 28px;
  font-weight: normal;
  color: #222426;
  margin-bottom: 30px;
}
.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
  margin-top: 5px;
}
.smk_accordion .accordion_in.acc_active .acc_head h3:after {
  transform: rotate(-180deg);
}
.faq-head {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
  padding: 0 40px 0 22px;
  position: relative;
  cursor: pointer;
}
.faq-head:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 4px;
  background-color: #fa6900;
  height: 100%;
  bottom: 0;
}
/**
 * --------------------------------------------------------------
 * General
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in:first-of-type,
.smk_accordion .accordion_in:first-of-type .acc_head {
  /* border-radius: 3px 3px 0 0;*/
}

.smk_accordion .accordion_in:last-of-type,
.smk_accordion .accordion_in:last-of-type .acc_content {
  /*	border-bottom: 0;*/
  /* border-radius: 0 0 3px 3px;*/
}

.smk_accordion .accordion_in.acc_active > .acc_content {
  display: block;
  border-top: 0px solid rgb(193 193 193 / 30%);
  background: #fff0e6;
}

/* .smk_accordion .accordion_in.acc_active {background:#EFEFEF;border-color: #EFEFEF;  } */
.smk_accordion .accordion_in.acc_active .acc_head {
  color: #fa6900;
}
.smk_accordion .accordion_in.acc_active {
  border-bottom: 0 !important;
}
@media screen and (max-width: 1279.99px) {
  .smk_accordion .accordion_in .acc_head .acc_icon_expand::after {
    right: -25px;
  }
  /* .smk_accordion .accordion_in {
    padding: 14px 20px;
  } */

  .smk_accordion .accordion_in .acc_content p {
    font-size: 16px;
  }
  .faq-head {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .smk_accordion .acc_head h3 {
    font-size: 16px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 480px) {
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand::after {
  display: block;
  position: absolute;
  right: -30px;
  content: "";
  background: transparent url(../images/svg/plus.svg) no-repeat center;
  width: 20px;
  height: 20px;

  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  border-radius: 100%;
  text-align: center;
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand::after {
  content: "";
  background: url(../images/svg/minus.svg) no-repeat center;
}
