/* CSS Document */
*{margin:0px; padding:0px;}
body{transition:1s;}
/*=====================================================================================================================
														NAVIGATION SECTION
=======================================================================================================================*/

/*NAVIGATION SECTION*/
	
	.social{
	text-align:right;
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	-ms-box-sizing: border-box !important;
	box-sizing: border-box !important;
	padding-top:7.5px;
	margin-right:5px;
	}
	
	.search{text-align:left;}
	
	/*SOCIAL ICON*/
	#facebook,#instagram,#twitter,#linkedin,#youtube,#envelope{
	font-size:25px;
	margin-right:5px;
	color:#1e8449;
	transition:1s;
	cursor:pointer;
	text-decoration:none;	
	}
	
	#facebook:hover,#instagram:hover,#twitter:hover,#linkedin:hover,#youtube:hover,#envelope:hover{
	transform:rotate(360deg);
	}
	
	#facebook:hover{color:#039;}
	#instagram:hover{color:orange;}
	#twitter:hover{color:#399;}
	#linkedin:hover{color:#F30;}
	#youtube:hover{color:#F00;}
	#envelope:hover{color:#F00;}
	
	/*SEARCH BOX*/
	.search input[type="text"]{
	width:130px;
	height:28px;
	border-radius:25px;
	border:1px solid #CCC;
	background:none;
	text-align:center;
	font-family:"Arial Black", Gadget, sans-serif;
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	-ms-box-sizing: border-box !important;
	box-sizing: border-box !important;
	margin-top:7.5px;
	}
	
	.search input[type="text"]:focus{outline:none; background-color:rgba(192,192,192,0.1); transition:1s;}
	
	#s_icon{font-size:20px; color:#999; cursor:pointer;}
	#s_icon:hover{color:#666;}
	
	/*RESPONSIVE*/
	@media all and (max-width: 992px){#facebook,#instagram,#twitter,#linkedin,#youtube,#envelope{font-size:18px;}
	.search input[type="text"]{height:20px; margin-top:10px; font-size:16px;}
	#s_icon{font-size:18px;}
	}
	
	@media all and (max-width: 768px){#facebook,#instagram,#twitter,#linkedin,#youtube,#envelope{font-size:14px; margin-right:2px;}
	.search input[type="text"]{height:16px; width:100px; margin-top:14px; font-size:14px;}
	#s_icon{font-size:16px;}
	}
	
	@media all and (max-width: 488px){.social{width:100%; text-align:center;}
	#facebook,#instagram,#twitter,#linkedin,#youtube,#envelope{font-size:16px;}
	.social{margin:0px;}
	.search{width:100%; text-align:center;}
	.search input[type="text"]{height:16px; margin-top:0px; font-size:12px; width:90px;}
	#s_icon{font-size:14px;}
	}
	
/*END NAVIGATION SECTION*/

/*=====================================================================================================================
														LOGO SECTION
=======================================================================================================================*/

/*LOGO SECTION*/

	#eprc_logo{text-align:center; height:170px;}
	#eprc_logo img{width:65%; height:150px;  margin-top:10px;}
	
	/*RESPONSIVE*/
	@media all and (max-width:767px){#eprc_logo{height:120px;} #eprc_logo img{width:100%; height:100px;}}
	@media all and (max-width:364px){#eprc_logo{height:100px;} #eprc_logo img{width:100%; height:80px;}}

/*END LOGO SECTION*/

/*=====================================================================================================================
														MENU SECTION
=======================================================================================================================*/

/*MENU SECTION*/
	#menu_icon{height:auto;}
	#menu_icon ul li img{display:none; cursor:pointer;}
	#menu_bar{display:block;}
	
	#menu_bar ul{
	width:100%;
	height:auto;
	margin-bottom:-15px;
	padding:0px;
	}
	
	#menu_bar ul li{
	float:left;
	display:inline-block;
	list-style-type:none;
	padding:0px 10px;
	vertical-align:middle;
	position:relative;
	margin:2px 5px 1px 0px;
	}
	
	
	#menu_bar ul li a{
	display:block;
	color:#1e8449;
	font-size:16px;
	text-decoration:none;
	font-weight:400;
	padding:10px 0px;
	}
	#menu_bar ul li a:hover{color:#009933; transition:0.5s;}
	
	#arrow{
	margin-left:5px;	
	}

/*dropdown menu*/

	#menu_bar ul ul{
	width:250px;
	height:auto;
	position:absolute;
	margin-top:0px;
	padding:0px;
	border-top:3px solid #1e8449;
	display:none;
	z-index:9999;
	background:#FFFFFF;
	border-right:1px solid #CCCCCC;
	border-left:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
	}
	
	#menu_bar ul li:hover ul{
	display:block;
	animation:drop_down 0.2s ease-in-out 0s 1 alternate; 
	}
	
	@keyframes drop_down{
	0%{opacity:0.1;}
	50%{opacity:0.5;}
	100%{opacity:1;}
	}
	
	#menu_bar ul ul li{
	display:block;
	width:220px;
	padding:2px 0px;
	margin:0px 0px 0px 15px;
	transition:1s;
	border-bottom:1px solid rgba(192,192,192,0.9);
	position:relative;
	}
	
	#menu_bar ul ul li:first-child{
	margin-top:5px;	
	}
	
	#menu_bar ul ul li:last-child{
	margin-bottom:10px;	
	}
	
	#menu_bar ul ul li a{
	display:block;
	padding:0px 5px 4px 5px;
	font-size:14px;	
	}
	
	#menu_bar ul ul li:hover{
	background-color:rgba(192,192,192,0.3);
	}
	
/*sub dropdown menu*/
	#menu_bar ul ul ul{margin-top:-9999px; width:180px; position:absolute;}
	#menu_bar ul ul ul li{width:150px; display:block;}
	#menu_bar ul ul li:hover ul{margin-left:220px; margin-top:-30px; display:block;}
	
	/*RESPONSIVE*/
	@media all and (max-width:1199px){#menu_bar ul li a{font-size:12px;} #menu_bar ul ul{width:200px;} #menu_bar ul ul li{width:190px; margin:0px 0px 0px 5px;} #menu_bar ul ul li:hover ul{margin-left:190px;}}
		
	@media all and (max-width:991px){
		#menu_icon ul li img:first-child{display:block;}
		#menu_bar{display:none;}
		#menu_bar ul{height:auto;}
		#menu_bar ul li{display:block; float:none; margin-left:-35px; padding:2px 20px; height:auto;}
		#menu_bar ul li a{padding:0px;}
		#menu_bar ul ul{position:relative;}
		#menu_bar ul ul li a{font-size:12px;}
		#menu_bar ul ul ul li{width:105px;}
		#menu_bar ul ul li:hover ul{margin:-27px 0px 0px 135px; width:120px;}
	}
	
/*END MENU SECTION*/

/*=====================================================================================================================
													OUR RESEARCH THEMES SECTION
=======================================================================================================================*/

/*OUR RESEARCH THEMES*/

	.all_heading{width:100%; height:auto;}
	
	.all_heading h1{
	color:#1e8449;
	font-size: 40px;
	font-family: 'Exo 2', sans-serif;
	text-transform:uppercase;
	border-top: solid 5px #1e8449;
    display: inline-block;
    margin-top:20px;
	padding-top:20px;
	box-sizing:border-box;
	letter-spacing:1px;
	font-weight:bold;
	}

	#research_div{margin-top:10px;}
	.research_content{margin-right:22.5px; margin-bottom:50px; width:365px;}
	.research_content:last-child{margin-right:0px;}
	.research_content img{width:100%; height:250px; border-radius:5px;}
	.research_content h4{font-family:Verdana; font-size: 22px; font-weight:bold; color: ##4A4A49; display:block; margin-top:10px;
						padding-right:10px;}
	.short_link{color: #0099FF; font-size:12px; text-decoration:none; font-family:Arial; display:block; width:170px; margin-top:20px;
						font-weight:bold; transition:1s; text-transform:uppercase; letter-spacing:1px;}
	.short_link:hover{text-decoration:none; color:#CCCC00;}
	
	/*RESPONSIVE*/
	@media all and (max-width:1200px){.research_content{width:300px; margin-right:30px;}}
	@media all and (max-width:1005px){.research_content{width:235px; margin-right:7px;} .all_heading h1{font-size: 30px;}}
	
	@media all and (max-width:768px){.research_content{width:170px; margin-right:15px;}
									 .research_content img{height:200px;}
									 .all_heading h1{font-size: 20px; border-top: solid 3px #66CCFF;}
									 }
									 
	@media all and (max-width:588px){.research_content{width:100%; margin-right:15px; margin-bottom:15px;}
			.research_content:last-child{margin-bottom:50px;} .all_heading h1{font-size: 20px;} .research_content:last-child{margin-bottom:15px;}}
	@media all and (max-width:480px){.all_heading h1{font-size: 16px; border-top: solid 2px #66CCFF; padding-top:8px;}}

/*END OUR RESEARCH THEMES*/

/*=====================================================================================================================
						OUR RESEARCHERS SECTION  ///// ALSO SAME OUR RESEARCH THEMES SECTION
=======================================================================================================================*/

/*OUR RESEARCHERS*/

	.research_content small{padding-right:10px; display:block; margin-top:20px; font-size:16px;}
	#researchers_find{margin-top:15px;}
	.all_h4{color:#666666; display:block;}
	#researchers_find small{padding-right:10px; display:block; margin-top:20px; font-size:16px;}
	.researchers_find_field{background-color:#BDE1E2; border:1px solid #CCCCCC; transition:999999999999s; color:#222; outline:none !important;}
	.input-group-addon{background:#08799E; border:none; color:#FFFFFF; cursor:pointer; transition:0.5s; font-size:14px !important; font-weight:bold;}
	.input-group-addon:hover{color:#000000;}
	
	/*RESPONSIVE*/
	@media all and (max-width:768px){.all_h4{font-size:16px;}}
	@media all and (max-width:588px){.all_h4{font-size:14px;}}
	@media all and (max-width:480px){.all_h4{font-size:13px;}}
	
/*END OUR RESEARCHERS*/

/*=====================================================================================================================
											LATEST NEWS, EVENTS & BLOG SECTION
=======================================================================================================================*/

/*LATEST NEWS, EVENTS & BLOG*/
	
	/*MENU*/
	.tab_menu ul li{background:#FFFFFF; margin-right:10px; border:1px solid #78C7C9; font-weight:600; border-radius:5px; transition:0.3s;}
	.tab_menu ul li:hover{background:rgba(0,0,0,0.1);}
	.tab_menu ul li a{color:#428bca}
	
	
	/*RIGHT CONTENT*/
	.tab_data_right{width:70%;}
	.img_div{height:400px; overflow:hidden; border:1px solid #CCCCCC; border-radius:5px; margin-bottom:5px;}
	.img_div img{width:100%; height:100%; transition:2s;}
	.img_div img:hover{transform:scale(1.5); filter:grayscale(80%) blur(1px); -o-filter:grayscale(100%) blur(1px);}
	
	.tab_heading{color:#000000; font-family: 'Exo 2', sans-serif; font-weight:600; letter-spacing:1px; font-size:30px; margin:5px 0px 20px 0px;
	 display:block;}
	.tab_left_heading{text-transform:uppercase; font-weight:300; color:#999999; font-size:25px; font-family: 'Arvo', serif;}
	.tab_text strong{font-size:12px; color: #999999;}
	.tab_text p{line-height: 25px; font-size: 18px; font-weight:300; letter-spacing:1px; display:block; font-family: 'Dosis', sans-serif;
	 color: #4A4A49;}
	
	/*LEFT CONTENT*/
	.tab_data_left{width:28%; margin-left:2%;}
	.tab_left_content{width:100%; margin-top:-5px;}
	.tab_heading_link{color:#33CCFF; text-decoration:none; transition:1s; font-size:20px;}
	.tab_heading_link:hover{text-decoration:none; color:#006699;}
	
	/*RESPONSIVE*/
	@media all and (max-width:1200px){.tab_left_heading{font-size:22px;} .tab_heading_link{font-size:16px;}}
	@media all and (max-width:992px){.img_div{height:300px;} .tab_heading{font-size:20px;} .tab_left_heading{font-size:18px;}
	 .tab_text strong{font-size:10px;} .tab_text p{font-size:14px;} .tab_heading_link{font-size:14px;}}
	@media all and (max-width:588px){.img_div{height:250px;} .tab_heading{font-size:18px;} .tab_text p{font-size:13px; letter-spacing:0.5px;}}
	@media all and (max-width:450px){.tab_data_right{width:100%;} .tab_data_left{width:100%;  margin-left:0px;} .tab_heading{margin:0px 0px 10px 0px;}
	.short_link{margin:15px 0px 25px 0px;} .tab_left_heading{font-size:20px; font-weight:bold;}}
	@media all and (max-width:400px){.tab_menu ul li a{padding:3px 10px;}}
	@media all and (max-width:330px){.tab_menu ul li a{padding:2px 7px; font-weight:600; font-size:12px;}}

/*END LATEST NEWS, EVENTS & BLOG*/

/*=====================================================================================================================
											MORE FROM EPRC SECTION
=======================================================================================================================*/

/*MORE FROM EPRC*/
	
	.more_eprc_contant{width:266px; margin-right:25px;} .more_eprc_contant:last-child{margin-right:0px;}
	.more_eprc_img_div{width:100%; height:180px;}
	.more_eprc_img_div img{width:100%; height:100%; border-radius:5px;}
	.more_eprc_text{color:#333333; font-family: 'Exo 2', sans-serif; font-weight:bolder; letter-spacing:1px; font-size:20px; margin:10px 0px -10px 0px;
	 display:block;}
	 
	 /*RESPONSIVE*/
	@media all and (max-width:1199px){.more_eprc_contant{width:230px; margin-right:13px;}}
	@media all and (max-width:992px){.more_eprc_contant{width:49%; margin-right:13px;} .more_eprc_contant:nth-child(2){margin-right:0px;}}
	@media all and (max-width:778px){.more_eprc_contant{margin-right:10px;} .more_eprc_text{font-size:18px;}}
	@media all and (max-width:528px){.more_eprc_contant{width:100%; margin:10px 0px 0px 0px;} .more_eprc_contant:first-child{margin:0px;} 
		.more_eprc_img_div{height:250px;} .more_eprc_text{font-size:25px;}}
	@media all and (max-width:450px){.more_eprc_contant{margin:-10px 0px 0px 0px;} .more_eprc_img_div{height:200px;}}
	
/*END MORE FROM EPRC*/

/*=====================================================================================================================
										       OUR DEVELOPMENT PARTNERS SECTION
=======================================================================================================================*/

/*OUR DEVELOPMENT PARTNERS*/
	
	.d_partners_tab_menu li a{font-size:15px; font-family:'Dosis', sans-serif; letter-spacing:1px; transition:0.3s;}
	.d_partners_tab_menu a:hover{background:rgba(0,0,0,1); color:#FF6600;}
		
	.d_partners_contant{width:210px; height:auto; margin-right:22.5px;} .d_partners_contant:nth-child(5){margin-right:0px;}
	.hide_for_laptop{display:none; margin:0px;}
	.d_partners_img_div{width:100%; height:150px;}
	.d_partners_img_div img{width:100%; height:100%; border-radius:2px;}
	.d_partners_text{color:#333333; text-align:center; font-family: 'Arvo', serif; font-weight:bolder; letter-spacing:1px; font-size:16px;
	 	margin:10px 0px -10px 0px; display:block;} 
		
	.d_partners_contant small{color:#333333; text-align:center; font-family: 'Exo 2', sans-serif;
	  	font-weight:bold; font-size:12px; letter-spacing:1px; margin:15px 0px 10px 0px; display:block;}
	 
	 /*RESPONSIVE*/
	@media all and (max-width:1199px){.d_partners_contant{width:180px; margin-right:15px;} .d_partners_img_div{height:130px;}
		.d_partners_text{font-size:14px;} .d_partners_contant small{font-size:12px; font-weight:300;}}
	
	@media all and (max-width:992px){.d_partners_contant{width:30%; margin-right:5%;} .d_partners_contant:nth-child(3){margin-right:0px;}
		 .d_partners_img_div{height:150px;}	.d_partners_text{font-size:18px;} .d_partners_contant:nth-child(5){margin-right:5%;}
		  .hide_for_laptop{display:block; margin-right:0px;} .d_partners_contant small{font-weight:bold;}}
		
	@media all and (max-width:768px){.d_partners_img_div{height:120px;} .d_partners_text{font-size:14px;} .d_partners_contant small{font-size:10px;}}
	@media all and (max-width:528px){.d_partners_contant{width:48%; margin-right:3.5%;} .d_partners_contant:nth-child(2){margin-right:0px;}
		.d_partners_contant:nth-child(3){margin-right:3.5%;} .d_partners_contant:nth-child(4){margin-right:0px;}
		.d_partners_contant:nth-child(5){margin-right:3.5%;} .d_partners_contant:nth-child(6){margin-right:0px;}
		.d_partners_text{font-size:18px;} .d_partners_contant small{font-size:12px;}}
	@media all and (max-width:500px){.d_partners_img_div{height:100px;} .d_partners_text{font-size:16px;} .d_partners_contant small{font-size:10px;}}	
	
/*OUR DEVELOPMENT PARTNERS*/

/*=====================================================================================================================
										         FOOTER SECTION
=======================================================================================================================*/

/*FOOTER SECTION*/
	
	.footer_container{background:#242729; transition:1s; margin-top:10px;}
	.footer_data{width:23%; margin-right:2.6%;}
	.footer_data:last-child{margin-right:0px;}
	
	.footer_heading{color:#CCCCCC; font-size:30px; margin:20px 0px 20px 0px; letter-spacing:1px; font-weight:900; display:block; font-family: 'Exo 2', sans-serif;}
	
	.footer_data ul{padding:0px; margin:0px; width:100%;}
	.footer_data ul li{display:block; margin-bottom:5px;}
	.footer_data ul li a{color:#848d95; text-decoration:none; font-size:11px; letter-spacing:1px; transition:0.5s; text-transform:uppercase; display:block;}
	.footer_data ul li a:hover{color:#FFFFFF;}
	
	#social .f_fb:hover{color:#0033CC;} #social .f_tw:hover{color:#00FFFF;} #social .f_ins:hover{color:#FF9900;} #social .f_li:hover{color:#FF3333;} #social .f_you:hover{color:silver;}
	
	.copyright small{font-size:14px;}
	
	 /*RESPONSIVE*/
	@media all and (max-width:992px){.footer_heading{font-size:20px;} .footer_data ul li a{font-size:10px;} .copyright small{font-size:12px;}}
	@media all and (max-width:768px){.footer_heading{font-size:16px;} .footer_data ul li a{font-size:8px;} .copyright small{font-size:10px;}}
	@media all and (max-width:588px){.footer_heading{font-size:14px;} .footer_data ul li a{font-size:8px;}}
	@media all and (max-width:528px){.footer_heading{font-size:12px;}}
	@media all and (max-width:440px){.footer_heading{font-size:10px;}}
	@media all and (max-width:380px){.footer_heading{font-size:8px;} .footer_data ul li a{font-size:7px;}}
	@media all and (max-width:326px){.footer_data ul li a{font-size:6px;}}

	
/*END FOOTER SECTION*/

.gallery{margin:15px 0px 15px 0px; overflow:hidden;}
.gallery img{width:100%; border-radius:5px; height:250px; }
.gallery img:hover{opacity:0.6;}

/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

										             MENU PAGE CSS START
													 
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/



/*=====================================================================================================================
										       MENU EPRC SECTION
=======================================================================================================================*/

/*MENU EPRC*/
	.menu_full_div{margin:0px 0px 100px 0px;}
	
	/*MENU EPRC HEADER*/
	.menu_header{height:400px; background-size:100% 100%; background-attachment:fixed; background-repeat:no-repeat; overflow:hidden;}
	.menu_heading{background:#FFFFFF;  margin:295px 0px 0px 5px; transform: skew(-30deg);}
	.menu_heading h1{padding:5px 50px 15px 8%; margin:15px 0px 10px 0px; letter-spacing:3px; font-size:35px; text-transform:uppercase; text-shadow:0px 0px 5px black; -webkit-text-stroke:4px #FF9900; color:#000000; border:none;}
	
	/*MENU EPRC CONTENT BOX*/
	.menu_container{margin:30px 0px 0px 0px; overflow:auto;}
	.content{width:50%; height:250px; float:left; background:#000033; transition:1s;}
	.content:last-child{border-radius:0px 5px 5px 0px; max-height:300px;}
	.content img{width:100%; height:100%;}
	
	.sub_heading{color:#FFFFFF; font-family: 'Exo 2', sans-serif; font-weight:bolder; letter-spacing:1px; font-size:25px;
	 margin:10px 0px 0px 10px; display:block;}
	 .content p{color:#666666; font-weight:500; letter-spacing:1px; font-size:16px; margin:10px 0px 0px 10px; display:block;}
	 .content a{color:#6600FF;} .content a:hover{color:#999999;}
	 .all_description{color:#333333; font-size:20px; font-family:'Dosis', sans-serif; display:block; text-align:justify; line-height:30px; letter-spacing:1px; padding:10px 0px 0px 0px;}
	.all_description a{margin:0px; display:inline-block;}
	
	.content:hover{background:#000066;}
	
	
	 /*RESPONSIVE*/
	@media all and (max-width:1005px){.sub_heading{font-size:20px;} .all_description{font-size:22px; letter-spacing:1px;} .menu_heading h1{font-size:30px;} .content{height:200px;} .content p{font-size:13px;}}
	
	
	@media all and (max-width:768px){.all_description{font-size:18px;} .content{height:160px;} .menu_heading h1{font-size:28px; -webkit-text-stroke:4px #FF9900;} .sub_heading{font-size:14px;} .content p{font-size:10px;} .content a{font-size:10px; margin:2px 0px 0px 0px;}}
	@media all and (max-width:650px){.menu_header{height:350px;} .menu_heading{margin:260px 0px 0px 5px;}}
	@media all and (max-width:600px){.menu_heading h1{font-size:25px;}}
	@media all and (max-width:575px){.sub_heading{font-size:22px;} .content p{font-size:13px;} .content{height:210px;} .menu_heading h1{font-size:20px; padding:5px 30px 10px 3%; -webkit-text-stroke:3px #FF9900;}}
	@media all and (max-width:420px){.sub_heading{font-size:18px;} .content p{font-size:11px;} .content a{font-size:8px; font-weight:normal;} .content{height:180px;} .menu_heading h1{font-size:12px; padding:0px 20px 0px 8%; text-shadow:0px 0px 1px black; -webkit-text-stroke:1px #FF9900;} .menu_heading{margin:300px 0px 0px 5px;} .all_description{font-size:14px;}}
	@media all and (max-width:320px){.sub_heading{font-size:10px;} .content p{font-size:10px;}}
/*END MENU EPRC*/


/*=====================================================================================================================
										          SUB_MENU EPRC SECTION
=======================================================================================================================*/

/*SUB_MENU EPRC SECTION*/

	.sm_full_div{margin:50px 0px 100px 0px;}
	
	.sm_link_heading{display:inline-block; font-family:"Exo 2", sans-serif; font-size:28px; margin:5px 0px 0px 0px; font-weight:300; border-bottom:1px solid #CCCCCC;padding:0px 0px 10px 0px;}
	
	.sm_left ul{display:block; margin:15px 0px 0px 3%px}
	.sm_left ul li{display:block; margin:15px 0px 0px 0px;}
	.sm_left ul li a{display:block; color:#006666; text-decoration:none !important; font-size:16px; transition:0.5;}
	.sm_left ul li a:hover{color:#003333;}
	
	
	.sm_page_heading{display:block; color:#339966; font-family:"Exo 2", sans-serif; font-size:40px; margin:0px; font-weight:bolder;}
	.sm_h_div p{display:block; margin:15px 0px 0px 0px; font-size:18px; font-family:"Exo 2", sans-serif; line-height:30px; letter-spacing:0.6px; text-align:justify; font-weight:lighter;}
	
	.sm_content_heading{display:block; color:#CC6633; font-family:"Exo 2", sans-serif; font-size:28px; margin:20px 0px 0px 15px; font-weight:bolder;}
	.sm_c_div img{width:160px; height:160px; border-radius:50%; margin:25px 0px 0px 0px;}
	
	.sm_c_img_div{float:left; width:33%; height:auto;}
	.sm_c_img_div h4{text-align:center;}
	.sm_c_div p{display:block; color:#666666; margin:15px 0px 0px 15px; font-family:"Dosis", sans-serif; text-align:justify; line-height:25px; letter-spacing:0.6px;}
/*END SUB_MENU EPRC SECTION*/


