.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
  margin-bottom: 0px;
  z-index: 0;
  max-width: 1030px;
  margin-inline: auto;
}

/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.accordion_in {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid #c9c9c9;
  opacity: 1;
  z-index: 1;
}

/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */
.accordion_in .acc_head {
  font-family: var(--sitefonts);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
  cursor: pointer;
  padding: 25px 28px;
  margin-bottom: 0;
}

.accordion_in .acc_head .acc_icon_expand {
  position: absolute;
  right: 28px;
  width: 18px;
  height: 18px;
  top: 28px;
  background: url(../images/icon/plus.svg) center center no-repeat;
  display: inline-block;
  margin-top: 0;
}

.accordion_in.acc_active .acc_head .acc_icon_expand {
  background: url("../images/icon/minus.svg") center center no-repeat;
  filter: brightness(0) invert(1);
}

.accordion_in .acc_content p {
  font-family: var(--sitefonts);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
}

.accordion_in .acc_content p:last-of-type {
  margin-bottom: 0;
}

/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */

.accordion_in .acc_content {
  display: none;
  border-top: 1px solid #c9c9c9;
  padding: 25px 50px 25px 28px;
}

.accordion_in .acc_content p a {
  color: var(--white);
  border-bottom: none;
}

.accordion_in .acc_content p a:hover {
  border-bottom: 2px solid #fff;
}

/* 
.smk_accordion .accordion_in .acc_content p {
  line-height: 26px;
  font-weight: normal;
  color: #4d4d4d;
  font-size: 14px;
} */

/**
 * --------------------------------------------------------------
 * General
 * --------------------------------------------------------------
 */

.accordion_in.acc_active {
  background-color: #434b4e;
}

.accordion_in.acc_active .acc_head {
  color: var(--white);
}

.accordion_in.acc_active .acc_content p {
  color: var(--white);
}

.accordion_in.acc_active>.acc_content {
  display: block;
}

.acc_content ul {
  margin-left: 0px;
  margin-top: 15px;
}

.acc_content li {
  list-style-type: none;
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #1a1818;
  margin-bottom: 0;
  font-family: "Aeonik";
}

.acc_content li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--theme);
}

.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;
}

/*.smk_accordion .accordion_in.acc_active {background:transparent;  }*/
@media (max-width: 1599.98px) {
  .accordion_in .acc_head {
    padding: 20px 20px;
  }

  .accordion_in .acc_content {
    padding: 20px 35px 20px 20px;
  }
}

@media (max-width: 1439.98px) {
  .accordion_in .acc_head .acc_icon_expand {
    right: 22px;
    top: 26px;
  }
}

@media (max-width: 1199.98px) {
  .accordion_in .acc_head {
    line-height: 1.4;
    padding: 15px;
  }

  .accordion_in .acc_content {
    padding: 15px 30px 15px 15px;
  }

  .accordion_in .acc_content p {
    line-height: 1.4;
  }

  .accordion_in .acc_head .acc_icon_expand {
    right: 20px;
    top: 22px;
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {
  .accordion_in {
    margin-bottom: 15px;
  }

  .accordion_in .acc_head {
    font-size: 16px;
    line-height: 1.3;
    padding: 12px 35px 12px 12px;
  }

  .accordion_in .acc_content {
    padding: 12px 12px 12px 12px;
  }

  .accordion_in .acc_content p {
    font-size: 16px;
    line-height: 1.3;
  }

  .accordion_in .acc_head .acc_icon_expand {
    right: 14px;
    top: 16px;
    width: 14px;
    height: 14px;
  }
}