 .heading{
		   padding-top:20px ;
		   text-align:left ;
		   /* text-align:center; */
		   color:#000000;  
		   background-color:#FFFFFF;
		 /*  padding-bottom:20px ;*/
	   }
	   
        .accordion {
			 /*background-image: url("img/slider_bg_04.jpg");*/
			background-color: #FFFFFF;
            width: auto;
            margin: 30px auto 10px;
          
            border-radius: 5px;	
        }
		
       
		
        .accordion-item:last-child {
            border-bottom: none;	
        }
		
        .accordion-header {
            /* background-color: #fbca00; */
            cursor: pointer;
            padding: 0px;
            font-size: 16px;
            display: flex;
           /* justify-content: space-between;*/
            align-items: center;
            border-radius: 5px 5px 0 0;
			color:#000000;
			border-bottom: 1px dotted #328ab9;
			
        }
		
        .accordion-header:hover {
            background-color: #e2e2e2;
        }
		
        .accordion-content {
			font-size:18px;
            display: none;
            padding: 15px;
			text-align:justify;
            background-color: #fff;
            border-radius: 0 0 5px 5px;
			color:#000206;	
        }
		
        .accordion-header .arrow { 
            transition: transform 0.3s ease;
			height:40px;
			width:40px;   
			left: 27;
			top:35;
        }
		
        .accordion-header.active .arrow {
           /* transform: rotate(90deg);*/
        }
		
        .arrow::before {
            content: "\25B6"; /* Unicode character for a right-pointing arrow */
			align-items: left;
        }