@charset "utf-8";

/*====limited reset====*/
html, body, div, section, article, aside, header, hgroup, footer, nav, h1, h2, h3, h4, h5, h6, p, blockquote, address, time, span, em, strong, img, ol, ul, li, figure, canvas, video {
	margin: 0;
	padding: 0;
	border: 0;
}

/*====html5 display rule====*/
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, nav, menu, nav, section, summary {
	display: block;
}

/* Common CSS Start */
html {
	font-size: 10px
}

html, body {
	height: 100%;
	width: 100%;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	outline: 0;
	color: inherit;
}

a:hover, a:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}

strong, b {
	font-family: 'FuturaLTHeavy';
}

h1 {
	line-height: 50px;
}

body {
	font-size: 1.8rem;
	line-height: 3rem;
	margin: 0px;
	color: #fff;
	font-family: futura_ltregular;
	font-style: normal;
	-webkit-font-smoothing: subpixel-antialiased;
	overflow-x: hidden;
	background-color: #0f0d0e;
	letter-spacing: 0.4rem;
}

section {
	padding: 10rem 0;
}

h2, h1 {
	font-size: 2.4rem;
	line-height: 4rem;
	letter-spacing: .8rem;
}

h3 .tech-style,
h2 .tech-style,
h1 .tech-style {
	letter-spacing: inherit;
}

h2.heading-uppercase, h1.heading-uppercase, h3.heading-uppercase {
	text-transform: uppercase;
}

h3 {
	font-size: 2rem;
	line-height: 3.6rem;
}

.heading {
	position: relative;
	display: block;
	margin-bottom: 8rem;
	text-align: center;
}

.heading--bordered {
	padding-bottom: 2rem;
	margin-bottom: 6rem;
}

.heading--bordered::after {
	content: "";
	height: 1px;
	background: #ec2356;
	width: 200px;
	max-width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.heading h2 {
	text-align: center;
	display: inline-block;
}

.green-text {
	color: #1caf4b;
}

.tech-style {
	font-family: 'futuraheavyoblique';
}
/* Common CSS End */

/* Header Start */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 12;
}

.navbar-brand img {
	width: 110px;
	margin-top: 40px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

.navbar-brand {
	height: auto;
}

.header.scroll-nav {
	background: #000;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

.scroll-nav .navbar-brand img {
	width: 80px;
	margin-top: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
/* Header End */

/* First Fold Start */
.banner-container {
	background: url('../images/banner.png') no-repeat top center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100vh;
	position: relative;
	padding: 0;
}

.vertically-center {
	position: relative;
	height: 100vh;
	width: 100%;
	display: table;
	vertical-align: middle;
	padding-top: 12rem;
}

.float-center {
	margin: 0 auto;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
}

.banner-caption {
	text-align: center;
	width: 80%;
	margin: 0 auto;
}

.banner-caption h1 {
	position: relative;
	display: block;
	font-size: 2.8rem;
	line-height: 4.5rem;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.banner-caption h1::after {
	content: "";
	height: 1px;
	background: #1caf4b;
	width: 200px;
	max-width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.subtext {
	font-size: 1.8rem;
	margin-bottom: 4rem;
	text-align: center;
}

.offer-box {
	background: #141414;
	border: 2px solid #666666;
	padding: 2.5rem;
	margin-bottom: 6rem;
	display: inline-block;
	font-size: 1.6rem;
	position: relative;
}

.offer-box::before {
	content: "";
	background: url('../images/ribbon.png');
	image-rendering: -webkit-optimize-contrast;
	background-repeat: no-repeat;
	background-size: 8rem 8rem;
	height: 8rem;
	width: 8rem;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
}

.search-field form {
	height: 5.5rem;
	margin: 0 auto;
	width: 100rem;
}

.search-field .search-input {
	display: inline-block;
	width: 80%;
	height: 100%;
	padding: .6rem 2.5rem;
	float: left;
	font-size: 1.4rem;
	color: #848484;
	background: #fff;
	letter-spacing: .2rem;
}

.button-submit {
	background: #15b04b;
	border: none;
	height: 100%;
	width: 20%;
	display: inline-block;
	transition: linear .2s;
	-webkit-transition: linear .2s;
	-moz-transition: linear .2s;
	letter-spacing: .2rem;
}

.search-input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #848484;
}

.search-input::-moz-placeholder {
	/* Firefox 19+ */
	color: #848484;
}

.search-input:-ms-input-placeholder {
	/* IE 10+ */
	color: #848484;
}

.search-input:-moz-placeholder {
	/* Firefox 18- */
	color: #848484;
}

.button-submit:hover {
	background: #12913e;
	transition: linear .2s;
	-webkit-transition: linear .2s;
	-moz-transition: linear .2s;
}

.coupon-box {
	display: table;
	margin: 5rem auto 4rem;
	font-size: 1.6rem;
}

.box1, .box2 {
	height: 100%;
	padding: 0 5rem;
	position: relative;
	letter-spacing: .4rem;
}

.box1:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	width: 1px;
	height: 100%;
}

.big-text {
	font-family: 'FuturaLTHeavy';
	font-size: 4.5rem;
	line-height: 5rem;
	padding: 1.5rem 0;
	display: block;
	letter-spacing: .7rem;
}

.code-wrap {
	border: 2px dashed #15b04b;
	display: inline-block;
	margin: 0 auto;
	padding: 0.5rem 3.5rem;
	font-size: 1.4rem;
}

.endtext {
	font-size: 1.4rem;
	margin-top: 4rem;
}
/* First Fold End */

/* Section Two Start */
.section-two {
	background: #1f1f1f;
	position: relative;
}

.logo-showcase {
	text-align: center;
}

.logo-showcase a {
	text-decoration: none;
}

.logo-showcase img {
	width: 13rem;
	max-width: 100%;
}
/* Section Two End */

/* Section Three Start */
.section-three {
	background: #191919;
	position: relative;
	background: url('../images/showcase-circle.png') no-repeat top center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.logo-showcase {
	text-align: center;
}

.logo-showcase a {
	text-decoration: none;
}

.logo-showcase img {
	width: 13rem;
	max-width: 100%;
}
/* Custom Nav Pills Start */
	.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
		color: #fff;
		background-color: transparent;
		border-bottom-color: #14b04b;
	}
	.nav-justified>li>a {
		border-bottom: 2px solid transparent;
		border-radius: 0;
	}
	.nav>li>a:focus, .nav>li>a:hover {
		background-color: transparent;
		border-bottom-color: #14b04b;
	}
	.tab-content {
		padding-bottom: 10rem;
		position: relative;
	}
	/* bootstrap hack: fix content width inside hidden tabs */
	.tab-content>.tab-pane {
		display: block;
	}
	.tab-content>.tab-pane:not(.active) {
		position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    pointer-events: none;
	}
	/* bootstrap hack end */
	.horizontal-scroller {
		margin-bottom: 10rem;
	}
/* Custom Nav Pills End */
.use-case-container {
	padding: 10rem 15rem 10rem 0;
}
.use-case-slider-nav {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.use-case__img {
	position: relative;
}
.use-case__img::after {
	content: "";
	position: absolute;
	display: block;
	background: rgba(25, 25, 25, 0.5);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
}
.nav-prev,
.nav-next {
	width: 5rem;
}
.nav-prev:hover,
.nav-next:hover {
	cursor: pointer;
}
.nav-prev {
	float: left;
}
.nav-next {
	float: right;
}
.use-case-slider-item {
	padding: 5rem 0 0;
}
.use-case {
	position: relative;
	display: inline-block;
	z-index: 0;
}
.use-case__inner {
	position: relative;
	z-index: 0;
}
.use-case__name {
	position: absolute;
	top: 4rem;
	left: 0;
	font-size: 6rem;
	font-family: 'FuturaLTHeavy';
	z-index: 1;
	transform: translateX(-50%);
	line-height: 0.6;
	text-align: left;
  line-height: 1;
}
.use-case__name--small {
	font-size: 4rem;
  line-height: 1.1;
}
.use-case__url {
	margin-top: 2rem;
	text-align: left;
}
.use-case__url a {
	text-decoration: none;
	color: inherit;
}
.use-case-slider {
	height: 100%;
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-dots {
	bottom: -15rem;
}
.slick-dots li button:before {
	display: none;
}
.slick-dots li,
.slick-dots li button {
	width: 1.5rem;
	height: 1.5rem;
}
.slick-dots li button {
	border-radius: 50%;
	border: 1px solid #fff;
}
.slick-dots li.slick-active button {
	background: #14b04b;
	border: 1px solid #14b04b;
}
/* .floating {  
	animation-name: floating;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	-webkit-backface-visibility: hidden;
}
@keyframes floating {
	from { transform: translate(0px, 0px); }
	65%  { transform: translate(2px, 12px); }
	to   { transform: translate(0px, 0px); }    
}
.slow-floating {  
	animation-name: slow-floating;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	-webkit-backface-visibility: hidden;
}
@keyframes slow-floating {
	from { transform: translate(0px, 0px); }
	55%  { transform: translate(-2px, 8px); }
	to   { transform: translate(0px, 0px); }    
} */
.tab-pane {
	position: relative;
}
.morph-wrap {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	pointer-events: none;
	padding-left: 20rem;
}
.morph-wrap .morph {
	max-width: 100%;
	max-height: 100%;
	fill: none;
	stroke-width: 12px;
	stroke: #009e3e;
	opacity: 0.9;
}
/* Section Three End */

/* Footer Start */
footer {
	padding: 30px 0;
	position: relative;
}

.footer-logo a.f-logo {
	display: inline-block;
	padding-right: 20px;
}

.f-logo img {
	width: 7rem;
}

.footer-logo p {
	display: inline-block;
	padding: 0 20px;
	font-size: 1.4rem;
	letter-spacing: 0.2rem;
}

.footer-right {
	float: right;
}

.footer-right,
.footer-left {
	padding-left: 30px;
	padding-right: 30px;
}

ul.social {
	display: inline-block;
	float: right;
}

.social li {
	display: inline-block;
	float: left;
	vertical-align: middle;
	margin: 0 8px;
}

.social li a {
	border: 1px solid #15b04b;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	line-height: 37px;
	text-align: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.social svg {
	width: 1.5rem;
	margin: 0 4px;
	fill: #fff;
}

.social li a:hover svg {
	fill: #15b04b;
}
/* Footer End */