/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
body {
    position:relative;
    z-index:0;
}
.main:before {
    width:100%;
    height:100%;
    position:absolute;
    top:0px;
    left:0px;
    z-index:-1;
    content:'';
    background:-webkit-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
    background:-moz-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
    background:-o-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
    background:radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
}

.site-header-wrap {
    margin-bottom:60px;
    border-bottom:1px solid #cd9ad6;
}

/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}

.accordion {
    width: 100%;
    float: left;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0px;
    background: #fff;
    padding: 0px 0px;
    margin-bottom: 30px;
}

/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    padding: 15px;
    display: inline-block;
    border-bottom: 1px solid #d7d7d7;
    background: #fff;
    transition: all linear 0.15s;
    text-shadow: none;
    color: #86754d;
    font-size: 22px;
    position: relative;
    padding-left: 60px;
    padding-top: 20px;
    font-family: 'TamilMN-Bold';
}
.accordion-section-title img{
    position: absolute;
    left: 15px;
    top: 28px;
}
.accordion-section-title img:nth-child(1){
    display: block;
}
.accordion-section-title img:nth-child(2){
    display: none;
}

.accordion-section-title.active, .accordion-section-title:hover, .accordion-section-title:focus {
    background: #fff;
    text-decoration: none;
    color: #86754d;
}
.accordion-section-title.active img:nth-child(1){
    display: none;
}
.accordion-section-title.active img:nth-child(2){
    display: block;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none;
    padding-left: 60px;
    font-size: 22px;
    color: #86754d;
}
.accordion-section-content p{
    padding: 15px 15px 15px 5px;
}