@font-face{ font-family:Poppins-Bold; src:url(../fonts/Poppins-Bold.ttf);}
@font-face{ font-family:Poppins-Light; src:url(../fonts/Poppins-Light.ttf);}
@font-face{ font-family:Poppins-Medium; src:url(../fonts/Poppins-Medium.ttf);}
@font-face{ font-family:Poppins-Regular; src:url(../fonts/Poppins-Regular.ttf);}
@font-face{ font-family:Roboto-Bold; src:url(../fonts/Roboto-Bold.ttf);}
@font-face{ font-family:Roboto-Regular; src:url(../fonts/Roboto-Regular.ttf);}
@font-face{ font-family:Lato-Regular; src:url(../fonts/Lato-Regular.ttf);}
@font-face{ font-family:Lato-Bold; src:url(../fonts/Lato-Bold.ttf);}
@font-face{ font-family:Raleway-Black; src:url(../fonts/Raleway-Black.ttf);}
@font-face{ font-family:Raleway-Regular; src:url(../fonts/Raleway-Regular.ttf);}
@font-face{ font-family:Raleway-Medium; src:url(../fonts/Raleway-Medium.ttf);}
@font-face{ font-family:Sony_Sketch; src:url(../fonts/Sony_Sketch.ttf);}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ccc !important;
  opacity:1;
}
::-moz-placeholder { /* Firefox 19+ */
  color: pink;
}
:-ms-input-placeholder { /* IE 10+ */
  color: pink;
}
:-moz-placeholder { /* Firefox 18- */
  color: pink;
}

:focus {outline:none;}

*{
	margin:0;
	padding:0;
	box-sizing:border-box;	
}

h1,h2,h3,h4,h5,h6{
	font-weight:normal;
	font-family:Poppins-Bold;
}

h1{
	font-size:36px;
	text-transform:uppercase;	
}

h2{
	font-size:28px;	
}

ul,li{
	list-style:none;
	line-height:25px;	
}

p{
	line-height:25px;	
	font-family:Lato-Regular; 
	font-size:14px;
}

a{
	outline:none;
	text-decoration:none;
	color:#000;	
}

:hover{
	transition:all 0.5s ease-in-out;	
}

body{
	 font-family:Poppins-Regular;
	 font-size:14px;	
}

.container{
	width:1170px;
	margin:0 auto;	
}

.fleft{
	float:left;	
}

.fright{
	float:right;	
}

.full_wid{
	width:100%;
	display:inline-block;	
}

.wid_33{
	width:33.33%;
}

.wid_50{
	width:50%;	
}

.wid_25{
	width:25%;	
}


.top_strip{
	padding:5px 0;
	background:#2a4b9b;	
}

.strip_left p{
	font-size:12px;
	color:#fff;
	letter-spacing:1px;
}

.strip_right li{
	float:left;
	margin:0 0 0 25px;	
	color:#fff;
}

.strip_right li i{
	width:20px;	
	color:#fff;
}

.strip_right li a{
	color:#fff;	
}

.header{
	position:relative;
	z-index:1;	
	padding:20px 0 0 0;
}

.header::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:url(../images/header_line.png) repeat-x;
	height:15px;	
	z-index:-1;
}

.logo img{
	vertical-align:middle;	
}

.logo span{
	 font-family:Sony_Sketch;
	 font-size:32px;
	 font-weight:600;
	 color:#000;	
}

.icon{
	margin:0 10px;	
}

.icon i{
	width:50px;
	height:50px;
	background:#2A4B9B;	
	line-height:50px;
	text-align:center;
	font-size:25px;
	color:#fff;
}

.header_right li{
	float:left;
	margin:15px 25px;	
}

.menu_set{
	margin:10px 0 0 0;
	background:#2A4B9B;	
	
}

.res_menu{
	padding:5px;	
	display:none;
}

.res_menu a{
	color:#fff;
	font-size:18px;	
}



.res_menu a i{
	background: #f9dc3e;
	padding: 10px;
	color: #000;	
}

.menu li{
	float:left;	
	position:relative;
	z-index:0;
}


.menu li a{
	color:#fff;
	padding:15px 25px;	
	display:inline-block;
	text-transform:uppercase;
	font-family:Poppins-Bold;	
	position:relative;
	z-index:0;
}

.menu li a::before{
	content:"";
	position:absolute;
	left:0;
	right:100%;
	bottom:0;
	height:3px;
	background:#FEF223;	
	transition:all 0.5s ease-in-out;
}

.menu li a::after{
	content:"";
	position:absolute;
	top:25px;
	right:0;
	bottom:0;
	margin:0 auto;
	width:5px;
	height:5px;
	border-radius:50%;
	background:#b1b1b3;	
	transition:all 0.5s ease-in-out;
}

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 3;
	white-space: nowrap;
	display: none;
	padding:25px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background-clip: padding-box;
    display: block;
    visibility: hidden;
    background-color: #fff;
    transition: all 300ms;
    border-radius: 4px;
    transform: scaleY(0);
	background-image:url(../images/menu_waves.png) no-repeat;
}
.submenu li {
	float: none;
}
.submenu li a::after{
	display:none;
}


.submenu li a {
	display: block;
	padding: 10px 15px;
	margin: 0;
	color: #000;
	font-size: 13px;
	font-family: roboto;
	border-bottom: 1px solid #eaeaea
}

.submenu li a:hover{
	color:#000 !important;
	background:#fff;
}

.menu li:hover .submenu {
	display: block;
    visibility: visible;
    transform: scaleY(1)

}

.menu li a:hover{
	color:#FEF223;	
}

.menu li a.active{
	color:#FEF223;	
}
.submenu li a.active{
	color:#000;	
}
.submenu li a.active::before{
	display:none;
}
.submenu li a:hover::before{
		right:0 !important;
}


.menu li a:hover::before{
		right:0;
}
.menu li a.active::before{
		right:0;
}

.social{
	float:right !important;	
	margin:3px 25px 0 0;
	
}

.social_icon li a{
	padding:10px 5px;	
}

.social_icon a i{
	width:30px;
	height:30px;
	line-height:27px;
	text-align:center;
	border-radius:50%;
	border:2px solid #FEF223;	
	transition:all 0.5s ease-in-out;
}

.social_icon li a:hover::before{
		display:none;
}

.social_icon li a::after{
		display:none;
}

.social_icon li a:hover i{
	background:#FEF223;
	color:#000;
	
}

.ban{
	position:relative;
	z-index:0;	
}



.down_arr{
	width:25px;
	height:25px;
	text-align:center;
	font-weight:bold;
	text-decoration: none;
	position:absolute ;
	left:0px;
	right:0;
	bottom:20px;
	margin:0 auto;
	border:1px solid #fff;
	border-radius:15px;
	background:#fff;
	/*background-color:#0098F6;
	border:1px solid #0098F6;*/
	color:#FFF;
	transition:all 0.5s ease-in-out;
	z-index:2;
	-webkit-animation: mymove 5s infinite; 
    animation: mymove 5s infinite;
}

@-webkit-keyframes mymove {
    0%   {bottom: 20px;}
}

/* Standard syntax */
@keyframes mymove {
    0%   {bottom: 20px;}
}

/*.down_arr:hover{
	background-color:#E5175A;
	border:1px solid #E5175A;
	color:#fff;
	transition:all 0.5s ease-in-out;
}
*/
.down_arr i{ 
	font-size:16px; 
	text-align:center;
	line-height:30px;
}


.banner_down{
	padding:15px 25px;
	background:url(../images/banner_down.jpg);
	color:#fff;
}

.banner_down h3 {
	font-family:Poppins-Regular;	
	margin:5px 0;
}

.banner_down a{
	padding:5px 15px;
	color:#fff;
	display:inline-block;
	border:1px solid #fff;
}

.banner_down a:hover{
	background:#fff;
	color:#F9B718;	
}

.ind_about{
	background:url(../images/city.jpg);
	background-size:cover;
	/*padding:0px 0 50px 0;	*/
    background-position: 0 -100px;
}

.ind_abt_left{
	width:50%	
}

.ind_abt_right{
	margin:50px 0 0 0;	
	width:50%;
}

.ind_abt_right p{
	text-align:justify;	
}

.ind_abt_right a{
	border:1px solid #2A4B9B;	
	display:block;
	padding:5px 15px;
	border-radius:30px;
	margin:0 auto;
	text-align:center;
	background:#2A4B9B;
	color:#fff;
	width:25%;
	transition:all 0.5s ease-in-out;
}

.ind_abt_right a:hover{
	background:#F8B617;
	color:#000;		
}

.ind_abt_list{
	margin:10px 0 0 0;	
}


.ind_abt_list li{
	margin:15px 0;
	display:inline-block;	
	width:100%;

}

.icon_det_1  i{
	margin:0 15px 0 0;	
}

.icon_1{
	position:relative;
	z-index:0;
}

.icon_1::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	border:1px dashed #ccc;
	transform:rotate(90deg);	
}

.icon_1 i{
	font-size:25px;
	margin:25px 0 0 0;	
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
}

.icon_det_1{
	width:90%;	
}


.icon_det p{
	color:#666;	
}

.icon_det a{
	margin:0 5px;
	display:inline-block;	
}

.ind_projects{
	background:#2a4b9b ;
	padding:75px 0;	
	color:#fff;
}

.ind_projects h2{
	text-align:center;	
}

.ind_ser_con .item img{
	width:100%;	
}
.ind_ser_con .item{
	position:relative;
	z-index:0;
	border:5px solid #fff;
	border-right:0px solid #fff !important;

}

.ind_ser_con .item::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.7);	
	opacity:0;
	transition:all 0.5s ease-in-out;
}

.ind_ser_con .item::after{
	content:"";
	position:absolute;
	left:0;
	right:100%;
	bottom:0;
	height:5px;	
	background:#FFC527;	
	transition:all 1s ease-in-out;
}

.item:hover::before{
	opacity:1;	
	transition:all 0.5s ease-in-out;
}

.item:hover::after{
	right:0;
	transition:all 1s ease-in-out;
}


.item:hover .pro_con{
	top:70%;
}


.pro_con{
	position:absolute;
	top:100%;
	right:20px;
	bottom:0;
	margin:0 auto;
	transition:all 0.5s ease-in-out;

}

.pro_con h3, .pro_con p{
	color:#fff;	
}

.ind_ser_con .owl-theme .owl-controls .owl-buttons {
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	z-index:0;
}
.ind_ser_con .owl-theme .owl-controls .owl-buttons .owl-prev {
	background: #2a4b9b  url("../images/leftar_wh.png") no-repeat scroll 10px 10px / 18px auto;
	float: left;
	height: 40px;
	padding: 0;
	width: 40px;
	margin-left: 20px;
	border-radius:30px;
}
.ind_ser_con .owl-theme .owl-controls .owl-buttons .owl-next {
	background: #2a4b9b  url("../images/leftar_wh.png") no-repeat scroll 10px 10px / 18px auto;
	float: right;
	height: 40px;
	padding: 0;
	width: 40px;
	transform: rotate(180deg);
	margin-right: 20px;
	border-radius:30px;
}




ul.tabs1 {
	margin: 15px auto 15px;
	padding: 0px;
	text-align:center;	
}
ul.tabs1 li {
	background: none;
	width: 19%;
	display: inline-block;
	padding: 10px 15px;
	cursor: pointer;
	text-align:center;
	font-size:16px;
}
ul.tabs1 li.current {
	/*background: #ededed;*/
	background: #09276d;
	color: #FF7F00;
}
.tab-content {
	display: none;
	/*background:#FA993B;*/
}
.tab-content.current {
	display: inline-block;
	width: 100%;
}

.tab_icon{
	display:block;
	margin:0 0 15px 0;
}

.tab_icon i{
	font-size:56px;	
	width:125px;
	height:125px;
	line-height:125px;
	text-align:center;
	border:5px solid #ccc;
	border-radius:50%;
}

ul.tabs1 li.current .tab_icon i{
	border:5px solid #FF7F00;
	color:#FF7F00;
}

.tab-link:hover i{
	border:5px solid #FF7F00;
	color:#FF7F00;
}
.tab-link:hover {
	color:#FF7F00;
}

.ind_qua{
	background:url(../images/qua_bg.jpg) no-repeat;
	background-size:cover;
	margin:75px 0;
	background-position:center center;
	position:relative;
	z-index:0;

}

.ind_qua::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;	
	background:rgba(248, 182, 23, 0.80);
	z-index:-1;
}

.qua_set{
	background:url(../images/qua_bg_1.png) no-repeat;
	background-size:cover;	
	padding:50px 0;
	margin:0 auto;
	text-align:center;
}

.qua_set h2{
	color:#2A4B9B;	
}

.qua_set p{
	width:70%;	
	margin:0 auto;
	text-align:center;

}



.ind_testi{
	padding:50px 0;
	background:url(../images/ind_testi.jpg) no-repeat;
	background-size:cover;
}



.ind_testi .ind_serv_in h2{
	color:#000;
	text-align:center;
	margin:0 0 25px 0;
}

.testi_set{
}

.testi_set .item{
	padding:1%;
	width:98%;
}

.test_left{
	width:30%;
	text-align:center;
}

.test_left img{
	width: 75px;
    border-radius: 50px;
    height: 75px;
	margin:0 0 15px 0;
    border: 5px solid #2a4b9b;
}

.test_left h4{
	margin:15px 0;
}

.test_right{
	width:100%;
	padding:25px;
	border:4px solid #2a4b9b;
	position:relative;
	z-index:0;
	background:#15264f;
	min-height:220px;
}

.test_right:before{
	/*content: "";*/
    display: block;
    position: absolute;
    top: 30px;
    left: -17px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-right: 10px solid #2a4b9b;
    border-top: 10px solid #fff;
    border-bottom: 10px solid #fff;
	
}

.test_right h4{
	color:#fff;
	margin:0 0 10px 0;
}

.test_right p{
	color:#fff;	
}



.footer {
	width: 100%;
	display: inline-block;
	position:relative;
	z-index:0;
	margin:100px 0 0 0;
}


.footer_set{
	 background-color: #15264f; 
	/*background:url(../images/bg_foot1.jpg);*/
	padding: 125px 0 75px 0;

}

.ind_team{
	width:70%;
	display:block;
	background:#f8b617;
	margin:30px auto;	
	padding:30px 0;
	margin-top:-225px;
	z-index:1;
	text-align:center;
	/*box-shadow:0 0 100px 10px rgba(0, 0, 0, .5);*/
	position:relative;
	z-index:0;
}

.ind_team::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:url(../images/header_line.png) repeat-x;
	height:15px;	
	z-index:-1;
	
}

.ind_team::after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	background:url(../images/header_line.png) repeat-x;
	height:15px;	
	z-index:-1;
	transform:rotate(-180deg)
}

.ind_team h2{
	color:#fff;	
}

.ind_team p{
	padding:0 15px;	
}


.foot_des{
	/* background-color: #272727; */
	/*padding: 100px 0px 35px 0px;*/
	position: relative;	
}


.footer ul {
	width: 23%;
	float: left;
	margin: 0 20px 0 0;
}
.footer ul h2 {
	color: #fff;
	font-size: 18px;
	border-bottom: 1px solid #555;
	padding-bottom: 20px;
	margin-bottom: 25px;
	position: relative;
}
.footer ul h2::before {
	background: #fbf59d none repeat scroll 0 0;
	bottom: -2px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 70px;
}
.footer ul li {
	color: #ccc;
	line-height: 30px;
}
.footer ul li i {
	margin-right: 10px;
	color: #fff;
}
.footer ul li a span {
	width: 30px;
	height: 30px;
	background: #000;
	text-align: center;
	display: inline-block;
	margin: 3px 8px 3px 0;
}
.footer ul li a span i {
	line-height: 30px;
	text-align: center;
	margin-right: 0;
}
.footer ul li a {
	color: #ccc;
	font-size: 14px;
}
.footer ul li a:hover {
	color: #fff;
}
.footer ul li a.active {
	color: #fff;
}

.footer_logo {
	width: 70%;
}



.ban_in{
	background:url(../images/banner/ban_in.jpg) no-repeat	;
	height:250px;
	position:relative;
}

.ban_in h2, .ban_in p{
	position:absolute;
	top:100px;
	left:0;
	right:0;
	margin:0 auto;
	text-align:center;
	color:#fff;
}

 .ban_in p{
	top:200px;	 
	font-size:16px;
 }

.ban_in a{
	color:#f8b617;	
}

.about{
	margin:50px 0 0 0;	
}

.abt_left{
	width:50%;	
}
.abt_left img{
	width:100%;	
}
.abt_right{
	width:50%;
	padding:1%;	
}
.abt_right p{
	text-align:justify;	
}
.abt_con{
	background:url(../images/abt_bg.jpg) no-repeat;
	background-size:cover;
	position:relative;
	z-index:0;	
	padding:75px 0;
	margin:0 0 50px 0;
	color:#fff;
	background-position: 0px -212px;
}

.abt_con::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.65);
	z-index:-1;
}

.abt_con p{
	margin:10px 0;	
	font-size:16px;
	text-align:justify;
}

.abt_view{
	margin:50px 0 75px 0;	
	background:#F9F9F9;
}

.abt_view_left{
	width:30%;
	padding:10px 25px;
	background:#2a4b9b;
	color:#fff;
}

.abt_view_left li{
	position:relative;
	z-index:0;
	width:85%;
	display:inline-block;	
	margin:5px 30px;
}

.abt_view_left li::before{
	content:"";
	position:absolute;
	width:10px;
	height:10px;
	border-radius:30px;
	border:5px solid #f8b617;
	left:-45px;	
}

.abt_view_left li::after{
	content:"";
	position:absolute;
	top:30px;
	left:-36px;
	bottom:0;
	background:#ccc;
	width:3px;
}

.abt_view_right{
	width:65%;	
	margin:45px 0;
}

.abt_view_right h2{
	margin:10px 0 30px 0;	
}

.abt_view_right p{
	margin:5px 0;	
	text-align:justify;
}

.abt_view_right li{
	margin:5px 15px;	
}

.projects{
	margin:0 0 50px 0;	
}

.projects h2{
	text-align:center;	
}

.gallery_set{
	margin:25px 0 0 0;	
}

.gallery_image{
    border: 1px solid #2a4b9b;
    margin: 25px 0;
}
.twelve{
	padding:25px;	
}

.programs{
	margin:0 auto;
	text-align:center;	
}

.programs button{
	border:1px solid #ccc;
	padding:10px 25px;	
	background:#eaeaea;
	cursor:pointer;
	transition:all 0.5s ease-in-out;
}

.programs button:hover{
    color: #fff;
    background: #2a4b9b;
}

.programs button.active {
    color: #fff;
    /* background: #504b48; */
    background: #2a4b9b;
}

.program_1{
	margin:25px 0;	
}

.courses .mix-target {
    display: none;
}

.courses li a{
	width:30%;
	float:left;	
}

.courses li a img{
	width:100%;	
}

.courses li span{
	width:65%;
	float:right;	
}

.courses li h3{
	margin:15px 0;	
	color:#2a4b9b;
}

.courses li p{
	font-family:Poppins-Regular;	
}

.courses_1 li{
	width:25%;
	float:left;	
}

.courses_1 li a{
	width:100%;	
}

.fancy_box { 
	display:inline-block; 
	padding:25px;
	width:100%;
	background:#fff;
}


.fancy_box li a::before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:1;
	background:rgba(0,0,0,0.5);
	opacity:0;
}
.fancy_box li a{ 
	position:relative; 
	display:block; 
	transition:all 0.5s ease-in-out;
	border:1px solid #ccc;

}

.fancy_box li a img { 
	width:100%; 
	/*border:5px solid #024282;*/
	transform:scale(1);
	transition:all 0.5s ease-in-out;
}

.fancy_box li a em{ 
	position:absolute;
	top:35%;
	left:0; 
	right:0; 
	display:inline-block;
	text-align:center; 
	opacity:0; 
	z-index:1; 
	color:#fff; 
	transition:all 1s ease-in-out; 
}

.fancy_box li a em i{
	background:#1FACEB;
	font-size:75px;
	border-radius:50%;
	text-align:center;
	padding:20px;
	font-size:26px;
	
}

.fancy_box li a:hover em{ 
	opacity:1;
	transition:all 0.5s ease-in-out;
}

.fancy_box li a:hover::before{
	transition:all 0.5s ease-in-out;
	opacity:1;
}

.programs .owl-theme .owl-controls .owl-buttons {
	position: absolute;
	top: -60px;
	right: 0;
	z-index:0;
}
.programs .owl-theme .owl-controls .owl-buttons .owl-prev {
	background: #2a4b9b  url("../images/leftar_wh.png") no-repeat scroll 10px 10px / 18px auto;
	float: left;
	height: 40px;
	padding: 0;
	width: 40px;
	margin-right: 10px;
	border-radius:30px;
}
.programs .owl-theme .owl-controls .owl-buttons .owl-next {
	background: #2a4b9b  url("../images/leftar_wh.png") no-repeat scroll 10px 10px / 18px auto;
	float: right;
	height: 40px;
	padding: 0;
	width: 40px;
	transform: rotate(180deg);
	margin-right: 20px;
	border-radius:30px;
}









.contact{
	margin:50px 0;	
}

.contact h2{
	text-align:center;	
}

.contact_left{
	width:50%;	
	margin:25px 0 0 0;
}

.contact_left li{
	width:100%;
	display:inline-block;
	margin:15px 0;	
}

.contact_right{
	width:50%;
	margin:25px 0 0 0;
}

.contact_right li{
	margin:5px 0;	
}

.contact_right li input{
	width:90%;
	display:inline-block;
	height:35px;
	border:1px solid #ccc;
	padding:5px 15px;	
}

.contact_right li textarea{
	width:95%;	
	display:inline-block;
	height:95px;
	border:1px solid #ccc;
	padding:5px 15px;	
	resize:none;
	font-family:Roboto-Regular;
}

.sbt_btn{
	padding:15px 25px;
	background:#1E88FF;	
	color:#fff;
	border:1px solid #1E88FF;
	margin:25px 00 0 0;
	cursor:pointer;
	border-radius:30px;
	border-bottom:1px solid #000;
	transition: 0.5s ease-in-out;
}

.sbt_btn:hover{
	background:#363636;	
}


.footer_cprt{
	padding:15px 0;
	background:#0a1429;	
	color:#999;
}



li.error,p.error{color:#fff;}
input.error {
    background-color: #E07A8A !important;
	color:#fff;
}
select.error {
    background-color: #E07A8A !important;
}

textarea.error {
    background-color: #E07A8A !important;
}