/* http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/************************************* */
/* RESET STYLES END */
/************************************* */
/************************************* */
/* COMMON STYLES START */
/************************************* */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 1em;
  line-height: 1.1em;
  height: 100%;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  border: none;
  text-decoration: none;
}

h1 {
  font-size: 2.8em;
  line-height: 1em;
  margin: 0;
  padding-bottom: 20px;
}

h2 {
  font-size: 1.4em;
  line-height: 1.4em;
  color: #0087ca;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.1em;
  line-height: 1.2em;
}

p {
  font-size: 18px;
  line-height: 1.4em;
  color: black;
}

p b {
  font-weight: bold;
}

.fixed {
  position: fixed;
}

.stop-scrolling {
  overflow: hidden;
  position: fixed;
}

.mobileMenu.show {
  height: 100%;
  overflow: visible;
  overflow-y: scroll;
}

.scrolling {
  overflow: auto;
  max-height: 98%;
}

.clearfix:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

/************************************* */
/* COMMON STYLES END */
/************************************* */
@media only screen and (max-width: 700px) {
  html, body {
    font-size: 0.95em;
  }
  h1 {
    padding-top: 25px;
  }
}

/************************************* */
/* HEADER STYLES START */
/************************************* */
header {
  float: left;
  width: 100%;
  background-color: white;
  z-index: 99999;
  position: absolute;
  -webkit-box-shadow: 0px -2px 17px 4px rgba(0, 0, 0, 0.54);
  -moz-box-shadow: 0px -2px 17px 4px rgba(0, 0, 0, 0.54);
  box-shadow: 0px -2px 17px 4px rgba(0, 0, 0, 0.54);
}

.headercontainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  padding: 15px 0 0 20px;
}

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0 20px 0 0;
  overflow: hidden;
  float: right;
}

ul.topnav li {
  float: left;
  vertical-align: middle;
}

ul.topnav li a {
  display: table-cell;
  color: black;
  text-align: center;
  padding: 10px 15px 0 20px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
  height: 76px;
  vertical-align: middle;
}

ul.topnav li a:hover {
  background-color: #1cb7a3;
  color: white;
}

ul.topnav li a:active {
  background-color: black;
}

ul.topnav li .tools {
  text-transform: uppercase;
  color: #0087ca;
}

ul.topnav .divider {
  top: 25px;
  width: 1px;
  height: 40px;
  background-color: #d5d5d5;
  display: block;
  position: relative;
}

.topnav .startups {
  padding: 10px 40px 0 40px;
}

.mobile-nav {
  display: none;
}

.curNav {
  background-color: #1cb7a3;
}

ul.topnav .curNav a {
  color: white;
}

.shadowContainer {
  background-color: #363636;
  height: 1px;
}

@media only screen and (max-width: 1120px) {
  .mobile-nav {
    display: block;
  }
  .topnav {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .mainnav {
    top: 0;
    margin: 0;
    position: absolute;
  }
  .headercontainer .logo img {
    width: 200px;
    padding-bottom: 16px;
    overflow: hidden;
  }
}

/************************************* */
/* HOMEPAGE STYLES START */
/************************************* */
.homeContainer {
  height: 100vh;
  clear: both;
}

.homeContainer p {
  color: white;
}

.imgcontainter {
  position: relative;
  float: left;
  width: 50%;
  height: 100vh;
  background-color: black;
  color: white;
}

.imgcontainter img {
  margin-top: 80px;
  width: 100%;
  z-index: 0;
}

.imgcontainter h1 {
  text-transform: uppercase;
  text-align: center;
}

.imgcontainter h2 {
  padding-top: 45%;
}

.imgcontainter p {
  padding-top: 15px;
}

.blue {
  background-image: url("../images/left.png");
  background-position: 0;
  background-size: cover;
  background-color: #0087ca;
  height: 100%;
  min-height: 700px;
}

.black {
  background-image: url("../images/right.png");
  background-position: 100%;
  background-size: cover;
  background-color: black;
  height: 100%;
  min-height: 700px;
}

.introText {
  position: absolute;
  z-index: 100;
  margin: 0 auto;
  padding: 0 50px;
  top: 150px;
}

.introText h2, .introText p {
  color: white;
}

.mobileTextIntro {
  display: none;
}

@media only screen and (max-width: 990px) {
  .blue {
    background-image: url("../images/left-sm.png");
    background-size: contain;
    background-position: 0 30px;
    background-repeat: no-repeat;
  }
  .black {
    background-image: url("../images/right-sm.png");
    background-size: contain;
    background-position: 0 30px;
    background-repeat: no-repeat;
  }
}

@media only screen and (max-width: 600px) {
  .introText {
    top: 125px;
  }
  .introText h1 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 500px) {
  .introText {
    display: none;
  }
  .imgcontainter {
    height: 100vh;
  }
  .mobileTextIntro {
    display: block;
    z-index: 1100;
    position: absolute;
    color: black;
    width: 100%;
    top: 150px;
    background-image: url("../images/hp-bg-tile.gif");
    background-position: top center;
    background-repeat: repeat;
  }
  .mobileTextIntro h1 {
    font-size: 2em;
    text-transform: uppercase;
    color: black;
  }
  .mobileTextIntro h2 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #008ac6;
  }
  .mobileTextIntro p {
    color: black;
  }
  h1:nth-of-type(2) {
    margin-top: 25px;
  }
  .mobileBG {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px 40px 40px;
    width: 80%;
    margin: 0 auto 50px auto;
  }
}

/* Landscape */
@media only screen and (max-device-width: 667px) and (orientation: landscape) {
  .imgcontainter {
    height: 600px;
  }
}

/************************************* */
/* HOMEPAGE STYLES END */
/************************************* */
/************************************* */
/* TIMELINE STYLES */
/************************************* */
#timelineContainer .timeline-item:after,
#timelineContainer .timeline-item:before {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}

#timelineContainer .timeline-item {
  position: relative;
}

#timelineContainer:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}

#timelineContainer {
  width: 100%;
  margin: 30px auto;
  position: relative;
  padding: 0 10px;
  max-width: 980px;
}

.timeline-item {
  padding: 0 95px;
}

.calloutContainer {
  width: 100%;
  background-color: #f5f5f5;
  padding: 70px 0;
}

.calloutContainer h2 {
  width: 100%;
  text-align: center;
  color: black;
  text-transform: uppercase;
}

/* center bar */
#timelineContainer:before {
  content: "";
  width: 3px;
  height: 90%;
  background: #b4b4b4;
  left: 50%;
  top: 0;
  position: absolute;
  margin-top: 10px;
}

.timeline-content {
  position: relative;
  display: inline-block;
  width: 45%;
  padding: 0 25px 0 10px;
  top: 0;
  text-align: right;
}

.right .timeline-content {
  padding: 0 10px 0 25px;
  float: right;
  text-align: left;
}

#timelineContainer h3 {
  font-size: 1em;
  margin: 20px 0 0 0;
  padding: 0;
  font-weight: bold;
}

#timelineContainer p {
  font-size: 0.9em;
  line-height: 1.6em;
  margin: 0;
  padding: 0;
}

#timelineContainer svg {
  width: 4em;
  position: absolute;
  z-index: 1000;
  padding: 5px;
  left: calc(50% - 1.9em);
  width: 60px;
  height: 60px;
}

.svg-green {
  fill: #1CB5A2;
}

.svg-white {
  fill: #FFFFFF;
}

.bar {
  display: block;
  height: 3px;
  width: 50px;
  background: #b4b4b4;
  position: absolute;
  top: 2em;
  right: calc(50% - 5px);
}

.right .bar {
  right: calc(50% - 45px);
}

.timeline-item:last-of-type {
  background: #f5f5f6;
  background: linear-gradient(to bottom, rgba(245, 245, 246, 0) 0%, rgba(245, 245, 246, 0) 5%, #f5f5f6 5%, #f5f5f6 100%);
}

.up20px {
  top: -20px;
}

.up10px {
  top: -10px;
}

@media only screen and (max-width: 700px) {
  .timeline-item {
    padding: 0;
    width: 100%;
  }
  .timeline-content {
    width: 80%;
    padding-left: 30px;
  }
  #timelineContainer:before {
    display: none;
  }
  .bar {
    display: none;
  }
  #timelineContainer svg {
    position: relative;
    float: left;
    z-index: 1000;
    padding: 5px;
    left: 20px;
  }
  .timeline-content p, .timeline-content h3 {
    text-align: left;
  }
  .right .timeline-content {
    padding-left: 30px;
    float: left;
  }
  .up20px {
    top: 0;
  }
  .up10px {
    top: 0;
  }
  .calloutContainer {
    margin: 40px 0 0 0;
    padding: 50px 0;
  }
}

/************************************* */
/* TIMELINE STYLES */
/************************************* */
/************************************* */
/* MOBILE NAV */
/************************************* */
.container li {
  margin-bottom: 10px;
}

.menuTrigger {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px 25px 0 25px;
  height: 75px;
  display: inline-block;
  display: none;
  outline: none;
  transition: transform 0.3s cubic-bezier(0, 0.52, 0, 1);
}

.menuTrigger:hover {
  background-color: #0087ca;
  cursor: pointer;
  color: #ffffff;
}

.mobileMenu {
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  position: fixed;
  background-color: #272829;
  top: 0;
  left: 0;
  transform: translate3d(0, -100vh, 0);
  transition: transform 0.3s cubic-bezier(0, 0.52, 0, 1);
}

.mobileMenu a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 25px 0;
  font-size: 1.4em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobileMenu a:hover {
  background-color: #0087ca;
}

.mobileMenu.show {
  transform: translate3d(0, 75px, 0);
}

@media only screen and (max-width: 1120px) {
  .menuTrigger {
    display: inline-block;
    padding: 30px 10px 0 15px;
  }
}

@media only screen and (max-device-width: 568px) and (orientation: landscape) {
  .mobileMenu {
    transform: translate3d(0, -150vh, 0);
    padding-bottom: 100px;
  }
}

/************************************* */
/* PAGE CONTENT */
/************************************* */
.contentContainer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 90px 50px 90px;
}

.intro-image {
  margin-top: 75px;
  width: 100%;
  height: 500px;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
}

.intro-image.startup {
  background-image: url("../images/intro-startup.jpg");
}

.intro-image.sme {
  background-image: url("../images/intro-sme.jpg");
}

.intro-image.large {
  background-image: url("../images/intro-large.jpg");
}

.intro-image.aboutus {
  background-image: url("../images/intro-aboutus.jpg");
}

.whiteBump {
  display: block;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  background-color: white;
  height: 60px;
  top: -60px;
  left: 0;
  right: 0;
}

.contentContainer h1 {
  line-height: 1.1em;
}

.contentContainer p:first-of-type {
  display: block;
  padding: 20px 0;
}

.contentContainer ul li {
  list-style-type: disc;
  padding: 5px 0;
  left: 20px;
  position: relative;
}

.subnav {
  width: 100%;
  display: block;
  background-color: #0087ca;
  text-align: center;
}

.subnav ul {
  width: 100%;
  max-width: 980px;
  padding: 15px 0;
  margin: 0 auto;
}

.subnav ul li {
  display: inline-block;
  text-transform: uppercase;
}

.subnav ul li:after {
  content: "|";
  padding: 0 40px;
  color: white;
}

.subnav ul li:last-child:after {
  content: "";
  padding-right: 0;
}

.subnav a {
  color: white;
}

.subnav a:hover {
  color: black;
}

.expertiseNav {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.exNav1, .exNav2, .exNav3 {
  flex: 1;
}

.expertiseNav ul {
  list-style-type: none;
  color: #0087ca;
  margin: 0 auto;
  margin-left: 40px;
  padding-left: -10px;
  line-height: 1.3em;
}

.expertiseNav li {
  padding: 10px;
  padding-left: 0px;
  text-align: center;
}

.expertiseNav a {
  color: #0087ca;
}

.expertiseNav a:hover {
  color: #1cb7a3;
}

.expertiseBlock {
  position: relative;
  margin-top: 50px;
  display: flex;
}

.expertiseIcon {
  max-width: 90px;
  max-height: 90px;
  display: inline-block;
}

.expertiseBlock ul li {
  list-style-type: none;
  padding-left: 40px;
  line-height: 1.4em;
}

.expertiseBlock ul li:before {
  content: url("../images/checkmark.svg");
  height: 11px;
  width: 13px;
  display: inline-block;
  position: absolute;
  left: 20px;
}

.expertiseBlock ul li:first-child {
  color: #0087ca;
  font-size: 1.6em;
  padding-bottom: 20px;
  padding-top: 20px;
  left: 0;
}

.expertiseBlock ul li:first-child:before {
  content: "";
}

.industriesGroup h3 {
  display: inline-block;
  color: #0087ca;
  font-size: 1.6em;
  padding-bottom: 20px;
  position: relative;
  left: 40px;
  top: -30px;
}

.industries {
  display: flex;
  position: relative;
  left: 135px;
  top: -30px;
  width: 100%;
  max-width: 600px;
}

.industries ul {
  flex: 1;
}

.industries ul li {
  list-style-type: none;
  line-height: 1.4em;
  margin-right: 15px;
}

.industries ul li:before {
  content: url("../images/checkmark.svg");
  height: 11px;
  width: 13px;
  display: inline-block;
  position: absolute;
  left: -20px;
}

.ourPeople {
  width: 100%;
  background-image: url("../images/ourpeople.jpg");
  padding: 50px 0;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
}

.ourPeople h2, .ourPeople h3 {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.ourPeople h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  padding: 25px 0;
  font-size: 1.8em;
}

.ourPeople h3 {
  color: white;
  font-size: 1.4em;
  padding-bottom: 50px;
  line-height: 1.6em;
}

.ourValues {
  width: 100%;
  background-color: #0087ca;
  padding: 50px 20px;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: 25px;
}

.ourValues h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  padding: 25px 0;
  font-size: 1.8em;
  color: white;
}

.ourValues h3 {
  color: white;
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1.6em;
}

.ourValues p {
  color: white;
  font-size: 1.1em;
  line-height: 1.2em;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 50px;
  line-height: 1.6em;
  width: 100%;
  max-width: 600px;
}

.ourValues p a {
  text-decoration: underline;
  color: white;
  font-weight: bold;
}

.ourValues p a:hover {
  color: black;
}

@media only screen and (max-width: 700px) {
  .calloutContainer {
    margin-bottom: 20px;
  }
  .intro-image {
    height: 250px;
  }
  .contentContainer {
    overflow-x: hidden;
    padding: 0 20px;
  }
  .subnav ul li:after {
    padding: 0 10px;
  }
  .contentContainer p:first-of-type {
    padding-top: 0;
  }
  .expertiseNav {
    flex-direction: column;
  }
  .expertiseBlock img {
    display: none;
  }
  .expertiseBlock {
    padding-right: 40px;
    margin-top: 0;
  }
  .expertiseBlock ul li:first-child {
    text-align: center;
  }
  .expertiseBlock ul li {
    padding: 0;
  }
  .expertiseBlock ul li:before {
    left: -20px;
  }
  .industriesGroup img {
    display: none;
  }
  .industriesGroup h3 {
    margin: 20px auto;
    display: block;
    top: 0;
  }
  .industries {
    left: 0;
    padding: 0 20px;
    flex-direction: column;
  }
  .ourPeople h2, .ourPeople h3 {
    padding: 0 20px;
  }
  .ourPeople h2 {
    padding-bottom: 20px;
  }
}

.intro-image.contact {
  background-image: url("../images/intro-contact.jpg");
}

.intro-image p {
  color: white;
  text-align: center;
  font-size: 15em;
  font-weight: bold;
  padding-top: 50px;
}

.callus {
  width: 100%;
  border: 4px solid #1cb7a3;
  padding: 10px 20px;
  margin: 40px 0;
  display: block;
  position: relative;
  color: #1cb7a3;
  font-size: 1.3em;
  font-weight: bold;
}

.callus a {
  color: #1cb7a3;
}

.contactform textarea, .contactform input {
  border: 1px solid #b7b7b7;
  padding: 10px;
  outline: none;
  font-size: 1em;
}

.contactform input {
  width: 100%;
  height: 50px;
  display: inline-block;
}

.contactform textarea {
  width: 100%;
}

legend {
  font-size: 1.1em;
  font-weight: bold;
}

label {
  display: block;
  font-size: 0.7em;
  padding-bottom: 5px;
  font-weight: bold;
  color: #363636;
}

.contactform p, .contactform p:first-of-type {
  padding: 10px 10px 10px 0;
  display: inline-block;
  width: 49%;
}

input[type=submit] {
  background-color: #1cb7a3;
  -webkit-border-radius: 4;
  -moz-border-radius: 4;
  border-radius: 4px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 15px 25px;
  text-decoration: none;
  border: 0;
  margin: 20px 0;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=submit]:hover {
  background-color: #0087ca;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.formSuccess {
  width: 100%;
  display: block;
  background-color: #0087ca;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn .3s ease-in 1 forwards;
}

.formSuccessRemove {
  display: none;
  width: 100%;
  background-color: #0087ca;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  opacity: 1;
  animation: fadeOut .3s ease-out 1 forwards;
}

.contactform span {
  color: #0087ca;
  display: inline-block;
  padding-left: 5px;
  font-size: 1.4em;
  position: relative;
  top: 4px;
}

.contactform .required {
  top: 0;
  font-size: 0.8em;
  font-weight: bold;
}

@media only screen and (max-width: 700px) {
  .contactform p, .contactform p:first-of-type {
    width: 100%;
  }
  .callus {
    margin: 10px 0 25px 0;
  }
  .intro-image p {
    font-size: 6em;
  }
}

/************************************* */
/* FOOTER STYLES */
/************************************* */
#drop-shadow-code {
  height: 0;
  width: 0;
}

.footer-logo {
  padding: 40px 0 20px 0;
  width: 150px;
  display: block;
  margin: 0 auto;
}

footer .tag {
  width: 100%;
  background-color: #0087ca;
}

footer .tag img {
  display: block;
  height: 40px;
  margin: 0 auto;
  padding: 10px 0;
}

footer .bottom {
  width: 100%;
  background-color: #363636;
  padding: 50px 0 60px 0;
}

.footerMenu {
  width: 100%;
  text-align: center;
  display: block;
}

.footerMenu li {
  display: inline-block;
  padding: 0 5px;
}

.footerMenu li a {
  color: white;
  font-size: 0.9em;
}

.footerMenu li a:after {
  content: "|";
  color: #1cb7a3;
  padding-left: 20px;
}

.footerMenu li a:hover {
  color: #0087ca;
  cursor: pointer;
}

.footerMenu li:last-child a:after {
  content: "";
}

.contactGroup {
  width: 100%;
  text-align: center;
  padding: 40px 0 20px 0;
}

.contactGroup .linkedIn {
  width: 100px;
  height: 50px;
}

.contactGroup a, .contactGroup span {
  display: inline-block;
  color: white;
}

.contactGroup a {
  padding: 0 10px;
}

.contactGroup span p {
  font-size: 0.9em;
  text-align: left;
  color: white;
}

.contactGroup span p:first-child {
  font-weight: bold;
  font-size: 1.2em;
}

@media only screen and (max-width: 880px) {
  footer .bottom {
    padding: 25px 0;
  }
  .footerMenu {
    display: none;
  }
  .contactGroup {
    padding: 0;
  }
  .contactGroup a, .contactGroup span {
    display: block;
  }
  .contactGroup span p {
    text-align: center;
    padding: 0 20px;
  }
  .contactGroup .linkedIn, .contactGroup .map {
    padding-bottom: 20px;
  }
}

/*# sourceMappingURL=styles.css.map */