/* **
 * ========================================
 * Includes Fonts
 * ========================================
 ** */


@font-face {
    font-family: FontAwesome;
    src: url(../fonts/font-awesome/fonts/FontAwesome.otf);
}

@font-face {
    font-family: fontawesome-webfont;
    src: url(../fonts/font-awesome/fonts/fontawesome-webfont.ttf);
}	

@font-face {
    font-family: Poppins-R;
    src: url(../fonts/poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: Poppins-L;
    src: url(../fonts/poppins/Poppins-Light.ttf);
}

@font-face {
    font-family: Poppins-M;
    src: url(../fonts/poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: Poppins-B;
    src: url(../fonts/poppins/Poppins-Bold.ttf);
}

	
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/font-awesome/fonts/fontawesome-webfont.eot'); /* support Internet explorer  */
    src: url('../fonts/font-awesome/fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), /* support Internet explorer  */
    url('../fonts/font-awesome/fonts/fontawesome-webfont.woff') format('woff'), /* support Modern browser  */
    url('../fonts/font-awesome/fonts/fontawesome-webfont.ttf') format('truetype'), /* support firefox , chrome   */
    url('../fonts/font-awesome/fonts/fontawesome-webfont.svg') format('svg');/* Svg form   */
	font-weight: normal; 
	font-style :normal;		 
}	


@font-face {
    font-family: 'open-sans';
    src: url('../fonts/open-sans/OpenSans-Regular-webfont.eot');   /* support Internet explorer  */
    src: url('../fonts/open-sans/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'), /* support Internet explorer  */
    url('../fonts/open-sans/OpenSans-Regular-webfont.woff') format('woff'), /* support Modern browser  */
    url('../fonts/open-sans/OpenSans-Regular.ttf') format('truetype'), /* support firefox , chrome   */
    url('') format('svg');
	font-weight: normal;
	font-style :normal ;	 
}

/*------- jump to Top --------*/

#moveup .fa{
	width: 35px;
	height: 40px;
	text-align: center;
	position: fixed;
	right: 30px;
	left: auto;
	bottom: 50px;
	color: #fff;
	font-size: 35px;
	background-color: #0A597F;
	z-index: 9999;
}

.jumper.j1 {
	opacity: 0;
	
	-webkit-transition: all 0.7s ease;
	transition: all 0.7s ease;
}

.jumper.j1.showup{
	opacity: 1;
}

.clearfix{
	clear: both;
}

header{
	width: 100%;
	position: fixed;
	z-index: 9999;
	background-color: #fff;	
	top: 0;
	/* height: 157px; */
	
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
	
	padding: 26px 0;
	
	-webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.16);
	-moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.16);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.16);
}

header a{
	text-decoration: none !important;
	outline: 0 !important;
}

header .s-icons{
	display: inline-block;
	vertical-align: top;
}

header .s-icons .fa{
	font-size: 20px;
	background-color: #231F20;
	color: #fff;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	text-align: center;
	padding-top: 5px;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

header .s-icons .fa:hover{
	background-color: #4178CB;
}

header .right-colm{
	text-align: right;
}

header h2{
	font-family: Poppins-R;
	font-size: 23px;
	color: #231F20;
	text-transform: uppercase;
	margin: 0;
	display: inline-block;
	vertical-align: top;
	margin-left: 30px;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

header h2 img{
	margin-right: 5px;
	vertical-align: top;
	
}

header h2 span{
	display: inline-block;
	vertical-align: top;
	padding-top: 7px;
}

header h2:hover{
	color: #4178CB;
}

header.sticky{
	padding: 10px 0;
}

/*---------- banner-section ---------*/

.banner-section{
	background-image: url('../images/home-banner.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
	height: 684px;
}

/*--------- Welcome Section ----------*/

.welcome-section{
	background-color: #4178CB;
	padding: 80px 0 65px;
}

.welcome-container .content-heading{
	font-family: Poppins-B;
	font-size: 30px;
	color: #231F20;
	text-transform: uppercase;
	margin: 0 0 28px;
}

.welcome-container .content-heading span{
	font-size: 18px;
	display: block;
	margin-bottom: 20px;
}

.welcome-container .left-colm{
	padding-right: 40px;
}

p{
	font-family: Poppins-L;
	font-size: 18px;
	color: #231F20;
	margin-bottom: 22px;
}

p a{
    color: #4178CB;
    text-decoration: none !important;
    outline: 0 !important;
}

p a:hover{
    color: #000;
}

ul.content-ul{
    padding-left: 18px;
}

ul.content-ul li{
    font-family: Poppins-L;
	font-size: 18px;
	color: #231F20;
	padding-bottom: 5px;
	list-style: square;
}

.blu-btn{
	font-family: Poppins-M;
	font-size: 12px;
	color: #fff;
	background-color: #4178CB;
	text-transform: uppercase;
	text-align: center;
	padding: 12px 35px;
	border: none;
	border-radius: 0;
	margin: 30px 0 15px;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.wh-btn{
	font-family: Poppins-M;
	font-size: 12px;
	color: #4178CB;
	background-color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding: 12px 35px;
	border: none;
	border-radius: 0;
	margin: 30px 0 15px;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.blu-btn:hover,
.blu-btn:focus,
.blu-btn:visited{
	background-color: #231F20;
	border: none;
	color: #fff;
}

.wh-btn:hover,
.wh-btn:focus,
.wh-btn:visited{
	background-color: #231F20;
	border: none;
	color: #fff;
}

.welcome-container .img-wrap{
	display: inline-block;
	float: right;
}

.welcome-container .img-wrap:before{
	content: "";
	width: 553px;
	height: 348px;
	border: 30px solid #D7D7D7;
	position: absolute;
	right: 85px;
	top: 70px;
	z-index: 10;
	
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.welcome-container .img-wrap .r-img{
	position: relative;
	z-index: 100;
}

.welcome-container .img-wrap:hover:before{
	right: 110px;
}

.big-heading{
	font-family: Poppins-B;
	font-size: 72px;
	color: #b6b6b7;
	text-transform: uppercase;
	margin: 30px 0;
	padding: 0 40px;
}

.big-heading span.sm{
	font-family: Poppins-R;
	font-size: 20px;
	color: #231F20;
	text-transform: uppercase;
	display: block;
	margin-top: -12px;
}

.big-heading.rr{
	border: none;
	text-align: right;
	border-right: 11px solid #231F20;
}

.big-heading.ll{
	border: none;
	text-align: left;
	border-left: 11px solid #231F20;
}

.welcome-container .big-heading{
	margin: 60px 0 10px;
}

/*-------- projects-section ----------*/

.projects-section{
	padding: 80px 0 50px;
}

.projects-container a{
	text-decoration: none !important;
	outline: 0 !important;
}

.projects-container h2{
	font-family: Poppins-B;
	font-size: 30px;
	color: #231F20;
	text-transform: uppercase;
	margin: 0 0 38px;
}

.projects-container h2:after{
	content: "";
	width: 115px;
	border-top: 3px solid #231F20;
	margin-top: 24px;
	display: block;
}

#latest-project .item{
	height: 370px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-right: 20px solid #fff;
}

#latest-project .owl-item{
	/* margin-right: 20px; */
}

#latest-project .item .inner-wrap{
	padding: 45px 36px 15px;
	background-color: rgba(29, 19, 17, 0);
	height: 100%;
	width: 100%;
	
	display: none;
	
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#latest-project .item .inner-wrap .inner{
 	-webkit-transform: translate(0, 30px);
	-moz-transform: translate(0, 30px);
	-o-transform: translate(0, 30px);
	transform: translate(0, 30px);
	
	opacity: 0; 
	
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#latest-project .item .inner-wrap:before{
	content: "";
	width: 80%;
	border-top: 1px solid #fff;
	display: block;
	position: absolute;
	left: 0;
	top: -1px;
	
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#latest-project .item .inner-wrap:after{
	content: "";
	height: 90%;
	border-left: 1px solid #fff;
	display: block;
	position: absolute;
	top: 0;
	left: -1px;
	
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#latest-project .item h3{
	font-family: Poppins-B;
	font-size: 22px;
	color: #3e3f40;
	text-transform: uppercase;
	margin: 0 0 18px;
}

#latest-project .item p{
	font-family: Poppins-L;
	font-size: 15px;
	color: #fff;
	margin: 0 0 33px;
}

#latest-project .item h5{
	font-family: Poppins-R;
	font-size: 11px;
	color: #cecece;
	text-transform: uppercase;
	margin: 20px 0 0;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#latest-project .item h5:hover{
	color: #fff;
}

#latest-project .owl-item:hover .inner-wrap{
	background-color: rgba(29, 19, 17, 1);
}

#latest-project .owl-item:hover .inner{
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	
	opacity: 1;
}

#latest-project .owl-item:hover .inner-wrap:before{
	top: 20px;
}

#latest-project .owl-item:hover .inner-wrap:after{
	left: 20px;
}

#latest-project.owl-theme .owl-controls{
	text-align: left;
	margin-top: 36px;
}

#latest-project.owl-theme .owl-controls .owl-buttons div{
	border-radius: 0;
	opacity: 1;
	background: #231F20;
	color: #fff;
	width: 36px;
	height: 36px;
	text-align: center;
	font-size: 18px;
	padding-top: 5px;
	margin: 0;
	margin-right: 11px;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#latest-project.owl-theme .owl-controls .owl-buttons div:hover{
	background: #4178CB;
}


/*--------- testi-section -----------*/

.testi-section{
	padding: 80px 0 50px;
	background-image: url('../images/testi-bk.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
}

.testi-container .content-heading{
	font-family: Poppins-B;
	font-size: 30px;
	color: #231F20;
	text-transform: uppercase;
	margin: 0 0 28px;
}

.testi-container .content-heading span{
	font-size: 18px;
	display: block;
	margin-bottom: 20px;
}

.counter.wd{
	min-width: 94px;
	display: inline-block;
}

#testi-slider:before{
	content: url('../images/slider-right.jpg');
	position: absolute;
	right: -65px;
	top: -55px;
}

#testi-slider{
	width: 80%;
}

#testi-slider.owl-carousel .owl-wrapper-outer{
	border-right: 15px solid #fff;
	border-top: 15px solid #fff;
}
 
#testi-slider.owl-carousel .owl-item .item{
	height: 296px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 50px;
}

#testi-slider.owl-carousel .item:before{
	content: "";
	border-left: 6px solid #fff;
	position: absolute;
	left: 30px;
	bottom: 11px;
	height: 102px;
}

#testi-slider.owl-carousel .item:after{
	content: "";
	border-top: 6px solid #fff;
	position: absolute;
	bottom: 30px;
	left: 11px;
	width: 102px;
}

#testi-slider.owl-carousel .item .slider-content{
	position: absolute;
	bottom: 28px;
}

#testi-slider.owl-carousel .item h2{
	font-family: Poppins-M;
	font-size: 28px;
	color: #fff;
	text-transform: capitalize;
	margin: 0 0 15px;
}

#testi-slider.owl-carousel .item p{
	font-family: Poppins-R;
	color: #fff;	
	font-size: 16px;
	
}

#testi-slider.owl-theme .owl-controls{
	text-align: left;
	margin-top: 17px;
}

#testi-slider.owl-theme .owl-controls .owl-buttons div{
	border-radius: 0;
	opacity: 1;
	background: #231F20;
	color: #fff;
	width: 36px;
	height: 36px;
	text-align: center;
	font-size: 18px;
	padding-top: 5px;
	margin: 0;
	margin-right: 11px;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#testi-slider.owl-theme .owl-controls .owl-buttons div:hover{
	background: #4178CB;
}

/*----------- facts-section -----------*/

.facts-section{
	padding: 130px 0 150px;
	background-image: url('../images/facts-bk.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
	/*height: 689px; */
}

.facts-container .left-box{
	border: 20px solid #d7d7d7;
	border-right: none;
	padding: 42px 100px 38px 24px;
	margin-right: 62px;
}

.facts-container .left-box:before{
	content: "";
	border-right: 20px solid #d7d7d7;
	height: 25%;
	position: absolute;
	top: 0;
	right: 75px;
}

.facts-container .left-box:after{
	content: "";
	border-right: 20px solid #d7d7d7;
	height: 25%;
	position: absolute;
	bottom: 0;
	right: 75px;
}

.facts-container .left-box h2{
	font-family: Poppins-B;
	font-size: 60px;
	color: #fff;
	margin: 0 0 15px;
	text-transform: uppercase;
	line-height: 50px;
}

.facts-container .left-box h2 span{
	font-size: 48px;
	display: block;
	margin-bottom: 8px;
}

.facts-container .left-box p{
	color: #fff;
	margin: 0;
	line-height: 28px;
}

.facts-container .facts-box{
	text-align: center;
	padding-top: 110px;
}

.facts-container .facts-box h4{
	display: inline-block;
	vertical-align: top;
	margin: 0 22px;
	/* width: 28%; */
	
	font-family: Poppins-R;
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
}

.facts-container .facts-box h4 span{
	font-family: Poppins-B;
	font-size: 72px;
	display: block;
	margin-bottom: 14px;
	border-bottom: 8px solid #fff;
}

/*------------ footercta-section ------------*/

.footercta-section{
	background-color: #4178CB;
	padding: 80px 0 30px;
}

.footercta-container h2{
	font-family: Poppins-B;
	font-size: 48px;
	color: #242424;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
}

.footercta-container h2 span{
	font-family: Poppins-L;
	text-transform: capitalize;
	display: block;
}

.footercta-container .wh-btn{
	margin: 30px auto 15px;
	display: block;
}

/*----------- quote-section -----------*/

.quote-section{
	padding: 80px 0 30px;
}

.quote-container .left-colm{
	padding: 0 60px;
}

.quote-container h2{
	font-family: Poppins-B;
	font-size: 48px;
	color: #2b2b2b;
	text-transform: uppercase;
	margin: 22px 0 30px;
}

.quote-container h3{
	font-family: Poppins-R;
	font-size: 30px;
	color: #2b2b2b;
	margin: 0 0 20px;
}

.quote-container p{
	font-family: Poppins-R;
	font-size: 15px;
	color: #4f4f4f;
	margin-top: 32px;
	line-height: 26px;
}

.quote-container .quote-frm{
	padding: 35px 35px 30px;
	background-color: #fff;
	
	margin-bottom: -145px;
	
	-webkit-box-shadow: 0px 0px 30px 3px rgba(0,0,0,0.18);
	-moz-box-shadow: 0px 0px 30px 3px rgba(0,0,0,0.18);
	box-shadow: 0px 0px 30px 3px rgba(0,0,0,0.18);
}

.quote-container .quote-frm .frm-fld{
	border: 1px solid #c4c4c4;
	font-family: Poppins-L;
	font-size: 12px;
	color: #6d6d6d;
	padding: 10px 12px;
	margin-bottom: 16px;
	border-radius: 4px;
	width: 100%;
	display: block;
	outline: 0;
	box-shadow: none;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.quote-container .quote-frm textarea.frm-fld{
	height: 210px;
	margin-bottom: 12px;
	resize: none;
}

.quote-container .quote-frm .frm-fld:focus{
	border: 1px solid #000;
}

.quote-container .quote-frm .submit-btn{
	font-family: Poppins-B;
	font-size: 18px;
	color: #fff;
	background-color: #4178CB;
	text-transform: uppercase;
	text-align: center;
	padding: 12px 100px;
	border-radius: 4px;
	border: none;
	outline: 0;
	box-shadow: none;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.quote-container .quote-frm .submit-btn:hover,
.quote-container .quote-frm .submit-btn:focus,
.quote-container .quote-frm .submit-btn:visited{
	background-color: #231F20;
	color: #fff;
	border: none;
}

/*------- flogos-section --------*/

.flogos-section{
	padding: 37px 0;
	background-color: #4178CB;
}

.flogos-container img{
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}

/*---------- footer ---------*/

footer{
	background-color: #232323;
	padding: 34px 0 60px;
}

footer a{
	text-decoration: nonn;
	outline: 0;
}

footer p{
	color: #fff;
}

footer .logo-txt{
	font-family: Poppins-B;
	font-size: 36px;
	color: #fff;
	text-align: center;
	margin: 125px 0;
}

footer .left-colm{
	border-right: 1px solid #fff;
}

footer .mid-colm,
footer .right-colm{
	padding-top: 42px;
}

footer .right-colm{
	padding-left: 60px;
}

footer .addr-box{
	margin-left: 80px;
}

footer .addr-box h3{
	font-family: Poppins-R;
	font-size: 14px;
	color: #fff;
	margin: 0 0 28px;
}

footer .addr-box h3 strong{
	font-family: Poppins-B;
	font-weight: 300;
	text-transform: uppercase;
}

footer .addr-box h3 .fa{
	color: #fff;
	font-size: 46px;
	width: 60px;
	margin-right: 18px;
	padding-right: 18px;
	border-right: 1px solid #656565;
	
	display: inline-block;
	vertical-align: top;
}

footer .addr-box h3 span{
	display: inline-block;
	vertical-align: top;
	width: 72%;
	line-height: 22px;
}

footer .addr-box h3 a{
	color: #fff;
}

footer .copy-txt{
	font-family: Poppins-L;
	font-size: 12px;
	color: #fff;
	margin: 30px 0 0;
}


.err-msg{
	color: #fff;
	font-family: Bariol-R;
	font-weight: 100;
	font-size: 12px;
	display: block;
	margin-top: 2px;
	line-height: 20px;
	height: 20px;
	margin-bottom: 2px;
	text-align: left;
	padding-left: 15px;
}

/*============== thanku-page =============*/

.thanku-container .thanku-box{
	width: 50%;
	margin: 50px auto;
	text-align: center;
	float: none;
	display: block;
}

.banner-thankyou-section{
       height: 550px;
}

.thanku-section{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#35416b+0,b7deed+50,9a7080+100 */
background: #35416b; /* Old browsers */
background: -moz-linear-gradient(-45deg,  #35416b 0%, #b7deed 50%, #9a7080 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  #35416b 0%,#b7deed 50%,#9a7080 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  #35416b 0%,#b7deed 50%,#9a7080 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35416b', endColorstr='#9a7080',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

.thanku-container .thanku-box .blue-box{
	background-color: #4b6daa;
	padding: 70px 0;
}

.thanku-container .thanku-box .blue-box .thumb-box{
	background-color: #fff;
	width: 158px;
	height: 158px;
	border-radius: 158px;
	text-align: center;
	margin: 0 auto;
	display: block;
	vertical-align: middle;
}

.thanku-container .thanku-box .blue-box .thumb-box img{
	vertical-align: middle;
	text-align: center;
	margin-top: 30px;
}

.thanku-container .thanku-box .white-box{
	background-color: #fff;
	padding: 30px 0 50px;
}

.thanku-container .thanku-box .white-box h2{
	font-family: Bariol-R;
	font-size: 32px;
	color: #4b6daa;
	text-align: center;
	text-transform: capitalize;
}

.thanku-container .thanku-box .white-box p{
	color: #adadad;
    display: block;
    font-family: Bariol-R;
    font-size: 18px;
    line-height: 18px;
    margin: 30px auto 10px;
    text-align: center;
    width: 70%;
}

.thanku-container a{
	text-decoration: none !important;
	outline: 0 !important;
}

.thanku-container .thanku-box .back-btn{
	display: block;
	margin: 5px auto;
	text-align: center;
	float: none;
	background-color: #4b6daa;
	color: #fff;
	border: 2px solid #4b6daa;
	text-transform: uppercase;
	padding: 5px 25px;
	font-family: Bariol-R;
	font-size: 14px;
	outline: 0;
	box-shadow: none;
	
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.thanku-container .thanku-box .back-btn:hover{
	background-color: #fff;
	color: #4b6daa;
}


@media screen and (max-width: 767px) {
    
    .thanku-container .thanku-box {
     width: 100%;
    }
    
}













