/** 
 * ===================================================================
 * base style overrides
 *
 * ------------------------------------------------------------------- 
 */
 *{margin:0; padding:0;}

@font-face{font-family:"OpenSans-Regular"; src:url('../fonts/OpenSans-Regular.ttf');}
@font-face{font-family:"OpenSans-Bold"; src:url('../fonts/OpenSans-Bold.ttf');}

@font-face{font-family:"OpenSans-BoldItalic"; src:url('../fonts/OpenSans-BoldItalic.ttf');}
@font-face{font-family:"OpenSans-Light"; src:url('../fonts/OpenSans-Light.ttf');}

@font-face{font-family:"OpenSans-Italic"; src:url('../fonts/OpenSans-Italic.ttf');}
@font-face{font-family:"OpenSans-LightItalic"; src:url('../fonts/OpenSans-LightItalic.ttf');}

@font-face{font-family:"OpenSans-Semibold"; src:url('../fonts/OpenSans-Semibold.ttf');}
@font-face{font-family:"OpenSans-SemiboldItalic"; src:url('../fonts/OpenSans-SemiboldItalic.ttf');}

@font-face{font-family:"OpenSans-ExtraBold"; src:url('../fonts/OpenSans-ExtraBold.ttf');}
@font-face{font-family:"OpenSans-ExtraBoldItalic"; src:url('../fonts/OpenSans-ExtraBoldItalic.ttf');}

@font-face{font-family:"Tipografies-Bulo-Regular.otf"; src: url('../fonts/Tipografies-Bulo-Regular.otf');}
@font-face{font-family:"Tipografies-Bulo-Bold.otf"; src:url('../fonts/Tipografies-Bulo-Bold.otf');}


@media only screen and (max-width:1024px) {
html {font-size: 9.375px;}
}
@media only screen and (max-width:768px) {
html{font-size: 10px;}
}
@media only screen and (max-width:400px) {
html 
{font-size: 9.375px;}
}

html, body {height: 100%;}
body {font-family:"OpenSans-Regular";font-size: 16px; color:#666666; line-height:24px;overflow-x: hidden;}

a,a:visited{color:#fff;-webkit-transition:color 200ms linear;-moz-transition:color 200ms linear;-ms-transition:color 200ms linear;-o-transition:color 200ms linear;transition:color 200ms linear;text-decoration:none;cursor:pointer;}
a:hover{color:#982e29;}
a:hover,a:active,a:focus{outline:none;}
.clear{ clear:both;}
.maincontainer{ width:1200px; margin:0 auto; clear:both;}
/*-- header styles */
header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 24px;
	z-index: 600;
	background: transparent;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
header .row {
	width: auto;
	height: 66px;
	position: relative;
}

header .logo {
	margin-top: 2px;
	z-index: 600;
	position: absolute;
	left: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
header .logo a {
	display: block;
	margin: 0;
	padding: 0;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.sticky {
	position: fixed;
	background: #14171c;
	top: 0;
}
.sticky .logo a {
	width: 200px;
	height: 50px;
	background-size: 200px 50px;
}

/**
 * responsive:
 * header section
 * - 
 */

@media only screen and (max-width:768px) {
	header {
		top: 0;
		padding: 6px 0;
	}
	header .logo a {
		width: 160px;
		height:45px;
		background-size: 160px 45px;
	}
}

/**
 * primary navigation
 * - 
 */

#main-nav-wrap, .main-navigation {
	margin: 0;
	padding: 0; 
}

/* hide toggle button */
a.menu-toggle {
	display: none;
}

/* main-nav-wrap */
#main-nav-wrap {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px; font-weight:600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: absolute;
	top: 0; 
	right: 0px;
}
.main-navigation {
	min-height: 66px;
	display: inline-block;
	width: auto;
	text-align: left;
}
.main-navigation li {
	position: relative;
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
	height: 66px;
}
.main-navigation li.current a {
	color: #fff;
}
.main-navigation li.current a::after {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 80%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #e5601f;
	content: '\0020';
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.main-navigation li.highlight a {
	color: #fff;
}
.main-navigation li.with-sep a {
	position: relative;
	padding-left: 22px;
	margin-left: 8px;
}
.main-navigation li.with-sep a::before {
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 15px;
	margin-top: -10px;
	background-color: rgba(255, 255, 255, 0.2);
	content: '\0020';
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* navigation links */
.main-navigation li a {
	display: block;
	padding: 16px 25px 10px 25px ;
	line-height: 30px;
	text-decoration: none;
	text-align: left;
	color: #fff;
	position: relative;
	-moz-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	-webkit-transition: color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}
.main-navigation li a.active {
color: #fff !important;font-size:16px;text-decoration: none;display: block;padding:7px 19px;text-align: center;background:#e5601f; border-radius:5px;border-bottom:#c03f01 4px solid;}
.main-navigation li a:hover {color: #fff;}

/**
 * mobile view - primary navigation
 * - 
 */

@media only screen and (max-width:768px) {
	#main-nav-wrap {
		display: block;
		width: 100%;
		position: absolute;
		top: 69px;
		right: 0;
	}
	a.menu-toggle {
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 50%;
		right: 30px;
		margin-top: -20px;
	}
	a.menu-toggle span {
		display: block;
		width: 24px;
		height: 3px;
		margin-top: -1.5px;
		position: absolute;
		right: 8px;
		top: 50%;
		bottom: auto;
		left: auto;
		background-color: white;
		-moz-transition: background 0.2s ease-in-out;
		-o-transition: background 0.2s ease-in-out;
		-webkit-transition: background 0.2s ease-in-out;
		-ms-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
		font: 0/0 a;
		text-shadow: none;
		color: transparent;
	}
	a.menu-toggle span::before, a.menu-toggle span::after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		background-color: inherit;
		left: 0;
		-moz-transition-duration: 0.2s, 0.2s;
		-o-transition-duration: 0.2s, 0.2s;
		-webkit-transition-duration: 0.2s, 0.2s;
		-ms-transition-duration: 0.2s, 0.2s;
		transition-duration: 0.2s, 0.2s;
		-moz-transition-delay: 0.2s, 0s;
		-o-transition-delay: 0.2s, 0s;
		-webkit-transition-delay: 0.2s, 0s;
		-ms-transition-delay: 0.2s, 0s;
		transition-delay: 0.2s, 0s;
	}
	a.menu-toggle span::before {
		top: -8px;
		-moz-transition-property: top, transform;
		-o-transition-property: top, transform;
		-webkit-transition-property: top, transform;
		-ms-transition-property: top, transform;
		transition-property: top, transform;
	}
	a.menu-toggle span::after {
		bottom: -8px;
		-moz-transition-property: bottom, transform;
		-o-transition-property: bottom, transform;
		-webkit-transition-property: bottom, transform;
		-ms-transition-property: bottom, transform;
		transition-property: bottom, transform;
	}
	.menu-toggle.is-clicked span {
		background-color: rgba(255, 255, 255, 0);
	}
	.menu-toggle.is-clicked span::before, .menu-toggle.is-clicked span::after {
		background-color: white;
		-moz-transition-delay: 0s, 0.2s;
		-o-transition-delay: 0s, 0.2s;
		-webkit-transition-delay: 0s, 0.2s;
		-ms-transition-delay: 0s, 0.2s;
		transition-delay: 0s, 0.2s;
	}
	.menu-toggle.is-clicked span::before {
		top: 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.menu-toggle.is-clicked span::after {
		bottom: 0;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.main-navigation {
		background: #14171c;
		padding: 48px 42px 54px 42px;
		margin: 0;
		width: 100%;
		height: auto;
		clear: both;
		display: none;
	}
	.main-navigation > li {
		display: block;
		height: auto;
		text-align: left;
		border-bottom: 1px dotted rgba(200, 200, 200, 0.08);
		padding: 0;
	}
	.main-navigation > li:first-child {
		border-top: 1px dotted rgba(200, 200, 200, 0.08);
	}
	.main-navigation li a {
		display: block;
		color: #e6e6e6;
		width: auto;
		padding: 18px 0;
		line-height: 16px;
		border: none;
	}
	.main-navigation li a:hover {
		color: #ff7b29;
	}
	.main-navigation li.with-sep a {
		padding-left: 0;
		margin-left: 0;
	}
	.main-navigation li.with-sep a::before {
		display: none;
	}
	.main-navigation li.current > a {
		background: none;
		color: #ff7b29;
	}
	.main-navigation li.current > a:after {
		display: none;
	}
}

/**
 * make sure the menu is visible on larger screens
 * -
 */

@media only screen and (min-width:769px) {
	#main-nav-wrap ul.main-navigation {
		display: block !important;
	}
}


 /* -- intro section */
.shadow-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 25%, transparent 56%);  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#73000000', endColorstr='#00000000', GradientType=0);  /* IE6-9 */
}
#intro {
	background: #14181E url(../images/banner.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 80%;
	min-height: 350px;
	display: table;
	position: relative;
}
.intro-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	-webkit-transform: translateY(-1.2rem);
	-ms-transform: translateY(-1.2rem);
	transform: translateY(-1.2rem);
}
.slogan{padding:2em 0 0 0px; margin:1em auto 0 auto; width:95%; z-index:999; text-align:center;}
.slogan h1{font-size:45px;font-family:"OpenSans-ExtraBold"; text-decoration:none; color:#fff; text-transform:uppercase; text-shadow:1px 1px 1px #000000; padding: 0 0 35px 0px;}
.slogan p{font-family:"OpenSans-Italic"; font-size:24px; color:#fff;}
.dash{ width:100%; margin:30px 0 0 0px;}
.dash img{ width:auto;}



@media only screen and (max-width:1024px) {.intro-content {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}


/* Start of services */
.services{ background: url(../images/bluebg.png) no-repeat; min-height:214px; padding:0px; margin:-109px 0 0 0px;clear:both; position:relative;  background-size: cover;}


.column{ width:32%; float:left; z-index:99; margin:68px 0 0 0px; text-align:center; padding:30px 15px 20px 0px;border-right:#376fb4 1px solid;}
.column +.column{ margin:68px 0 0 24px;text-align:center;padding:30px 15px 20px 0px; z-index:99;}

.column h3{ font-size:24px;font-family:"OpenSans-Bold"; color:#fff; text-transform:uppercase; padding: 0 0 5px 0px;}
.column p{ font-size:15px;font-family:"OpenSans-Regular"; color:#fff; line-height:22px;}

.vshape{  width:auto; margin: 0 0 20px 0px; height:84px; background:url(../images/vshape.png) no-repeat center top; text-align:center;}

.vshape img{ margin:25px 0px;}

.column:nth-child(3){ border-right:0px;}
/* End of services */


/* start of about */

#about {background: #FFFFFF;padding-top: 8rem;padding-bottom: 4rem;overflow: hidden; text-align:center;}

/* Start of about us */
.aboutheading{ text-align:center; padding: 0 0 20px 0px; margin: 0 0 20px 0px;width:100%; background:url(../images/dashabout.png) no-repeat center bottom;line-height:42px;}
.aboutheading h1{ text-align: center; font-size:30px; text-transform:uppercase; color:#2a2a2a;font-family:"OpenSans-Bold";}
.aboutheading h1 span{ color:#295a96;}

#about p{ font-size:18px; color:#666; line-height:30px;font-family:"OpenSans-Light"; padding: 0 170px;}

.readmore{padding:13px 30px;color:#fff; display:inline-block; background:#295a96;border-radius:5px;font-family:"OpenSans-Semibold"; font-size:22px; border:0px; margin:20px 0 0 0px;}
.readmore:hover{background:#e5601f; cursor:pointer; color:#fff;
transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
}

.viewmore{padding:13px 35px;color:#fff; display:inline-block; background:#e5601f;border-radius:5px;font-family:"OpenSans-Semibold"; font-size:18px; border:0px; margin:20px 0 0 0px;}
.viewmore:hover{background:#295a96; cursor:pointer; color:#fff;
transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
}

/*-- what section --*/
#what {
	background-color: whitesmoke;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	padding-top: 7rem;
	padding-bottom: 4rem;
	color: white;
}

.lefttext{ width:55%; float:left; padding:25px 0 0 0px;}
.lefttext h2{ font-size:30px; color:#2a2a2a;font-family:"OpenSans-Bold"; text-transform:uppercase; padding: 0 0 15px 0px;}
.lefttext h5{font-size:26px; color:#295a96;font-family:"OpenSans-Bold";text-transform:uppercase;padding: 0 0 15px 0px; line-height:38px;}
.lefttext p{font-family:"OpenSans-Light"; color:#666; line-height:32px; font-size:18px;}
.rightimage{ padding:0px; margin:0px; width:40%; float:right;}
.rightimage img{ width:100%;}

/* why section */
#why {background: url(../images/whybg.jpg) repeat-y left top;padding-top: 10rem;padding-bottom: 5rem;}
.whyleftimage{ width:40%; float:left; padding:25px 0 0 0px;}
.whyleftimage img{ width:100%;}

.righttext{ padding:0px; margin:0px; width:55%; float:right;}
.righttext h2{ font-size:30px; color:#2a2a2a;font-family:"OpenSans-Bold"; text-transform:uppercase; padding: 0 0 15px 0px;}
.righttext h5{font-size:26px; color:#295a96;font-family:"OpenSans-Bold";text-transform:uppercase;padding: 0 0 15px 0px; line-height:38px;}
.righttext p{font-family:"OpenSans-Light"; color:#666; line-height:32px; font-size:18px;}


.greybg{ width:86%; background:#f5f5f5; border:#e8e6e6 1px solid; margin:25px auto 0 auto; border-radius:5px; padding:25px 15px 15px 15px; clear:both; text-align:center;}
.greybg h2{ font-size:26px; color:#2a2a2a;font-family:"OpenSans-Bold"; text-transform:uppercase; padding: 0 0 15px 0px;}

.box{ width:100%; margin:10px 0 0 0px; clear:both;}
.footerlogo{ width:15%; float:left;}
.footerlogo +.footerlogo{ margin:0 0 0 20px;}
.footerlogo img{ width:100%;}

/****  Logos ****/
.company_logos{
	padding:10px 0;
		background:#fff;
}

.ocarousel_window {
	width: 100%;
}
.ocarousel {
    display: none;
    padding:20px 0;
    position:relative;
}
.ocarousel span a.prev,.ocarousel span a.next{
	position:absolute;
	top:25%;
}
.ocarousel span a.prev{
	left: 12px;
	font-size: 3em;
	color:#F94B4B
}
.ocarousel span a.next{
	right:12px;
	font-size: 3em;
	color:#F94B4B
}
.ocarousel span a img{
    	
}
.ocarousel_window {
   overflow: hidden;
   white-space: nowrap;
   /* default size */
   width:90%;
   margin:0 auto;
}
.ocarousel_window_slides {
   position: relative;
   margin: 0 auto;
   overflow: hidden;
   width: 50000px;
   white-space: nowrap;
 }
.ocarousel_window_slides * {
    float: left;
    white-space: normal;
    margin: 0 25px 0 22px; 
}
.ocarousel_indicators {
    width: 100%;
}

 /* -- testimonials section -- */
#testimonials {
	background: #FFFFFF;
	padding-top: 10.2rem;
	padding-bottom: 12rem;
	position: relative;
	min-height: 20.4rem;
	width: 100%;
	overflow: hidden;
	text-align: center;
}

/* Start of contact */
#contact {background: #f5f5f5;padding-top: 10rem;padding-bottom: 5rem;}
.formrow{ width:100%; margin:12px 0 0 0px; clear:both;}
.box2{ width:10%; margin:18px auto 0 auto; clear:both;}
#contact p{ font-size:20px; color:#666; line-height:32px;font-family:"OpenSans-Light"; padding: 0 100px; text-align:center; }
.contactheading{ text-align:center; padding: 0 0 20px 0px !important; margin: 0 0 20px 0px;width:100%; background:url(../images/dashabout.png) no-repeat center bottom;line-height:42px;}
.contactheading h1{ text-align: center; font-size:30px; text-transform:uppercase; color:#2a2a2a;font-family:"OpenSans-Bold";}

#contactform{ width:100%; margin:25px 0 0 0px;}
.leftcontact{ width:46.6%; float:left;}
.rightcontact{ width:48.6%; float:right;}
.contact-form-row-input{width:100%; border:2px solid #e5e5e5; padding:10px; margin:5px 0 0 0;background:#ffffff !important;font-family:"OpenSans-Regular"; font-size:15px; color:#a9a9a9;}
.contact-form-row-textarea{width:100%; border:2px solid #e5e5e5; border-radius:3px; height:172px; font-size:15px; color:#a9a9a9; padding:10px; margin:5px 0 0 0;}
.contact-form-row-btn{font-size:18px; display: inline-block; float:left; border-radius:3px; padding:10px 30px;background: #e5601f; border:0px; border-radius:5px; color:#fff;}

/*-- start of number --*/
#number {
	background-color: #1e4f8a; min-height:386px;background: url('../images/numberbg.jpg'); background-size: cover; background-repeat: no-repeat;
	padding-top: 1rem;
	padding-bottom: 2rem;
	text-align: center;
	color: #FFFFFF;
}

/* contact */
.numberbg{ width:100%; background-color: #1e4f8a; min-height:386px;background: url('../images/numberbg.jpg'); background-size: cover; background-repeat: no-repeat;}
.three_columnbox{ width:80%; padding:120px 0px; margin:0px auto; clear:both;}
.fieldbox{ width:30%; float:left; text-align:center; margin: 0 0 60px 0px;}
.fieldbox +.fieldbox{ margin: 0 0 60px 35px; border-left:#3c73b6 1px solid;text-align:center;}
.fieldbox h2{font-family:"Tipografies-Bulo-Bold.otf"; font-size:100px; color:#fff; padding: 0 0 50px 0px;}
.fieldbox p{ font-size:27px;color:#fff;font-family:"OpenSans-Bold"; line-height:35px;}

/* start of footer */
.flogo{ width:auto; text-align:center;}
.flogo img{ width:auto;  margin: 0 0 20px 0px;}
.footer{ background:#3b3e4f; padding:50px 0 0 0px; text-align:center;}
.footer ul{ list-style:none; padding:0 0 30px 0px; margin:0px; }
.footer ul li{ display:inline-block; padding:0 16px; margin:0px;font-size:16px;font-family:"OpenSans-Regular"; color:#9698a2; border-left:#515365 1px solid; line-height:15px; }
.footer ul li:first-child{border-left:0px;}
.footer ul li a{color:#9698a2; text-decoration:none; }
.footer ul li a:hover{color:#56a9f5; text-decoration:none; }
.socialmedia{ width:35%; text-align:center; margin:10px auto; clear:both;}
.socialmedia ul{ list-style:none; padding:0 0 30px 0px; margin:0px;}
.socialmedia ul li{padding:0px; margin:0px;border-left:0px !important; }
.socialmedia ul li a{padding:9px 14px; margin: 0 0 0 5px; color:#3b3e4f; background:#7b848f; border-radius:50%;}
.socialmedia ul li a:hover{color:#3b3e4f; background:#fff; }
.copyright{ background:#2c2e3a; padding:20px 0px 15px 0; margin:0px; width:100%; text-align:center;}
.copyright p{ color:#fff;font-family:"OpenSans-Regular";}


 /* go to top */
#go-top {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 600;
	display: none;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	height: 66px;
	width: 60px;
	line-height: 66px;
	text-align: center;
	background: #048a7c;
	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#go-top a i {font-size: 20px;line-height: inherit;}
#go-top a:hover {background: #ff7b29;color: #FFFFFF;}

.capcha{
	
	text-align:center;
	vertical-align:top;
}


/* New css */

.contact-form-row-input-capcha {
    width: 100%;
    border: 2px solid #e5e5e5;
    padding: 10px;
    margin: 0px 0 0 0;
    background: #ffffff !important;
    font-family: "OpenSans-Regular";
    font-size: 15px;
    color: #a9a9a9;
}

.mobcapcha { width:46%; margin:12px 0 0 0px; clear:both;}