/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.accordion_in {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 0 40px;
    border:1px solid var(--golden-bg);
}

/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */

.accordion_in .acc_head .acc_icon_expand {
    position: relative;
    display: block;
}
.smk_accordion .accordion_in:last-child {
    margin-bottom: 0;
}
.accordion_in .acc_head h3{
    font-size: 20px;
    color: var(--secondary);
    padding: 19px 20px 19px 0;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    line-height: 1.2;
}
.accordion_in .acc_head h3:before{
    content:"";
    position: absolute;
    top:26px;
    right:0;
    background: url(../../assets/images/plus.png) no-repeat;
    width: 18px;
    height: 18px;
}
.accordion_in.acc_active .acc_head h3:before{
    background:url(../../assets/images/minus.png) no-repeat;
}

/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */
.accordion_in .acc_content {
    font-size: 16px;
    border-top: 1px solid var(--golden-bg);
    padding: 25px 0 30px;
}

.accordion_in .acc_content p:last-child {
    margin-bottom: 0;
}
.accordion_in .acc_content h1:first-of-type,
.accordion_in .acc_content h2:first-of-type,
.accordion_in .acc_content h3:first-of-type,
.accordion_in .acc_content h4:first-of-type,
.accordion_in .acc_content h5:first-of-type,
.accordion_in .acc_content h6:first-of-type {
    margin-top: 5px;
}

.accordion_in.acc_active > .acc_content {
    display: block;
}




@media screen and (max-width: 1199.98px) {
    .accordion_in { padding: 0 20px;}
    .accordion_in .acc_head h3 {font-size: 16px;padding-right: 20px;line-height: 1.4;}
    .accordion_in{margin-bottom: 12px;}
    .tab_ul {padding: 30px 25px;}
    .accordion_in .acc_content { padding: 20px 0 25px; }
   
    
}

@media screen and (max-width: 767.98px) {
   
}
