@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Play:400,700');

/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/

.acco-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');*/
}
.acco-main {margin-bottom: 60px;}

.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 {
	overflow:hidden;
}

.accordion-section {display: block!important; margin-bottom: 10px; }
.impress-acco {padding: 30px 0 0 0;}
.impress-acco .accordion-section-title {color: #7f7f7d; }


/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	display:inline-block;
	text-decoration: none;
	transition:all linear 0.15s;
	/* Type */
	font-size:1.200em;
    background: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    height: 36px;
    padding: 0 0 0 17px;
    line-height: 36px;
    border-radius: 4px;
    font-family: 'Play', sans-serif;
	
}

.accordion-section-title::before {
content: url("../images/down-acco.png");
position: relative; float: right;
    transition: all .3s ease;
    padding-right: 10px
}

.accordion-section-title.active::before {
 -moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-moz-transform: rotate(180deg); /* Firefox 3.6 Firefox 4 */
-webkit-transform: rotate(180deg); /* Safari */
-o-transform: rotate(180deg); /* Opera */
-ms-transform: rotate(180deg); /* IE9 */
transform: rotate(180deg); /* W3C */
    padding-left: 10px
    
}
.accordion-section-title.active{

	text-decoration:none;
   
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:10px 0;
	display:none;
}

@media screen and (max-width: 400px) {
    .accordion-section-title {font-size: 12px}
}
