/* -------------------------------- Primary style -------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul li{
  list-style: none;
}
ul{
  padding:0;
  margin:0;
}
body {
  font: 100% proxima-nova, sans-serif;
  background: white;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.overflow-hidden {
 /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}
a {
  text-decoration: none;
  position: relative;
}
a:hover {
  text-decoration: none;
}
.btn:focus {
  outline: none;
}
.btn{
  font: 600 16px/24px proxima-nova, sans-serif;
  padding: 7px 18px;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
  -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
}
.btn-sm{
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}
.btn-primary {
  background: #24b49e;
  border-color: #24b49e;
}
.btn--radius {
  border-radius: 35px;
}
.btn-primary:hover, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(36,180,157,.5);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(36,180,157,.5);
  background: #20a38c;
  border-color: #20a38c;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  background: #20a38c;
  border-color: #20a38c;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus, .btn-primary.focus, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(36,180,157,.5);
}
/* -------------------------------- Modules - reusable parts of our design -------------------------------- */
.module-space {
  margin: 120px 0;
}
.module-space--top-zero {
  margin-top: -120px;
}
.call-to-action {
  float: left;
  width: 100%;
}
p {
  font-size: 20px;
  line-height: 32px;
  color: #444444;
  margin-bottom: 18px;
  font-weight:300;
  letter-spacing: -0.5px;
}
a {
  color: #6772E5;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}
.mt-6 {
  margin-top: 6rem;
}
/* -------------------------------- Main components -------------------------------- */
html, body {
  height: 100%;
}
.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.75);
  height: 75px;
  width: 100%;
  z-index: 5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-logo {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
}
.cd-logo img {
  display: block;
}
.cd-secondary-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 6em;
}
.cd-secondary-nav li {
  display: inline-block;
  margin-left: 2.2em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
.cd-primary-nav-trigger {
  background: #03263d;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
}
.cd-primary-nav-trigger .cd-menu-text {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
 /* hide the text on small devices */
  display: none;
}
.cd-primary-nav-trigger .cd-menu-icon {
  background: #1c3e4d;
 /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 35px;
  height: 3px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
 /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  background: #1c3e4d;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -8px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 8px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background: rgba(255, 255, 255, 0);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background: white;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
.cd-primary-nav {
 /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(2, 23, 37, 0.96);
  z-index: 2;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-y: scroll;
 /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav li {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
  text-transform: capitalize;
}
.cd-primary-nav a {
  display: inline-block;
  padding: .2em 1em .35em;
  border-radius: 0.25em;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
  color: #fff;
  text-decoration: none;
}
.no-touch .cd-primary-nav a:hover {
  background: #1ba4cc;
}
.cd-primary-nav .cd-label {
  color: #24b49e;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 2.4em 0 .8em;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social a {
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 1.2;
}
.no-touch .cd-primary-nav .cd-social a:hover {
  background: #fff;
  color: #1ba4cc;
}
.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.banner-outer {
  position: relative;
  overflow: hidden;
}
.banner-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  max-height: 750px;
  height: 750px;
  border-bottom-left-radius: 50% 10%;
  border-bottom-right-radius: 50% 10%;
}
.banner-outer__banner {
  background: url("../images/banner.jpg") fixed 50% 50%/cover;
  width: 100%;
  height: 100%;
  padding-top: 200px;
  text-align: left;
  min-height: 600px;
}
.banner-outer__banner h1 {
  font-size: 50px;
  font-weight: 600;
  color: #000;
  line-height: 60px;
  margin-bottom: 14px;
}
.banner__tagline {
  font-size: 44px;
  font-weight: 400;
  color: #333333;
  max-width: 555px;
}
.banner__tagline-operator {
  border-top: 1px solid #1DACD8;
  max-width: 515px;
  color: #1DACD8;
  border-bottom: 1px solid #1DACD8;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px 0 14px;
  margin: 20px 0px 11px;
}
.banner__btn {
  max-width: 515px;
  margin: 35px 0 0 0;
}
.banner__btn a, .call-to-action a ,.in-banner a{
  font: 600 18px/27px proxima-nova, sans-serif;
  text-shadow: none;
  min-width: 270px;
  min-height: 40px;
}
.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
}
.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}
/**** card ****/
.layout--position {
  margin: -80px 0 0 0;
}
.card {
  min-height: 410px;
  position: relative;
  border: none;
  box-shadow: 0 3px 6px rgba(0,0,0,.2);
  transition-property: box-shadow,transform,-webkit-box-shadow,-webkit-transform;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
}
.card:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
  box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
}
.card__header {
  font-weight: 600;
  font-size: 24px;
  padding: 12px 15px 11px;
  color: #111;
  text-transform: capitalize;
}
.card__body {
  padding-bottom: 43px;
}
.card__body img{
  width:100%;
}
.card__body p {
  padding: 12px 15px 0;
  font-size: 17px;
  line-height: 25px;
  color: #666666;
  font-weight: normal;
  margin: 0;
  letter-spacing: 0px;
}
.card__footer {
  position: absolute;
  bottom: 0;
}
.card__footer a {
  color: #6772E5;
  text-decoration: none;
  font-size: 16px;
  line-height: 25px;
  padding: 8px 15px 10px;
  display: inline-block;
  font-weight: 400;
}
.link-hvr {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.fa-angle-double-right {
  opacity: 0;
  display: none;
  position: relative;
  left: -10px;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.link-hvr:hover {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.link-hvr:hover .fa-angle-double-right {
  opacity: 1;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  left: 0;
}

/****** testimonial ********/
.testimonial p:before {
  content: "\201C";
  position: absolute;
  font-size: 52px;
  top: -1px;
  font-weight: bold;
}
.testimonial p span:after{
  content: "\201D";
  position: absolute;
  font-size: 52px;
  bottom: -3px;
  font-weight: bold;
  padding-left: 15px;
}
.testimonial p {
  font-size: 27px;
  font-weight: 300;
  line-height: 40px;
  text-align: center;
  position: relative;
}
.testimonial p span{
  padding-left:30px;
  display: inline-block;
}
.testimonial__author {
  margin: 25px 0 5px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
.testimonial__designation {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  margin: 0 auto;
  max-width: 250px;
  display: inline-block;
  line-height: 20px;
}

.testimonial__quote-wrap{
  display: table;
  margin:0 auto;
}
.quote-wrap__imgwrap {
  width: 100px;
  height: 100px;
  margin: 0;
  float: none;
  border: 2px solid #f5f5f5;
  border-radius: 50%;
  display: table-cell;
}
.quote-wrap__content {
  float: none;
  text-align: left;
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 18px;
}
.quote-wrap__imgwrap img {
    border-radius: 50%;
}
.testimonial__author.testimonial__author--margin {
    margin:0 0 5px 0;
}
/************ logo outer *****************/
.logo-outer--grey {
  background: #FCFCFC;
}
.logo-outer--padding {
  padding: 45px 0;
}
.client-sec ul {
  margin-bottom:0;
  float: left;
  width: 100%;
}
.client-sec li img {
  width: 100%;
  padding: 0 10px;
  opacity: .7;
}
.client-sec li {
  float: left;
  width: 14%;
}
.client-logos-smres{
  display: none;
}
.client-logos-highres{
  display: flex;
}
.client-logos-smres .carousel-indicators{
  bottom:-22px;
}
.client-sec--five.client-logos-smres .carousel-indicators, .client-sec--three.client-logos-smres .carousel-indicators{
  bottom:-30px;
}

.client-logos-smres .carousel-indicators li{
  background: rgba(0,0,0,.4);
}
.client-logos-smres .carousel-indicators li.active{
  background: rgba(36,180,158,.8);
}
.client-logos-smres .carousel-item img{
  opacity:.8;
}
/**************** help you with *******************/
.tech-sec .col-sm-4 {
  margin: 40px 0 25px 0;
}
.tech-card {
  margin: 0;
  width: 100%;
  float: left;
  position: relative;
  height: 100%;
  min-height: 430px;
}
.effec-hover {
  position: relative;
}
.card-front {
  background: #fff;
  border-radius: 3px;
  padding: 16px 18px;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  z-index: 1;
}
.card-front .link-hvr{
  display: inline;
}
.card-back {
  color: #fff;
  background: #2ABF9F;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.tech-card.effect-hover:hover .card-front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.tech-card.effect-hover:hover .card-back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  z-index:4;
}
.card-front, .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.card-back__outer {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 20px;
  color: #fff;
}
.outer__item {
  border-radius: 40px;
  border: 1px solid #fff;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  padding: 5px 20px 5px;
  margin-top: 15px;
  color: #fff;
  font-size: 1rem;
  -webkit-transition: .2s all easy 0.5s;
  transition: .2s all easy 0.5s;
  line-height: 22px;
  vertical-align: middle;
}
.outer__item img {
  vertical-align: text-bottom;
  max-height: 20px;
}
.card-back__outer h4 {
  font-weight: 400;
  font-size: 2rem;
  text-align: left;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.tech-card__body {
  font-size: 17px;
  line-height: 24px;
  color: #666;
  min-height: 245px;
}
.tech-card__body p {
  line-height: 30px;
  margin: 0;
  color:#666;
  font-weight: normal;
  line-height: 25px;
  font-size: 17px;
}
.card-back__footer {
  min-height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.card-back__footer a {
  color: #fff;
  vertical-align: middle;
}
.tech-card:hover .body__heading, .tech-card:hover .tech-card__body, .tech-card:hover a {
  color: #fff;
  text-decoration: none;
}
.jsExpandContent {
  transition: width 2s, height 2s;
}
jsWidthChange {
  transition: width 2s;
}
.jsExpandContent.active {
  width: 100%;
}
.jsExpandContentWrapper .col-sm-4.col-sm-4.jsWidthChange {
  flex: 0 0 100%;
  max-width: 100%;
  order: 1;
}
.jsExpandContentWrapper .col-sm-4 {
  order: 2;
}

/******/

.tooltip { pointer-events: none; }
.card-bak__row {
  display: block;
  margin-bottom: 20px;
}
.card-back__img {
  margin-right: 5px;
  display: inline-block;
  -webkit-transition: .2s all easy 0.5s;
  transition: .2s all easy 0.5s;
  vertical-align: top;
  width: 45%;
  margin-bottom: 0;
}
.card-back__tech-name {
  font-size: 15px;
}
.card-back__img svg {
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 4px;
  min-width: 90px;
}
.card-back__img .stack-icons-stroke,.card-back__img .cls-11,.card-back__img .cls-22,.card-back__img .cls-33{
  stroke: #fff;
}
.card-back__img  .stack-icons-fill{
  fill:#fff;
}
.st00{clip-path:url(#SVGID_2_);}
.st11{fill:none;stroke:#231F20;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.cls-11,.cls-33,.cls-44{fill:none;stroke:#010101;}.cls-11,.cls-44{stroke-miterlimit:10;}.cls-22{fill:#010101;}.cls-33,.cls-44{stroke-linecap:round;}.cls-33{stroke-linejoin:round;}


.st00{clip-path:url(#SVGID_2_);}
.st11{fill:none;stroke:#231F20;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}

.st0{display:none;}
	.st1{display:inline;fill:#1A1718;}
	.st2{display:inline;}
	.st3{fill:#FFFFFF;}
	.st4{fill:#FF3878;}
	.st5{fill:#2C3E50;}
	.st6{fill:#0BA4E0;}
  .st7{fill:#148C47;}

 .st00{fill:#010101;}
 .cls-111{fill:none;}
 .cls-222{fill:#282828;}
 .cls-333{clip-path:url(#clip-path);}
 .cls-444{clip-path:url(#clip-path-2);}
 .cls-123{fill:none;stroke:#414042;stroke-linecap:round;stroke-linejoin:round;}
.st111{fill:none;stroke:#010101;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
/*** 05 july ***/

/************** better dev teams *****************/
.sec-heading {
  color: #111;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 45px;
}
.sec-heading sup {
  font-size: 15px;
  position: relative;
  top: -17px;
  font-weight: 600;
}
.b-card {
  margin: 38px 0 60px 0;
}
.b-card__header h3, .tech-card__body .body__heading {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  line-height: 30px;
  margin: 8px 0 11px;
  padding: 0;
}
.b-card__body, .tech-card__body {
  font-size: 17px;
  line-height: 25px;
  letter-spacing:-0.5px;
  color: #666;
  font-weight:normal;
}
.horrizntl {
  background: #fff;
}
.horrizntl--position {
  position: relative;
  margin-top: -89px;
}
.horrizntl--padding {
  padding: 30px 30px 0;
}
.horrizntl .sec-heading {
  margin-bottom: 13px;
}
.horrizntl__content {
  display: none;
}
/********** bg--lightgrey ***********/
.bg--lightgrey {
  background: #F7F9FC;
}
.bg--padding {
  padding: 100px 0;
}
.heading-group .sec-heading {
  margin-bottom: 18px;
}
.heading-group .sec-subheading {
  font-size: 25px;
  color: #666;
}
.tick-listing li {
  width: 50%;
  padding: 0 25px 30px 39px;
  background: url(../images/tick.png) no-repeat 0 4px;
  float: left;
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: #666;
  list-style: none;
  letter-spacing: -0.5px;
}
.tick-listing--padding {
  padding: 80px 0 0 0;
}
.tick-listing li strong {
  font-weight: 600;
}
.tick-listing li:last-child {
  width: 50%;
  float: none;
  display: table;
  margin: 0 auto;
  clear: both;
}
.bg-wrapper {
  width: 100%;
}

/****************** download pdf **********************/
.horrizntl--height {
  max-height: 450px;
}
.horrizntl--pos {
  position: relative;
  margin-left: -251px;
  padding: 15px 30px 10px;
}
.horrizntl .form-group label {
  font-size: 15px;
  padding: 0 0 0 15px;
}
.horrizntl.horrizntl--height .sec-heading {
  font-weight: 600;
  font-size: 37px;
  line-height: 46px;
}
.download-pdf .form-control {
  height: 35px;
  max-width: 280px;
  font-size: 15px;
  border-radius: 0;
  border-color: #CCCCCC;
}
.horrizntl .form-group label .required {
  color: #D12424;
  display: inline-block;
  padding-left: 3px;
}
.download-pdf {
  margin: 35px 0 0 0;
}
.download-pdf__btn {
  background: #1AB4FF;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 14px 20px;
  min-height: 44px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.download-pdf__btn:hover {
  background: #16a3e8;
}
/************* menu bar *********/
.navbar-fixed-top, .navbar-fixed-bottom {
  position: fixed;
  right: 0;
}
body {
  position: relative;
  overflow-x: hidden;
}
body, html {
  height: 100%;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background: transparent;
}
#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#sidebar-wrapper {
    z-index: 1090;
    width: 0;
    height: 100%;
    margin-right: -430px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #13272f;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
#wrapper.toggled #sidebar-wrapper {
    width: 430px;
    right: 430px;
}
#page-content-wrapper {
  width: 100%;
}
/* #wrapper.toggled #page-content-wrapper {
  position: absolute;
} */
.overflow_toggle {
  overflow: hidden !important;
}
/*-------------------------------*/
/* Sidebar nav styles */
/*-------------------------------*/
.nav-outer {
    width: 100%;
    float: left;
    position: relative;
    top: 0;
    padding: 0 0;
    height: calc(100% - 68px);
}
.sidebar-nav {
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-outer .nav {
  display: block;
}
.nav-header {
  padding: 13px 0 15px 0;
  position: relative;
  width: 100%;
  height: 68px;
  display: none;
  border-bottom: 1px solid #2e4c58;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.nav-header__home {
  background: #285467;
  min-height: 38px;
  display: inline-block;
  border-radius: 5px;
  width: 35px;
  vertical-align: middle;
  margin-right: 15px;
  text-align: center;
  color: #fff;
  padding: 8px 0 0 0;
  transition: all .4s ease-in-out;
}
.nav-header__home:hover {
  background: #fff;
  color: #285467;
}
.nav-header__home .fa {
  font-size: 21px;
}
#wrapper.toggled #sidebar-wrapper .nav-header {
  display: inline-block;
}
.navbar {
  padding: .5rem 2rem;
}
.sidebar-nav li {
  position: relative;
  line-height: 20px;
  display: inline-block;
  width: 100%;
}
.sidebar-nav li:before {
  background: #1c3e4d;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 0px;
  -webkit-transition: width .2s ease-in;
  -moz-transition: width .2s ease-in;
  -ms-transition: width .2s ease-in;
  transition: width .2s ease-in;
}
.sidebar-nav li:hover:before, .sidebar-nav li.open:hover:before {
  width: 100%;
  -webkit-transition: width .2s ease-in;
  -moz-transition: width .2s ease-in;
  -ms-transition: width .2s ease-in;
  transition: width .2s ease-in;
}
.nav__label {
  color: #24b49e;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  margin: 1.75em 0 .5em .2em;
  display: inline-block;
  font-variant: small-caps;
}
.sidebar-nav li.nav__nohover:hover:before, .sidebar-nav li.nav__social:hover:before {
  width: 0;
}
.sidebar-nav .nav__social a {
  display: inline-block;
  padding: 10px;
}
.sidebar-nav .nav__social a:hover {
  color: #24b49e;
}
.m-title {
  position: absolute;
  top: 3px;
  color: #fff;
  border-bottom: 1px solid #ccc;
  width: 100%;
  left: 0;
  padding: 17px 0 14px 5px;
  font-weight: 600;
  font-size: 24px;
}
.sidebar-nav li a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 5px 15px 5px 5px;
  font-size: 15px;
}
.sidebar-nav li a:hover, .sidebar-nav li a:active, .sidebar-nav li a:focus, .sidebar-nav li.open a:hover, .sidebar-nav li.open a:active, .sidebar-nav li.open a:focus {
  background: transparent;
  color: #fff;
  text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
  height: 65px;
  font-size: 20px;
  line-height: 44px;
}
.sidebar-nav .dropdown-menu {
  background: #222;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
/*-------------------------------*/
/* Hamburger-Cross */
/*-------------------------------*/
.hamburger {
  position: absolute;
  top: 27px;
  right: 2em;
  z-index: 999;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background: transparent;
  border: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hamburger:hover, .hamburger:focus, .hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-top, .hamburger.is-closed .hamb-middle, .hamburger.is-closed .hamb-bottom, .hamburger.is-open .hamb-top, .hamburger.is-open .hamb-middle, .hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
}
.hamburger.is-closed .hamb-top, .hamburger.is-closed .hamb-middle, .hamburger.is-closed .hamb-bottom {
  background: #1a1a1a;
}
.hamburger.is-closed .hamb-top {
  top: 5px;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 5px;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-top {
  top: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 0;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top, .hamburger.is-open .hamb-middle, .hamburger.is-open .hamb-bottom {
  background: #fff;
  cursor: pointer;
}
.hamburger.is-open .hamb-top, .hamburger.is-open .hamb-bottom {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle {
  display: none;
}
.hamburger.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}
/*-------------------------------*/
/* Overlay */
/*-------------------------------*/
.overlay {
  background: rgba(0,0,0,.5);
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1070;
}
.toggled .overlay {
  display: block;
}
/***************** footer *****************/
footer {
  background: #1B3E4C;
  padding: 45px 0 25px;
}
footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 15px;
  font-variant: small-caps;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer li {
  background: url(../images/footer-list-ic.png) no-repeat;
  padding: 0 0 0 14px;
  background-position: 0 7px;
}
footer li a {
  color: #458eaa;
  padding: 0;
  font-size: 14px;
  line-height: 18px;
  margin-bottom:10px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  vertical-align: top;
}
footer li a:hover {
  color: #458eaa;
  text-decoration: underline;
}
footer li a:hover span{
  color:#fff;
}
.footer-row .footer-row__col:first-child{
  width:23%;
}
.footer-row .footer-row__col:nth-child(2){
  width:23%;
}
.footer-row .footer-row__col:nth-child(3){
  width:16%;
}
.footer-row .footer-row__col:last-child{
  width:20%;
}
.footer-row__col {
  float: left;
  width: 18%;
  padding: 0 15px;
}
.f-col__heading{
  margin-top:25px;
  float: left;
  width: 100%;
}
.footer-bottom {
  border-top: 1px solid #285464;
  margin: 20px 0 0 0;
}
.footer-bottom .container {
  padding: 20px 0 0 0;
}
.footer-bottom__social {
  padding: 0;
  margin: 0 0 0;
  float: left;
  width: 100%;
}
.footer-bottom__social li {
  float: left;
  list-style: none;
  margin: 0 0 0 8px;
  padding: 0;
  background: none;
}
.footer-bottom__social li:first-child {
  margin: 0;
}
.footer-bottom__social li a span:hover {
  color: #fff;
}
.footer-bottom__social li a:hover span {
  background: #326d81;
}
.footer-bottom__social li span {
  background: #fff;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  position: relative;
}
.footer-bottom__social li span .fa {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.footer-bottom__logo {
  margin:12px 0 0;
}
.footer-bottom__inline-links {
  width: auto;
  padding: 0;
  margin: 7px auto 8px;
  display: table;
}
.footer-bottom__inline-links li:first-child {
  margin: 0;
}
.footer-bottom__inline-links li {
  float: left;
  list-style: none;
  margin: 0 0 0 20px;
  padding: 0;
  background: none;
}
.copyright {
  color: #fff;
  font-size: 14px;
  line-height: 23px;
  margin: 4px 0 0 0;
}
.footer-bottom__social li a span {
  color: #1B3E4C;
}
.footer-row__col p {
  font-size: 14px;
  color: #fff;
  line-height: 22px;
}
.footer-row__col p a{
  color: #458eaa;
  font-size: 14px;
}
.footer-row__col p a:hover{
  text-decoration: underline;
}
.social__hashtag {
  vertical-align: top;
  position: relative;
  top: 2px;
  padding-left: 2px;
}
.footer-bottom__social a:hover{
  text-decoration: none;
}
/********************* Schedule a conversation *******************/


/********************** software eng *************************/
.in-banner{
  position: relative;
  height:850px;
  padding-top:80px;
}
.floating-icon-btm{
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  position: relative;
  top: 50px;
  color: #9e9e9e;
}
.in-banner__bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: skewY(-4deg);
  transform-origin: 0;
  position: absolute;
  top: 0;
  background: #ccc;
  overflow: hidden;
}
.in-banner__bg .inner-bannerbg {
  width: 100%;
  background-size: cover;
  height:1000px;
  transform: skewY(4deg);
  display: block;
}
.inner-bannerbg--software-eng{
  background: url("../images/soft-eng.jpg") no-repeat center 125px;
}

.in-banner__bg .inner-bannerbg:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
}
.inner-banner-btm {
  font-size: 24px;
  line-height: 35px;
  font-weight: 300;
  color: #666;
}
.banner-textblock__heading{
  color: #fff;
  font-size: 45px;
  line-height: 54px;
  padding-top: 220px;
  font-weight: bold;
  padding-bottom:0px;
  letter-spacing: -0.5px;
}
.banner-textblock {
  max-width: 590px;
}
.banner-textblock a{
  margin: 35px 0 0 0;
}
.in-banner .banner-textblock p {
  color: #fff;
  display: inline-block;
  clear: both;
  font-size: 42px;
  line-height: 50px;
  margin: 9px 0 0 0;
  border-top: 1px solid #707070;
  padding: 10px 0 0;
  letter-spacing: -0.5px;
}
.softeng-block__heading {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 34px;
  margin-bottom: 10px;
}
.inner-process .b-card{
  margin-bottom:0;
}
.tech-icons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5px;
  margin-bottom: 0;
  padding: 0;
}
.tech-icons li{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  max-width: 32%;
  padding: 10px 15px;
  min-height: 110px;
  border: 1px solid #E0E0E0;
  margin: 0 0 10px 8px;
  text-align: center;
  position: relative;
}
.tech-icons li svg{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
}
.tech-icons li img{
  vertical-align: middle;
  max-height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 150px;
}
.tech-icons li:first-child,.tech-icons li:nth-child(4),.tech-icons li:nth-child(7){
  margin-left:0;
}
.horrizntl--innerpage{
 padding:20px 21px;
}
.horrizntl--innerpage .testimonial__author {
  margin: 20px 0 5px 0
}
.techicon-block {
  width: 80%;
  margin: 0 auto;
  display: table;
}
.techicon-block--four  .techicon-block_inner {
    width: 25%;
}
.techicon-block--two  .techicon-block_inner {
  width: 50%;
}
.techicon-block_inner {
  float: left;
  width: 20%;
  padding: 0 15px;
}
.techblock-inner__arrow {
  width: 20px;
  height: 20px;
  background: #fff;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 50%;
  line-height: 17px;
  color: #ccc;
  font-size: 12px;
  text-align: center;
}
.techicon-block_inner .techblock-inner__name {
  margin-bottom: 10px;
  line-height: 22px;
  font-size:17px;
  display: block;
  color:#666;
}
.techicon-block_inner a{
  display: block;
  -webkit-transition: top .3s;
  transition: top .3s;
  transition-property: box-shadow,transform,-webkit-box-shadow,-webkit-transform;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  padding: 10px;
  border: 1px solid transparent;
}
.techicon-block_inner a:hover{
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
  box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
  background: #e9fffa;
  border: 1px solid #27b98e;
}
.techicon-block_inner a:hover .techblock-inner__name{
  color:#212121;
}
.techicon-block_inner a:hover  .techblock-inner__arrow{
  background: #e9fffa;
  border: 1px solid #27b98e;
  color:#27b98e;
}
/*********** design page  ***********/
.in-banner__bg .inner-bannerbg--design{
  background: url(../images/ui-ux-design.jpg) no-repeat center 90px;
}
.soft-tech-heading {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 34px;
  margin-bottom: 10px;
}
.soft-tech-block__img-sec{
  margin-top:25px;
}
.soft-tech-block .tech-icons{
  display: block;
  float: left;
  width:100%;
}
.soft-tech-block .tech-icons li{
  -webkit-box-flex:initial;
  -ms-flex:initial;
  flex:none;
  max-width: initial;
  padding: 0;
  min-height: initial;
  border:none;
  margin:0 10px 18px 0px;
  text-align: center;
  position: static;
  float: left;
  list-style: none;
}
.soft-tech-block .tech-icons li:last-child{
  margin-right:0;
}
.soft-tech-block  .tech-icons li img, .soft-tech-block  .tech-icons li svg{
  position: relative;
  top:initial;
  left:initial;
  transform: none;
}

.cd-image-container {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 0em auto;
}
.cd-image-container img {
  display: block;
  width:100%;
}

.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #1976d2;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}
.cd-image-label.is-hidden {
  visibility: hidden;
}
.is-visible .cd-image-label {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  display: none;
  transform: translateY(0);
}

.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}
.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
  -webkit-animation: cd-bounce-in 0.7s;
  -moz-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}
.abs-close{
  position: absolute;
    right: 15px;
    top: 10px;
    font-size: 25px;
    color: red;
    z-index: 10;
}
@-webkit-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@-moz-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}
.cd-handle {
  position: absolute;
  height: 44px;
  width: 44px;
  /* center the element */
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: #1976d2 url("../images/design/cd-arrows.svg") no-repeat center center;
  cursor: move;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -moz-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  -o-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}
.cd-handle.draggable {
  /* change background color when element is active */
  background-color: #445b7c;
}
.is-visible .cd-handle {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}
.drag-mob-view__inner {
    margin: 40px 0 15px;
}
.sec-triangle{
  position: relative;
}
.sec-triangle:before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 167px;
  height: 450px;
  background: #f6f9fc;
  -webkit-transform: skew(0,-6deg);
  transform: skew(0,-6deg);
  z-index: -1;
}
.sec-triangle.module-space {
  margin-bottom: 20px;
}

/*********** system integration  ***********/


.in-banner__bg .inner-bannerbg--system-integration{
  background: url(../images/system-integration.jpg) no-repeat center -90px;
}
/********** floating icons *************/
.IconsContainer{
  width:3000px;
  height:460px;
  position:relative;
  left:50px
}
.Header-hero-guide{
  position:absolute;
  top:0;
  left:0
}
.Icon{
  width:150px;
  height:150px;
  margin:-75px 0 0 -75px;
  border-radius:50%;
  -webkit-box-shadow:0 15px 35px rgba(0,0,0,.1),0 3px 10px rgba(0,0,0,.07);
  box-shadow:0 15px 35px rgba(0,0,0,.1),0 3px 10px rgba(0,0,0,.07)
}
.Icon,.Icon span{
  position:absolute;
  will-change:transform,opacity
}
.Icon span{
  left:50%;
  bottom:-40px;
  padding:5px 12px;
  background:#fff;
  -webkit-box-shadow:0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07);
  box-shadow:0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07);
  border-radius:50px;
  white-space:nowrap;
  font-size:16px;
  font-weight:500;
  color:#566b78;
  pointer-events:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  -webkit-transform:translate(-50%,-10px);
  transform:translate(-50%,-10px);
  opacity:0;
  -webkit-transition-property:opacity,-webkit-transform;
  transition-property:opacity,-webkit-transform;
  transition-property:opacity,transform;
  transition-property:opacity,transform,-webkit-transform;
  -webkit-transition-duration:.25s;
  transition-duration:.25s;
  -webkit-transition-timing-function:ease-out;
  transition-timing-function:ease-out
}
.Icon:hover{
  z-index:9999
}
.Icon:hover span{
  opacity:.9;
  -webkit-transform:translate(-50%);
  transform:translate(-50%)
}
.Header-title{
  text-align:center;
  margin:0;
  padding:.2em .2em 2em
}
.Header-subTitle{
  color:#7795f8
}
.Icon-img0{
  background-position:-154px 0
}
.Icon-img0,.Icon-img1{
  width:152px;
  height:152px
}
.Icon-img1{
  background-position:-616px -462px
}
.Icon-img2{
  background-position:0 -154px
}
.Icon-img2,.Icon-img3{
  width:152px;
  height:152px
}
.Icon-img3{
  background-position:-154px -154px
}
.Icon-img4{
  background-position:-308px 0
}
.Icon-img4,.Icon-img5{
  width:152px;
  height:152px
}
.Icon-img5{
  background-position:-308px -154px
}
.Icon-img6{
  background-position:0 -308px
}
.Icon-img6,.Icon-img7{
  width:152px;
  height:152px
}
.Icon-img7{
  background-position:-154px -308px
}
.Icon-img8{
  background-position:-308px -308px
}
.Icon-img8,.Icon-img9{
  width:152px;
  height:152px
}
.Icon-img9{
  background-position:-462px 0
}
.Icon-img10{
  background-position:-462px -154px
}
.Icon-img10,.Icon-img11{
  width:152px;
  height:152px
}
.Icon-img11{
  background-position:-462px -308px
}
.Icon-img12{
  background-position:0 -462px
}
.Icon-img12,.Icon-img13{
  width:152px;
  height:152px
}
.Icon-img13{
  background-position:-154px -462px
}
.Icon-img14{
  background-position:-308px -462px
}
.Icon-img14,.Icon-img15{
  width:152px;
  height:152px
}
.Icon-img15{
  background-position:-462px -462px
}
.Icon-img16{
  background-position:-616px 0
}
.Icon-img16,.Icon-img17{
  width:152px;
  height:152px
}
.Icon-img17{
  background-position:-616px -154px
}
.Icon-img18{
  background-position:-616px -308px
}
.Icon-img18,.Icon-img19{
  width:152px;
  height:152px
}
.Icon-img19{
  background-position:0 0
}
.Icon-img20{
  background-position:0 -616px
}
.Icon-img20,.Icon-img21{
  width:152px;
  height:152px
}
.Icon-img21{
  background-position:-154px -616px
}
.Icon-img22{
  background-position:-308px -616px
}
.Icon-img22,.Icon-img23{
  width:152px;
  height:152px
}
.Icon-img23{
  background-position:-462px -616px
}
.Icon-img24{
  background-position:-616px -616px
}
.Icon-img24,.Icon-img25{
  width:152px;
  height:152px
}
.Icon-img25{
  background-position:-770px 0
}
.Icon-img26{
  background-position:-770px -154px
}
.Icon-img26,.Icon-img27{
  width:152px;
  height:152px
}
.Icon-img27{
  background-position:-770px -308px
}
.Icon-img28{
  background-position:-770px -462px
}
.Icon-img28,.Icon-img29{
  width:152px;
  height:152px
}
.Icon-img29{
  background-position:-770px -616px
}
.Icon-img30{
  background-position:0 -770px
}
.Icon-img30,.Icon-img31{
  width:152px;
  height:152px
}
.Icon-img31{
  background-position:-154px -770px
}
.Icon-img32{
  background-position:-308px -770px
}
.Icon-img32,.Icon-img33{
  width:152px;
  height:152px
}
.Icon-img33{
  background-position:-462px -770px
}
.Icon-img34{
  background-position:-616px -770px
}
.Icon-img34,.Icon-img35{
  width:152px;
  height:152px
}
.Icon-img35{
  background-position:-770px -770px
}
.Icon-img36{
  background-position:-924px 0
}
.Icon-img36,.Icon-img37{
  width:152px;
  height:152px
}
.Icon-img37{
  background-position:-924px -154px
}
.Icon-img38{
  background-position:-924px -308px;
  width:152px;
  height:152px
}
.Icon{
  opacity: 1!important;
  background-image: url("../images/header-logos.png");
}
/********** floating icons ends *************/
.file-upload {
	display: block;
	text-align: center;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
}
.file-upload .file-select {
	display: block;
  border: 1px solid #ceedfd;
	color: #34495e;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	text-align: left;
	background: #FFFFFF;
	overflow: hidden;
	position: relative;
}
.file-upload .file-select .file-select-button {
	background: #ceedfd;
	padding: 0 10px;
	display: inline-block;
	height: 40px;
	line-height: 40px;
}
.file-upload .file-select .file-select-name {
	line-height: 40px;
	display: inline-block;
	padding: 0 10px;
}
.file-upload .file-select:hover {
	border-color: #1b3e4c;
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}
.file-upload .file-select:hover .file-select-button {
	background: #1b3e4c;
	color: #FFFFFF;
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}
.file-upload.active .file-select {
	border-color: #3fa46a;
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}
.file-upload.active .file-select .file-select-button {
	background: #3fa46a;
	color: #FFFFFF;
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}
.file-upload .file-select input[type=file] {
	z-index: 100;
	cursor: pointer;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	filter: alpha(opacity=0);
}
.file-upload .file-select.file-select-disabled {
	opacity: 0.65;
}
.file-upload .file-select.file-select-disabled:hover {
	cursor: default;
	display: block;
	border: 2px solid #dce4ec;
	color: #34495e;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	margin-top: 5px;
	text-align: left;
	background: #FFFFFF;
	overflow: hidden;
	position: relative;
}
.file-upload .file-select.file-select-disabled:hover .file-select-button {
	background: #dce4ec;
	color: #666666;
	padding: 0 10px;
	display: inline-block;
	height: 40px;
	line-height: 40px;
}
.file-upload .file-select.file-select-disabled:hover .file-select-name {
	line-height: 40px;
	display: inline-block;
	padding: 0 10px;
}

/* end */
.client-sec--five li{
  width:20%;
}
.client-sec--six li{
  width:16%;
}
.client-sec--five li img {
  width: 100%;
  padding: 0 30px;
}
.client-sec--three li{
  width:33.33%;
  text-align: center;
}
.client-sec--three li img {
  width: auto;
  max-width:100%;
  margin:0 auto;
  padding: 0 30px;
}
.carousel-item{
  text-align: center;
}
.carousel-item .question-step__footer{
  margin:0;
}
/******************** better project teams **********************/
.layout--inner-page {
  position: relative;
  margin-top: -120px;
}
.layout--inner-page .card{
  min-height: 245px;
}
.layout--inner-page .card__header{
  font-size:22px;
  position: relative;
}
.layout--inner-page .card__header:after{
  position: absolute;
  content:"";
  border-bottom:3px solid #05c9ea;
  width:20%;
  left:40%;
  top:55px;
}
.layout--inner-page  .card__body p {
  padding: 18px 15px 0;
}
.horrizntl--color{
  background:transparent;
}
.inner-bannerbg--better-project {
  background: url(../images/better-project-team/better-project-team.jpg) no-repeat center 125px;
}

/********************** mobile development page *************************/
.in-banner__bg .inner-bannerbg--mobile-dev{
  background: url(../images/mobile-dev.jpg) no-repeat center 90px;
}
/********************** mobile development page *************************/
.in-banner__bg .inner-bannerbg--software-testing{
  background: url(../images/software-testing.jpg) no-repeat center 90px;
}
/********************** mobile development page *************************/
.in-banner__bg .inner-bannerbg--consulting{
  background: url(../images/consulting.jpg) no-repeat center 90px;
}
/*********** design page  ***********/
.in-banner__bg .inner-bannerbg--design{
  background: url(../images/ui-ux-design.jpg) no-repeat center 90px;
}
/*********** tooltip  ***********/
.tooltip .tooltip-inner{
  background-color:#1B3E4C;
  border-radius:20px;
}
.tooltip .arrow::before{
  border-top-color:#1B3E4C;
}
/* loader */
.loading {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
}

.spinner-load {
  background: #000
    url(../images/ajax-loader.gif) 0 0
    no-repeat;
  border: 0;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  box-shadow: 0 1px 1px -1px #fff;
  display: block;
  height: 46px;
  left: 50%;
  margin: -23px 0 0 -23px;
  opacity: 0.18;
  overflow: hidden;
  padding: 1px;
  position: fixed;
  text-align: center;
  top: 50%;
  width: 46px;
  z-index: 9999;
}

/*
*   Common Css
****************************/
label{
  font-weight: 600;
}
.btn-edit{
  padding: 3px 10px;
  margin-top: 10px;
  font-size: 12px;
  background-color: #22b2c8;
  border-color: #1a9ab1;
  color: #fff;
}
.btn-secondary{
  background-color: #006CDE;
  border-color:#006CDE;
  color:#fff;
}
.btn-default{
  background-color: #fbfbfb;
  border-color: #dbdbdb;
  color: #9E9E9E;
}
.btn-default:hover,
.btn-default:focus{
  color: #333;
  background-color: #ececec;
  border-color: #d8d8d8;
}
.content {
  padding-top: 85px;
}
.cd-header{
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16)!important;
}

.date-time-step__header {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}
.date-time-step__header h3{
  font-size:2rem;
}
.date-time-step__header .marker {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-color: #ccc;
  border-radius: 100%;
  margin-right: 15px;
  vertical-align: middle;
}
.pick-week {
  display: flex;
  flex-direction: row;
  align-items: center;
  float: right;
}
.pick-week__text {
  margin-right: 0.5rem;
}
.pick-week__btn a {
  padding: 0 0.5rem;
  font-size: 1.8em;
  display: inline-block;
  line-height: 1;
}

/*
*   Question process
****************************/
.alert-primary{
  border-color:#B4DEFD;
  background-color:#E3F2FD;
  padding: 8px 40px;
}
.alert-primary .lead{
  font-size:16px;
  color:#111111;
  font-weight: normal;
}

.alert-primary figure img{
  width: 75px;
}
.alert-primary .lead strong{
  font-weight: bolder;
}
.question-step__title {
  font-size: 20px;
  color: #3949AB;
  text-align: center;
}
.radio-button-list {
  display: flex;
  flex-wrap: wrap;
}
.radio-button-list__choice {
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width:1200px){
  .radio-button-list {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
  }
.radio-button-list__choice {
  max-width: 280px;
  padding-left: 10px;
  padding-right: 10px;
}
}
.radio-button-list__choice input[type=radio]{
  display:none;
}
.radio-button-list__choice label {
  width: 100%;
  height: 100%;
  padding: 25px 15px 25px;
  font-size: 20px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 0;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.radio-button-list__choice label:hover{
  background-color: #EDFFFA;
  border-color: #2BC198
}
.radio-button-list__choice.chosen input[type=radio]+label,
.radio-button-list__choice input[type=radio]:checked+label{
  background-color: #EDFFFA;
  border-color: #2BC198
}
.radio-button-list__choice label figure{
  margin-bottom: 2rem;
}
.radio-button-list__choice label figure img{
  height:90px;
}
.radio-button-list__choice label figure img.projectTeam_size-l{
  height:85px;
}
.radio-button-list__choice label figure img.projectTeam_size-m{
  height:80px;
}
.radio-button-list__choice label figure img.projectTeam_size-s{
  height:75px;
}
.radio-button-list__choice span {
  margin-top: 10px;
  text-align: center;
}
.question-step__footer{
  margin: 10px 0;
}
.progress-value {
  color: #9E9E9E;
  margin-top: 10px;
}

.btn-light.disabled, .btn-light:disabled {
  color: #9E9E9E;
  background-color: #F5F5F5;
  border-color: #E0E0E0;
  font-size: 30px;
  width: 380px;
}
.wall {
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #666666;
  font-size: 22px;
}
.wall-default .wall-body {
  background: #f5f5f5;
}
.wall-secondary .wall-body {
  background: #E3F2FD;
}
.wall-body {
  height: 100%;
  padding: 15px;
}
.wall-secondary,.wall-default{
  margin-top:0;
}
[class^="wall-"] h3 {
  font-size: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgb(230, 230, 230);
  color: #111111;
}
.wall-secondary h3{
  border-bottom-color:#B4DEFD;
}
[class^="wall-"] ul{
  padding-left: 0;
}
[class^="wall-"] ul li{
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}
[class^="wall-"] .links{
  margin-top: 20px;
}
[class^="wall-"] .links a{
  color: #39B1F7;
  display: block;
}
.table-grid {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-grid__tr {
  display: table-row;
}

.table-grid__tr label {
  display: table-cell;
  width: 190px;
  padding: 0;
}
.table-grid__tr span {
  display: table-cell;
  width:calc(100% - 190px);
  padding: 2px 0 2px 10px;
}
.text-md{
  font-size: 1rem;
}
/**** SVG ****/
.stack-icons-fill,.techicon-block_inner .cls-22{
  fill:#7e7e7e;
}
.techicon-block_inner a:hover .stack-icons-fill,.techicon-block_inner a:hover .cls-22{
  fill:#27b98e;
}
.stack-icons-stroke,.techicon-block_inner .cls-11,.techicon-block_inner .cls-33,.techicon-block_inner .cls-44{
  stroke:#7e7e7e!important;
}
.techicon-block_inner a:hover .stack-icons-stroke, .techicon-block_inner a:hover .cls-11,.techicon-block_inner a:hover .cls-33,.techicon-block_inner a:hover .cls-44{
  stroke:#27b98e!important;
}
.reset{
  font-size: 14px;
  color: #1d1d1d;
  line-height:20px;
  margin-bottom:0;
  font-weight:400;
}
.reset .reset-process{
  color: #3b749c;
  text-decoration: underline;
  cursor: pointer;
}
@media (min-width: 1200px){
  .container {
    max-width: 1170px;
  }
  .techicon-block {
    width: 85%;
    margin: 0 auto;
  }
  .btn-xlg {
    font-size: 25px;
    padding: 0.5rem 2rem;
}
}
@media (min-width: 1600px){
  .container {
      max-width: 1550px;
  }
  .horrizntl--pos{
    padding:30px 30px;
  }
  .techicon-block_inner br{
    display: none;
  }
  .lg--view{
    width:85%;
    margin:0 auto;
  }
  .testimonial p span {
    padding-left: 42px;
  }
  .layout .card {
    min-height: 434px;
  }
  .layout--inner-page .card{
    min-height: 245px;
  }
  .tick-listing li{
    font-size: 21px;
    line-height: 30px;
  }
  body .sec-heading {
    font-size: 42px;
    line-height: 50px;
  }
  .heading-group .sec-subheading {
    font-size: 28px;
  }
  p {
    font-size: 21px;
    line-height: 32px;
  }
  .b-card__body, .tech-card__body {
    font-size: 20px;
    line-height: 30px;
  }
  .b-card__header h3, .tech-card__body .body__heading{
    font-size:34px;
    line-height:38px;
  }
  .tech-card__body p {
    line-height: 30px;
    font-size:20px;
  }
  body .testimonial p {
    font-size: 30px;
    line-height: 40px;
    margin-bottom:0;
  }
  .horrizntl .form-group label {
    font-size: 17px;
  }
  .horrizntl--padding {
    padding: 35px 30px 30px;
  }
  footer li a{
    font-size: 16px;
    line-height: 20px;
  }
  footer h4 {
    font-size: 18px;
  }
  body .card__header {
    font-size: 24px;
  }
  .card__body p {
    font-size: 20px;
    line-height: 29px;
  }
  .testimonial__designation{
    font-size:18px;
    line-height: 24px;
  }
  .testimonial__author{
    font-size:24px;
    line-height: 29px;
  }
  body .horrizntl--innerpage .testimonial p {
    font-size: 23px;
    line-height: 32px;
  }
  .horrizntl--innerpage .testimonial p span {
    padding-left: 30px;
  }

.btn-sm{
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}
  .cd-header .btn{
    padding:7px 12px;
    font: 600 16px/24px proxima-nova, sans-serif;
  }
}
.note-sharelink {
  font-size: 15px;
  margin: 0px 0 0 0;
  padding: 0 20px;
  color: #5d5d5d;
  float: left;
  width: 100%;
}
.share-url {
 background: #ebebeb;
  padding: 8px 30px;
  border-radius: 5px;
  color: #777;
  display: table;
  margin: 40px auto 15px;
  font-size: 18px;
}
@media only screen and (min-width: 1230px) and (max-width: 1366px) {
  .radio-button-list__choice label figure img{
    height: 50px;
  }
  .radio-button-list__choice label figure img.projectTeam_size-l{
	  height:45px;
	}
	.radio-button-list__choice label figure img.projectTeam_size-m{
	  height:40px;
	}
	.radio-button-list__choice label figure img.projectTeam_size-s{
	  height:35px;
	}
  .radio-button-list__choice label{
    padding: 19px 15px 19px;
  }
  .radio-button-list__choice span{
    font-size:17px;
  }
  .radio-button-list__choice label figure {
      margin-bottom: 1rem;
  }
  .table-grid__tr label,.table-grid__tr span {
		padding:2px 10px 2px 0;
		font-size: 13px;
	}
}
@media only screen and (min-width: 992px) {
  .card {
      min-height: 395px;
 }
  .card__header {
      font-size: 19px;
 }
  .testimonial p {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.5px;
    display: inline-block;
    padding-left:0;
 }
  .horrizntl--innerpage .testimonial p {
    font-size: 23px;
    line-height: 34px;
  }
  .sec-heading {
      font-size: 35px;
      font-weight: 600;
 }
  .horrizntl.horrizntl--height .sec-heading {
      font-size: 31px;
 }
}
@media only screen and (min-width: 768px) {
  .cd-intro {
      height: 700px;
 }
  .cd-main-content p {
      font-size: 20px;
      font-size: 1.25rem;
 }
.wall-secondary,.wall-default{
   margin-top:1rem;
 }
  .cd-primary-nav li {
      font-size: 30px;
      font-size: 1.875rem;
 }
  .cd-primary-nav .cd-label {
      font-size: 16px;
      font-size: 1rem;
 }
  .cd-header {
      -webkit-transition: background-color 0.3s;
      -moz-transition: background-color 0.3s;
      transition: background-color 0.3s;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
 }
  .nav-header .hamburger {
      right: 0rem;
      top: 22px;
      position: absolute;
 }
  .nav-header .hamburger.is-open {
      right: 0rem;
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      -o-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
      display: none;
 }
  #wrapper.toggled .nav-header .hamburger.is-open {
      right: 0;
      display: inline-block;
      cursor: pointer;
 }
  .cd-header.is-fixed {
     /* when the user scrolls down, we hide the header right above the viewport */
      position: fixed;
      top: -8px;
      background-color: rgba(255, 255, 255, 1);
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
      transition: transform 0.3s;
      height: 77px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
 }
  .cd-header.is-visible {
     /* if the user changes the scrolling direction, we show the header
      -webkit-transform: translate3d(0, 100%, 0);
      -moz-transform: translate3d(0, 100%, 0);
      -ms-transform: translate3d(0, 100%, 0);
      -o-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);*/
 }
 .cd-header.is-visible .hamburger {
  top:27px;
}
  .cd-header.is-visible .cd-logo a img, .cd-header.menu-is-open .cd-logo a img {
      display: none;
 }
  .cd-header.is-visible .cd-logo a, .cd-header.menu-is-open .cd-logo a {
      background: url(../images/logo.png) no-repeat;
      width: 210px;
      height: 56px;
      display: inline-block;
      background-size: 100%;
 }
  .cd-header.menu-is-open {
     /* add a background color to the header when the navigation is open */
      background-color: rgba(2, 23, 37, 0.96);
 }
  .cd-intro h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-primary-nav {
    padding: 104px 0 90px;
  }
  .cd-primary-nav-trigger {
    width: 100px;
    padding-left: 1em;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-primary-nav-trigger .cd-menu-text {
    display: inline-block;
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
  .cd-secondary-nav {
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .cd-header {
    height: 85px;
    background: rgba(255,255,255,.2);
    box-shadow: none;
  }
  .cd-header--inner{
    background: rgba(255,255,255,1);
  }
  .cd-header .container {
    height: 85px;
    position: relative;
    max-width: 95%;   
  }
  .banner-outer__banner .container {
    max-width: 85%;
  }
}
@media (max-width:1440px){
  .banner-textblock__heading{
    font-size: 40px;
    line-height: 45px;
  }
  .in-banner .banner-textblock p{
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 1201px) {
  .banner-outer__banner .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }
  .bg--padding {
    padding: 80px 0;
  }
  .module-space {
      margin: 100px 0;
  }
  .layout--inner-page {
   margin-top: -120px;
  }
  .module-space--top-zero {
    margin-top: -100px;
  }
  .floating-icon-btm{
    top:30px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .floating-icon-btm{
    top:20px;
  }
  .banner-outer__banner .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }
  .layout--inner-page .card {
    min-height: 270px;
  }
  .tick-listing li{
    min-height: 82px;
    font-size: 18px;
    line-height: 28px;
  }
  .tech-icons li img {
    max-width: 82px;
    max-height: 65px;
  }
  .tech-icons li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .techicon-block {
    width: 94%;
    margin: 0 auto;
  }
  .in-banner__bg .inner-bannerbg {
    background-position: 80% 90px;
  }
  .in-banner__bg .inner-bannerbg--system-integration{
      background-position: 80% -90px;
  }
  .horrizntl.horrizntl--height .sec-heading {
    font-size: 27px;
  }
  .testimonial p br {
    display: none;
  }
  .footer-row__col{
    width:21%;
  }
  .footer-row .footer-row__col:nth-child(3) {
    width: 15%;
  }
  .footer-row .footer-row__col:last-child {
    width: 25%;
  }
  .footer-row .footer-row__col:nth-child(2) {
    width: 20%;
  }
  .footer-row .footer-row__col:first-child {
    width: 19%;
  }
  .footer-row .footer-row__col:nth-child(2) h4 ,.footer-row .footer-row__col:last-child h4,.footer-row .footer-row__col:nth-child(4) h4{
    padding-top: 11px;
  }
  footer h4 {
    min-height: 35px;
  }
  .f-col__heading {
    margin-top: 17px;
  }
  .b-card__body, .tech-card__body {
    font-size: 18px;
    line-height: 27px;
  }
  .tech-card__body p {
    line-height: 28px;
    margin: 0;
}
p {
    font-size: 18px;
    line-height: 28px;
  }
  .tech-card{
    min-height: 412px;
  }
  .tech-card__body{
    min-height:230px;
  }
  .bg--padding {
    padding: 65px 0;
  }
  .module-space {
      margin: 80px 0;
  }
  .layout--inner-page {
    margin-top: -80px;
  }
  .module-space--top-zero {
    margin-top: -80px;
  }
  .horrizntl--padding {
    padding: 35px 30px 10px;
  }
  .tech-sec .col-sm-4 {
    margin: 20px 0 44px 0;
  }
  .b-card__header h3, .tech-card__body .body__heading {
    font-size:24px;
  }
  .sec-heading {
    font-size: 30px;
  }
  .testimonial p {
    font-size: 21px;
    line-height: 30px;
  }
  .horrizntl--innerpage .testimonial p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 768px) {
  .radio-button-list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .radio-button-list__choice {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
	max-height:250px;
}
  .radio-button-list__choice label figure img{
    max-width: 100%;
  }
  .radio-button-list--item-4 .col{
    flex: 0 0 25%;
    max-width: 25%;
}
  .radio-button-list--item-5 .col:nth-child(1),
  .radio-button-list--item-5 .col:nth-child(2),
  .radio-button-list--item-5 .col:nth-child(3) {
    flex: 0 0 33%;
}
.radio-button-list--item-5 .col:nth-child(4),
  .radio-button-list--item-5 .col:nth-child(5) {
    flex: 0 0 50%;
}
.radio-button-list--item-6 .col{
    flex: 0 0 33%;
}
.radio-button-list--item-7 .col:nth-child(1),
.radio-button-list--item-7 .col:nth-child(2),
.radio-button-list--item-7 .col:nth-child(3),
.radio-button-list--item-7 .col:nth-child(4){
  flex: 0 0 25%;
}
.radio-button-list--item-7 .col:nth-child(5),
.radio-button-list--item-7 .col:nth-child(6),
.radio-button-list--item-7 .col:nth-child(7){
  flex: 0 0 33%;
}
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .row.justify-content-center.tech-sec .col-sm-4 {
    padding: 0 7px;
  }
  .row.justify-content-center.tech-sec {
    margin: 0 -7px;
  }
  .card {
    min-height: 395px;
  }
  .layout--inner-page .card__header {
    width: 90%;
    margin: 0 auto;
  }
  .layout--inner-page .card__header:after{
    top:76px;
    width: 24%;
    left: 38%;
  }
  .card .card__body {
    padding-bottom: 24px;
  }
  .horrizntl--padding {
    padding: 30px 30px 0;
  }
  .module-space.module-space-carousel {
    margin: 45px 0 90px;
  }
  .b-card__header h3, .tech-card__body .body__heading {
    font-size:24px;
  }
  .sec-heading {
    font-size: 30px;
  }
  .sec-triangle:before{
    top:91px;
  }
  .floating-icon-btm{
    top:20px;
  }
  .layout--inner-page .card {
    min-height: 357px;
  }
  .radio-button-list__choice label figure img{
    max-width: 100%;
  }

}
@media only screen and (max-width: 1024px) {
  .banner-outer__banner {
    background-attachment: initial;
    background-position: center center;
  }
  body .tech-card__body {
    min-height: 215px;
  }
  body .tech-card {
    min-height: 398px;
  }
 .tech-card.effect-hover:hover .card-back ,.card-back{
    -webkit-transform: none;
    transform: none;
    z-index: 0;
  }
  .tech-card:hover .card-back a{
    color: #fff;
  }
  .tech-card.effect-hover:hover .card-front {
    -webkit-transform: none;
    transform: none;
   }
  .tech-card:hover .body__heading, .tech-card:hover .tech-card__body{
    color: initial;
    text-decoration: none;
  }
  .card-front .link-hvr {
    display: inline-block;
  }
  .card-front .link-hvr:hover ,.tech-card:hover a {
    color:#6772E5;
  }
  .d-sm-inline-block.d-lg-none{
    display: inline-block !important;
  }
  .tect-sm-mr {
    margin-right: 10px;
  }
  .techmob-flip-effect {
    position: relative;
    top: 1px;
    float: left;
  }
  .techmob-rev-flip{
    float: left;
    margin: 0 0 0 20px;
    top: 1px;
  }
  .tech-card__footer a {
    font-size: 16px;
  }
  .card-back__footer a.link-hvr{
    right: -27px;
  }
}
@media only screen and (max-width: 991px) {
  .card__header {
      font-size: 19px;
 }
  .card__body p {
      font-size: 16px;
      line-height: 24px;
 }
  .testimonial p {
      font-size: 21px;
      line-height: 33px;
 }
  .testimonial p br {
      display: none;
 }
  .sec-heading {
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 30px;
 }
  .b-card__header h3, .tech-card__body .body__heading {
      font-size: 21px;
      margin-bottom: 7px;
 }
  .b-card__body, .tech-card__body, .tech-card__body p {
      font-size: 16px;
      line-height: 26px;
 }
  .tech-card {
      min-height: 372px;
 }
  .tech-card__body {
      min-height: 190px;
 }
  .tick-listing li:last-child {
      clear: both;
 }
  .horrizntl.horrizntl--height .sec-heading {
      font-size: 23px;
      line-height: 32px;
 }
  .horrizntl .form-group label {
      font-size: 15px;
      padding: 0 0 0 15px;
      max-width: 27%;
      flex: 0 0 27%;
      -ms-flex: 0 0 27%;
 }
  .horrizntl .form-group .col-sm-10 {
      max-width: 73%;
      flex: 0 0 73%;
      -ms-flex: 0 0 73%;
 }
  .download-pdf {
      margin: 25px 0 0 0;
 }
  .horrizntl--pos {
      position: relative;
      margin-left: -192px;
      padding: 15px 30px 10px;
 }
  .footer-bottom__inline-links li {
    float: left;
    margin: 0 0 0 20px;
 }
  .tick-listing li {
      padding: 0 25px 25px 39px;
      font-size: 18px;
      line-height: 30px;
 }
  .banner-outer__banner .col-sm-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
      flex: 0 0 80%;
      max-width: 80%;
 }
  .banner__tagline {
      font-size: 41px;
 }
  .banner-outer__banner h1 {
      font-size: 46px;
 }
  .client-sec li {
      float: left;
      width: 25%;
      overflow: hidden;
      height: 60px;
      position: relative;
      padding: 0 10px;
      margin-bottom: 20px;
 }
  .client-sec li img {
      padding: 0 10px;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      max-height: 100%;
      max-width: 80%;
      margin: auto;
      text-align: center;
 }
  .tick-listing--padding {
      padding: 45px 0 0 0;
 }
  .heading-group .sec-subheading {
      font-size: 20px;
 }
  .client-sec ul {
      margin-bottom: 0;
 }
  .tech-sec .col-sm-4 {
      margin: 25px 0 25px 0;
 }
  .client-logos-highres{
    display: none;
  }
  .client-logos-smres{
    display: block;
  }
  .tech-icons li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .tech-icons li img {
    max-height: 60px;
    max-width: 75px;
  }
  .techicon-block {
    width: 100%;
  }
  .in-banner__bg .inner-bannerbg {
    background-position: 80% 90px;
  }
  .in-banner__bg .inner-bannerbg--system-integration{
    background-position: 70% -90px;
  }
  .cd-header.cd-header--inner {
    background: rgba(255, 255, 255, 1);
  }
  .mob-dwpdf .col-sm-8,.mob--view .col-sm-8, .mob-dwpdf .col-sm-4 ,.mob--view .col-sm-4{
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
  }
  .horrizntl--pos {
      position: relative;
      margin: 30px 0 0;
      padding: 0 0 10px;
  }
  .footer-row .footer-row__col:nth-child(4){
    width:33.3333%;
    clear:both;
    margin:25px 0 0 0;
  }
  .footer-row .footer-row__col:nth-child(3) {
    width:33.3333%;
  }
  .footer-row .footer-row__col:last-child {
    width:33.3333%;
    margin:25px 0 0 0;
  }
  .footer-row .footer-row__col:nth-child(2) {
    width:33.3333%;
  }
  .footer-row .footer-row__col:first-child {
    width:33.3333%;
  }
  .softeng-block__heading ,.soft-tech-heading{
    font-size:28px;
  }
  .module-space {
    margin: 70px 0;
  }
  .module-space--top-zero {
    margin-top: -70px;
  }
  .layout--inner-page {
   margin-top: -70px;
  }
  .bg--padding {
    padding:60px 0;
  }
 p{
    font-size:18px;
    line-height: 30px;
  }
  .inner-banner-btm {
    font-size: 20px;
    line-height: 33px;
    font-weight: 400;
  }
  .techicon-block_inner a{
    padding:10px 5px;
  }
  .in-banner .banner-textblock p{
    font-size:37px;
  }
  .download-pdf .form-group:last-child{
    margin-bottom:0;
  }
  .techmob-flip-effect {
    float: none;
    margin: 0 0 7px;
}
  .card-back__footer a.link-hvr {
    right: 0px;
  }
  body .tech-card {
    min-height: 430px;
  }
  .radio-button-list__choice label{
    padding: 15px;
    font-size: 18px;
  }
  .radio-button-list__choice label figure {
    margin-bottom: 1rem;
}
.radio-button-list__choice label figure img {
  height: 70px;
}
@media only screen and (max-width: 767px) {
  .cd-image-container{
    display: none!important;
  }
  .sec-heading br{
    display: none;
  }
  .IconsContainer-outer{
    overflow: hidden;
  }
  .floating-icon-btm{
    top:0;
  }
  .layout .col-sm-4, .horrizntl .col-sm-3, .tech-sec .col-sm-4 {
      width: 100%;
      max-width: 100%;
      flex: 0 0 100%;
      -ms-flex: 0 0 100%;
 }
  .tick-listing li:last-child, .tick-listing li {
      width: 100%;
      padding: 0 25px 20px 39px;
      font-size: 16px;
      line-height: 28px;
      font-weight: 400;
 }
 .b-card__body, .tech-card__body, .tech-card__body p ,.card__body p{
   font-weight:400;
 }
 footer .col-sm-3 {
      max-width: 50%;
      flex: 0 0 50%;
      -ms-flex: 0 0 50%;
      margin: 0 0 35px;
 }
  .card {
      min-height: initial;
      box-shadow: 1px 1px 6px rgba(0,0,0,.2);
      margin-bottom: 30px;
 }
  .card__body .img-fluid {
      width: 100%;
 }
  .b-card {
      margin: 0;
      border-bottom: 1px solid #ebebeb;
      padding:30px 0;
 }
  body .tech-card__body {
      min-height: 130px;
 }
  body .tech-card {
      min-height: 315px;
 }
  .tech-sec .col-sm-4 {
      margin: 20px 0 20px 0;
 }
  .banner-outer__banner .col-sm-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 90%;
      flex: 0 0 90%;
      max-width: 90%;
 }
 .b-card--border-none{
  border-bottom: none;
}
  .hamburger {
      position: absolute;
      right: 2rem;
      top: 23px;
 }
  #wrapper.toggled #sidebar-wrapper {
      width: 100%;
      right: 430px;
 }
  .tick-listing--padding {
      padding: 40px 20px 20px;
 }
  .testimonial p:after {
      padding-left: 15px;
 }
  .sec-heading {
      font-size: 28px;
      font-weight: 600;
 }
  .heading-group .sec-subheading {
      font-size: 22px;
 }
  .horrizntl.horrizntl--position.horrizntl--padding .call-to-action {
      margin: 20px 0 0 0;
 }
 .horrizntl--padding {
  padding: 25px 0 10px;
}
  .footer-bottom .container {
      padding: 20px 15px 0;
 }
  .client-sec ul {
      margin-bottom: 0;
      float: left;
      width: 100%;
 }
  .client-sec li {
      float: left;
      width: 50%;
      overflow: hidden;
      height: 60px;
      position: relative;
      padding: 0 10px;
      margin-bottom: 20px;
 }
  .client-sec li img {
      padding: 0 10px;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      max-height: 100%;
      max-width: 90%;
      margin: auto;
      text-align: center;
 }
  .bg-wrapper {
      width: 100%;
      padding: 0 15px;
 }
  .horrizntl--position {
      position: relative;
      margin-top: 0;
 }
  .module-space {
      margin: 50px 0;
 }
 .module-space--top-zero .row.mt-6 {
  margin-top: 3rem;
  }
  .banner-outer {
      height: 550px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
 }
  .layout--position {
      margin: -49px 0 0 0;
 }
  .banner-outer__banner {
      min-height: 500px;
      padding-top: 140px;
 }
  .cd-header {
    background: rgba(255, 255, 255, 1);
  }
  .banner-outer__banner .container .col-sm-6 {
      background: rgba(255,255,255,.6);
      width: 90%;
      margin: 0 auto;
      display: table;
      padding: 10px 10px 20px;
 }
  .banner-outer__banner h1 {
      font-size: 26px;
      line-height: 45px;
      margin-bottom: 10px;
      text-align: center;
 }
  .banner__tagline {
      font-size: 23px;
      line-height: 30px;
      text-align: center;
 }
  .banner__tagline-operator {
      max-width: 100%;
      font-size: 30px;
      padding: 6px 0 10px;
 }
 .tech-card.effect-hover:hover .card-front {
    -webkit-transform: none;
    transform: none;
  }
 .tech-card.effect-hover:hover .card-back {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
  .card-back{
    -webkit-transform: none;
    transform: none;
  }
  .tech-card:hover .body__heading, .tech-card:hover .tech-card__body, .tech-card:hover a {
    color: initial;
    text-decoration: none;
  }
  .tech-card:hover .tech-card__footer  a {
    color: #6772E5;
  }
 .tect-sm-mr{
   margin-right:25px;
 }
 .tech-card .techmob-flip-effect:hover{
   text-decoration: underline;
 }
 .tech-card__footer a {
  font-size: 16px;
  }
  .tech-card:hover .card-back__footer a,.card-back__footer a:hover{
    color:#fff;
    text-decoration: none;
  }
  .tech-card.effect-hover:hover .card-back{
    z-index:0;
  }
  .client-logos-smres .carousel {
    margin-bottom: 95px;
    margin-top: 60px;
  }
  .client-sec--five.client-logos-smres .carousel,.client-sec--three.client-logos-smres .carousel {
    margin-bottom: 34px;
    margin-top: 20px;
  }
  .bg--padding {
    padding: 40px 0;
  }
  .bg--lightgrey .call-to-action.mt-4 {
    margin-top: 0rem !important;
  }
  .techicon-block_inner ,.techicon-block--four  .techicon-block_inner {
    float: none;
    padding: 0 15px;
    margin-bottom: 25px;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
  }
  .softeng-block__heading ,.soft-tech-heading{
    font-size: 24px;
 }
 .module-space--mobview{
   margin:30px 0 0;
 }
 .banner-textblock__heading{
    font-size: 28px;
    line-height: 45px;
    padding-top: 100px;
    padding-bottom: 0px;
  }
  .in-banner .banner-textblock p {
    font-size: 27px;
    line-height: 35px;
  }
  .in-banner {
    height:500px;
  }
  .in-banner__bg .inner-bannerbg{
    height:100%;
  }
  .testimonial p span {
    padding-left: 25px;
    padding-right: 22px;
    font-size: 18px;
    line-height: 28px;
}
  .footer-row .footer-row__col:first-child ,
  .footer-row .footer-row__col:nth-child(2),.footer-row .footer-row__col:nth-child(3),
  .footer-row .footer-row__col:nth-child(4),.footer-row .footer-row__col:last-child{
    width:100%;
    margin: 25px 0 0 0;
  }
  .inner-banner-btm {
    font-size: 18px;
    line-height: 30px;
  }
  .f-col__heading {
    margin-top: 15px;
  }
  .in-banner__bg .inner-bannerbg {
    background-position: 80% 80px;
  }
  .in-banner__bg .inner-bannerbg--system-integration{
    background-position: 60% -170px;
  }
  .techicon-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex: initial;
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
  }
  p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
  }
  .techmob-rev-flip {
    float: none;
  }
  .banner-textblock {
    max-width: 382px;
  }
  .in-banner__bg .inner-bannerbg,.in-banner__bg{
    transform:none;
    -webkit-transform:none;
  }
  .inner-bannerbg.inner-bannerbg--design {
    background-position: center 65px;
  }
  .sec-triangle:before{
    -webkit-transform: none;
    transform: none;
    background: transparent;
  }
  .layout--inner-page .card {
    min-height: initial;
  }
  .alert-primary{
    padding: 15px;
    margin-bottom: 0;
  }
  .alert-primary .lead {
    font-size: 16px;
  }
  .question-step__title{
    font-size:25px;
  }
  .radio-button-list{
    margin-right: -5px;
    margin-left: -5px;
  }
  .radio-button-list__choice {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}
  .radio-button-list__choice label{
    padding:15px;
    font-size: 16px;
  }
  .radio-button-list__choice label figure{
    margin-bottom: 1rem;
  }
.radio-button-list__choice label figure img {
	height: 70px;
}
.question-step__footer {
  margin: 15px 0;
}
.radio-button-list--item-3 .col:nth-child(-n+2),
.radio-button-list--item-5 .col:nth-child(-n+4),
.radio-button-list--item-7 .col:nth-child(-n+6),
.radio-button-list--item-4 .col,
.radio-button-list--item-6 .col{
  flex: 0 0 50%;
  max-width: 50%;
}
  .wall-secondary, .wall-default {
    margin-top: 1.8rem;
  }
  .carousel-item .question-step__footer {
    margin: 1.5em 0 0 0;
  }
   .sec-subheading.subheading--sm {
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 630px) {
  #sidebar-wrapper .sidebar-nav {
      position: relative;
 }
  .nav-outer {
      width: 100%;
      float: left;
      position: static;
      top: inherit;
      padding: 0;
      height: initial;
 }
  .toggled .hamburger {
      right: 0;
 }
  .cd-secondary-nav {
      display: none;
 }
  .hamburger {
      top: 19px;
 }
  footer .col-sm-3 {
      max-width: 100%;
      flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      margin: 0 0 35px;
 }
  .banner__btn a, .call-to-action a {
      font: 600 16px/27px proxima-nova, sans-serif;
      text-shadow: none;
      min-width: 217px;
      min-height: 40px;
 }
  .testimonial p {
      padding: 0;
      font-size: 20px;
      line-height: 30px;
 }
  .sec-heading {
      font-size: 25px;
      font-weight: 600;
 }
  .horrizntl .form-group .col-sm-10 {
      max-width: 67%;
      flex: 0 0 67%;
      -ms-flex: 0 0 67%;
 }
  .horrizntl .form-group label {
      font-size: 15px;
      padding: 0 0 0 15px;
      max-width: 33%;
      flex: 0 0 33%;
      -ms-flex: 0 0 33%;
 }
 .heading-group .sec-subheading {
    font-size: 19px;
  }
}
@media only screen and (max-width: 575px) {
  .text-xs-center{
    text-align: center
  }
  .wall ul li{
    font-size: 15px;
  }
  .wall-secondary .wall-body ul li{
    word-break: break-word;
  }
}
@media only screen and (max-width: 430px) {
  .tech-card {
      min-height: 320px;
 }
  body .tech-card__body {
      min-height: 195px;
      padding-bottom: 20px;
 }
  body .tech-card {
      min-height: 382px;
 }
  .cd-logo img {
      max-width: 185px;
 }
  .cd-header {
      height: 70px;
 }
  .hamburger {
      top: 19px;
      right: 1.3rem;
 }
  .nav-header .btn {
      font-size: 13px;
      padding: 4px 10px 5px;
 }
  .navbar {
      padding: .5rem 1rem;
 }
  .banner__tagline {
      font-size: 21px;
 }
  .banner-outer__banner h1 {
    font-size: 23px;
 }
 .banner-textblock__heading{
    font-size: 25px;
    line-height: 40px;
    padding-top: 83px;
  }
  .in-banner .banner-textblock p {
    font-size: 19px;
    line-height: 26px;
  }
  .in-banner {
    height:470px;
  }
  .horrizntl--innerpage .testimonial__author {
    font-size:18px;
    line-height: 23px;
  }
  .banner-textblock {
    max-width: 382px;
  }
}
@media only screen and (max-width: 400px) {
  .in-banner .banner-textblock p {
      font-size: 20px;
      line-height: 26px;
  }
  .banner-textblock__heading {
    font-size: 21px;
    line-height: 40px;
    padding-top: 83px;
  }
}
