html {
  font-family: "Aleo", serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Poppins", serif;
  font-size: 15px;
  color: #2a2a2a; 
  overflow-x: hidden;
  letter-spacing:.5px;
  font-weight:400;
}
article,
aside,
details, /* 1 */
figcaption,
figure,
footer,
header,
main, /* 2 */
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}
audio,
canvas,
progress,
video,
a,
span {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
progress {
  vertical-align: baseline;
}
template, /* 1 */
[hidden] {
  display: none;
}
a,
button {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
  transition: all 0.3s ease;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 15px;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img,
i,
a,
span {
  border-style: none;
  transition: all 0.3s ease;
}
svg:not(:root) {
  overflow: hidden;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
button,
input,
select,
textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}
optgroup {
  font-weight: bold;
}
button,
input {
  /* 1 */
  overflow: visible;
}
button,
select {
  /* 1 */
  text-transform: none;
}
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
a {
  color: #333;
  transition: all 0.3s ease;
}
a:hover {
  color: #1076bc;
  text-decoration: none;
}
/******** Start Home Page CSS **********************************************************/
.bg-dark {
  background-color: #fff !important;
}
.navigation {
  padding: 0;
  min-height: 130px;
}
.navbar-brand {
}
.navbar-brand > img {
  max-width: 315px;
  width: 100%;
}

.ext_actions {
  display: flex;
  gap: 15px;
  margin-right: 15px;
  align-items: center;
  font-size:15px;
  margin-left: auto;
}


a.btn {
  text-transform:uppercase;
  color: #21293d;
}
a.btn:hover:after {
  opacity: 1;
  transform-origin: center center; 
  width: 110%; 
}
a.btn:hover:before {
  opacity: 0;
}
a.btn:hover  {
  color: #FFF;
}

.ext_actions img {width:35px; height:auto;}
.ext_actions img.tphone {width:25px;}

a.btn-org {background:#ef3f37; color:#FFF;}
a.btn-blue {background:#1076bc; color:#FFF;}

.btn {
  font-size: 15px;
  color: #fff !important;
  font-weight: 300;
  text-align: center;
  padding: 5px 20px;
  text-transform: uppercase;
  overflow: hidden; 
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}
 
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  margin: auto;
}
.btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 100px;
	background-color: #000;
	border-color: transparent;
	border-radius: 50%; 
	opacity:0;
	z-index: -1;
	transition: all 0.3s ease;
  margin: auto;
  transform: translate(-50%, -50%);
}
.btn:hover::after {
  opacity: 1;
  transform-origin: center center; 
  width: 110%; 
}
.btn:hover::before {
  opacity: 0;
}
.btn:hover  {
  color: #fff;
}

.navbar-collapse {
  text-align: center;
  flex-direction: column;
  gap: 0;
  margin-right: -140px;
}
.navbar-collapse img {
  border-bottom: 1px solid #dcd1b8;
  padding: 0 25px 25px;
  margin-top: 15px;
}

.menu {  display:none; width:100%;}
.show .menu {  display:block !important;}
.menu {width:100%;}
.menu ul {padding: 0px; list-style: none;}

.menu-main-menu-container ul.menu {
  list-style:none;
  padding:0;
  margin:0px;
}
.menu-main-menu-container ul.menu li {display:inline-block; padding: 0 15px;}
.menu-main-menu-container ul.menu li a{
    color: #21293d;
    font-size: 16px;
    text-transform: uppercase;
    outline: none;
    font-weight: 400;
    position: relative;
    line-height: normal;
    padding: 10px 0px;
}
.dropdown-toggle::after {
  content: "";
  display: none;
}
.dropdown-toggle:hover {
   color: #445c79;
}
.nav-item.nav-link.active::before,
.menu-main-menu-container ul.menu li a:focus::before {
  content: "";
  height: 4px;
  background: #445c79;
  position: absolute;
  bottom: -20px;
  left: 10px;
  right: 10px;
  transition: all 0.3s ease;
}
.menu-main-menu-container ul.menu li a::before {
  content: "";
  height: 4px;
  background: #FFF;
  position: absolute;
  bottom: 0px;
  transition: all 0.5s ease;
  width: 0px;
  left: 10px;
  right: 10px;
  margin: auto;
}
.menu-main-menu-container ul.menu li a:hover::before {
  transition: all 0.5s ease;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.menu-main-menu-container ul.menu li a:focus,
.menu-main-menu-container ul.menu li a:hover {
  color: #FFF;
}

.menu-quick-links-container ul {list-style:none; padding:0;}
.menu-quick-links-container ul li {display:inline-block;}


.main_banner {
  padding: 0 0;
}

.belowbannerarea {padding:70px 0;}
.belowbanner { background: #FFF; position: relative;  z-index: 1; margin-top: -215px; padding: 50px; padding-bottom:0px;}
.headerarea  h1 {font-size:15px; font-weight:400; color:#ef3f37; text-transform:uppercase;}
.headerarea h2 {font-size:44px; font-weight:600; color:#2a2a2a; text-transform:uppercase;}
.headerarea  p {font-size:22px; font-weight:400; color:#2a2a2a;}

.headerarea2  h2 {font-size:15px; font-weight:400; color:#ef3f37; text-transform:uppercase;}
.headerarea2 h3 {font-size:44px; font-weight:600; color:#2a2a2a; text-transform:uppercase;}
.headerarea2  p {font-size:22px; font-weight:400; color:#2a2a2a;}
.client-logo {margin-bottom:50px;}
.client-logo  ul  {padding: 0px; list-style: none; display: flex; gap: 82px; overflow-X:scroll;}

a.nrbtn img {width:20px; height:20px;}
a.nrbtn {text-transform:uppercase;}
a.nrbtn:hover span {margin-left:10px;}
.numbersarea {min-height:180px;}

.stat-card {position:relative; padding-left: 110px; padding-top:30px;}
.stat-card span { content:''; width:130px; height:130px; border-radius:100%; background:#e7f1f8; padding-top:24px; position:absolute; z-index: -1; left: 0; text-align:center;}
.stat-number {font-size:45px; font-weight:300; color:#4f4b45;  line-height: 50px; margin-top: 24px;}

.teamsocial {margin-bottom:30px;}
.teamsocial span { text-align: center; line-height: 50px; color: #FFF; font-size: 22px; }
.team h3 {margin-bottom: 0px; font-weight: 600; text-transform: uppercase;}
.teamsocial span a {background: #ef3f37; border-radius: 100%; width: 50px; height: 50px; color:#FFF;}
.teamsocial span a:hover {background:#1076bc;}
.contentarea h2.largetext {font-size:44px; text-transform:uppercase; font-weight:500; margin-bottom:30px; line-height: 55px;}
.bluebg {background:#f5f9ff; padding:60px 0;}
.teamsec figure {margin:0px;}
.teamsec h4  {font-size:15px; color:#ef3f37; text-transform:uppercase; margin-bottom:5px;} 
.teamsec h3 {margin-bottom:0px;}
.teamsec img {margin-bottom:20px;}
.teamsec img:hover { transform: scale(1.05); transition: all 2.5s ease;}

.teamsec p.designation {font-size:21px; font-weight:500;}
.teamsec .teamsocial {margin-bottom:0px;}
.contentarea .teamsec img, .bradius img {border-radius:20px;}

.projectsection {padding:80px 0; background:#f5f9ff;}
.homeproject img {border-radius:20px;}
.homeproject h2 {font-size:22px;}

.primaryBtn {
  font-size: 16px;
  line-height: normal;
  color: #fff !important;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  overflow: hidden; 
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid #7894b5;
}
 
.primaryBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  margin: auto;
}
.primaryBtn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 100px;
	background-color: #7894b5;
	border-color: transparent;
	border-radius: 50%; 
	opacity:0;
	z-index: -1;
	transition: all 0.3s ease;
  margin: auto;
  transform: translate(-50%, -50%);
}
.primaryBtn:hover::after {
  opacity: 1;
  transform-origin: center center; 
  width: 110%; 
}
.primaryBtn:hover::before {
  opacity: 0;
}
.primaryBtn:hover  {
  color: #fff;
}
.secondaryBtn {
  font-size: 16px;
  line-height: normal;
  color: #21293d;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  padding: 12px 30px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  overflow: hidden; 
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid #7894b5;
}

.secondaryBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  margin: auto;
}
.secondaryBtn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 100px;
	background-color: #7894b5;
	border-color: transparent;
	border-radius: 50%; 
	opacity:0;
	z-index: -1;
	transition: all 0.3s ease;
  margin: auto;
  transform: translate(-50%, -50%);
}
.secondaryBtn:hover::after {
  opacity: 1;
  transform-origin: center center; 
  width: 110%; 
}
.secondaryBtn:hover::before {
  opacity: 0;
}
.secondaryBtn:hover  {
  color: #fff !important;
}


element.style {
    visibility: visible;
    animation-name: fadeInUp;
}
.captionBox {
    position: absolute;
    top: 10%;
    margin: 0 auto;
    left: 7%;
}
.captionBox h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 600; 
	margin:0 0 12px; 
	text-transform:uppercase;   
	max-width:650px;
	margin:0 auto;
} 
.captionBox h2.bluetxt {
	color: #2d8bcb;
}
.captionBox h2.bluetxt span {color: #ef3f37;  }
.captionBox h2 span {
	color: #ef3f37;    
}
.captionBox h1 {
	color: #fff;     
	display: block;  
	font-weight: 300;
	line-height: 30px; 
	font-size: 22px; 
	margin-bottom: 25px;
} 
figure.br-2 {margin:0px;}
.br-2 img {border-radius:20px;}
.pt-8 {padding-top:80px;}
.pb-8 {padding-bottom:80px;}

.heading {margin:0 auto;}

.capabilitiessec .heading p { color: #fff;}

.capabilitiessec {
    padding:80px 0px; 
    position:relative;
}

.capabilities .items {position:relative; overflow:hidden; border-radius:30px;}
.capabilities .items .caption {position:absolute; left:30px; bottom:35px; max-width:350px;}
.capabilitiessec .capabilities .items .caption p {
    font-size:26px;
    line-height:35px;
    font-weight:300;
}

.caption h2 a {color:#FFF;}
.caption h2 a:hover {color:#00a79d}
.capabilities .items img {
    position: relative;
    transition: all 2.5s ease;
    cursor: pointer;
    height:530px;
    width:auto;
}
.capabilities .items:hover img {
    transform: scale(1.15);
    transition: all 2.5s ease;
}


.fa-arrow-left:before {content:''; width:35px; height:35px; background: url(../images/left-arrow.png) no-repeat; display:inline-block;}
.fa-arrow-right:before {content:''; width:35px; height:35px; background: url(../images/right-arrow.png) no-repeat; display:inline-block;}

.owl-prev, .owl-next {display:inline-block; padding:10px;}
.owl-prev:hover, .owl-next:hover {opacity:0.5;}

footer {background:#2a2a2a; padding:50px 0; color:#bdbdbd; vertical-align:top;}
.page footer { margin-top: 50px; }
footer ul.menu {display:inherit; padding:0px; list-style:none;}
footer ul.menu li {margin-bottom:5px;}
footer h4 {font-size: 16px; font-weight: 400;}
.footeraction {border-bottom: 1px solid #575757; margin-bottom: 40px;}
.footeraction h3 {color: #bdbdbd; font-weight: 300; font-size: 22px;}
.footeraction ul.iconarea { display: inline-flex; padding: 0px; list-style: none; text-align: center; column-gap: 70px; float:right;}
.footeraction ul.iconarea li {margin-left:auto;}
.footeraction ul.iconarea li i { font-size: 25px;}
footer a { color:#FFF;}
footer a:hover {color:#ef3f37;}

.botnav {padding-bottom:10px;}
.botnav a {text-transform:uppercase; font-weight:500; color:#FFF; margin:0 7px;}
.copyright {
  text-align:center;
  background: #2e425a;
  padding: 35px 0 65px;
  font-size: 12px;
  color: #b7b7b7;
  line-height: 23px;
}
.copyright hr {background:#73818e;}
.copyright a {
  font-size: 12px;
  color: #FFF;
  display: block;
  line-height: 23px;
  display: inline-block;
}
.copyright a:hover {color:#b7b7b7;}

.linkedinbtn a {
    font-size: 20px;
    color: #FFF;
    border: 1px solid;
    width: 45px;
    height: 45px;
    text-align: center;
    display: inline-block;
    border-radius: 100px;
    padding: 6px;
    margin-right: 10px;
}
.linkedinbtn a:hover {background:#445c7a; border: 1px solid #445c7a;}

.modal-content {border-radius: 30px; padding: 20px;}
.modal-content .btn-close {border: 1px solid #999; font-size: 20px; font-weight: 200; border-radius: 100%; position:absolute; right:30px; top:30px; text-align:center; z-index:5; padding:7px 19px;}
.modal-content .btn-close:hover {background:#2e425a; color:#FFF; border:none;}

#team1 h2, .teamdetail h1 {font-size:28px; font-weight:300; margin-bottom:10px;}
#team1 h3, .teamdetail h3 {font-size:18px; font-weight:300; margin-bottom:10px;}
.teamcontent h4 {font-size:22px; font-weight:300; margin-bottom:20px;}
.modal-header {border:none;}
.close { text-shadow: none; font-weight: 200; font-size: 46px; color: #FFF; margin: 0px; padding: 0px;}
.wp-block-separator {border: 0.5px solid #445c7a;}

.page-id-78 ul.wp-block-list {padding-left:15px;}
.page-id-78 ul.wp-block-list li {padding-bottom:10px;}

.page-id-117 .contentarea h2 {text-transform:uppercase; font-size:44px; font-weight:500; line-height:50px;}
.page-id-117 .contentarea h3 {font-size: 22px; font-weight: 400; line-height: 32px;}
.page-id-117 figure {margin:0px;}
.page-id-117 figure img {border-radius:20px;}
.bluetext {margin-bottom:0px; color:#2483da; font-size:15px;}

.page-id-33 .inner-banner, .single-team .inner-banner{display:none;}
.teamdetail {padding:70px 0 0 0; background:#22293d; color:#FFF;}
.teamdetail p {font-size:16px; line-height:27px; font-weight:300;}
.inner-banner {height:475px; overflow:hidden; position:relative; margin-bottom:50px;}
.inner-caption {position: absolute; top: 15%; color: #FFF; left: 7%; margin: 0 auto;}
.inner-banner h1 {text-transform: uppercase; font-size: 16px; font-weight: 500;}
.inner-banner p { font-size: 44px; font-weight: 600; text-transform: uppercase; line-height: 50px;}
.page-id-57 h2, .page-id-80 h2 {font-weight:300; font-size:26px; line-height:40px;}
.contentarea h2 { font-size: 22px; font-weight: 400; line-height: 33px;}
.contentarea p { line-height:21px; font-weight:300;}
.contentarea  hr {border:1px solid #ddd;}

.formblock {padding:30px;}
ul.callaction {list-style:none; padding:0px; margin-bottom:30px;}
ul.callaction li {margin-bottom:10px; font-size:16px;}
ul.callaction li i {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border: 1px solid #445c7a;
    color: #445c7a;
    padding: 9px 0;
    text-align: center;
    margin-right:5px;
}

#enquireModal form.wpcf7-form {}

.page-id-80 form input, .page-id-80 form select, #enquireModal form.wpcf7-form input, #enquireModal form.wpcf7-form select {
    border-radius: 5px;
    padding: 5px 10px;
    border: 1px solid #7894b5;
    height: 45px;
    width: 100%;
}

.page-id-80 form textarea, #enquireModal form.wpcf7-form textarea {
    border-radius: 5px;
    padding: 5px 10px;
    border: 1px solid #7894b5;
    height: 100px;
    width: 100%;
    }
.page-id-80 form span.wpcf7-form-control-wrap, #enquireModal form.wpcf7-form span.wpcf7-form-control-wrap {width:100%; margin-bottom:15px;}

form input[type="submit"], #enquireModal form.wpcf7-form input[type="submit"] {
  font-size: 16px;
  line-height: normal;
  color: #21293d;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 30px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  overflow: hidden; 
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 50px;
  border: 1px solid #7894b5;
  width:auto;
}

form input[type="submit"]:hover, #enquireModal form.wpcf7-form input[type="submit"]:hover  {
  color: #fff;
  background:#21293d;
}


.navbar-toggler {
    background: none;
    border-radius: 0;
    right: 0;
    height: 50px;
}
.navbar-toggler:hover, .navbar-toggler:focus {
    background:#e8e8e8;
}
.navbar-dark .navbar-toggler-icon {background-image: url(../images/toggle-img.png);}

.navbar-collapse {
    background: #1076bc;
    position: fixed;
    left: -300px;
    width: 300px;
    top: 0px;
    z-index: 11;
    height: 100%;
    padding: 70px 20px 0;
    text-align: left;
}
.show {left:0;}
.menu-main-menu-container { width:100%;}
.menu-main-menu-container ul.menu {padding-top:20px;}
.menu-main-menu-container ul.menu li {display:block; text-align:left;}
.menu-main-menu-container ul.menu li a {color:#FFF; width: 100%; border-bottom: 1px dotted #445c7a;
}

.c-accordion__item {margin-bottom: 20px; border-bottom: 1px solid #ccc;}
.c-accordion__title:after {color: #1076bc; font-size:32px;}

.formarea {
    padding: 40px;
    border-radius: 20px;
    background: #1176bc;
    color: #FFF;
}
.formarea form label, .formarea form label span, .formarea form label span input, .formarea form label span select {
    width:100%; height:40px; border-radius:5px; margin-bottom:15px;
}
.formarea form label span input, .formarea form label span select {padding:10px;  border:0px; }
.formarea form label span textarea {width:100%; padding:10px; height:100px; border:0px; border-radius:5px; }
iframe { border-radius:20px; }
.formarea form input[type=submit] {background:#ef3f37; color:#FFF; font-weight:500;}
.formarea form input[type=submit]:hover {background:#e7f1f8; color:#000;}

.single-service_list #myHeader {border-bottom: 1px solid #CCC; margin-bottom: 50px;}
.single-service_list .inner-banner {display:none;}

/******** Strat Media CSS **********************************************************/
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
      .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
}

@media only screen and (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {display:block;}
}

@media only screen and (max-width: 1199px) {

}
@media only screen and (max-width: 1024px) {
    figure {margin:0px;}
    .headerarea2 h3, .headerarea h2, .stat-number, .captionBox h2 {font-size:34px;}
    .contentarea h2.largetext {font-size:34px; line-height:40px;}
    .headerarea2 p, .headerarea p {font-size:16px;}
    .capabilities .items .caption h2 {font-size:22px;}
    
}

@media only screen and (max-width: 999px) {
 
}

@media only screen and (max-width: 991px) {
    .stat-label {font-size:12px;}
    .ext_actions .btn {display:none;}
    .homeproject h2 {font-size:18px; line-height:28px;}
}

@media only screen and (max-width: 768px) {
    .captionBox h2 {font-size:24px; line-height:28px;}
    .captionBox h1 {font-size:18px;}
    .captionBox {width:auto;}
    .footeraction ul.iconarea { column-gap: 40px; float:right;}
    .footeraction ul.iconarea li { margin-left: auto; margin-right: auto;}
    
}
@media only screen and (max-width: 767px) {
    .map img {width:100%; height:auto;}
    .whower p, .capabilitiessec .heading p, .mandates p, .teamsec p {font-size:22px; line-height:35px;}
    .usps ul {display:block;}
    .usps ul li {border-right:none; position:relative; margin-bottom:30px;}
    .usps ul li h4 {margin-bottom:0px;}
    .teamdetail {padding-top:0px; padding-bottom:30px;}
    .teamdetail .picture {    background: #2e425a; padding: 30px 30px 0 30px; margin-bottom: 30px;}
    .stat-card {height:150px;}
    footer {text-align:center;}
    footer img {width:240px;}
    .call {display:none;}
    .footeraction ul.iconarea { column-gap: 40px; float:inherit; width:100%;}
}

@media only screen and (max-width: 668px) {
    .teamOwl .items, .teamlist .items {height:500px;}
    .teamOwl .items .morebtn, .teamlist .items .morebtn {position: inherit; bottom: inherit; left: inherit;}
    .teamOwl .items .caption, .teamlist .items .caption {position: inherit; left: inherit; top: inherit; margin-bottom:25px;}
    .inner-banner p {font-size:28px; line-height:32px;}
    .navbar-brand img {width:250px;}
    .navigation {padding:0px 15px;}
    .inner-banner h1 {color:#000;}
    .inner-banner .inner-caption {position:inherit; color:#1076bc; left:inherit; top:inherit; margin-top:30px;}
    .inner-banner {height:auto; overflow:inherit; background: #f8f8f8;}
    .page-id-117 .contentarea h2 {font-size: 22px; font-weight: 400; line-height: 32px; text-transform: inherit;}
    .belowbanner {margin: inherit; padding: 0px;}
    .mainBanner {background: #f8f8f8; height: 370px;}
    .captionBox { position: inherit; top: inherit; margin: 0 auto; left: inherit; padding-top:30px;  padding-bottom:30px; }
    .captionBox h2 {color:#1076bc;}
    .stat-card {padding-left:140px;}
    .homeproject h2 {margin-top:20px;}
}

@media only screen and (max-width: 425px) {
    .capabilities .items {
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        height: auto;
        background: #2e425a;
    }
    .capabilities .items .caption {bottom:inherit; left:inherit; padding:25px; position:inherit;}
    .captionBox h2 {font-size:22px; padding-right:20px;}
}

@media only screen and (max-width: 375px) {
    .navbar-brand img {width:200px;}
}


/******** End Media CSS **********************************************************/
