/*
Theme Name: STG
Author : Niyati technologies
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
	font-family: sans-serif; 
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	background: #fff;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
	text-decoration: none;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

.col-centered{margin: 0 auto;text-align: center;float: none;}
/*svg:not(:root) {
	overflow: hidden;
}*/

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
:focus{
	outline: none;
	text-decoration: none;
}
input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
	-webkit-appearance: none !important; margin:0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #333;
	font-size: 14px;
	line-height: 1.42857;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 0;

}

p {
	margin-bottom: 1.5em;
	text-align: justify;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type="button"],
input[type="reset"],
input[type="submit"] {
	    border: 1px solid #1351a8;
    border-color: transparent;
    border-radius: 0;
    background: #1351a8;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    padding: 8px 50px;
    margin: 30px 3px;
    display: inline-block;
    text-align: center;
    transition: .2s linear;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #1351a8;
    background: #fff;
    color: #1351a8;
    transition: .2s linear;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: transparent;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	line-height: 33px;
    color: #000;
    border: none;
    font-size: 14px;
    border-radius: 0px;
    border: 1px solid transparent;
    padding: 5px 10px 10px 10px;
    transition: 0.2s ease;
    background-color: #f2f2f2;
    width: 100%;
    border-radius: 0;
    margin: 0 0 20px;
    transition: .2s linear;
}

div.wpcf7 .ajax-loader { /* float: left; */ }

::-webkit-input-placeholder  { /* Chrome/Opera/Safari */
  color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: transparent;
}

select {
	line-height: 35px;
    color: #000;
    border: none;
    font-size: 16px;
    border-radius: 0px;
    border-bottom: 2px solid #c7c7c7;
    padding: 5px 0px 10px 15px;
    transition: 0.2s ease;
    background-color: transparent;
    width: 100%;
    border-radius: 0;
    margin: 0 0 20px;
    height: 52px;
    transition: .2s linear;
    -moz-appearance: none;
	-webkit-appearance: none;
	background:url(images/select-arrow.png) no-repeat 98% 17px / 12px
}
select:focus {
	background:url(images/select-arrow-active.png) no-repeat 98% 17px / 12px
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border: 1px solid #1351a8 !important;
	transition: .2s linear;
	
}

textarea {
	width: 100%;
	padding: 5px 10px 5px 10px;
}

.half-box.name,.half-box.email,.half-box.we-are{padding-right: 30px}
.half-box.phone,.half-box.city,.half-box.we-want{padding-left: 30px}
a#scrolldown{width: 25px;height: 50px;display: block;}
div.wpcf7-response-output {overflow: auto;}
span.wpcf7-list-item {
    display: inline-block;
    margin: 0 10px 0 0;
    float: left;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
header#masthead {
    box-shadow: 0 0 2px -1px #333;
	margin-bottom: 0;
}
.navbar-brand > a {
	color: #563d7c;
	font-weight: bold;
}
.navbar-brand > a:visited, .navbar-brand > a:hover {
	color: #563d7c;
	text-decoration: none;
}
div#page-sub-header {
	position: relative;
	padding: 30px 0;
	color: #cdbfe3;
	text-align: center;
	text-shadow: 0 1px 0 rgba(0,0,0,.1);
	background-color: #6f5499;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#563d7c),to(#6f5499));
	background-image: -webkit-linear-gradient(top,#563d7c 0,#6f5499 100%);
	background-image: -o-linear-gradient(top,#563d7c 0,#6f5499 100%);
	background-image: linear-gradient(to bottom,#563d7c 0,#6f5499 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);
	background-repeat: repeat-x;
	margin-bottom: 40px;
	font-size: 20px;
}
div#page-sub-header h1{
	margin-top: 0;
	color: #fff;
	margin-bottom: 10px;
}
div#page-sub-header p{
	margin-bottom: 0;
	font-weight: 300;
	line-height: 1.4;
}



@media screen and (min-width: 768px) {
	div#page-sub-header h1{
		font-size: 60px;
		line-height: 1;
	}
	div#page-sub-header {
		padding-top: 60px;
		padding-bottom: 60px;
		text-align: left;
		font-size: 24px;
	}
}
@media screen and (min-width: 992px) {
	div#page-sub-header p{
		max-width: 640px;
	}
}



/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/







/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.navbar-brand {
	height: auto;	 
}
.navbar-toggle .icon-bar {
	background: #000 none repeat scroll 0 0;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

@media (max-width: 767px) {

  
  .dropdown-menu {
      padding-left: 10px;
  }
  .dropdown-menu .dropdown-menu {
      padding-left: 20px;
   }
   .dropdown-menu .dropdown-menu .dropdown-menu {
      padding-left: 30px;
   }
   li.dropdown.open {
    border: 0px solid red;
   }

}
 
@media (min-width: 768px) {
  ul.nav li:hover > ul.dropdown-menu {
    display: block;top: 90%;border-radius: 0;background: #fff;
  }
  .caret{display: inline-block;}
  #navbar {
    text-align: center;
  }
}  

.dropdown-menu {position: absolute;top: 100%;left: 0;min-width: 250px;padding:  0;margin: 2px 0 0;-webkit-animation-name: slideIn;animation-name: slideIn; animation-duration: 0.8s;-webkit-animation-duration: 0.8s;animation-fill-mode: both;-webkit-animation-fill-mode: both;}
.page-template-page-service .dropdown-menu {position: absolute;top: 90% !important;left: 0;min-width: 250px;padding:  0;margin: 2px 0 0;}
.dropdown-menu>li>a { padding: 10px 20px;color: #000;position: relative;transition: .2s linear;font-size: 12px;font-weight: 700;text-transform: uppercase;letter-spacing: 0px; }
.dropdown-menu>li>a:focus, .dropdown-menu>li >a:hover {color: #1351a8 !important;text-decoration: none;background-color: transparent;}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {color: #1351a8;text-decoration: none;background-color: transparent;outline: 0;}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

@media screen and (min-width: 769px) {
	.dropdown-menu li > .dropdown-menu {
		right: -158px;
		top: 22px;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #b90101;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin-bottom: 0em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}
.widget_search .search-form input[type="submit"] {
	display: none;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	background: #f5f5f5 none repeat scroll 0 0;
	border-radius: 3px;
	box-shadow: 0 0 2px 1px #ccc;
	padding: 2rem;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}




/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
	border:none;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer#colophon {
	background: #262626 none repeat scroll 0 0;
	margin: 0px 0 0;
	padding: 20px 0;
	text-align: center;
}
.copyright {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
}



@media screen and (max-width: 767px) {
	#masthead .navbar-nav > li > a {
		padding-bottom: 15px;
		padding-top: 15px;
	}
}
/*************custom styles**************/


/* Custom Styles */

main { background: #fff;}
a { transition: all 0.3s ease 0s }
.no_padding { padding: 0px }
.no_margin { margin: 0px }
.col-centered{float: none;margin: 0 auto}
img { max-width: 100%; height: auto }
a:focus { outline: none }
#success_msg { position: absolute; width: 75%; left: 0; right: 0; margin: 0px auto;  font-size: 15px; border: 1px solid #d6e9c6; padding: 8px; bottom: 15px }
.nav>li>a:focus, .nav>li>a:hover {text-decoration: none;background-color: transparent;}
/* The side navigation menu */
.sidenav {height: 100%;width: 100%; position: fixed; z-index:9999; top: 0; right: -100%;background-color: #111;overflow-x: hidden; padding-top: 60px; transition: 0.5s;}
.sidenav a {padding: 8px 8px 8px 32px;text-decoration: none;font-size: 25px;color: #818181;display: block;transition: 0.3s;}
.sidenav a:hover {background-color: transparent !important;color: #22c1f2;}
.sidenav .closebtn {position: absolute;top: 0;right: 25px;font-size: 36px;margin-left: 50px;}
.sidenav .nav>li>a {padding: 20px 15px !important;}
.sidenav .nav>li.active>a {color: #22c1f2;}
.sidenav .logo.menu-item{display: none;}
#content {transition: margin-left .5s;}
.sidenav .navbar-nav .open .dropdown-menu {background-color: #333;border-radius: 0;position: relative;margin: 0 0 30px;}
.sidenav .dropdown-menu>li>a {padding: 10px 20px;font-size: 25px;color: #818181;font-weight: 400;display: block;line-height: 30px !important;text-align: left;white-space: unset;text-transform: capitalize;}

/*404*/
body.error404 header.navbar-static-top {background: rgba(0,0,0,.5);width: 100%;position: absolute;transition: 0.2s linear;}
section.error-404.not-found {padding: 250px 0px;text-align: center;margin: 200px 0 0;}
.error-404 p{text-align: center;}
/*404*/

/*sitemap*/
section.sitemap{padding: 50px 0px;}
section.sitemap ul {column-count: 2;column-gap: 20px;list-style:none}
section.sitemap ul li a {color: #000;transition: .2s linear;font-weight: 700;font-size: 16px;line-height: 24px;text-transform: uppercase;margin: 10px 0;display: block;}
section.sitemap ul li a:hover {transition: .2s linear;opacity: .8;}
section.sitemap ul ul {column-count: 1;column-gap: 20px;padding-left:0;list-style:disc;}
section.sitemap ul ul li a{font-size: 14px;color: #666;}
.sitemap .bordered,.sitemap .header-search{display: none;}
/*sitemap*/

/*search*/
.search-main {min-height: 60vh;padding-bottom: 50px;}
h2.entry-title a {font-size: 20px;color: #000 !important;line-height: 28px;margin: 0 0 15px;}
.togglesearch{background:#fff;position:absolute;top:90px;right:0;width:350px;height:60px;line-height:60px;box-shadow:0 0 10px rgba(0,0,0,0.5);border-top:0;display:none}
.togglesearch input{line-height:35px;color:#000;border:none;font-size:16px;border-radius:0;border:1px solid #c7c7c7;padding:5px 10px;transition:.2s ease;background-color:transparent;width:calc(100% - 34px);margin:0;float:left}
.togglesearch input:focus{border:1px solid #22c1f2;transition:.2s linear}
.inputgroup{padding:13px}
.togglesearch input[type="submit"]{float:left;margin:0;padding:4px 10px;border:0;border-radius:0;height:34px;width:34px;transition:.2s linear;background:#333;z-index:80;background:#333 url(images/search.png) no-repeat center / 20px}
.togglesearch input[type="submit"]:hover{background-color:#4dc6e1;color:#fff;transition:.2s linear}

/*search*/

/*full width template*/
section.Fullwidth-sec {padding: 50px 0px;}
section.Fullwidth-sec p{font-size: 15px;line-height: 28px;color: #666;margin-bottom: 15px;}
section.Fullwidth-sec ul li{font-size: 15px;line-height: 28px;color: #666;margin-bottom: 10px;}
section.Fullwidth-sec ul {margin:15px 0;}
/*full width template*/

/* Header Section */

header.navbar-static-top { background: transparent; width: 100%; position: fixed;transition: 0.5s linear;}
header .logo a { display: block; width: 100%; height: 100%; text-indent: -300em  }
header .navbar-nav {  font-size: 14px; text-transform: capitalize; float: none; width: 100%; text-align: center;transition: .2s linear;margin:20px 0; }
header .navbar-nav > li > a {color: #fff;position: relative;transition: .2s linear;font-size: 15px;font-weight: 500;text-transform: capitalize;line-height: 14px;padding: 12px 10px;margin: 0 10px;font-family: 'Poppins', sans-serif;border-bottom:1px solid transparent;}
.dropdown-menu>li>a{font-family:'Open Sans',sans-serif;}
header .navbar-nav > li.current_page_parent > a ,header .navbar-nav > li.active > a,header .navbar-nav > li > a:hover { color: #fff;border-bottom:1px solid #fff !important;}
.navbar-header{padding: 25px 0px;transition: 0.2s linear;}
.header-menu{width: calc(100% - 218px);float: right;padding: 35px 0 0;transition: 0.2s linear;position: relative;}
nav.collapse.navbar-collapse{float: right;}
header .navbar-toggle { background: transparent; margin-right: 0px}
header .navbar-toggle .icon-bar { background: #fff } 
.navbar-toggle .icon-bar { width: 30px; margin-bottom: 6px }
header.navbar-static-top.fixed {background-color:#000 !important;transition: 0.4s linear;padding: 0 0px;}
header.navbar-static-top.fixed .navbar-nav > li {transition: .2s linear;}
header.navbar-static-top.fixed .navbar-nav > li > a {transition: .2s linear;}
header.navbar-static-top.fixed .navbar-nav > li {transition: .2s linear;}
.navbar-nav > li {float: none; display: inline-block; vertical-align: middle;}
header.navbar-static-top {padding: 0px 0px;}
.caret {display: none;}
.mobile-display {display: none;}
header .navbar-nav > li.header-search > a {border: transparent;border-radius: 50%;background: transparent;padding: 0px 8px;line-height: 0px;margin: 0 0;font-size: 16px;line-height: 16px;color: #fff;transition: 0.2s linear;top: -3px;}
header .navbar-nav > li.header-search:hover  > a{   border-radius: 50%;font-size: 16px;color: #fff;transition: 0.2s linear;cursor: pointer;border :none !important;}
header.navbar-static-top.fixed .navbar-header {width: 50px;padding: 10px 0px;transition: 0.2s linear;}
header.navbar-static-top.fixed .header-menu {padding: 0px 0;transition: 0.2s linear;}
header.navbar-static-top.fixed .call-row {display: none;}
.call-row {display: block;text-align: right;}
.call-row a{display: inline-block;padding: 0 0 0 20px;background:url(images/call.png) no-repeat 0 4px;font-size: 15px;color: #1c3a71;text-transform: uppercase;font-weight: 600;}
header .navbar-nav > li.request-btn a {font-size: 13px;color: #b90101;border: 1px solid #b90101;padding: 10px 10px;font-weight: 700;line-height: 12px;transition: .3s linear;}
header .navbar-nav > li.request-btn:hover a {font-size: 13px;color: #fff;background-color: #b90101;	transition: .3s linear;}
@keyframes slideIn {0% {transform: translateY(1rem);opacity: 0;}100% {transform:translateY(0rem);opacity: 1;}0% {transform: translateY(1rem);opacity: 0;}}
@-webkit-keyframes slideIn {0% {-webkit-transform: transform;-webkit-opacity: 0;}100% {-webkit-transform: translateY(0);-webkit-opacity: 1;}0% {-webkit-transform: translateY(1rem);-webkit-opacity: 0;}}
.top-bar {background: #000;padding: 15px 0;text-align: right;z-index: 10}
header.navbar-static-top.fixed .top-bar {display: none;}
ul.topbar-social{list-style: none;margin: 0px 0 0;padding: 0;overflow: auto;display: inline-block;}
ul.topbar-social li{float:left;display: inline-block;}
ul.topbar-social li a i{float: left;display:block;width: 28px;height: 28px;background: #8f8f8f	;border-radius: 50px;color:#000;margin: 0 7px;font-size: 17px;transition: .2s linear;text-align: center;line-height:28px;}
ul.topbar-social li a:hover i,.footer-right ul li:hover a i{background: #fff;color:#000;transition: .2s linear;}
ul.calltoaction{list-style: none;margin: 0px 0 0;padding: 0;overflow: auto;display: inline-block;}
ul.calltoaction li{float:left;display: inline-block;}
ul.calltoaction li a{font-size: 15px;line-height: 26px;color: #cccccc;margin-right: 30px;padding-left: 25px}
ul.calltoaction li a:hover{color: #fff;}
li.phone-topbar{background:url(images/call.png) no-repeat 0 5px;}
li.mail-topbar{background:url(images/mail.png) no-repeat 0 7px;}
.page-template-front-page header.navbar-static-top{background: transparent !important;}
.page-template-front-page header.navbar-static-top.fixed{background: #000 !important;}
.page-template-front-page main.page_template {margin-top: 0px }
.page-template-front-page .navbar-header {padding: 20px 0px;top: 0px;position: relative;width: 100px;}
.page-template-front-page .header-menu {padding: 15px 0 0 ;}
.navbar-header {padding: 12px 0px;transition: 0.2s linear;position: relative;width: 175px;}
.header-menu {padding: 0 0 0;}
header.navbar-static-top{background: #000}
main.page_template {margin-top: 115px;}
.current-menu-parent a{border-bottom: 2px solid #fff !important;}
header .navbar-nav > li.current_page_parent > a, header .navbar-nav > li.active > a,header .navbar-nav > li.current-menu-parent > a:hover{border-bottom: 2px solid #fff !important;}
.bordered a{border:1px solid #fff !important;padding: 12px 25px !important}
.bordered a:hover{border:1px solid #fff !important;background: #fff !important;color: #000 !important}
/* End */

/* Footer Section */

footer{background-color: #343434;padding: 70px 15px 0px;position: relative;}
.social ul{list-style: none;margin: 20px 0 ;padding: 0;overflow: auto;display: inline-block;}
.social ul li {display: inline-block;}
.social ul li a i{display:block;width: 28px;height: 28px;background: #dadada;border-radius: 5px;color:#343434;margin: 0 7px;font-size: 18px;transition: .2s linear;text-align: center;line-height:28px;}
.social ul li a:hover i,.footer-right ul li:hover a i{background: #fff;color:#343434;transition: .2s linear;}
.footer-top .footer-careers .menu-footer-container{display: block;overflow: auto;clear: both;}
.footer-top .footer-careers .menu-footer-container ul{padding:0;margin: 0 }
.footer-top .footer-careers .menu-footer-container ul li a{font-weight: 500;color: #fff;font-size: 20px;line-height: 34px;transition: .2s linear;}
.footer-top .footer-careers .menu-footer-container ul li a:hover{text-decoration: underline;transition: .2s linear;}
.footer-bottom .copyrights{clear: both;display: inline-block;font-weight: 400;color: #ccc;font-size: 14px;line-height: 20px;}
.footer-bottom .footer-button{display: inline-block;font-weight: 400;color: #ccc;font-size: 14px;line-height: 20px;margin: 0 10px}
.footer-bottom .footer-button:hover{color: #fff;text-decoration: underline;}
.footer-bottom {clear: both;border-top: 1px solid rgba(218, 218, 218 , .2);padding: 20px 0px;}
h6.footer-title a{font-weight: 500;color: #fff;font-size: 20px;line-height: 30px;}
h6.footer-title a:hover{text-decoration: underline;transition: .2s linear;padding-left: 5px;}
.footer-top {overflow: auto;clear: both;margin-bottom: 50px;}
.footer-top ul.menu{list-style: none;margin: 5px 0 10px;padding: 0;overflow: auto;}
.footer-top ul.menu li{display: block;}
.footer-top ul.menu li a{color:#ccc;font-size: 14px;font-weight: 400;line-height: 28px;transition: .2s linear;text-align: center;padding: 0px 0px;}
.footer-top ul.menu li a:hover{color:#fff;text-decoration: underline;transition: .2s linear;padding-left: 5px}
.about-footer{padding-left: 100px;padding-right: 75px;background: url('images/logo.png') no-repeat 0 14px;}
.about-footer p{color:#fff;font-size: 14px;font-weight: 400;line-height: 26px;margin: 0 0 20px}
.about-footer h6{color:#fff;font-size: 20px;font-weight: 500;line-height: 30px;margin: 0 0 0px}
.about-footer a{color:#fff;font-size: 14px;font-weight: 400;line-height: 30px;text-decoration: underline;text-underline-position: under;transition: .2s linear;}
.about-footer a:hover{opacity: .8;transition: .2s linear;}
/* End */

/* Banner Section */
.loading {min-height: 531px; background:#fff url('images/loader.gif') no-repeat center center;}
section.banner_section { width: 100%;height: 700px;overflow: hidden; position: relative;}
section.banner_section h1 {font-size: 66px;line-height: 88px; font-weight: 400;text-align: left;color: #fff; margin: 0px 0 20px;max-width: 800px;}
section.banner_section p {font-size: 26px;color: #fff;line-height: 38px;font-weight: 400;margin: 0px 0 40px;}
section.banner_section  a{font-size: 17px;font-weight: 500;color: #fff;background-color: transparent;border:1px solid #fff;padding: 15px 30px;transition: .3s linear;display: inline-block;}
section.banner_section  a:hover {color: #000;background: #fff;transition: .3s linear;}
video#myVideo {width: 100%;position: relative;object-fit: cover;height: 100%;}
section.banner_section:before{content: '';display: block;position: absolute;left: 0;right:0;width: 100%;height: 100%;background: rgba(0,0,0,.6);z-index: 1;}
.banner-content {position: absolute;top: 30%;width: 100%;z-index: 10;}


section.banner_section2 { width: 100%;height: 330px;overflow: hidden; position: relative;}

/*banner sections ends*/
/*our work */
.button-title svg{width: 25px;}
.works{padding:75px 0px;}
.sec-title .title{color: #1351a8;font-size: 18px;font-weight: 700;text-align: left}
.sec-title .title:before{background: #c9c9c9;width: 40px;height: 2px;display: inline-block;content: '';margin-right: 15px;position: relative;top:12px;float: left }
.sub-title {clear: both;padding: 30px 200px 60px 0px;position: relative;}
.left-title{color: #000;font-size: 28px;line-height: 48px;font-weight: 300;text-align: left}
a.button-title {font-size: 18px;font-weight: 500;color: #1351a8;line-height: 38px;position: absolute;top: 40px;right: 0;transition: .2s linear;}
.button-title svg {width: 23px;top: 3px;right: 0;position: relative;margin: 0 0px 0 10px;transition: .2s linear;}
a.button-title:hover svg{right:-5px;}
.works-box:first-child{padding-left: 0}
.works-box:lasst-child{padding-right: 0}
.work-image {margin-bottom: 25px;}
.work-title{font-size: 18px;font-weight: 700;line-height: 26px;color: #262626;margin: 0 0 20px;}
.work-content{color: #808080;font-size: 16px;font-weight: 400;line-height: 26px;margin:0 10px 20px 0;}
/*our work */
/*about*/
section.about{background: #1351a8;padding: 100px 0;}
section.about .title{color: #fff;}
section.about .sec-title .title:before{background: rgba(255,255,255,.5);}
.about-img{padding-right: 0;float: right;}
.about-img img{float: right}
.about-text{padding-left: 0}
.about-text h1{font-size: 30px;font-weight: 300;line-height: 44px;color: #fff;margin: 20px 0 20px;}
.about-text p{font-size: 16px;font-weight: 400;line-height: 30px;color: #fff;margin: 0px 0 20px;}
.about-text p:last-child{margin: 0px 0 0px;}
.about-text  a{font-size: 17px;font-weight: 300;color: #fff;background-color: transparent;border:1px solid #fff;padding: 10px 30px;margin: 15px 0 0;transition: .3s linear;display: inline-block;}
.about-text  a:hover {color: #000;background: #fff;transition: .3s linear;}
/*about*/

/*lets talk*/
section.letstalk{background: #1351a8;padding: 100px 0;}
section.letstalk h2{font-size: 27px;font-weight: 300;line-height: 43px;color: #fff;padding-right: 275px;}
section.letstalk a{font-size: 17px;font-weight: 500;color: #000;background-color: #fff;border:1px solid #fff;padding: 10px 50px;margin: 15px 0 0;transition: .3s linear;display: inline-block;}
section.letstalk a:hover {opacity:.8;transition: .3s linear;}
/*lets talk*/

/*technology*/

section.technology{padding: 100px 0px;overflow: auto;}
.logo-image {padding: 0 15px;position: relative;height: 100px;margin: 0 10px;}
.casestudies-slider{padding: 130px 0 80px}
.casestudy-image ,.casestudy-detail{width: 100%;height: 344px;flex:1 0 100%}
.casestudy-box a{display: flex !important;flex-wrap: wrap;flex-direction: row;margin-right: 3px;}
.casestudy-box:nth-child(even) a .casestudy-detail {order:1;margin-top: 0px;margin-bottom: 3px;}
.casestudy-box:nth-child(even) a .casestudy-image {order:2;}
.casestudy-detail {background: #1351a8;align-items: center;padding: 80px 60px 50px;margin-top: 3px;}
.casestudy-detail h6{font-size: 16px;font-weight: 700;line-height: 26px;color: #fff;}
.casestudy-detail p{font-size: 16px;font-weight: 400;line-height: 26px;color: #fff;margin: 0;text-align: left;}
.slick-next:before,.slick-prev:before{display: none;}
.slick-next{background: url(images/arrow.svg) no-repeat center / 25px;}
.slick-prev {background: url(images/arrow.svg) no-repeat center / 25px;transform: rotate(180deg);top: 48%;}
.slick-prev, .slick-next {width: 35px;height: 35px;border:transparent;}
.slick-prev:hover, .slick-prev:focus{background: url(images/arrow.svg) no-repeat center / 25px;left: -80px}
.slick-next:hover, .slick-next:focus {background: url(images/arrow.svg) no-repeat center / 25px;right: -80px}
/*technology*/

/*services*/
.page-template-page-agile-service header.navbar-static-top {background: transparent;}
section.innerbanner {height: 700px;position: relative;}
section.innerbanner:before {position: absolute;left: 0;top: 0;content: '';width: 100%;height: 100%;background: rgba(0,0,0,.7)}
.banner_text {width: 800px;position: absolute;bottom: 250px;}
.banner_text .title{color: #fff;font-size: 15px;font-weight: 500;text-align: left;margin: 0 0 15px}
.banner_text .title:before{background: #fff;width: 40px;height: 2px;display: inline-block;content: '';margin-right: 15px;position: relative;top:12px;float: left }
.banner_text h1{color: #fff;font-size: 50px;font-weight: 400;text-align: left;margin: 0 0 15px}
.banner_text p{color: #fff;font-size: 20px;font-weight: 400;text-align: left;line-height: 33px;margin: 0}
.services {padding: 100px 0px;overflow: auto;}
.service-content {padding-left: 0;padding-right: 50px}
.service-boxes:after{content: '';display: block;width: 100%;background: #ccc;height: 1px;margin: 50px 0px;}
.service-boxes:last-child:after{content: '';display: none;}
.service-box-wrapper{padding-right: 50px;}
.service-boxes h2, .cslide-bg h2, .page-template-page-agile-service .solutions-listing h2{font-size: 36px;font-weight: 500;line-height: 46px;color: #1351a8;margin: 0 0 30px}
.service-boxes p{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 0px}
.service-boxes h3, .clblog-inner h3{color: #262626;font-size: 18px;line-height: 25px;font-weight: 500;text-align: left;margin: 0 0 20px}
.service-boxes h3:before, .clblog-inner h3::before{background: #1351a8;width: 40px;height: 2px;display: inline-block;content: '';margin-right: 15px;position: relative;top:12px;float: left }
.service-boxes ul, .single-casestudy .clblog-inner ul{margin: 0;padding: 0;list-style: none;}
.service-boxes ul li, .single-casestudy .clblog-inner ul li{padding-left: 20px;background: url(images/list-tick.png) no-repeat 0 8px;font-size: 15px;font-weight: 400;line-height: 26px;color: #808080;margin: 0 0 10px; text-align: justify;}
.service-boxes ol li{font-size: 15px;font-weight: 400;line-height: 26px;color: #808080;margin: 0 0 10px;}
.service-boxes ol{padding-left: 20px;}
.service-boxes a{color: #1351a8;text-decoration: underline;}
.case-studies-box {margin: 100px 0px 150px 100px;}
.case-content {padding: 50px;width: 400px;float: right;}
.case-studies-box .wrapper{background: #1351a8;min-height: 344px;position: relative;}
.box-image-float {width: 528px;height: 350px;position: absolute;top: 50px;left: -100px;}
.page-template-page-agile-service .box-image-float{border: 2px solid #ddd;} 
.case-content .title{color: #fff;font-size: 16px;font-weight: 700;text-align: left;margin: 0 0 15px}
.case-content .title:before{background: #fff;width: 40px;height: 2px;display: inline-block;content: '';margin-right: 15px;position: relative;top:12px;float: left }
.case-content h4{color: #fff;font-size: 23px;font-weight: 500;text-align: left;line-height: 30px;margin: 0 0 5px;}
.case-content p{color: #fff;font-size: 16px;font-weight: 300;text-align: left;line-height: 25px;margin: 0}
.case-content a{color: #fff;font-size: 16px;font-weight: 700;text-align: left;line-height: 25px;margin: 25px 0px 0;display: block;transition: .2s linear}
.case-content a:hover{text-decoration: underline;opacity: .9;transition: .2s linear}
.services section.letstalk {background: #1351a8;padding: 30px 50px;overflow: auto;margin: 80px 0 0}
.services .letstalk h2 {font-size: 26px;padding-right: 100px;}
h4.sidebar-menu-head{font-size: 15px;font-weight: 700;color: #000;}
h4.sidebar-menu-head:after{content: '';background:#1351a8;display: block;width: 50px;height: 3px;position: relative;margin: 10px 0px;}
.service-menu {padding: 0;}
.service-menu ul{list-style: none;margin: 0;padding:0;}
.service-menu ul li a{color: #808080;font-size: 13px;font-weight: 400;line-height: 23px;margin: 0 0 10px;display: block;transition: .2s linear}
.service-menu ul li.current-menu-item a,.service-menu ul li a:hover{color: #1351a8;transition: .2s linear}
/*services*/

/*what we do*/
.banner_text h5{color: #fff;font-size: 34px;font-weight: 300;text-align: left;margin: 0 0 15px}
.page-template-page-services header.navbar-static-top {background: rgba(0,0,0,0);}
.menu-heads{margin: 0 0 50px;}
.menu-heads ul{list-style: none;margin:0 auto;padding:0;display: table;text-align: center;border-bottom: 1px solid #d2d2d2;width: 100%  }
.menu-heads ul li{display: inline-block; }
.menu-heads ul li a{color: #000;font-size: 18px;font-weight: 500; line-height: 30px;padding: 0 0px 20px;margin: 0 15px;transition:.2s linear;border-bottom: 2px solid transparent;display: inline-block;}
.menu-heads ul li a:hover,.menu-heads ul li a:focus{color: #1351a8;transition:.2s linear;text-decoration: none; }
.menu-heads ul li a.active{color: #1351a8;font-size: 18px;font-weight: 700;transition:.2s linear;border-bottom-color: #1351a8 }
.services-details h1, .blog-section h1{color: #000;font-size: 42px;font-weight: 300;text-align: left;line-height: 62px;margin: 0 0 20px;}
.services-details {text-align: justify;}
.services-details p{color: #808080;font-size: 16px;line-height: 28px;margin: 0 0 20px;}
.page-template-page-services .case-content {padding: 66px 50px 50px 150px;width: 780px;float: right;background: #1351a8;min-height: 450px}
.page-template-page-services .case-studies-box .wrapper {background: transparent;min-height: 500px;position: relative;}
.page-template-page-services .box-image-float {width: 440px;height: 365px;position: absolute;top: 42px;left: -100px;}
.menu-left,.menu-right{float: left}
.menu-left ul,.menu-right ul{margin: 0;padding: 0;list-style: none;}
.menu-left ul li a,.menu-right ul li a {color: #fff;font-size: 16px;font-weight: 400;text-align: left;line-height: 25px;margin: 20px 0px 0;display: flex;transition: .2s linear;}
.image-list {width: 40px;margin-right: 10px;}
.text {text-align: left;width: calc(100% - 50px);}
.menu-right {padding-left: 15px;}
.page-template-page-services .case-studies-box {margin: 100px 0px 0px 100px;}
/*what we do*/


/*contact us*/
.page-template-contact header.navbar-static-top {background: rgba(0,0,0,0);}
section#getintouch{padding: 70px 0px;}
.address-box {padding-right: 50px;}
.address-box h2{font-size: 36px;font-weight: 500;line-height: 46px;color: #1351a8;margin: 0 0 10px}
.address-box p{font-size: 20px;font-weight: 400;line-height: 30px;color: #808080;margin: 0 0 20px}
.address-box a{color: #1351a8;font-size: 20px;font-weight: 500;text-align: left;line-height: 25px;display: block;transition: .2s linear}
.address-box a:hover{text-decoration: underline;opacity: .9;transition: .2s linear}
.name ,.email ,.country{padding-left: 0;}
.company,.phone,.state{padding-right: 0;}
.message{padding: 0;overflow: auto;clear: both;}
.map-rows {margin: 60px 0;overflow: auto;display: flex;align-items: center;}
.map-rows h3{color: #1351a8;font-size: 18px;font-weight: 700;text-align: left;margin: 0 0 20px}
.map-rows h3:before{background: #c9c9c9;width: 40px;height: 2px;display: inline-block;content: '';margin-right: 15px;position: relative;top:12px;float: left }
.map-rows p{color: #000;font-size: 18px;line-height: 28px;font-weight: 300;text-align: left;margin: 0 0 20px}
.map-content .phone {padding-left: 25px;color: #000;font-size: 18px;line-height: 28px;font-weight: 300;margin: 0 0 15px;background: url(images/phone.png) no-repeat 0 5px;}
.map-content .fax {padding-left: 25px;color: #000;font-size: 18px;line-height: 28px;font-weight: 300;margin: 0 0 10px;background: url(images/fax.png) no-repeat 0 5px;}
.map-wrapper {float: right;width: 100%;padding-left: 130px;}
.map-bg{width: 220px;height: 370px;float: left;}
.map-iframe{width:100%;float: left;} 
.map-rows:nth-child(even) .map-content{order:2;}
.map-rows:nth-child(even) .map-wrapper {float: left;width: 100%;padding-left: 0px;padding-right: 130px}
.map-rows:nth-child(even) .map-bg {float: right;}
.page-template-contact .case-studies-box .wrapper {background: #1351a8;min-height: 406px;position: relative;}
.page-template-contact .case-studies-box {margin: 100px 100px 50px 150px;}
.page-template-contact .box-image-float {width: 559px;height: 320px;top: 50px;left: -100px;}
.page-template-contact .case-content {margin-top: 30px;width: 450px}
.page-template-contact .case-content h2{color: #fff;font-size: 36px;font-weight: 500;margin: 0 0 20px}
.page-template-contact .case-content .content{color: #fff;font-size: 18px;line-height: 31px;font-weight: 400;margin: 0 0 30px}
.page-template-contact .case-content a {color: #1351a8;font-size: 16px;font-weight: 500;text-align: left;line-height: 25px;margin: 25px 0px 0;display: inline;background: #fff;padding: 10px 20px;}
.page-template-contact .case-content a:hover {text-decoration: none;opacity: .9;transition: .2s linear;}
/*contact us*/
/*blog*/
.blog header.navbar-static-top {background: rgba(0,0,0,0);}
.blog-section{padding:100px 0px;}
.blog-post {margin: 0 0 60px;padding:0;display: none }
.blog-post:nth-child(3n+2){padding:0 15px; }
.blog-post:nth-child(3n+1){padding:0 15px 0 15px; }
.blog-post:nth-child(3n+3){padding:0 15px 0 15px; }
.blog-post .blog-image img{width: 100%}
.blog-post .blog-image {width: 100%;height: 225px;margin: 0 0 30px;}
.blog-post .blog-content p{font-weight: 400;color: #000;font-size: 14px;margin: 0 0 15px}
.blog-post .blog-content h2{font-weight: 500;color: #1351a8;font-size: 18px;line-height: 28px;margin: 0 0 15px;min-height: 100px;}
.blog-post .blog-content a.readmore{font-weight: 700;color: #1351a8;font-size: 16px;line-height: 28px;display: inline-block;transition: .2s linear}
.blog-post:hover .blog-content a.readmore{text-decoration:underline;}
.blog-post:hover .blog-image{cursor: pointer;}
a#loadMore {background: #1351a8;color: #fff;display: inline-block;padding: 10px 30px;transition: .2s linear;margin: 30px 0px 0;}
a#loadMore:hover {opacity:.9;transition: .2s linear}
.blog-inner{margin: 180px 0px 80px;}
.feat-image img{width: 100%;margin: 0 0 30px;}
.postmeta{font-size: 14px;font-weight: 500;color: #000;line-height: 24px;margin: 0 0 10px;}
h1.entry-title{font-size: 18px;font-weight: 700;color: #1351a8;line-height: 28px;margin: 0 0 15px;}
.content-blog p{font-size: 16px;font-weight: 400;color: #808080;line-height: 30px;margin: 0 0 30px;}
.back-btn {display: block;margin: 0 0 30px;float: right;}
.back-btn a{font-size: 13px;color: #333;text-decoration: underline;text-underline-position: under;font-family:'Open Sans',sans-serif;font-weight: 600}
.back-btn a:before{position: relative;content: '';display: inline-block;border-top: 6px solid transparent;border-right: 11px solid #333;border-bottom: 6px solid transparent;margin: 5px 8px 0 0px;float: left;transition: .2s linear}
.back-btn a:hover:before{margin: 5px 15px 0 0px;transition: .2s linear}
.sidebar-blog {padding-left: 30px;}
.sidebar-blog h2{font-size:16px;color: #333;line-height: 25px;font-weight: 400;margin: 0 0 10px; }
.sidebar-blog ul{margin: 0;padding:0;list-style: none}
.sidebar-blog ul li{padding: 20px 0px;border-bottom: 1px solid #a5a5a5;overflow: auto;}
.sidebar-blog ul li:last-child{border-bottom: 0;overflow: auto;}
.sidebar-blog ul li a{color: #808080;font-size: 16px;line-height: 25px;transition: .2s linear}
.sidebar-blog ul li a:hover{color: #000;transition: .2s linear}
.recent-image {width: 90px;margin-right: 15px;float: left;}
.recent-content {width: calc(100% - 105px);float: right;}
.content-area {padding-right: 50px;}
/*blog*/
/*case studies*/
.page-template-page-casetudies header.navbar-static-top {background: rgba(0,0,0,0);}
a.download-cs {font-size: 0;color: #1351a8;line-height: 0;padding-left: 0;background: url(images/download.png) no-repeat 0 0;transition: .2s linear;width: 30px;height: 25px;position: absolute;bottom: 0;right: 15px;opacity: 0;}
.blog-wrapper:hover .case-image a.download-cs{transition: .2s linear;opacity: 1;}
.case-image {position: relative;height: 270px;}
.case-image:before {position: absolute;left: 0;right: 0;top: 0;background:linear-gradient(180deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%);display: block;content:'';width: 100%;height: 100%;opacity: 0.6;transition: .2s linear;}
.case-image:after {position: absolute;left: 0;right: 0;top:0;background:linear-gradient(180deg, rgba(0,0,0,.5) 28%, rgba(0,0,0,.6) 100%);display: block;content:'';width: 100%;height: 100%;transition: .2s linear;}
.blog-wrapper:hover .case-image:before{transition: .2s linear;opacity: 0}
.blog-wrapper:hover .case-image:after{transition: .2s linear;background:linear-gradient(180deg, rgba(0,0,0,.5) 28%, rgba(0,0,0,.8) 100%);}
.blog-wrapper .case-content {padding: 30px;width: 100%;float: none;position: absolute;bottom: 10px;z-index: 99}
.blog-wrapper .case-content h2{font-size: 18px;color: #fff;line-height: 25px;font-weight: 500;margin-bottom: 0;}
.blog-wrapper{position: relative;}
.blog-wrapper > a{display: block;width: 100%;height: 100%;position: absolute;z-index: 999}
.blog .blog-wrapper > a, .post-type-archive-casestudy .blog-wrapper > a{position: relative;}
.post-type-archive-casestudy .blog-post .blog-content h2{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;min-height: 88px;}
.post-type-archive-casestudy header.navbar-static-top, .casestudy-template-default header.navbar-static-top{background: rgba(0,0,0,0);}
.blog .blog-wrapper{position: relative;min-height: 444px;}
.page-template-page-casetudies .blog-post {margin: 0 0 23px;}
.page-template-page-casetudies a#loadMore {background: #fff;border: 1px solid;color: #1351a8;display: inline-block;padding: 10px 150px;transition: .2s linear;margin: 30px 0px 0;}
.page-template-page-casetudies a#loadMore:hover {background: #1351a8;border: 1px solid #1351a8;color: #fff;display: inline-block;padding: 10px 150px;transition: .2s linear;margin: 30px 0px 0;}
.featured-casestudies{margin: 140px 0 80px;}
.featured-casestudies .feat-case-content:before{display: none;}
.featured-casestudies .feat-case-image {width: 543px;}
.featured-casestudies .feat-case-boxes {display: flex !important;background-color: #fff;border: 2px solid #006699;box-shadow: 0px 2px 9px 6px rgba(0,0,0,.3);}
.featured-casestudies .feat-case-content {width: calc(100% - 543px);padding: 45px 60px;position: relative;}
.featured-casestudies .feat-case-content h6{font-size: 13px;color: #666666;line-height: 28px;font-weight: 400;margin: 0 0 10px;}
.featured-casestudies .feat-case-content h3{font-size: 26px;color: #1351a8;line-height: 34px;font-weight: 500;margin: 0 0 20px;}
.featured-casestudies .feat-case-content p{font-size: 16px;color: #333;line-height: 28px;font-weight: 400;margin: 0 0 20px;}
.featured-casestudies .feat-case-content a{background: #1351a8;color: #fff;font-size: 16px;font-weight: 500;text-align: left;line-height: 25px;display: inline-block;padding: 10px 20px;margin: 20px 0 0}
.featured-casestudies .feat-case-content a:hover {text-decoration: none;opacity: .9;transition: .2s linear;}
.page-template-page-casetudies section.letstalk{background: #1351a8;padding: 30px 50px;overflow: auto;margin: 80px 0 0;}
/*case studies*/

/*about */
.page-template-page-at-a-glance header.navbar-static-top {background: rgba(0,0,0,0);}
.about-contenet h2{font-size: 36px;font-weight: 500;line-height: 46px;color: #1351a8;margin: 0 0 30px}
.about-contenet p{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 0px}
.about-contenet h4{color: #262626;font-size: 18px;line-height: 25px;font-weight: 500;text-align: left;margin: 0 0 20px}
.panel-group {text-align: left;}
.panel-heading{display: block;font-size: 18px;font-weight: 500;position: relative;background: linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%)  !important;color: #fff !important;padding: 42px 50px 20px 140px;cursor: pointer}
.panel-heading.collapsed{display: block;font-size: 18px;font-weight: 500;color: #262626 !important;background: #fff  !important;padding: 42px 50px 42px 140px;}
.panel-heading:before {float: left !important;width:25px;height: 25px;background:url(images/minus.png) no-repeat 0 8px;content:'';position: absolute;left: unset;right: 15px}
.panel-heading.collapsed:before {float: left !important;content:'';background:url(images/plus.png) no-repeat 0 5px;}
.panel-group .panel+.panel {margin-top: 0px;}
.panel-group .panel {border-radius: 0px;border: none;border-bottom: 1px solid #ccc;box-shadow: none;background: transparent;}
.panel-default>.panel-heading+.panel-collapse>.panel-body {line-height: 30px;font-weight: 300;background: linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%);font-size: 16px;padding: 0px 50px 42px 140px;border:none;}
.panel-default>.panel-heading+.panel-collapse>.panel-body p{margin: 0 0 10px 0px;font-weight: 400;color: #fff;}
.about_accordion {margin: 80px 0px 80px;border-top: 1px solid #ccc;}
.panel-heading.acc1{background: url(images/cce-active.png) no-repeat 40px 30px , linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%) !important;} 
.panel-heading.collapsed.acc1{background:url(images/cce-normal.png) no-repeat 40px 30px , #fff !important;}
.panel-heading.acc2{background: url(images/isd-active.png) no-repeat 40px 40px , linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%) !important;} 
.panel-heading.collapsed.acc2{background:url(images/isd-normal.png) no-repeat 40px 40px , #fff !important;}
.panel-heading.acc3{background: url(images/gd-active.png) no-repeat 40px 30px , linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%) !important;} 
.panel-heading.collapsed.acc3{background:url(images/gd-normal.png) no-repeat 40px 30px , #fff !important;}
/*about */

/*careers*/
.page-template-page-careers header.navbar-static-top {background: rgba(0,0,0,0);}
.page-template-page-careers .careers-content .service-boxes ul {column-count: 3}
.page-template-page-careers .careers-content .service-boxes a{background: #1351a8;color: #fff;font-size: 16px;font-weight: 500;text-align: left;line-height: 25px;display: inline-block;padding: 10px 20px;}
.page-template-page-careers .careers-content .service-boxes a:hover {text-decoration: none;opacity: .9;transition: .2s linear;}
.people-content-wrapper {clear: both;margin: 100px 0 50px;display: block;}
.page-template-page-careers .services h2{font-size: 36px;font-weight: 500;line-height: 46px;color: #1351a8;margin: 0 0 30px}
.people-boxes {display: flex;overflow: auto;}
.people-image {width: 50%;height: 253px;margin-right: 55px}
.people-content {width: 50%;padding-left: 35px;}
.people-content h4{font-size: 18px;color: #262626;line-height: 28px;margin: 0 0 15px}
.people-content p{font-size: 16px;color: #808080;line-height: 30px;margin: 0 0 0px}
.people-boxes:nth-child(even) .people-image {width: 50%;height: 253px;margin-left: 70px;order: 2;margin-right: 0}
.people-boxes:nth-child(even) .people-content {width: 50%;padding-right: 0px;padding-left: 0;}
.people-boxes:nth-child(even)  {margin: 0 0 50px;}
.benefits-content-wrapper {padding: 50px 0 50px;overflow: auto;clear: both;}
.benefits-content-wrapper p{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 0px}
.benefits-content-wrapper ul{margin: 20px 0 0;padding:0;list-style: none;}
.benefits-content-wrapper ul li{display: flex;align-items: center;margin-bottom: 10px;}
.benfits-content {font-size: 16px;color: #808080;line-height: 28px;width: calc(100% - 60px)}
.benfits-image {width: 40px;height: 40px;margin-right: 20px;}
.jobs-wrapper p{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 0px}
.jobs-wrapper p strong{font-weight: 500;color: #262626;}
.jobs-wrapper  ul{margin: 0;padding-left: 15px;}
.jobs-wrapper li{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 15px}
.jobs-wrapper a{background: #1351a8;color: #fff;font-size: 16px;font-weight: 500;text-align: left;line-height: 25px;display: inline;padding: 10px 20px;}
.jobs-wrapper a:hover {text-decoration: none;opacity: .9;transition: .2s linear;}
.send-resume {border: 1px solid #b8cae5;padding: 30px;margin: 30px 0;box-shadow: 3px 3px #b8cae5;}
.send-resume p{font-size: 16px;color: #262626;margin-bottom: 20px}
.send-resume p strong{font-weight: bold;}
.resume-address {padding-left: 70px;font-size: 18px;color: #262626;background: url(images/location.png) no-repeat 0 0;}
.resume-address p{font-size: 18px;color: #262626;line-height: 1.42857;margin-bottom: 0;text-align: left;}
.jobs-wrapper {padding: 30px 0px;}
.resume-address a{background: #fff;color: #1351a8;font-size: 16px;font-weight: 500;text-align: left;line-height: 25px;display: inline-block;padding: 10px 0;}
.resume-address a:hover{text-decoration:underline;}
.employe-boxes {display: flex !important;background-color: #1351a8}
.employe-image {width: 350px;}
.employe-content:before{display: block;content: '';position: absolute;background:url(images/testimonials.png) no-repeat 0 0;width: 100px;height: 62px;left: -70px;top: 45px;}
.employe-content{width: calc(100% - 350px);padding: 45px 60px;position: relative;}
.employe-content p{font-size: 23px;font-weight: 300;color: #fff;line-height: 30px;margin-bottom: 20px}
.employe-content h5{font-size: 18px;font-weight: 700;color: #fff;line-height: 34px;}
.employe-content h6{font-size: 15px;font-weight: 400;color: #fff;line-height: 25px;}
.employee-slider {margin:50px 0 0 !important}
.employee-slider .slick-dots li button:before {width: 12px;height: 12px;content: '';background: #b8cae5;opacity: 1;}
.employee-slider .slick-dots li.slick-active button:before {opacity: 1;background: #1351a8;}
.employee-slider .slick-dots li button {width: 12px;height: 12px;padding: 2px;}
.employee-slider .slick-dots {margin: 20px 0 0;position: relative;bottom: 0}
/*careers*/

/*leadership*/
.page-template-page-leadership header.navbar-static-top {background: rgba(0,0,0,0);}
.leader-ship-box .image{max-width: 400px;max-height: 600px;position: relative;z-index: 1;margin: 0 auto;}
.leader-ship-box .image-content{padding: 10px 30px 0 0;text-align: justify;}
.leader-ship-box .image-content h4{font-size: 18px;color: #262626;line-height: 28px;font-weight: 500;margin: 0}
.leader-ship-box .image-content h5{font-size: 14px;color: #262626;line-height: 28px;font-weight: 400;margin: 0}
.leader-ship-box .image-content p{font-size: 16px;color: #808080;line-height: 28px;font-weight: 400;margin: 15px 0px;}
.leader-ship-box .image-content a {font-size: 16px;color: #1351a8;line-height: 28px;font-weight: 500;background: url(images/blue-arrow.png) no-repeat 91% 5px / 27px;padding-right: 50px;margin: 15px 0 0;display: inline-block;}
.leader-ship-box .image-content a:hover {background: url(images/blue-arrow.png) no-repeat 95% 5px / 27px;}
.leader-ship-box .image-content.imgc-addon{padding: 0;}
.leader-ship-box .image-content.imgc-addon p:first-child{margin-top: 0;}

.about-contenet.leadership {margin: 0 0 50px;}
.image-name{font-size: 18px;color: #262626;line-height: 28px;font-weight: 500;margin: 10px 0 0;}
.image-title{font-size: 15px;color: #808080;line-height: 28px;font-weight: 400;margin: 0px 0 0;}
.team {margin: 0 0 40px;}
/*leadership*/

/* partners */
.partner-img{min-height: 110px;margin:20px 0;text-align: center;position: relative;max-width: 200px;}
.partner-img img{max-height: 110px;position: absolute;top: 0;bottom: 0;margin: auto;left: 0;right: 0;}
.partners-listing{margin: 40px 0 200px;}
/* partners */

/* Message from the CEO */

.founder-guide{margin: 80px 0;}
.founder-guide h3{color: #1351a8;font-size: 18px;font-weight: 700;margin-bottom: 50px;line-height: 32px;}
.guide-loop h4{color: #262626;font-size: 18px;font-weight: 600;margin:20px 0}
.guide-loop p{color: #808080;font-size: 16px;line-height: 28px;}
.guide-loop .row{margin-bottom: 40px;}
.guide-loop .row:nth-child(even) .col-md-6:first-child{float: right;padding-left:30px;}
.guide-loop .row:nth-child(odd) .col-md-6:first-child{padding-right: 30px;}
.guide-loop .row:nth-child(odd) .col-md-6:last-child{padding-left:30px;}
.guide-loop .row:nth-child(even) .col-md-6:last-child{padding-right:30px;}
/* Message from the CEO */

/* People and culture */
.core-values{margin:50px 0 100px;}
.core-values h4{color: #262626;font-size: 18px;font-weight: 600;margin-bottom: 20px;position: relative;padding-left: 60px;line-height: 28px;}
.core-values h4::before{content: '';height: 3px;width: 50px;background: #1351a8;position: absolute;left: 0;top: 0;bottom: 0;margin: auto;}
.core-values ul li{padding-left: 20px;background: url(images/list-tick.png) no-repeat 0 8px;font-size: 15px;font-weight: 400;line-height: 26px;color: #808080;margin: 0 0 10px;}
.core-values ul {list-style: none;padding-left: 0;}
.cmn-about h2{font-size: 36px;font-weight: 500;line-height: 46px;color: #1351a8;margin: 0 0 30px;}
.cmn-about p{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 0px;}
.b-operation ul li{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin-bottom: 25px;position: relative;padding-left: 35px;}
.b-operation ul li::before{content: '';width: 13px;height: 13px;background: #1351a8;position: absolute;left: 0;top: 8px;}
.b-operation ul{margin-top: 30px;padding-left: 0;list-style: none;}
.blue-bx{width: 102px;height: 102px;background: #1351a8;margin-top: 20px;float: right;}
.b-operation .col-md-3{padding-right:10px;}
.b-operation .col-md-4{padding-left: 10px;}
.b-operation{margin-bottom: 60px;}
.boperation-limg{max-width: 215px;margin-left: auto;}
.boperation-rimg{max-width: 275px;}
.boperation-content{padding-right: 20px;}
.boperation-content h2{font-size: 32px;}
.page-template-page-people-and-culture header.navbar-static-top, .page-template-page-partners header.navbar-static-top, .page-template-page-message-from-ceo header.navbar-static-top, .page-template-page-key-milestones header.navbar-static-top, .page-template-sitemap header.navbar-static-top, .page-template-page-solutions header.navbar-static-top{background: transparent;}

/* People and culture */

/* key milestone */
.timeline-nav {z-index: 2;}
.timeline {width: 100%;position: relative;}
.tnav-item {position: relative;padding: 0 25px;}
.tnav-item.slick-current::before{background:#1351a8 ;}
.tnav-item:hover::before{background: #1351a8; transition: .2s linear;}
.flexer{display: flex;}
.tm-img{height: 207px;cursor: pointer;}
.tm-content{box-shadow: 0px 7px 12px #ebebeb;padding: 30px 32px;cursor: pointer;min-height: 190px;}
.timeline-bg{margin: 80px 0;position: relative;}
.tm-content h4{color: #1351a8;margin-bottom: 15px;font-size: 18px;font-weight: 600;}
.tm-content p{font-size: 15px;line-height: 26px;overflow: hidden;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}
.tnav-item .flexer{margin-left: 60px;}
.clients-listing h2{margin-bottom: 10px;}
.clients-listing .partner-img{min-height: 116px;}
.clients-listing .partner-img img{max-height: 116px;}
.clients-listing{margin: 40px 0 60px;}
.timeline-bg ul li{font-size: 15px;font-weight: 400;line-height: 26px;color: #808080;}
.timeline-bg ul{padding-left: 20px;overflow: hidden;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}
/* key milestone */
.ppolicy-bg{margin: 170px 0 100px;}
.ppolicy-bg h1{font-size: 36px;font-weight: 500;line-height: 46px;color: #1351a8;margin: 0 0 30px;}
.ppolicy-bg h2, .ppolicy-bg h3{color: #262626;font-size: 20px;line-height: 25px;font-weight: 500;text-align: left;margin: 0 0 20px;}
.ppolicy-bg h3{font-size: 18px;}

.formcontact .form-group.row{margin:0px;}
.search-bg{padding-right: 0;margin-top: 100px}
.no-results .search-form input[type=search]{font-size: 15px;font-weight: 100;border: 1px solid #ddd;padding-left: 10px;}
.search-form .search-submit {padding: 3px 10px;}
.service-content .left-side-content h4{margin-bottom: 14px;font-size: 20px;line-height: 35px;font-weight: 300;}
.customer-slider .slick-slide img{margin: 0 auto;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);max-height: 100px;max-width: 150px;}
.page-template-page-casetudies .banner_text, .ibanner-main{text-align: center;margin: 0 auto;left: 0;right: 0;}
.page-template-page-casetudies .banner_text h1, .ibanner-main h1{text-align: center;}
.page-template-page-casetudies .banner_text p, .ibanner-main p{text-align: center;}
.technology-slider .slick-slide img{margin: 0 auto;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);max-height: 100px;max-width: 150px;}

/* updated design */
.b-submenu{margin-top: -6px;z-index: 2;position: relative;}
.b-submenu::after{content: '';background: #1351a8;position: absolute;width: 70%;top: 0;height: 100%;z-index: -1;}
.b-submenu ul li a{color: #fff;font-size: 16px;border: 2px solid transparent;}
.b-submenu ul li a:hover{border-bottom: 2px solid #4274b9;padding-bottom: 3px;}
.b-submenu ul li{display: inline-block;padding: 24px 40px 16px 0;}
.b-submenu ul{list-style: none;padding-left:15px;}
.page-template-page-services .case-studies-box{margin-bottom: 100px;}
.page-template-page-services .blog-section .case-content{background: none;min-height: auto;}
.page-template-page-services .featured-casestudies{margin: 60px 0 80px;}
.page-template-page-services .blog-section{padding: 0 0 60px;}
.page-template-page-services h2, .new-services h2{color: #1351a8;font-size: 30px;font-weight: 500;margin: 0 0 20px;}
.page-template-page-services .service-content{padding: 0 15px;}
.page-template-page-services h3{font-size: 36px;font-weight: 500;color: #262626;line-height: 54px;margin: 0 0 30px;}
.service-updated .menu-left,.service-updated .menu-right{width: 100%;float: none;margin-top: 30px;}
/* case study slide */
.case-slide .blog-post{padding: 0 20px 0 0;display: block!important;}
.cslide-bg{margin: 70px 0 90px;}
.cslide-bg h2{margin-bottom: 50px;}
.cslide-bg .slick-track{margin-left: 0;}
.cslide-bg .slick-prev{left: 0px;top: auto;bottom: 0;z-index: 2;background: url(images/arrow.svg) no-repeat center / 50px;}
.cslide-bg .slick-prev:hover,.cslide-bg .slick-prev:focus{left: -5px;}
.cslide-bg .slick-next{background: url(images/arrow.svg) no-repeat center / 50px;top: auto;bottom: -35px;right: 10px;}
.cslide-bg .slick-next:hover,.cslide-bg .slick-next:focus{right: 5px;}
.cslide-bg .slick-prev,.cslide-bg .slick-next{width: 70px;height: 70px;}
/* case study slide */

/* who we are new*/
.new-services .service-content{padding-right: 15px;padding-left: 15px;}
.about-right{height: 484px;margin-left: 60px;}
.new-services p{font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 0px;}
.new-services h4{margin-bottom: 20px;color: #262626;font-weight: 700;font-size: 18px;}
.stg-advantage{margin-top: 70px;}
.guide-img{height: 480px;}
.leader-ship-box{margin: 50px 0 80px;}
.ceo-image::after{content: '';background: #1351a8;width: 100%;height: 100%;position: absolute;left: -20px;top: 20px;z-index: -1;}
.management-team .slick-prev, .key-milestonebg .slick-prev{background: url(images/arrow-left.png) no-repeat center / 25px;transform:none;width: 22px;top: 30%;left: -25px;}
.management-team .slick-next, .key-milestonebg .slick-next{background: url(images/arrow-right.png) no-repeat center / 25px;transform:none;width: 22px;top: 30%;right: -25px;}
.management-team .slick-prev:hover, .key-milestonebg .slick-prev:hover{left: -30px;}
.management-team .slick-next:hover, .key-milestonebg .slick-next:hover{right: -30px;}
.image-team{width: 248px;height: 263px;}
.p-culture{margin: 50px 0 0;}
.iv-img{height: 392px;margin-right: 15px;}
.about-contenet{margin-top: 25px;}
.p-culture h2{margin-bottom: 40px;}
.p-culture h2+h4{margin-bottom: 30px;}
.iv-content{margin-left: 30px;}
.timeline-bg .slick-track{min-height: 420px;}
/* flip */
.flip-card {background-color: transparent;height: 178px;perspective: 1000px;margin-bottom: 10px;}
.flip-card-inner {position: relative;width: 100%;height: 100%;text-align: center;transition: transform 0.6s;transform-style: preserve-3d;cursor: pointer;}
.flip-card:hover .flip-card-inner {transform: rotateY(180deg);}
.flip-card-front, .flip-card-back {position: absolute;width: 100%;height: 100%;-webkit-backface-visibility: hidden;backface-visibility: hidden;}
.flip-card-front {padding: 25px;background: #f6f6f6;}
.flip-card-back {padding: 25px;color: white;transform: rotateY(180deg);font-size: 14px;background: #1351a8;}
.flip-card img{max-width: 40px;max-height: 40px;margin: 0 auto;}
.flip-card .flip-title{color: #fff;font-size: 16px;margin-top: 15px;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;position: relative;}
.flip-icon{height: 40px;filter: brightness(0) invert(1);}
.flip-card-back img{filter: brightness(0) invert(1);}
.flip-card-back .flip-title {color: #fff;}
.solutions-listing .col-lg-2{padding: 0 5px;}
.solutions-listing{margin-bottom: 100px;}
.flip-card-front::before{background: rgb(0 0 0 / 70%);content: '';position: absolute;left: 0;top: 0;width: 100%;height: 100%;}
/* flip */
.industries-sect{background: #f0f4fa;background: -moz-linear-gradient(top,  #f0f4fa 0%, #f9fbfd 31%, #ffffff 100%); background: -webkit-linear-gradient(top,  #f0f4fa 0%,#f9fbfd 31%,#ffffff 100%);background: linear-gradient(to bottom,  #f0f4fa 0%,#f9fbfd 31%,#ffffff 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f4fa', endColorstr='#ffffff',GradientType=0 );padding-top: 80px;border-top: 1px solid #eff3f9;margin-bottom: 30px;}
.solutions-listing h2{margin-bottom: 40px;}
.solutions-listing .slick-prev{left: -35px;top: 40%;}
.solutions-listing .slick-next{right: -35px;}
.solutions-listing .slick-prev:hover, .solutions-listing .slick-prev:hover{left: -40px;}
.solutions-listing .slick-next:hover, .solutions-listing .slick-next:hover{right: -40px;}
/* who we are new */

/* case study blog */
.clblog-inner{margin: 100px 0;}
.clblog-inner h1{font-size: 44px;font-weight: 500;color: #262626;line-height: 64px;margin: 0 0 30px;}
.cs-title {max-width: 90%;margin: 50px 0 100px;}
.cs-title h1{position: relative;padding-left: 20px;}
.cs-title h1::before{content: '';width: 5px;height: 80%;background: #1351a8;position: absolute;top: 15px;left: 0;}
.clblog-inner h2{ font-size: 32px;font-weight: 500;line-height: 46px;color: #1351a8;margin: 0 0 30px;}
.clblog-inner p {font-size: 16px;font-weight: 400;line-height: 28px;color: #808080;margin: 0 0 0px;}
.cs-glance p{line-height: 34px;text-align: justify;}
.cs-top{margin-bottom: 100px;}
.cs-glance{padding-right: 40px;}
.cs-whatdid{background: #f6f6f6;padding: 50px;}
.cs-content{margin-bottom: 100px;text-align: justify;}
.cs-whatdid ul{margin: 0;padding: 0;list-style: none;}
.cs-whatdid ul li{padding-left: 20px;background: url(images/list-tick.png) no-repeat 0 8px;font-size: 15px;font-weight: 400;line-height: 26px;color: #808080;margin: 0 0 10px;text-align: left !important;}
.cs-recent .blog-wrapper > a{position: unset;}
.cs-blog .blog-image{border: 1px solid #ddd;}
/* case study blog */
.page-template-page-agile-service .solutions-listing{margin: 100px 0;}
.post-type-archive-casestudy header .navbar-nav > li.current_page_parent > a, .single-casestudy header .navbar-nav > li.current_page_parent > a{border-bottom: none !important;}
#casestudies .blog-wrapper > a{position: relative;}
#casestudies .blog-wrapper .case-content h2, .cs-recent h2{display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;}

.counter-bg{text-align: center;margin: 50px 0;}
.counter{ font-size: 55px;font-weight: 400;color: #1351a8;}
.stats-text{font-size: 18px;font-weight: 400;line-height: 28px;color: #808080;}
.stat-icon{margin-bottom: 50px;}
.we-are-text{margin: 30px 0 40px;text-align: left;}
.casestudy-box .col-md-5, .casestudy-box .col-md-7{padding: 0;}
.casestudy-image, .casestudy-detail{height: 250px;}
.casestudy-image{position: relative;width: 243px;box-shadow: 2px 5px 10px #ccc;}
.casestudy-image::before{position: absolute;left: 0;right: 0;top: 0;background: linear-gradient(180deg, rgba(0,0,0,.3) 28%, rgba(0,0,0,.6) 100%);display: block;content: '';width: 100%;height: 100%;transition: .2s linear;}
.casestudy-detail{margin-top: 0;padding: 40px 60px 50px 40px;background: #fff;box-shadow: 2px 5px 10px #ccc;margin-right: 20px;min-width: 341px;position: relative;}
.casestudy-detail p{color: #000;font-weight: 600;}
.slider-casestudies .slick-slide {margin: 0 27px;min-height: 280px;}
.slider-casestudies .slick-list {margin: 0 -27px;}
.cs-btn{position: absolute;bottom: 30px;background: none;color: #1351a8;font-size: 16px;font-weight: 500;text-align: left;line-height: 25px;display: inline-block;padding: 10px 20px;border-radius: 0;transition: .2s linear;}
.casestudy-box a:hover .cs-btn{background: #1351a8;color:#fff;transition: .2s linear;}
.casestudy-box a:hover .casestudy-detail p{color: #1351a8;transition: .2s linear;}
.casestudy-box a:hover .casestudy-image::before{content: none;transition: .2s linear;}
.btn:focus{outline: none;}
.nc-listing{margin:50px 0 30px;}
section.banner_section .ibanner-main{max-width: 800px;}
section.banner_section .ibanner-main h1{color: #fff;font-size: 50px;font-weight: 400;text-align: center;margin: 0 0 15px;line-height: 1.1;max-width: 100%;}
section.banner_section .ibanner-main p {color: #fff;font-size: 20px;font-weight: 400;text-align: center;line-height: 33px;margin: 0;}

.page-template-page-industries-inner header.navbar-static-top{background: rgba(0,0,0,0);}
section.banner_section.contact-banner {height: 700px;}
section.banner_section.contact-banner h1{font-size: 40px;line-height: 66px;}
.grecaptcha-badge{visibility: hidden;}
.page-template-contact .grecaptcha-badge{visibility: visible;}
/* updated design */

/* Custom Media Queries */

@media screen and (min-width: 1200px){
	.solutions-listing .col-lg-2{width: 20%;}
}
@media screen and (max-width: 1600px){
}

@media screen and (max-width: 1440px){
	
}

@media screen and (max-width: 1367px){
	.b-submenu::after{width: 80%;}

}

@media screen and (max-width: 1280px){
	
}
@media screen and (min-width: 1279px) and (max-width: 1360px){
	.casestudies-slider .slick-next{right: -47px;background-size: 20px;}
	.casestudies-slider .slick-prev{left: -47px;background-size: 20px;}
}
@media screen and (max-width: 1279px){
	.slick-prev {left: unset;top: -47px !important;right: 45px;border:1px solid #1351a8;}
	.slick-next {top: -30px !important;right: 0px;border:1px solid #1351a8;}
	.slick-prev:hover, .slick-prev:focus{left: unset;;border-color:#000; }
	.slick-next:hover, .slick-next:focus {right: 0px;border-color:#000;}

	.cslide-bg .slick-prev{left: 0px;top: auto !important;bottom: 0;z-index: 2;background: url(images/arrow.svg) no-repeat center / 50px;border: none;}
	.cslide-bg .slick-prev:hover,.cslide-bg .slick-prev:focus{left: -5px;}
	.cslide-bg .slick-next{background: url(images/arrow.svg) no-repeat center / 50px;top: auto !important;bottom: -35px;right: 10px;border: none;}
	.management-team .slick-next, .key-milestonebg .slick-next{border: none !important;top: 30% !important;right: -15px !important;}
	.management-team .slick-prev, .key-milestonebg .slick-prev{border: none !important;top: 30% !important;left: -15px !important;}
	.solutions-listing .slick-prev{top: 40% !important;border: none !important;}
	.solutions-listing .slick-next{border: none !important;top: 50% !important;}
}
@media screen and (max-width: 1199px){
	header .navbar-nav > li > a {font-size: 11.5px;}
	.nav>li>a {padding: 10px 5px;}
	.case-studies-box {margin: 100px 0px 100px 0px;}
	.case-content {padding: 20px 20px;width: 100%;float: none;}
	.box-image-float,.page-template-page-services .box-image-float {width: 100%;position: relative;top: 0;left: 0;}
	.page-template-page-services .case-content {padding: 50px 50px 50px 50px;width: 100%;float: right;background: #1351a8;min-height: auto; margin-bottom: 70px;}
	.page-template-page-services .case-studies-box {margin: 100px 0px 0px 0px;}
	.page-template-contact .box-image-float {width: 100%;height: 320px;top: 0;left: 0;}
	.page-template-contact .case-studies-box .wrapper {min-height: auto;}
	.page-template-contact .case-content {margin-top: 0;width: 100%;}
	.page-template-contact .case-studies-box {margin: 100px 100px 50px 100px;}
	.featured-casestudies .feat-case-image {width: 400px;}
	.featured-casestudies .feat-case-content {width: calc(100% - 400px);}
	.page-template-page-agile-service .case-studies-box{margin: 100px auto;max-width: 650px;}
	.left-title br{display: none;}
	.b-submenu::after{width: 90%;}
	.sl-bg{padding: 0 50px;}
	.csblog .case-content{margin-bottom: 0;}
	.casestudy-detail{ padding: 30px 45px 40px 30px;min-width: 280px;}
	.casestudy-image{width: 200px;}
}
@media screen and (max-width: 1024px){
	section.banner_section {width: 100%;height: 570px;}
	section.banner_section h1 {font-size: 60px;line-height: 65px;margin: 0px 0 10px;max-width: 700px;}
	section.banner_section p {font-size: 22px;line-height: 32px;margin: 0px 0 20px;}
	section.letstalk h2 {font-size: 26px;padding-right: 15px;text-align: center;}
	.about-text h1 {font-size: 24px;line-height: 34px;}
	.banner-content {width: 100%;}
	.page-template-front-page .header-menu {padding: 10px 0 0;}
	.left-title {font-size: 26px;}
	.services .letstalk h2 {text-align: left;font-size: 24px;padding-right: 0;}
	.services section.letstalk a {padding: 10px 20px;}
	.blog-post .blog-content h2{min-height: 120px;}

}
@media screen and (min-width: 992px) and (max-width: 1199px){
	
}

@media screen and (max-width: 991px){
.navbar-collapse.collapse,.top-bar {display: none !important;}
.page-template-front-page .navbar-header {padding: 20px 15px;}
.navbar-header {width: 65px;padding: 10px 15px;transition: 0.2s linear;position: relative;}
button#responsive-menu-button {width: 35px;height: 35px;position: fixed;top: 15px;right: 1%;background: transparent !important;}
.page-template-front-page .navbar-static-top.fixed button#responsive-menu-button {top: 15px !important;transition: .2s linear;}
.navbar-static-top button#responsive-menu-button {top: 15px !important;transition: .2s linear;right: 1% !important;}
.navbar-static-top.fixed button#responsive-menu-button {top: 15px !important;transition: .2s linear;}
header.navbar-static-top.fixed .navbar-header {width: 65px;padding: 10px 15px;transition: 0.2s linear;top: 0;}
button#responsive-menu-button {transition: .2s linear !important;}
div#responsive-menu-wrapper {padding: 50px 0 0;}
main.page_template {margin-top: 78px;}
.banner-content {padding: 0 15px;}
section.banner_section {width: 100%;height: 100%;}
section.banner_section:before{height: 99%;}
section.banner_section.contact-banner:before{height: 100%;}
.works {padding: 50px 15px;}
section.about {background: #1351a8;padding: 50px 15px;}
footer {padding: 45px 15px 0px;}
.about-footer {padding-left: 90px;padding-right: 35px;padding-bottom: 20px;background: url(images/logo.png) no-repeat 0 10px;}
.footer-bottom {text-align: center;}
section.technology {padding: 80px 15px;overflow: auto;}
.banner_text {padding: 0 15px;}
.services {padding: 50px 15px;overflow: auto;}
.service-box-wrapper {padding-right: 0;}
.case-studies-box {margin: 50px 0px 50px 0px;}
.page-template-page-agile-service .case-studies-box{margin: 50px auto;}
.service-menu {padding: 30px 0;clear: both;}
.services section.letstalk,.services .letstalk h2 {text-align: center;}
.service-content{padding:0; }
.page-template-page-services .case-studies-box {margin: 50px 0px 0px 0px;}
section#getintouch {padding: 50px 0px;}
.form-block {margin: 50px 0px;}
.company, .phone, .state,.name, .email, .country {padding: 0;}
.map-content,.map-box {width: 50%;}
.map-wrapper {padding-left: 0;}
.map-rows:nth-child(even) .map-wrapper {padding-left: 0px;padding-right: 0;}
.blog-section {padding: 50px 0px;}
.blog-post {padding: 0 15px !important;}
.blog-inner {margin: 110px 0px 80px;}
.content-area {padding-right: 0;}
.sidebar-blog {padding-left: 0;clear: both;}
.benefits-content-wrapper ul {margin: 0px 0 0;}
.benefits-list {margin: 20px 0 0;}
.benefits-content-wrapper {padding: 20px 0 20px;}
.send-resume {margin: 30px 0 0;}
.featured-casestudies {margin: 0 0 80px;}
.boperation-content{padding-right: 0;}
.core-values{margin: 50px 0 50px;}
.header-search{display: none;}
.bordered a{border: none !important;padding: 0 5% !important;}
.ppolicy-bg{margin: 100px 0 100px;}
.ppolicy-bg h1{font-size: 32px;margin-bottom: 25px;}
.ppolicy-bg h2, .ppolicy-bg h3{font-size: 18px;}
.ppolicy-bg h3{font-size: 18px;}
.current-menu-parent a{border: none !important;}
section.banner_section h1{max-width: 700px;font-size: 50px;}

.service-updated .menu-right{padding-left: 0;}
.service-updated .col-md-6:nth-child(2) .title{margin-top: 50px;}
.guide-img{margin: 30px 0 0;height: 400px;}
.leader-ship-box .image{max-width: 294px;max-height: 500px;margin-bottom: 50px;}
.team{text-align: center;}
.image-team{margin: 0 auto;}
.iv-content{margin-left: 0;}
.b-submenu::after{width: 100%;}
.b-submenu ul li{ padding: 24px 15px 16px 0;}
.about-right{margin: 0 auto;height: 400px;}
.clblog-inner{margin: 50px 0 100px;}
.cs-title{margin: 20px 0 80px;}
.cs-glance{padding-right: 0;margin-bottom: 50px;}
.cs-recent .case-image{height: 196px;margin-bottom: 30px;}
.clblog-inner{margin:30px 0 50px;}
.cs-recent .case-image{max-width: 400px;margin: 0 auto;margin-bottom: 30px;}
.cs-recent .case-content{padding: 15px;}
.we-are-text{margin-bottom: 0;}
.counter-bg{margin-bottom: 30px;}
.leader-ship-box .image-content{padding: 10px 0px 0 0;}
.casestudy-image{width: 100%;}
.casestudy-box .col-md-5, .casestudy-box .col-md-7{padding:0 8px;}
.slider-casestudies .slick-slide {margin: 0 15px;}
.slider-casestudies .slick-list {margin: 0 -15px;}
.casestudy-image, .casestudy-detail {height: 210px;}
.slider-casestudies .slick-slide{min-height: 435px;}
.cs-btn{background: #1351a8;color:#fff;}
.casestudy-box a:hover .cs-btn{opacity: .8;}
section.banner_section .ibanner-main{max-width: 700px;}
section.banner_section.main-banner h1{ max-width: 600px;}
}

@media screen and (min-width: 801px) and (max-width: 992px){

}

@media screen and (max-width: 800px){
	
section.letstalk {background: #1351a8;padding: 30px 0;}
footer {padding: 30px 15px 30px;}
section.letstalk h2 {font-size: 26px;padding: 0 30px;text-align: center;}
.map-rows {display: block;align-items: center;}
.map-content, .map-box {width: 100%;}
.map-content {margin-bottom: 30px;}
.map-rows {display: block;align-items: center;overflow: auto;position: relative;padding: 60px 0;margin: 0;border-bottom: 1px solid #ccc}
.map-rows:last-child {border-bottom:0}
.page-template-contact .case-studies-box { margin: 50px 50px 50px 50px;}
.featured-casestudies .feat-case-image {width: 350px;}
.featured-casestudies .feat-case-content {width: calc(100% - 350px);}
}

@media screen and (max-width: 799px){
	.banner_text {width: 100%;}

}

@media screen and (max-width: 767px){
	
	.navbar-toggle {margin-top: 0;margin-bottom: 0;}
	.header-menu {width: 100%;float: none;display: none;}
	nav.collapse.navbar-collapse {float: none;width: 100%;}
	.navbar-nav > li {display: block;}
	header .navbar-nav {padding: 15px 0px;}
	header .navbar-nav > li > a {padding: 10px 0;}
	.works-box{padding: 0 0 !important;}
	.about-img {padding-right: 0;padding-left: 0;float: none;margin: 20px 0px;overflow: auto;}
	.about-img img {float: none;}
	.blog-post .blog-content h2 {min-height: auto;}
	.blog-post {margin: 0;padding: 0 15px 30px !important;}
	.blog-post:last-child {border-bottom: 0;}
	.blog-post .blog-image {width: 100%;}
	.team {margin: 0 0 40px;min-height: 360px;}
	.partners-listing{margin: 20px 0 40px;}
	.founder-guide{margin: 30px 0;}
	.founder-guide h3{margin-bottom: 20px;}
	.guide-loop h4{margin-top: 0;}
	.guide-loop .row:nth-child(even) .col-md-6:first-child{float: none;padding-left:15px;}
	.guide-loop .row:nth-child(odd) .col-md-6:first-child{padding-right: 15px;}
	.guide-loop .row:nth-child(odd) .col-md-6:last-child{padding-left:15px;}
	.guide-loop .row:nth-child(even) .col-md-6:last-child{padding-right:15px;}
	.guide-img{margin: 0 auto;}
	.tnav-item .flexer{display: block;margin: 30px 0 0 0;}
	.tm-img{margin: 0 auto;}
	.tm-content{width: auto; padding: 20px 20px;box-shadow: none;text-align: center;}
	.tm-content h4{ margin-bottom: 13px;font-size: 16px;}
	.timeline-nav::before{width: 97%;top: 5px;left: 6px;height: 2px;}
	.tnav-item::before{right: 0;margin: 0 auto;left: 0;top: 0;}
	.timeline-bg {margin: 60px 0 20px;}
	.timeline-bg ul{list-style: none;}
	.blog .blog-wrapper{min-height: auto;}
	.b-submenu ul li{padding: 20px 20px 8px 10px;width: 100%;border-bottom: 1px solid #fdfdfd1f;}
	.b-submenu ul li:last-child{border-bottom: none;}
	.b-submenu ul{padding: 0 35px;}
	.b-submenu::after{width: 100%;}
	.page-template-page-services .services{padding: 50px 0 30px;}
	.page-template-page-services .case-content{margin-bottom: 50px;}
	.page-template-page-services .blog-post{padding: 0 15px 30px !important;}
	.page-template-page-services h3{ font-size: 30px;line-height: 50px;margin: 0 0 14px;}
	.case-slide .blog-post{padding: 0 15px 0 0 !important;}
	.cslide-bg .slick-prev{bottom: -65px;}
	.cslide-bg .slick-next{bottom: -100px;}
	.cslide-bg{margin: 50px 0 100px;}
	.page-template-page-at-a-glance .banner_text br{display: none;}
	.clblog-inner h1{font-size: 32px;line-height: 50px;}
	.cs-title{ margin: 20px 0 50px;width: 100%;}
	.clblog-inner h2{font-size: 28px;}
	.cs-whatdid{padding: 35px 25px;}
	.cs-top, .cs-content{margin-bottom: 50px;}
	.csblog .case-content{margin-bottom: 0;}
	.stat-icon{margin-bottom: 40px;}
	.counter{font-size: 45px;}
	.stats-text{font-size: 16px;}
	.services {padding: 30px 15px;}
	.leader-ship-box .col-lg-5.pull-right{float: none !important;}
	.casestudy-box .col-md-5, .casestudy-box .col-md-7{padding:0 15px;}
	.casestudy-detail{padding: 30px 30px 35px 30px;}
	.cs-btn{bottom: 25px;}
	.slider-casestudies .slick-slide{min-height: 460px;}
}

@media screen and (max-width: 663px){
	.header-menu {width: 100%;float: none;display: none;}
	header .navbar-toggle{background:transparent;margin-right:0;display:none}
	button#responsive-menu-button {top: 15px !important;}
	video#myVideo {width: 125%;position: relative;}
	section.banner_section h1 {font-size: 32px;line-height: 42px;margin: 0px 0 10px;width: 100%}
	section.banner_section p {font-size: 15px;line-height: 24px;margin: 0px 0 20px;}
	section.banner_section a {padding: 10px 30px;}
	.banner-content {top:35%;}
	.left-title {font-size: 22px;line-height: 36px;margin-bottom: 10px;}
	a.button-title {font-size: 15px;line-height: 25px;}
	.button-title svg {width: 17px;}
	.sub-title {padding: 30px 200px 50px 0px;}
	.about-text h1 {font-size: 22px;line-height: 30px;}
	.about-text a {padding: 6px 30px;}
	section.letstalk h2 {font-size: 22px;line-height: 32px}
	.footer-bottom .copyrights {display: block;margin: 0 0 15px}
	.footer-bottom {padding: 20px 0px 0;}
	.banner-content {width: 100%;}
	.banner_text h1 {font-size: 30px;}
	.banner_text p {font-size: 16px;line-height: 27px;}
	.service-boxes h2, .cslide-bg h2  {font-size: 25px;line-height: 46px;margin: 0 0 10px;}
	.page-template-page-agile-service .solutions-listing h2 {margin-bottom: 30px;font-size: 25px;line-height: 46px;}
	.page-template-page-agile-service .solutions-listing{margin: 50px 0;}
	.service-boxes:after {margin: 50px 0px 40px;}
	.case-content {padding: 30px;}
	.services section.letstalk{text-align: center;padding: 20px;}
	.services .letstalk h2 {font-size: 18px;}
	.services-details h1, .blog-section h1 {color: #000;font-size: 30px;line-height: 40px;margin: 0 0 20px;}
	.employe-boxes {display: block !important;background-color: #1351a8;}
	.employe-image {width: 100%;height: 350px;}
	.employe-content {width: 100%;padding: 30px 30px;position: relative;}
	.employe-content:before {left: 5px;top: -48px;}
	.featured-casestudies .feat-case-boxes {display: block !important;}
	.featured-casestudies .feat-case-image {width: 100%;height: 300px;}
	.featured-casestudies .feat-case-content {width: 100%;padding: 25px 25px 30px;}
	.page-template-page-casetudies .blog-post {margin: 0 0 0px;border: none;padding: 0 15px 30px !important;}
	.featured-casestudies {margin: 0 0 30px;}
	.page-template-page-casetudies a#loadMore {display: block;padding: 10px 20px;margin: 30px 0px 0;}
	.featured-casestudies .feat-case-content h3 {font-size: 20px;color: #1351a8;line-height: 28px;}
	.about-contenet h2 {font-size: 24px;line-height: 34px;margin: 0 0 10px;}
	.leader-ship-box {display: block;width: 100%;float: none;margin: 30px 0px 0;}
	.leader-ship-box .image {width: 100%;margin: 0 auto;margin-bottom: 40px;}
	.leader-ship-box .image img {left: 0;position: relative;margin: 0 auto;display: block;}
	.leader-ship-box .image-content {width: 100%;padding: 25px 0px 0;}
	.cmn-about h2{font-size: 24px;line-height: 34px;margin: 0 0 10px;}
	section.banner_section .ibanner-main h1{font-size: 30px;}
	section.banner_section .ibanner-main p {font-size: 16px;line-height: 27px;}
	section.banner_section .ibanner-main br{display: none;}
	section.banner_section .ibanner-main{max-width: 100%;}
	section.banner_section.contact-banner h1{font-size: 25px;line-height: 36px;}
	.we-are-text{margin-top: 50px;}
}


@media screen and (max-width: 480px){
	video#myVideo {width: 150%;}
	.sub-title {padding: 30px 0px 40px 0px;}
	a.button-title {position: relative;top: 0;right: 0;}
	.works-box {margin: 0 0 35px;}
	.works-box:last-child {margin: 0 0 0px;}
	h6.footer-title a{font-size: 17px;}
	.footer-top .footer-careers .menu-footer-container ul li a {font-size: 17px;line-height: 30px;}
	.footer-bottom .copyrights {font-size: 13px;}
	.footer-bottom .footer-button {font-size: 13px;}
	.footer-bottom .copyrights {display: block;margin: 0 0 10px}
	.banner-content {top: 150px;width: 100%;}
    .footer-menu {width: 50%;}
    .casestudy-image, .casestudy-detail {height: 220px;}
	.about-footer {padding-left: 75px;padding-right: 0;}
	.footer-careers {width: 100%}
	section.innerbanner {height: 400px;position: relative;}
	
	.banner_text {bottom: 40px;}
	.box-image-float, .page-template-page-services .box-image-float {height: 275px;}
	.menu-left, .menu-right {width: 100%;padding: 0 !important}
	.image-list {width: 30px;margin-right: 10px;}
	.text {text-align: left;width: calc(100% - 40px);}
	.menu-left ul li a, .menu-right ul li a {font-size: 14px;line-height: 24px;}
	.page-template-page-services .case-content {padding: 50px 30px 50px;}
	.address-box h2 {font-size: 30px;}
	.address-box p {font-size: 17px;font-weight: 400;line-height: 26px;}
	.address-box a {font-size: 18px;}
	.form-block {margin: 50px 0px 0;}
	.map-bg {display: none;}
	.map-iframe {width: 100%;float: left;}
	.page-template-contact .case-studies-box {margin: 0px 15px;}
	.page-template-contact .case-content h2 {font-size: 30px;}
	.page-template-contact .case-content .content {font-size: 15px;line-height: 26px;}
	.case-content {padding: 30px 20px 50px;}
	.panel-heading {font-size: 16px;padding: 20px 50px 20px 70px;}
	.panel-heading.collapsed {font-size: 16px;padding: 20px 50px 20px 70px;}
	.panel-default>.panel-heading+.panel-collapse>.panel-body {line-height: 25px;font-size: 15px;padding: 20px 20px 42px 20px;}
	.panel-heading.acc1 {background: url(images/cce-active.png) no-repeat 15px 22px / 40px , linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%) !important;}
	.panel-heading.collapsed.acc1 {background: url(images/cce-normal.png) no-repeat 15px 22px / 40px , #fff !important;}
	.panel-heading.acc2 {background: url(images/isd-active.png) no-repeat 15px 30px / 40px  , linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%) !important;}
	.panel-heading.collapsed.acc2 {background: url(images/isd-normal.png) no-repeat 15px 30px / 40px , #fff !important;}
	.panel-heading.acc3 {background: url(images/gd-active.png) no-repeat 15px 15px / 35px ,  linear-gradient(90deg, rgba(19,82,168,1) 28%, rgba(121,177,254,1) 100%) !important;}
	.panel-heading.collapsed.acc3 {background: url(images/gd-normal.png) no-repeat 15px 15px / 35px , #fff !important;}
	.about_accordion {margin: 40px 0px 40px;border-top: 1px solid #ccc;}
	.page-template-page-careers .services h2 {font-size: 25px;color: #1351a8;margin: 0 0 10px;}
	.page-template-page-careers .careers-content .service-boxes ul {column-count: 1;}
	.people-content-wrapper {clear: both;margin: 50px 0 20px;}
	.people-boxes {display: block;overflow: auto;}
	.people-boxes .people-image {width: 100% !important;height: 253px;margin-left: 0 !important;order: 2;margin-right: 0 !important;}
	.people-boxes .people-content {width: 100% !important;padding-right: 0px !important;padding-left: 0 !important;margin: 20px 0px 0;}
	.team {margin: 0 0 30px;min-height: auto;width: 100%;padding: 0;}
	.b-operation .col-md-4{padding-left: 5px;}
	.b-operation .col-md-3 {padding-right: 5px;}
	section.sitemap ul{column-count: 1;}

	section.innerbanner{height: auto;z-index: 5;min-height: 400px;}
	section.innerbanner:before{z-index: -1;}
	section.banner_section.contact-banner{height: auto;z-index: 5;min-height: 400px;}
	.banner_text{position: static;padding: 100px 15px 30px;}
	.menu-heads ul li a.active{font-size: 16px;}
	.menu-heads ul li a{font-size: 15px;margin: 0 8px;}
	.case-slide .blog-post{padding: 0!important;}
	.flip-card-front{padding: 25px 20px;}
	.flip-card .flip-title{font-size: 14px;}
}



@media screen and (max-width: 414px){
	video#myVideo {width: 180%;}
}

@media screen and (max-width: 375px){
	.left-title {font-size: 22px;line-height: 36px;}
	section.letstalk h2 {font-size: 18px;line-height: 28px;}
	.banner-content {top: 130px;}
	section.banner_section h1 {margin: 0px 0 10px;width: 100%}
	section.banner_section p {font-size: 14px;line-height: 24px;margin: 0px 0 20px;}
	section.banner_section a {padding: 10px 30px;}
	
}
@media screen and (max-width: 360px){
	.menu-heads ul li a.active{font-size: 14px;}
	.menu-heads ul li a{font-size: 14px;margin: 0 6px;}
	section.banner_section.contact-banner h1{font-size: 22px;;}
	
}


@media screen and (max-width: 320px){
	section.banner_section h1 {font-size: 26px;line-height: 32px;}
	section.banner_section p {font-size: 14px;line-height: 24px;}
	section.banner_section a {padding: 10px 15px;font-size: 15px;}
	.left-title {font-size: 18px;line-height: 28px;}
	.about-footer {padding-left: 75px;padding-right: 0;}
	.casestudy-detail {padding: 30px 30px 30px;}
	.ceo-image::after{content: none;}
	.leader-ship-box .image{height: 400px;}
	.casestudy-box .col-md-5, .casestudy-box .col-md-7{padding: 0 10px;}
	.banner-content{top: 88px;}
	section.banner_section.contact-banner h1{font-size: 20px}
}

@media screen and (min-height: 850px){
	
}


@supports (-webkit-overflow-scrolling: touch) {

  section.banner_section .bannerfill {background-attachment: scroll !important;}
  section.about-wildwarrior,section.blog-post-row {background-attachment: scroll !important;}


}
/* End */
