/* HTML ELEMENTS */
body {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: #6e6f71;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff url(../images/v-bg.jpg) no-repeat;
	background-size: 100%;
	background-position: 0 700px;
}

a {
	font-family: 'Roboto', sans-serif;
}

h1 {
	color: #4a4b4c;
	font-weight: 300;
	font-size: 65px;
}

h2 {
	color: #12679b;
	font-weight: 300;
	font-size: 30px;
}

h3 {
	font-weight: 400;
	font-size: 23px;
}

h4 {
	font-weight: 500;
	font-size: 16px;
}

p {
	line-height: 28px;
}

/* COMMON */
.supporting {
	font-weight: 400;
	font-size: 16px;
}

input:focus, 
textarea:focus, 
select:focus,
a:focus,
.accordion-header {
 	outline: none;
	text-decoration: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
/* NAVIGATION */
nav.nav {
	position: absolute;
	z-index: 5;
	width: 100%;
	padding-top: 30px;
	text-align: center;
}

nav.nav.navbar {
	border-radius: 0;
}

nav.nav .container-fluid {
	max-width: 1140px;
	text-align: center;
}

ul.nav {
	position: relative;
	display: inline-block;
}

ul.nav li {
	float: left;
	
}

ul.nav li a,
ul.nav li a:focus {
	color: #ffffff;
	font-size: 16px;
	padding: 0;
	background: transparent;
}

nav.nav.fixedPos ul.nav li a, 
nav.nav.fixedPos ul.nav li a:focus {
	color: #ffffff;
}

ul.nav li a:hover {
	background-color: transparent;
}

ul.nav li.nav-item,
ul.nav li.nav-button {
	padding: 0 33px;
}

ul.nav li.nav-item {
	padding-top: 26px;
}

ul.nav li.nav-item:first-child {
	padding-left: 0;
}

ul.nav li.nav-item a::after {
	display: block;
  	content: '';
	transform: scaleX(0);  
  	transition: transform 250ms ease-in-out;
	transform-origin:  0% 50%;
}

ul.nav li.nav-item a:hover::after,
ul.nav li.nav-item.active a::after {
	transform: scaleX(1);
	border: 3px solid;
	-webkit-border-image: -webkit-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 3px 0;
	-o-border-image: -o-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 3px 0;
	border-image: linear-gradient(to left, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 3px 0;
}

ul.nav li.nav-logo {
	padding: 0 70px;
}

ul.nav li.nav-button {
	padding-top: 17px;
}

ul.nav li.nav-item:last-child,
ul.nav li.nav-button:last-child {
	padding-right: 0;
}

ul.nav li.nav-button a {
	display: block;
	padding: 8px 20px;
	border: 1px solid #f19178;
	border-radius: 6px;
	transition: all 250ms ease-in-out;
}

ul.nav li.nav-button a:hover {
	border-color: rgba(115,203,215,1);
	background: linear-gradient(rgba(72,134,198,1), rgba(115,203,215,1));
}

nav.nav button.navbar-toggle {
	position: absolute;
	left: 5%;
	top: 41px;
}

.navbar-toggle span.icon-bar {
    transition: all 0.15s;
}

.navbar-toggle span:nth-child(2) {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggle span:nth-child(3) {
    opacity: 0;
}

.navbar-toggle span:nth-child(4) {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggle.collapsed span:nth-child(2),
.navbar-toggle.collapsed span:nth-child(4) {
    transform: rotate(0);
}

.navbar-toggle.collapsed span:nth-child(3) {
    opacity: 1;
}

nav.nav .icon-bar {
	background-color: #fff;
}

nav.nav.slideOut,
nav.nav.fixedPos {
	position: fixed;
	z-index: 5555;
	padding-top: 0;
	background-color: rgba(27,63,104,.95);
	transition: all 0.4s;
}

nav.nav .logo-bar {
	display: none;
}

nav.nav.slideOut .logo-bar,
nav.nav.fixedPos .logo-bar {
	display: block;
}

nav.nav.slideOut .logo,
nav.nav.fixedPos .logo {
	display: none;
}

nav.nav.slideOut {
	top: -100px;
}

nav.nav.fixedPos {
	top: 0;
}

nav.nav .nav-logo img {
	width: 175px;
}

nav.nav.slideOut .nav-logo,
nav.nav.fixedPos .nav-logo {
	padding-top: 0;
}


nav.nav.slideOut .nav-logo img,
nav.nav.fixedPos .nav-logo img {
	/*width: 70px;*/
}

nav.nav.slideOut ul.nav li.nav-item,
nav.nav.fixedPos ul.nav li.nav-item {
	padding-top: 21px;
}

nav.nav.slideOut ul.nav li.nav-button,
nav.nav.fixedPos ul.nav li.nav-button {
	padding-top: 8px;
}

/* HERO */
.container-hero {
	display: table;
	width: 100%;
	height: 850px;
	max-height: 850px;
	background: url(../images/hero-bg.jpg) no-repeat bottom center;
	background-size: cover;
	/* background-attachment: fixed; */
	color: #4a4b4c;
}

.container-hero .lockup {
	display: table-cell;
	vertical-align: middle;
	max-height: 700px;
}

.container-hero .lockup h1 {
	text-align: center;
	margin: 0 auto;
	width: 62%;
	max-width: 805px;
	padding-bottom: 30px;
	border-bottom: 10px solid rgba(100,179,197,1);
	-webkit-border-image: -webkit-linear-gradient(right, rgba(72,130,193,1) 1%, rgba(100,179,197,1) 100%) 0 0 100% 0/0 0 10px 0;   
	-o-border-image: -o-linear-gradient(right, rgba(72,130,193,1) 1%, rgba(100,179,197,1) 100%) 0 0 100% 0/0 0 10px 0;  
	border-image: linear-gradient(right, rgba(72,130,193,1) 1%, rgba(100,179,197,1) 100%) 0 0 100% 0/0 0 10px 0; 
	/*
	-webkit-border-image: -webkit-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(246,146,119,1) 100%) 0 0 100% 0/0 0 10px 0;
	-o-border-image: -o-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(246,146,119,1) 100%) 0 0 100% 0/0 0 10px 0;
	border-image: linear-gradient(to left, rgba(115,203,215,1) 1%, rgba(246,146,119,1) 100%) 0 0 100% 0/0 0 10px 0;
	*/
}

.container-hero .lockup h2 {
	margin: 0 auto;
	width: 55%;
	max-width: 670px;
	padding-top: 27px;
	color: #343435;
}

.container-hero .lockup h2 {
	text-align: center;
}

/* CHALLENGE, SOLUTION */
.container-challenge .row {
	max-width: 1140px;
	margin: 60px auto 0 auto;
}

.container-challenge .videobox {
	position: relative;
	cursor: pointer;
	-webkit-box-shadow: 0px 10px 45px -8px rgba(0,0,0,0.46);
	-moz-box-shadow: 0px 10px 45px -8px rgba(0,0,0,0.46);
	box-shadow: 0px 10px 45px -8px rgba(0,0,0,0.46);
}

.container-challenge .videobox img {
	width: 100%;
}

.container-challenge .videobox .btn-videoplay {
	position: absolute;
	width: 100%;
	height: 100%;
}

.container-challenge .videobox .btn-videoplay {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 0;
	background: url(../images/btn-play.png) no-repeat center center;
	transition: transform 250ms ease-in-out;
}

.container-challenge .videobox:hover .btn-videoplay {
	transform: scale(.8);
}

.container-challenge .videobox .lightbox-content-video {
	display: none;
}

.lightbox-content-video {
	position: relative; 
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.lightbox-content-video iframe {
	position: absolute;
	top: 60px;
	left: 20px;
	padding-bottom: 20px;
	width: calc(100% - 40px);
	height: calc(100% - 60px);
}

.container-solution {
	margin-bottom: 130px;
}

.container-solution .row {
	max-width: 1140px;
	margin: 100px auto 0 auto;
}
.container-solution .supporting-images #macbook {
	position: absolute;
	margin-left: -12%;
	top: 0%;
}

.container-solution .supporting-images #macbook img {
	width: 100%;
}

.container-solution .supporting-images-mobile {
	display: none;
}

.container-endtoend {
	position: relative;
}

.container-endtoend .row {
	max-width: 1140px;
	margin: 100px auto 0 auto;
}

.container-endtoend h2 {
	text-align: center;
}

.container-endtoend .seqbox {
	position: relative;
}

.container-endtoend .seqbox #imagesequence img {
	width: 100%;
}

.container-endtoend .seqbox #imagesequence #e2dImgSequenceMobile {
	display: none;
}

.container-endtoend .seqbox .copyblocks {
	position: absolute;
	top: 0;
	width: 100%;
}

.container-endtoend .seqbox .copyblock {
	display: none;
	position: absolute;
	width: 23%;
	font-size: 15px;
}

.container-endtoend .seqbox .copyblock.copyblock-right {
	text-align: right;
}

.container-endtoend .seqbox .copyblock h5 {
	margin-bottom: 16px;
	text-transform: uppercase;
	font-size: 15px;
}

.container-endtoend .seqbox .copyblock.aqua h5 {
	color: #73cdd7;
}

.container-endtoend .seqbox .copyblock.muted-aqua h5 {
	color: #84bcbf;
}

.container-endtoend .seqbox .copyblock.tan h5 {
	color: #b0aba2;
}

.container-endtoend .seqbox .copyblock.peach h5 {
	color: #f69276;
}

.container-endtoend .seqbox .copyblock.muted-peach h5 {
	color: #d39785;
}

.container-endtoend .seqbox .copyblock .marker {
	display: none;
	position: relative;
	background: #ccc;
    width: 48px;
    height: 48px;
    border-radius: 50%;
	cursor: pointer;
}

.container-endtoend .seqbox .copyblock .marker::before {
	content: " ";
  	position: absolute;
  	display: block;
  	background-color: #fff;
  	height: 3px;
  	margin-top: -2px;
  	top: 50%;
  	left: 10px;
  	right: 10px;
  	z-index: 9;
	border-radius: 3px;
}

.container-endtoend .seqbox .copyblock .marker::after {
	content: " ";
  	position: absolute;
  	display: block;
  	background-color: #fff;
  	width: 3px;
  	margin-left: -2px;
  	left: 50%;
  	top: 10px;
  	bottom: 10px;
  	z-index: 9;
	border-radius: 3px;
}

.e2e-lightbox {
	display: none;
	position: absolute;
	z-index: 1000;
	width: calc(100% - 30px);
	background: #fff;
	border-radius: 6px;
	color: #fff;
	font-size: 17px;
	text-align: center;
}

.e2e-lightbox h5 {
	font-size: 20px;
	text-transform: uppercase;
}

.e2e-lightbox .close-btn {
	position: absolute;
	z-index: 1000;
	top: 30px;
	right: 30px;
	
}

.e2e-lightbox .close-btn a {
	display: block;
	width: 29px;
	height: 29px;
	font-size: 0;
	background: url(../images/e2e-close-btn.svg) no-repeat top center;
}

.e2e-lightbox .target {
	display: table;
	width: 60%;
	margin: 0 auto;
	height: 100%;
}

.e2e-lightbox .target .cont {
	display: table-cell;
	vertical-align: middle;
	padding: 30px 0;
}

.container-endtoend .seqbox .copyblock.aqua .marker,
.e2e-lightbox.aqua {
	background: #73cdd7;
}

.container-endtoend .seqbox .copyblock.muted-aqua .marker,
.e2e-lightbox.muted-aqua {
	background: #84bcbf;
	float: right;
}

.container-endtoend .seqbox .copyblock.tan .marker,
.e2e-lightbox.tan {
	background: #b0aba2;
}

.container-endtoend .seqbox .copyblock.peach .marker,
.e2e-lightbox.peach {
	background: #f69276;
}

.container-endtoend .seqbox .copyblock.muted-peach .marker,
.e2e-lightbox.muted-peach {
	background: #d39785;
	float: right;
}

.e2e-lightbox.muted-aqua,
.e2e-lightbox.muted-peach {
	float: none;
}

/* FEATURES */
.container-features .row {
	max-width: 1140px;
	margin: 0 auto;
}

.container-features h2 {
	text-align: center;
	margin-bottom: 50px;
}

.container-features .row.row-feature-items {
	padding-bottom: 80px;
}

.container-features .feature-item {
	text-align: center;
	line-height: 23px;
}

.container-features .feature-item h4 {
	margin-bottom: 14px;
}

.container-features .feature-item img {
	display: inline-block;
	text-align: center;
}


/* ROADMAP */
.container-roadmap {
	padding-bottom: 70px;
	background: -webkit-linear-gradient(bottom, #5484c4, #1b3f68);
	background: -o-linear-gradient(bottom, #5484c4, #1b3f68);
	background: linear-gradient(to top, #5484c4, #1b3f68);
	
}

.container-roadmap h2 {
	color: #fff;
	margin-top: 0;
}

.container-roadmap .row {
	max-width: 1140px;
	margin: 40px auto 0 auto;
}

.container-roadmap .row:first-child {
	margin-top: 75px;
}

.container-roadmap .col-subnav {
	text-align: right;
}

.container-roadmap .col-subnav li {
	list-style: none;
	display: inline-block;
	padding :0 11px 0 11px;
	border-right: 1px solid #427898;
}

.container-roadmap .col-subnav li:first-child {
	padding-left: 0;
}

.container-roadmap .col-subnav li:last-child {
	border: none;
	padding-right: 0;
}

.container-roadmap .col-subnav ul {
	margin-top: 10px;
}

.container-roadmap .col-subnav li a {
	color: #73ccd7;
	text-transform: uppercase;
}

.container-roadmap .col-subnav li a:hover {
	text-decoration: none;
}

.container-roadmap .col-subnav li a::after {
	display: block;
  	content: '';
	height: 3px;
	transform: scaleX(0);  
  	transition: transform 250ms ease-in-out;
	transform-origin:  0% 50%;
}

.container-roadmap .col-subnav li:not(.active) a:hover::after {
	transform: scaleX(1);
	border: 1px solid;
	-webkit-border-image: -webkit-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	-o-border-image: -o-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	border-image: linear-gradient(to left, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
}

.container-roadmap .col-subnav li.active a {
	color: #fff;
	text-decoration: none;
	cursor: default;
}

.container-roadmap .scrollable-btn {
	display: inline-block;
	width: 7%;
	vertical-align: top;
	padding-top: 85px;
	text-align: center;
}

.container-roadmap .scrollable-btn a {
	font-size: 0;
	display: inline-block;
	width: 28px;
	height: 57px;
}

.container-roadmap .scrollable-btn-previous a {
	background: url(../images/scrollable-btn-blue-previous.png) no-repeat top center;
}

.container-roadmap .scrollable-btn-next a {
	background: url(../images/scrollable-btn-blue-next.png) no-repeat top center;
}

.container-roadmap .scrollable-btn-previous a:hover,
.container-roadmap .scrollable-btn-next a:hover {
	background-position: bottom;
}

.container-roadmap .scrollable-btn-previous.inactive a,
.container-roadmap .scrollable-btn-next.inactive a {
	opacity: .2;
	cursor: default;
}

.container-roadmap .scrollable-btn-previous.inactive a:hover,
.container-roadmap .scrollable-btn-next.inactive a:hover {
	background-position: top;
}

.container-roadmap .scrollable-box {
	position: relative;
	display: inline-block;
	width: 86%;
	height: 250px;
	overflow: hidden;
}

.container-roadmap .scrollable-box .scrollable {
	position: absolute;
}

.container-roadmap .scrollable-box .scrollable.scrollable-future {
	display: none;
}

.container-roadmap .scrollable-box .scrollable .item {
	display: block;
	position: relative;
	float: left;
	width: 179px;
	height: 250px;
	padding: 20px;
	margin-right: 15px;
	vertical-align: top;
	color: #fff;
	font-weight: 300;
	font-size: 20px;
	border-radius: 6px;
	background: -moz-linear-gradient(45deg, #4882c1 0%, #64b3c5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #4882c1 0%,#64b3c5 100%); /* Chrome10-25,Safari5.1-6 */	
	background: linear-gradient(45deg, #4882c1 0%,#64b3c5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.container-roadmap .scrollable-box .item h5 {
	color: #fff;
	font-weight: bold;
	font-size: 20px;
}

.container-roadmap .scrollable-box .scrollable .item .card-logo {
	position: absolute;
	left: 20px;
	bottom: 26px;
}

.container-roadmap .scrollable-box .scrollable .item .card-logo img {
	width: 50px;
	height: 50px;
}

.container-roadmap .row-scrollable-pagination {
	margin-top: 18px;
}

.container-roadmap .scrollable-pagination {
	text-align: center;
	padding: 0;
}

.container-roadmap .scrollable-pagination li {
	list-style: none;
	display: inline-block;
	padding-right: 7px;
}

.container-roadmap .scrollable-pagination li:last-child {
	padding-right: 0;
}

.container-roadmap .scrollable-pagination a {
	display: block;
	width: 13px;
	height: 13px;
	font-size: 0;
	background: url(../images/scrollable-btn-pagination.svg) no-repeat top center;
}

.container-roadmap .scrollable-pagination .active a,
.container-roadmap .scrollable-pagination a:hover {
	background-position: bottom;
}

/* TEAM */
.container-team {
	padding-bottom: 100px;
	background: url(../images/team-bg.svg) no-repeat top center;
	background-size: cover;
	background-attachment: fixed;
}

.container-team .row {
	max-width: 1140px;
	margin: 95px auto 0 auto;
}

.container-team .row.row-members {
	margin-top: 67px;
}

.container-team .team-member {
	text-align: center;
	line-height: 24px;
}

.container-team .team-member img {
	max-width: 150px;
}

.container-team .team-member h4 {
	margin-top: 16px;
	margin-bottom: 16px;
}

.container-team .team-member h4 span,
.lightbox-content-tm h4 span {
	display: block;
	padding-top: 5px;
	font-style: italic;
	font-weight: normal;
}

.container-team .team-member .lightbox-content-tm {
	display: none;	
}

.lightbox-content-tm {
	line-height: 24px;
	padding: 80px;
	max-height: 80vh;
}

.lightbox-content-tm .bio-image {
	display: inline-block;
	width: 20%;
	padding-right: 10px;
	text-align: right;
	vertical-align: top;
}

.lightbox-content-tm .bio-image img {
	width: 100%;
	max-width: 150px;
}

.lightbox-content-tm .bio-body {
	display: inline-block;
	width: 75%;
	vertical-align: top;
}

.lightbox-content-tm .linkedin {
	padding-top: 10px;
	display: inline-block;
}

.lightbox-content-tm .linkedin a {
	display: block;
	padding-left: 21px;
	color: #7ccdd6;
	line-height: 13px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	background: url(../images/icon-linked-in.gif) no-repeat center left;
}

.lightbox-content-tm .linkedin a:hover {
	text-decoration: none;
}

.lightbox-content-tm .linkedin a::after {
	height: 2px;
	display: block;
  	content: '';
	transform: scaleX(0);  
  	transition: transform 250ms ease-in-out;
	transform-origin:  0% 50%;
}

.lightbox-content-tm .linkedin a:hover::after {
	transform: scaleX(1);
	border: 1px solid;
	-webkit-border-image: -webkit-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	-o-border-image: -o-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	border-image: linear-gradient(to left, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
}

.container-team .team-member .bio-link {
	display: table;
	margin: 0 auto;
	padding-top: 10px;
}

.container-team .team-member .bio-link a {
	color: #12679b;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
}

.container-team .team-member .bio-link a:hover {
	text-decoration: none;
}

.container-team .team-member .bio-link a::after {
	height: 2px;
	display: block;
  	content: '';
	transform: scaleX(0);  
  	transition: transform 250ms ease-in-out;
	transform-origin:  0% 50%;
}

.container-team .team-member .bio-link a:hover::after {
	transform: scaleX(1);
	border: 1px solid;
	-webkit-border-image: -webkit-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	-o-border-image: -o-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	border-image: linear-gradient(to left, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
}

.container-team .row.row-2nd-title {
	margin-top: 45px;
}

/* ADVANTAGE */
.container-advantage {
	position: relative;
	padding-bottom: 120px;
	background: #ffffff url(../images/advantage-bg.gif) repeat top center;
	background-attachment: fixed;
}

.container-advantage .row {
	max-width: 1140px;
	margin: 0 auto;
	
}

.container-advantage h2 {
	text-align: center;
	margin-top: 100px;
	margin-bottom: 50px;
}

.container-advantage .col-accountability {
	text-align: right;
}

.container-advantage .col-transparency {
	text-align: center;
}

.container-advantage .col-security {
	text-align: left;
}

.container-advantage .aa-item {
	display: inline-block;
	width: auto;
	text-align: center;
}

.container-advantage .aa-item img {
	width: 168px;
}

.container-advantage .btn-back-to-top {
	position: absolute;
	bottom: 50px;
	right: 5%;
}

.container-advantage .btn-back-to-top a {
	display: block;
	font-size: 0;
	width: 57px;
	height: 57px;
	background: url(../images/btn-back-to-top.png) no-repeat top center;
}

.container-advantage .btn-back-to-top a:hover {
	background-position: bottom center;
}

/* UPDATES */
.container-updates {
	padding-bottom: 50px;
	background: -webkit-linear-gradient(bottom, #5484c4, #1b3f68);
	background: -o-linear-gradient(bottom, #5484c4, #1b3f68);
	background: linear-gradient(to top, #5484c4, #1b3f68);
	
}

.container-updates h2 {
	color: #fff;
	margin-top: 0;
}

.container-updates .row {
	max-width: 1140px;
	margin: 60px auto 0 auto;
}

.container-updates .row.row-mailchimp {
	margin-top: 15px;
}

.container-updates .mc-field-group,
.container-updates .field-group {
	position: relative;
}

.container-updates .mc-field-group input[type='email'],
.container-updates .field-group input[type='email'] {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	height: 65px;
	background: transparent;
	border-style:solid;
	color: #fff;
	font-size: 20px;
	padding: 0 20px;
	border: 1px solid #fff;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 0;
	-webkit-appearance: none;
}


.container-updates .mc-field-group input[type='text'],
.container-updates .field-group input[type='text'] {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	height: 300px;
	background: transparent;
	border-style:solid;
	color: #fff;
	font-size: 20px;
	padding: 0 20px;
	border: 1px solid #fff;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 0;
	-webkit-appearance: none;
}

.container-updates .mc-field-group input[type='submit'],
.container-updates .field-group input[type='submit'] {
	display: inline-block;
	vertical-align: top;
	width: 20%;
	height: 65px;
	color: #7ccdd6;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	background: #fff;
	border: 1px solid #fff;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 0;
	border-top-right-radius: 4px;
	border-top-left-radius: 0;
}

#mc_embed_signup input.mce_inline_error,
.ajax_contact-form input.mce_inline_error {
	border-color: red !important;
}

#mc_embed_signup div.mce_inline_error,
#mc_embed_signup #mce-responses,
.ajax_contact-form div.mce_inline_error,
.ajax_contact-form #mce-responses {
	position: absolute;
	bottom: -26px;
	background-color: transparent !important;
	padding: 5px 0 0 20px !important;
	margin: 0 !important;
	color: #fff;
}

/* FOOTER */
.container-footer {
	padding-bottom: 50px;
	background-color: #fff;
	color: #b6b7b8;
	font-size: 13px;
}

.container-footer a,
.container-footer a:visited {
	text-decoration: none;
	color: #b6b7b8;
	font-size: 13px;
	transition: all 250ms ease-in-out;
}

.container-footer a:hover {
	text-decoration: none;
	color: rgba(72,134,198,1);
}

.container-footer a::after {
	height: 2px;
	display: block;
  	content: '';
	transform: scaleX(0);  
  	transition: transform 250ms ease-in-out;
	transform-origin:  0% 50%;
}

.container-footer a:hover::after {
	transform: scaleX(1);
	border: 1px solid;
	-webkit-border-image: -webkit-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	-o-border-image: -o-linear-gradient(right, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
	border-image: linear-gradient(to left, rgba(115,203,215,1) 1%, rgba(72,134,198,1) 100%) 0 0 100% 0/0 0 1px 0;
}

.container-footer .row {
	max-width: 1140px;
	margin: 45px auto 0 auto;
}

.container-footer .col-footer-right {
	text-align: right;
}

.container-footer .row ul {
	padding: 0;
}

.container-footer .row li {
	list-style: none;
	display: inline-block;
	padding: 0 17px;
	border-right: 1px solid #b6b7b8;
}

.container-footer .row li:first-child {
	padding-left: 0;
}

.container-footer .row li:last-child {
	padding-right: 0;
	border-right: 0;
}

/* GENERIC TEMPLATE */
.container-page-title {
	display: table;
	width: 100%;
	height: 250px;
	background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #1e5799 29%, #73ccd7 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #1e5799 29%,#73ccd7 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #1e5799 29%,#73ccd7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#73ccd7',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.container-page-title h1 {
	padding-top: 150px;
	color: #fff;
	font-size: 30px;
	text-align: center;
}

.container-generic-body {
	position: relative;
	background-color: #f4f4f4;
}

.container-generic-body .row {
	max-width: 1140px;
	margin: 0 auto;
	padding: 25px 0;
}

.container-generic-body h4 {
	padding-top: 20px;
}

.container-generic-body h5 {
	margin-top: 0;
	padding-top: 26px;
	font-size: 16px;
}

.container-generic-body li {
	line-height: 28px;
}

.container-generic-body .intro {
	width: 50%;
	text-align: center;
	margin: 0 auto 16px auto;
}

/* RESPONSIVE */
@media only screen and (max-width: 1200px) {
	ul.nav li.nav-button a {
		padding: 8px 12px;
	}
}

@media only screen and (max-width: 992px) {
	body,
	.container-generic-body h5 {
		font-size: 17px;
	}
	
	h1 {
		font-size: 52px;
	}
	
	h2 {
		font-size: 24px;
	}
	
	h3 {
		font-size: 18px;
	}
	
	.navbar-toggle {
		display: block;
	}

	nav.nav {
		background: rgba(27,63,104,.95);
	}
	
	nav.nav.collapsed:not(.fixedPos) {
		background: none;
	}
	
	nav.nav.collapsed ul.nav li.nav-item {
		display: none;
	}
	
	nav.nav .container-fluid {
		display: table;
	}
	
	nav.nav .container-fluid ul {
		display: table-cell;
		vertical-align: middle;
	}
	
	nav.nav.collapsed ul.nav {
		transition: all 250ms ease-in-out;
		height: auto;
	}
	
	ul.nav {
		transition: all 250ms ease-in-out;
		height: 100vh;
	}
	
	ul.nav li {
		float: none;
		
	}
	
	ul.nav li.nav-item {
		padding-left: 0;
		padding-right: 0;
	}
	
	ul.nav li.nav-item a {
		font-weight: 300;
		font-size: 40px;
	}
	
	ul.nav li.nav-item a:hover,
	ul.nav li.nav-item.active a {
		color: #7ccdd6 
	}
	
	ul.nav li.nav-item a:hover::after, 
	ul.nav li.nav-item.active a::after {
		display:none;
		
	}

	ul.nav li.nav-button {
		position: absolute;
		right: 5%;
	}

	ul.nav li.nav-logo {
		position: absolute;
		top: 0;
		left: 50%;
		padding: 7px 0;
		margin-left: -50px;
	}
	
	nav.nav.slideOut .nav-logo, 
	nav.nav.fixedPos .nav-logo {
		margin-left: -35px;
	}
	
	nav.nav.collapsed li.nav-logo {
		position: relative;
		top: auto;
		left: auto;
		margin-left: auto;
	}
	
	nav.nav.slideOut button.navbar-toggle,
	nav.nav.fixedPos button.navbar-toggle {
		top: 4px;
	}
	
	.container-hero .lockup h1,
	.container-hero .lockup h2 {
		width: 85%;
	}
	
	.container-challenge .row {
		margin-top: 0;
	}
	
	.container-challenge .row .col-md-6:first-child {
		padding-bottom: 10px;
	}
	
	.container-solution .row {
		margin-top: 16px;
	}
	
	.container-solution .supporting-images:not(.supporting-images-mobile) {
		display: none;
	}
	
	.container-solution .supporting-images-mobile {
		display: block;
		padding-top: 10px;
	}
	
	.container-solution .supporting-images-mobile #macbook {
		top:0;
		position: relative;
	}
	
	.container-solution {
		margin-bottom: 0;
	}
	
	.container-endtoend .row {
		margin-top: 5px;
	}

	.container-features .row.row-feature-items-1 {
		padding-bottom: 0;
	}
	
	.container-features .row.row-feature-items-2 {
		padding-bottom: 40px;
	}
	
	.container-features .feature-item {
		padding-bottom: 30px;
		line-height: 20px;
	}
	
	.container-features .feature-item h4 {
		font-size: 20px;
	}
	
	.container-roadmap h2 {
		text-align: center;
	}
	
	.container-roadmap .col-subnav {
		text-align: center;
	}
	
	.container-roadmap .col-subnav ul {
		padding-left: 0;
	}
	
	.container-roadmap .col-subnav li a,
	.container-roadmap .col-subnav li.active a {
		font-size: 12px;
	}
	
	.container-team {
		padding-bottom: 30px;
		background-position-y: 50px;
	}
	
	.container-team .row {
		margin-top: 25px;
	}
	
	.container-team .row h2 {
		text-align: center;
	}
	
	.container-team .team-member {
		margin-bottom: 40px;
	}
	
	.container-team .team-member h4,
	.lightbox-content-tm h4 {
		font-size: 20px;
	}
	
	.lightbox-content-tm h4 {
		margin-top: 0;
	}
	
	.container-team .team-member h4 span, 
	.lightbox-content-tm h4 span {
		font-size: 17px;
	}
	
	.lightbox-content-tm {
		padding: 40px;
		height: 80vh;
	}
	
	.lightbox-content-tm .bio-wrapper {
		height: 72vh;
		overflow: auto;
	}
	
	.lightbox-content-tm .bio-image {
		display: block;
		width: 100%;
		text-align: center;
		padding-right: 0;
		margin-bottom: 10px;
	}
	
	.lightbox-content-tm .bio-image img {
		width: 100%;
		max-width: 119px;
	}
	
	.lightbox-content-tm .bio-body {
		width: 100%;
	}
	
	.lightbox-content-tm .bio-body h4 {
		text-align: center;
	}
	
	.container-advantage .col-md-4 {
		text-align: center;
	}
	
	.container-advantage .aa-item {
		margin-bottom: 30px;
	}
	
	.container-updates h2 {
		text-align: center;
	}
	
	.container-footer .col-md-6 {
		text-align: center;
	}
	
	.container-generic-body .intro {
		width: 80%;
	}
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2),
(min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2),
(min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2), 
(min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3),
(min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2),
(max-width: 768px) {
	h1 {
		font-size: 35px;
	}
	
	h2 {
		font-size: 25px;
	}
	
	h3 {
		font-size: 18px;
	}
	
	.col-md-6 {
		padding-left: 0;
		padding-right: 0;
	}
	
	.container-hero {
		height: 500px;
		max-height: 500px;
	}
	
	.container-hero .lockup {
		max-height: 500px;
		overflow: hidden;
	}
	
	.container-hero .lockup h1 {
		width: 100%;
		padding-bottom: 20px;
	}
	
	.container-hero .lockup h2 {
		width: 100%;
		padding-top: 17px;
	}	
	
	.container-endtoend .seqbox .copyblock .marker {
		width: 30px;
		height: 30px;
	}
	
	.container-endtoend .seqbox .copyblock .marker::before {
		height: 2px;
		margin-top: -1px;
		top: 50%;
		left: 7px;
		right: 7px;
		z-index: 9;
		border-radius: 3px;
	}

	.container-endtoend .seqbox .copyblock .marker::after {
		width: 2px;
		margin-left: -1px;
		left: 50%;
		top: 7px;
		bottom: 7px;
		z-index: 9;
		border-radius: 3px;
	}
	
	.e2e-lightbox .close-btn {
		top: 15px;
		right: 15px;
	}
	
	.e2e-lightbox .target {
		width: 80%;
	}
	
	.container-roadmap .scrollable-btn {
		display: none !important;
	}
	
	.container-roadmap .col-md-12 {
		padding-left: 0;
		padding-right: 0;
	}
	
	.container-roadmap .scrollable-box {
		width: 100%;
	}
	
	.container-updates .col-md-1 {
		display: none;
	}
	
	.container-updates .col-md-10 {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	
	.container-updates .mc-field-group input[type="email"],
	.container-updates .field-group input[type="email"] {
		width: 65%;
	}
	
	
	.container-updates .mc-field-group input[type="text"],
	.container-updates .field-group input[type="text"] {
		width: 65%;
	}	
	
	.container-updates .mc-field-group input[type="submit"],
	.container-updates .field-group input[type="submit"] {
		width: 35%;
	}
	
	.container-generic-body .intro {
		width: 100%;
		text-align: left;
	}
}

/* iDevices only */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2),
(min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2),
(min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2), 
(min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3),
(min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) {
	body,
	.container-generic-body h5 {
		font-size: 17px;
	}
		
	.container-endtoend .seqbox #imagesequence #e2dImgSequence {
		display: none;
	}
	
	.container-endtoend .seqbox #imagesequence #e2dImgSequenceMobile {
		display: block;
	}
	
	.container-endtoend .seqbox .copyblock .marker {
		display: block;
	}
	
	.container-endtoend .seqbox .cont {
		display: none;
	}
		
	.container-roadmap .scrollable-btn {
		display: none !important;
	}

	.lightbox-content-tm .bio-wrapper {
		height: 68vh;
	}	
		
	.container-updates .col-md-1 {
		display: none;
	}
	
	.container-updates .col-md-10 {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	
	.container-updates .mc-field-group input[type="email"],
	.container-updates .field-group input[type="email"] {
		width: 65%;
	}
	
	.container-updates .mc-field-group input[type="submit"],
	.container-updates .field-group input[type="submit"] {
		width: 35%;
	}
		
	.container-generic-body .intro {
		width: 100%;
	}
}

@media screen {
	/* IMAGE CACHE */
	#image-cache {
		position: absolute;
		left: -9999px;
		top: -9999px;
		height: 1px;
		overflow: hidden;
	}
	
	#image-cache img {
		display: block;
	}
}

@media print {
	#image-cache, 
	#image-cache img {
		visibility: hidden;
		display: none;
	}
}

