/*
Plugin CSS
Author: wpdream
*/
:root{
    --brcolor:#14b1bb; /* Brand color */
    --brhovercolor:#0a257a; /* Brand Hover color */
	--brrgb: 20,177,187; /* Brand rgb color */
	--bropacity:rgba(20,177,187,0.64); /* Brand opacity color */
    --black:#000000; /* black color */
	--white:#ffffff; /* white color */
    --bdcolor:#dddddd; /* border color */
    --bdhcolor:#14b1bb; /* border hover color */
    --linkcolor:#000000; /* link  color */	
    --titlecolor:#0e0e0e; /* title color */
    --pracolor:#74787c; /* pragrap/body color */	
    --bshadow:rgba(0,0,0,0.09); /* opacity color box shadow */   
}

/*=========================================================================================== #START TO ACCORDING CSS =============================================================================================*/

 .accordion_area .card-header.wpd_ac_card {
     background: none !important;
     padding: 0;
     border-bottom: 0;
     text-align: left;
}
 .wpd_ac_card i {
     margin-right: 10px;
     font-size: 20px;
}
 .accordion_area .card{
     margin-bottom: 22px;
}
 .accordion_area .card p {
     padding: 10px 15px 10px;
}
 .wpd_ac_style {
     padding-left: 30px;
     font-size: 17px;
     font-weight: 600;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     padding: 11px 15px;
     -webkit-transition: .5s;
     transition: .5s;
	 color:var(--titlecolor);
}
 .wpd_ac_style:before {
    position: absolute;
	content: "\f107";
    right: 20px;   
	font-family: FontAwesome !important;
    font-weight: 400;
}
 .active .wpd_ac_style:before {
     content: '\f106';
}
 .card-body ul{
}
 .card-body ul li{
     margin-left: 18px;
     margin-bottom: 4px;
}
.wpd_ac_style:hover, .active .wpd_ac_style{
     background: var(--brcolor);
     color:var(--white);
}



/* responsive */
 @media (min-width: 992px) and (max-width: 1199px) {}
 @media (min-width: 768px) and (max-width: 991px) {}
 @media (max-width: 991px) {
	 .wpd_ac_style:before {
		display: none;
	}	 
 }



