@charset "UTF-8";
/* CSS Document */

/* Form Style */
a:hover,a:focus{
 text-decoration: none;
 outline: none;
}

.panel-title{
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.2em;
	color: inherit;
	
}

#accordion .panel{
 border: none;
 box-shadow: none;
 border-radius: 0;
 margin-bottom: 5px;
}

#accordion .panel-heading{
 padding: 0;
 border-radius: 0;
 text-align: left;
 border: none;
}

#accordion .panel-title a{
	display: block;
	padding: 15px;
	font-size: 1em;
	font-weight: 500;
	color: #fff;
	background: #0d8133;
	transition: all 0.5s ease 0s;
}

#accordion .panel-title a:hover{
 background: rgba(12, 1, 25, 0.8);
}

#accordion .panel-body{
 font-size: 1.1em;
 color: #000;
 background: #fff;
 padding: 15px 20px;
 line-height: 25px;
 border: none;
 position: relative;
}

#accordion .panel-body li{
	font-size: 1em;
	font-weight: 600;
}

#accordion .panel-body:after{
 content: "";
 position: absolute;
	top: -30px;
 	right: 40px;
 border: 15px solid transparent;
 border-bottom: 15px solid #fff;
}

@media (max-width: 767px){
	
	#accordion .panel-body li{
	font-size: 0.9em;
	font-weight: 300;
}
	#accordion .panel-title a{
	padding: 10px;
	font-size: 0.8em;
	font-weight: 500;
}
	
}

@media only screen and (max-width: 480px){
	
	#accordion .panel-body li{
	font-size: 0.9em;
	font-weight: 300;
}
	#accordion .panel-title a{
	padding: 10px;
	font-size: 0.8em;
	font-weight: 500;
}
	
}