@charset "UTF-8";
/***** SVD CSS *****/

/* SVD Brand Colors

Dark Navy: #152130
Cobalt Blue: #3875f7
Secondary Blue: #4dc1dd
Ghost White: #f7f8fc
Secondary Gray: #dfe4f1
Text Gray: #495566

*/

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

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
	outline: none;
	text-decoration: none;
	color: #3875f7;
	cursor: pointer;
}

a:visited {color: inherit;}


a,
button,
label,
input,
textarea {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* remove gray click box on mobile */
}


h1, h2, h3, h4 {
  font-family: 'FFMarkWebProMedium', sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height: 1.3;
	margin: 0 0 20px;
	color: #26364c;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}


body {
  font-family: 'FFMarkWebProMedium', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 1em;
	line-height: 1.5;
	color: #495566;
	background: linear-gradient(to right, #f7f8fc, white, #f7f8fc);
	max-width: 1500px;
	margin: 0 auto;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p {
	font-size: 0.95em;
	color: #495566;
	margin: 0 0 30px; 
	line-height: 1.75;
}

main {background: white;}


/* -------------------------------- 

Common Styles

-------------------------------- */

span.techfootin-number {
  position: absolute;
  left: 15px;
  bottom: 0;
  font-family: 'FFMarkWebProBold', sans-serif;
  background: #7fb800;
  color: white;
  padding: 10px 15px;
  border-radius: 2px 2px 0 0;
}

.techfootin-text {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

hr.bottom-bar {
	display: block;
	border-bottom: 1.5px solid #dfe4f1;
	margin: 0 auto;
	width: 95%;
	outline: 0;
	border-left: 0;
	border-right: 0;
	border-top: 0;
}

.svd-type {
	font-size: 1.25em;
	font-family: 'FFMarkWebProBold', sans-serif; 
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}

.headline-text {
	font-size: 0.95em;
	color: #495566;
	margin: 0 0 30px; 
	line-height: 1.75;
}

.section-headline {
	background: #f7f8fc;
	padding-top: 25px;
	padding-bottom: 25px;
}

.section-headline .indicator,
.section-headline .headline {
	display: table;
	height: 75px;
}

.section-headline .indicator h2,
.section-headline .headline h3 {
	display: table-cell;
	vertical-align: middle;
}

.section-headline .indicator h2 {
	color: #495566;
	font-size: 0.9em;
	font-family: 'FFMarkWebProBold', sans-serif; 
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0;
	border-right: 2px solid;
}


.section-headline .headline h3 {
	font-family: 'FFMarkWebProMedium', sans-serif; 
	font-size: 2.25em; 
	line-height: 1.25;
	letter-spacing: -0.75px;
	margin: 0;
}

h3.headline {
	font-family: 'FFMarkWebProMedium', sans-serif; 
	font-size: 2.25em; 
	line-height: 1.25;
	letter-spacing: -0.75px;
}

h3.headline.subtle {
	font-family: 'FFMarkWebProMedium', sans-serif; 
	font-size: 1.5em; 
	line-height: 1.25;
	letter-spacing: -0.5px;
}


.banner-ghost-type {
	background-image: url(../images/capital-assets-ghost-type.png);
	background-size: cover;
	background-position: center center;
}


span.helper {display: block; text-align: center;}

.blue-button {
	position: relative;
	display: inline-block;
	cursor: pointer;
	color: white;
	font-size: 0.9em;
	background: #3875f7;
	padding: 15px 20px;
	border-radius: 2px;
  overflow: hidden;
  z-index: 1;	
	transition: all 0.5s ease-in-out;
}

.blue-button.lowercase {
	font-size: 0.9em;
	text-transform: capitalize;
	letter-spacing: 0;
}

.blue-button:after {
 content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 110%;
  background: #356fea;
  z-index: -1;
  transition: width 0.25s ease-in-out;
}

.blue-button:hover:after {
  width: 120%;
}

.blue-button:hover {background: #356fea;}

.blue-button:nth-of-type(2),
.blue-button:nth-of-type(3),
.blue-button:nth-of-type(4) {
	margin-left: 20px;
}

.blue-button:visited {color: white;}


.white-button {
	position: relative;
	display: inline-block;
	cursor: pointer;
	color: white;
	font-size: 0.9em;
	border: 2px solid white;
	padding: 10px 20px;
	border-radius: 2px;
  overflow: hidden;
  z-index: 1;	
	transition: all 0.5s ease-in-out;
}

.white-button:after {
 content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 110%;
  background: rgba(255,255,255,0.1);
  z-index: -1;
  transition: width 0.25s ease-in-out;
}

.white-button:hover:after {
  width: 120%;
}


.white-button:nth-of-type(2),
.white-button:nth-of-type(3),
.white-button:nth-of-type(4){
	margin-left: 10px;
}

.white-button.no-left {
	margin-left: 0;
}

.white-button:visited {color: white;}


span.results {
	display: inline-block;
	vertical-align: top;
	font-size: 1em;
	color: white;
	padding: 10px;
}

.light-gray-bg {background: #f7f8fc;}
.dark-bg {background: #152130;}
.darkest-bg {background: #0e1a26;}

.gradient-bg.blue {background: linear-gradient(to right, #3875f7, #4dc1dd);}
.gradient-bg.techfootin-brand {
	background: -webkit-linear-gradient(left, #206b4b, #85b223);
	background: -o-linear-gradient(left, #206b4b, #85b223);
	background: linear-gradient(to right, #206b4b, #85b223);
}

.gradient-bg.aim-brand {
	background: -webkit-linear-gradient(left, #079994, #055e72);
	background: -o-linear-gradient(left, #079994, #055e72);
	background: linear-gradient(to right, #079994, #055e72);
}

.blue-bg {background: #3875f7;}
.secondary-blue-bg {background: #4dc1dd;}


.color-white {color: #f7f8fc;}
.color-navy {color: #26364c;}
.color-blue {color: #3875f7;}




/* -------------------------------- 

Call to Action Bar

-------------------------------- */

.cta-bar {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.cta-bar h3,
.cta-bar a {
	display: inline-block;
	color: white;
	margin: 0;
}

.cta-bar h3 {
	vertical-align: middle;
	font-size: 1.5em;
}

.cta-bar a {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	color: white;
	font-size: 0.9em;
	border: 2px solid white;
	padding: 10px 20px;
	border-radius: 2px;
	margin-left: 10px;
	transition: all 0.5s ease-in-out;

}

/* -------------------------------- 

Top Bar

-------------------------------- */
.top-bar {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 1500px;
	color: #606d7f;
	background: #0e1a26;
	z-index: 5;
	font-size: 0.8em;
	text-align: right;
	height: 35px; /* determines height of top bar */
	overflow: hidden;
}

.top-bar-middle {
	display: table;
	vertical-align: middle;
	width: 100%;
	height: 35px; /* determines height of top bar */
	padding: 0;
	margin: 0;
	text-align: right;
}

div.middle-content {
	display: table-cell;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}



.top-bar a.link {
	display: inline-block;
	vertical-align: middle;
	color: #dfe4f1;
	padding: 0 15px;
	line-height: 25px;
	margin: 0;
	transition: color 0.3s ease-in-out;
}


.top-bar span {
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 20px;
	background: #606d7f;
}



/* -------------------------------- 

Nav Trigger

-------------------------------- */
.nav-trigger {display: hidden;}


/* -------------------------------- 

SVD Logo

-------------------------------- */
.brand {
	position: fixed;
	background: 185px 55px;
	top: 42px;
	margin-left: 70px;
	width: 185px;
	height: 55px;
	background-image: url(../images/svd-logo-full-horizontal.svg);
	background-size: cover;
	background-repeat: none;
	background-position: center center;
	z-index: 99;
	transition: all 0.3s ease-in-out;
}

/* -------------------------------- 

Nav Bar

-------------------------------- */

.nav-container {
	position: fixed;
	width: 100%;
	max-width: 1500px;
	top: 35px;
	z-index: 5;
	margin: 0;
	overflow: hidden;
	background: #152130;
}

.nav {
	list-style-type: none;
	margin: 0;
	padding: 0 70px 0 0;
	float: right;
	background: none;
}

.nav li {
	position: relative;
	margin: 0;
	background: none;
	float: left;
}

span.gradient-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	width: 0;
	background: linear-gradient(to right, #3875f7, #4dc1dd);
	transition: 0.4s;

}

.nav a li {
	display: inline-block;
	font-size: 0.9em;
	font-family: 'FFMarkWebProMedium', sans-serif;
	font-weight: normal;
	text-align: center;
	margin: 0;
	min-width: 70px;
	padding: 25px 15px;	
	height: 100%;
	color: #dfe4f1;
	transition: all 0.3s ease-in-out;
}

.nav a:hover li span.gradient-bar, 
.nav a:active li span.gradient-bar {width: 100%;}

.nav a:visited li {color: #dfe4f1;}



/* -------------------------------- 

Homepage Slider

-------------------------------- */

.full-width-slider {
	position: relative;
	height: 550px;
	overflow: hidden;
	margin-top: 70px;
}

.slides {
	position: relative;
	height: 100%;
	background-color: #152130;
}

.slides li {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: translateX(100%);
	transition: transform 0.5s;
	background: url('../images/slide1-new.jpg') no-repeat center center;
	background-size: cover;
	
}

.slides li:nth-of-type(2){
	background: url('../images/slide3.jpg') no-repeat center center;
	background-size: cover;
}


.slides li:nth-of-type(3){
	background: url('../images/slide3-updated3.jpg') no-repeat center center;
	background-size: cover;
}

.slides li.selected {
	z-index: 2;
	transform: translateX(0);
}

.slides li.move-left {transform: translateX(-100%);}

.slides li.visible {z-index: 2;}


.slides h2 {
	font-size: 2.75em;
  font-family: 'FFMarkWebProMedium', sans-serif;
	letter-spacing: -1px;
	font-weight: normal;
	color: white;
	line-height: 1.1;
	margin: 0 0 15px 0;
	text-shadow: 0 0 25px rgba(14,26,38,0.5);
	transition: all 0.3s ease;

}

.slides p {
	font-size: 1.25em;
	color: white;
}

.slides span.aim,
.slides span.techfootin {
	display: inline-block;
	font-size: 1.25em;
	color: white;
	background: rgba(4,73,88,0.80);
	padding: 10px 15px;
	border-radius: 3px;
	transition: all 0.3s ease-in-out;
}

.slides span.aim {margin-right: 10px;}

.slides span.aim:before {
	display: block;
	content: "";
	width: 150px;
	height: 28px;
	background: url(../images/get-aim.svg) ;
	background-position: center center;
	background-repeat: none;
	background-size: cover;
}

.slides span.aim:hover,
.slides span.techfootin:hover {
	background: rgba(4,73,88,0.60);
}

.slides span.techfootin:before {
	display: block;
	content: "";
	width: 160px;
	height: 51px;
	background: url(../images/techfootin-logo-white-v2.svg);
	background-position: center center;
	background-repeat: none;
	background-size: cover;
}


img.aim-plug {
	display: block;
	width: 200px;
	margin-bottom: 20px;
}


.type-container {
	position: absolute;
	top: 27%;
	width: 100%;
	padding: 0 70px;
	/*background: rgba(14,26,38,0.8);*/
}

.type-container.higher {
	top: 10%;
}

.slider-navigation a {
	position: absolute;
	bottom: 30px;
	font-size: 0.8em;
  font-family: 'FFMarkWebProBold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: white;
	right: 140px;
	text-align: center;
	padding: 14px 0;
	width: 52px;
	height: 52px;
	border: 1px solid white;
	border-radius: 50%;
	opacity: .6;
	transition: all 100ms ease-in-out;
	z-index: 3;
}

.slider-navigation a:hover {opacity: 1;}

.slider-navigation a:active {
	border: 1px solid;
	transform: scale(1.1);

}

.slider-navigation a.next {left: auto; right: 70px; }

.slider-dots-navigation {
	position: absolute;
	z-index: 3;
	bottom: 35px;
	left: 70px;
}

.slider-dots-navigation li {
	display: inline-block;
	margin-right: 5px;
}

.slider-dots-navigation a {
	display: block;
	text-align: center;
	font-size: 0.9em;
	border: 1px solid transparent;
	border-radius: 50%;
	padding: 5px;
	width: 35px;
	height: 35px;
	color: white;
	transition: border .3s;
}

.slider-dots-navigation a.selected {border: 1px solid white; vertical-align: middle;}






/* -------------------------------- 

Featured Event Version 2

-------------------------------- */

.new-featured {
	background: #1d2a3a;
	
}

.new-featured .indicator,
.new-featured .logo,
.new-featured .text,
.new-featured .countdown,
.new-featured .button {
	display: table;
	height: 75px;
}

.new-featured .indicator h3,
.new-featured .text p,
.new-featured .countdown span {
	display: table-cell;
	vertical-align: middle;
}

.new-featured .indicator h3 {
	color: #4dc1dd;
	font-size: 0.9em;
	font-family: 'FFMarkWebProBold', sans-serif; 
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0;
	border-right: 2px solid #4dc1dd;
}

.new-featured .logo img {
	display: block;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	margin: 0 auto;
}

.new-featured .text p {
	font-size: 0.9em;
	color: #dfe4f1;
	margin: 0;
}

.new-featured .countdown span {
	font-size: 0.9em;
	font-family: 'FFMarkWebProBold', sans-serif; 
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #dfe4f1;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

.new-featured .button a {
	display: inline-block;
	float: right;
	text-align: center;
	font-size: 0.9em;
	color: white;
	background: #4dc1dd;
	border-radius: 2px;
	padding: 10px 20px;
	margin-top: 15px; 
}

/* -------------------------------- 

Featured Event

-------------------------------- */

.fe-info {
	display: table;
	height: 70px;
	width: 100%;
	background-color: #f7f8fc;
	background: url(../images/animated-bg.gif) center center;
	background-size: cover;
	border-radius: 2px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(35,74,156,0.30);
}


.fe-text {
	display: table;
	vertical-align: middle;
	float: left;
	width: 75%;
	height: 70px;
	padding: 0;
}

.fe-text img {
	display: inline-block;
	vertical-align: middle;
	height: 70px;
	width: 70px;
}

.fe-text p {
	display: table-cell;
	vertical-align: middle;
	color: white;
	line-height: 1.3em;
	padding: 0 20px;
}

.fe-link {
	width: 25%;
	float: left;
	text-align: right;
	height: 70px;
	padding-right: 20px;
}

.fe-link a {
	display: inline-block;
	font-size: 0.9em;
	color: white;
	background: #4dc1dd;
	padding: 10px 20px;
	margin-top: 15px;
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(35,74,156,0.30);
}


/* -------------------------------- 

Services

-------------------------------- */

.service-block {
	position: relative;
	border-radius: 2px;
	overflow: hidden;
	background: url(../images/manage-cover.jpg);
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 400px;
	
	box-shadow: 0 0 20px rgba(35,74,156,0.20);
}

.service-block .logo {
	position: absolute;
	top: 30px;
	left: 20px;
	width: 100px;
	z-index: 3;
}

.service-block .logo.techfootin {
	position: absolute;
	top: 30px;
	left: 20px;
	width: 150px;
	z-index: 3;
}

.service-block.manage {
	background: url(../images/manage-cover.jpg);
	background-size: cover;
	background-position: center center;
}

.service-block.value {
	background: url(../images/value-cover.jpg);
	background-size: cover;
	background-position: center center;
}

.service-block.monetize {
	background: url(../images/monetize-cover-updated.jpg);
	background-size: cover;
	background-position: center center;
}

.service-block-info {
	position: absolute;
	top: 35%;
	padding: 30px 20px;
	margin: 0;
	height: 225px;
	
}

.service-block-info p {
	margin-bottom: 10px;
}

span.overlay {
	display: block;
	font-size: 1.5em;
	color: white;
	height: 100%;
	width: 100%;
	background: linear-gradient(rgba(14,26,38,0), rgba(14,26,38,0.9) 85%);
	transition: all 0.3s ease-in-out;
}

span.learn-more {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 20px;
	font-size: 0.9em;
	padding: 5px 20px;
	border-radius: 2px;
	border: 2px solid;
	color: white;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.service-block:hover span.learn-more {
	background: #3875f7;
	border: 2px solid #3875f7;
}



/* -------------------------------- 

Auction Cards

-------------------------------- */

div.auction-card {
	min-height: 435px;
	height: 450px;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(35,74,156,0.20);
}

div.auction-card-v2 {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(35,74,156,0.20);
}

/* Auction card Featured Image and Client Logo */
div.event-image-container {
	position: relative;
	width: 100%;
	height: 200px;
	min-height: 200px;
	overflow: hidden;
	margin: 0;
	background: url(../images/card-cover3.jpg) no-repeat center center;
	background-size: cover;
}


.client-logo {
	position: absolute;
	top: 20px;
	left: 15px;
	margin: 0;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	z-index: 2;
}

span.date {
	display: block;
	font-size: 0.9em;
	margin: 0 0 10px;
	color: #606d7f;
}


span.live-auction {
	position: relative;
	display: inline-block;
	font-size: 0.9em;
	margin: 0 0 10px;
	z-index: 2;
	border-radius: 0 2px 0 0;
}

span.live-auction:before {
	display: inline-block;
	vertical-align: middle;
	content: "";
	width: 10px;
	height: 10px;
	background: #3875f7;
	border-radius: 50%;
	margin-right: 7px;
	animation: liveBackground 1s ease-in-out infinite;
}

@keyframes liveBackground {
	0% {background: #3875f7;}
	50% {background: #4dc1dd;}
	100% {background: #3875f7;}
}


/* Auction card Event Details */
.event-details-container {
	padding: 20px 15px;
}


.auction-card-v2 .event-details-container {
	background: white;
}


div.title-location-container {
	display: inline-block;
	width: 60%;
	vertical-align: middle;
}


div.sale-title-container {
	position: relative;
	height: 25px;
	overflow: hidden;
	margin-bottom: 5px;
}

div.sale-title-container h3 {
  font-size: 1.1em;
	font-family: 'FFMarkWebProBold', sans-serif; 
}

div.featuring-line-container {
	position: relative;
	min-height: 140px;
	overflow: hidden;
	font-size: 0.95em;
	margin: 20px 0 10px;
}

.featuring-line-container p {
	color: #26364c;
  line-height: 1.65;
}

div.location-container {
	position: relative;
	height: 20px;
	overflow: hidden;
	margin: 0;
	line-height: 1em;

}

.fade-headline {
  position: relative;
  height: 3em; /* exactly one line */
}
.fade-headline:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: 3em;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8) 50%);
}

.fade-text {
  position: relative;
  height: 1.5em; /* exactly three lines */
}

.fade-text:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: 1.5em;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1) 50%);
}


.fade-span {
  position: relative;
  height: 1em; /* exactly one line */
}

.fade-span:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: 1.5em;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1) 50%);
}


div.view-catalog-link-container {
	display: inline-block; 
	float: right; 
	width: 35%; 
	text-align: center; 
}

.catalog-link-v2 {
	display: block;
	font-size: 0.8em;
	color: white;
	background: #3875f7;
	border-radius: 2px;
	padding: 15px 10px;
}

span.location {
	color: #606d7f;
	font-size: 0.9em;
}


.sale-links {
	background: linear-gradient(to right, #3875f7, #4dc1dd);
}

.auction-card-v2 .sale-links {
	background: #2a394c;
}

.sale-details, 
.view-catalog {
	display: inline-block;
	padding: 11px 15px 20px;
	font-size: 0.9em;
	color: white;
	width: 50%;
	transition: all 0.3s ease-in-out;
}

.auction-card-v2 .sale-details {
	display: block;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	color: white;
	font-size: 0.95em;
	padding: 11px 15px 15px;
}



.view-catalog {
	text-align: right;
	float: right;
}

.auction-card-v2 .sale-details:hover {background: none;}
.sale-details:hover {background: #3875f7;}
.view-catalog:hover {background: #4dc1dd;}

.sale-details:visited,
.view-catalog:visited {color: white;}


/* -------------------------------- 

Auction Checkout

-------------------------------- */

span.checkout {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(77,193,221,0.9);
	color: white;
	font-size: 0.9em;
	font-weight: normal;
	padding: 3px 20px;
}





/* -------------------------------- 

Success Messages

-------------------------------- */

div.success-message,
div.error-message {
	position: relative;
	margin: 10px 0 30px;
	transition: all 0.3s ease-in-out;
}

span.message {
	display: inline-block;
	font-size: 0.9em;
	background: #4dc1dd;
	color: #f7f8fc;
	padding: 10px 20px;
	border-radius: 2px;
	font-weight: normal;
	transition: all 0.3s ease-in-out;
}

.error-message span.message {
	display: inline-block;
	font-size: 0.9em;
	background: #f45b69;
	color: #f7f8fc;
	padding: 10px 20px;
	border-radius: 2px;
	font-weight: normal;
	transition: all 0.3s ease-in-out;
}

span.triangle-shape {
	position: absolute;
	width: 15px;
	height: 15px;
	background: #4dc1dd;
	bottom: -5px;
	left: 20px;
	transform: rotate(45deg);
}

.error-message span.triangle-shape {
	position: absolute;
	width: 15px;
	height: 15px;
	background: #f45b69;
	bottom: -5px;
	left: 20px;
	transform: rotate(45deg);
}




/* -------------------------------- 

Back to top button

-------------------------------- */

.to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	text-align: center;
	background: rgba(21,33,48,0.7);
	color: white;
	font-size: 0.9em;
	line-height: 70px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	z-index: 3;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.3s ease-in-out;
}

.to-top:hover {background: rgba(21,33,48,0.9);}

.showBackToTop {
	opacity: 1;
	transform: translateX(0);
}




/* -------------------------------- 

Footer

-------------------------------- */

footer {
	background: #152130;
	color: #606d7f;
	font-size: 1em;
}

footer img {
	display: block;
	width: 90px;
	height: 90px;
	
}


footer ul {
	display: block;
	list-style-type: none;
	font-size: 0.8em;
	color: #606d7f;
	margin-bottom: 40px;
	padding: 0;
	background: none;
}

footer span {
	display: inline-block;
	font-size: 1.5em;
	color: #606d7f;
	border-radius: 2px;
	margin-bottom: 10px;
}



footer a {
	display: block;
	padding: 5px 0;
	color: #495566;
	transition: 0.3s;
}

footer a:hover {color: #4dc1dd;}


a.social-icon {
	display: inline-block;
}

.social-icon img {
	display: inline-block;
	width: 35px;
	height: 35px;
	margin: 0 5px 5px 0;
}

div.copyright {
	color: #606d7f;
	background: #0e1a26;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}

span.cr {
	display: block; 
	font-size: 0.8em;
	line-height: 1em;
	border: none;
	margin: 0;
}



/* -------------------------------- 

Mobile Styling

-------------------------------- */

@media screen and (max-width: 950px) {
	
	.brand {
		left: -50px;
	}	
	
	.top-bar {
		position: fixed;
		top: 0;
		width: 100%;
		max-width: 1500px;
		color: #606d7f;
		background: #0e1a26;
		z-index: 5;
		font-size: 0.8em;
		text-align: right;
		line-height: 0.1;
		overflow: hidden;
		padding: 0;
	}
	

	.nav-trigger {
		position: fixed;
		z-index: 5;
		top: 44px;
		right: 20px;
		height: 44px;
		width: 44px;
		overflow: hidden;
		color: transparent;
		white-space: nowrap;
		text-indent: 100%;	
	}

	.nav-trigger span,
	.nav-trigger span::before,
	.nav-trigger span::after {
		position: absolute;
		width: 35px;
		height: 2px;
		background: linear-gradient(to right, #f7f8fc, #f7f8fc);
		transition: all 0.3s ease-in-out;
	}

	.nav-trigger span {
		top: 45%;
		left: 0;
		transition: all .3s;
	}

	.nav-trigger span::before,
	.nav-trigger span::after {
		content:'';
		top: 0;
		left: 0;
		transition: all .3s, transform .3s;
	}

	.nav-trigger span::before {transform: translateY(-8px); width: 44px;}

	.nav-trigger span::after {transform: translateY(8px); width: 15px}


	.nav-open .nav-trigger span,
	.nav-open .nav-trigger span::before,
	.nav-open .nav-trigger span::after {width: 44px;background: linear-gradient(to right, #3875f7, #4dc1dd);}

	.nav-open .nav-container {transform: translateX(0);}

	.nav-container {
		position: fixed;
		overflow-y: scroll;
		-webkit-overflow-scrolling:touch;
		transform: translateX(-100%);
		transition: transform 0.3s;	
		width: 100%;
		height: 100vh;
		background: #152130;
		margin-top: 60px;
	}

	.nav {
		margin: 25px 0 0 0;
		padding: 0;
		width: 100%;
		background: none;	
	}

	.nav a li {
		display: block;
		font-size: 0.9em;
		width: 100%;
		padding: 20px;
		border-radius: 0px;
		border-bottom: 1px solid #0e1a26;
		color: #dfe4f1;
		text-align: left;
	}
	
	.nav a:last-of-type li {border-bottom: none;}

	.full-width-slider {
		height: 490px;
		position: relative;
		margin-top: 80px;
	}	
		
	.slider-dots-navigation {bottom: 20px;left: 20px;}	

	.slider-navigation a {
		height: 45px;
		width: 45px;
		bottom: 20px;
		right: 80px;
		padding: 12px 0;
		font-size: 0.7em;
		text-align: center;
	}	

	.slider-navigation a.next {right: 25px;}


	.slides h2 {font-size: 2em; line-height: 1.25; margin: 0;}

	.slides p {font-size: 1.1em; padding: 10px 0; margin: 0;}	
	
	.slides li > div {
		padding: 0 20px;
		text-align: center;
	}
	
	img.aim-plug {
		display: block;
		margin: 0 auto;
		width: 100px;
	}
	
	.type-container {
		top: 15%;
	}
	
	.slides span.aim,
	.slides span.techfootin {text-align: center; display: block;}
	
	.slides span.aim {margin-right: 0;}
	
	
	.slides span.aim:before,
	.slides span.techfootin:before {margin: 0 auto;}
	
	.mobile-nav {
		position: fixed;
		top: 30px;
		width: 100%;
		height: 70px;
		background: #152130;
		z-index: 4;
		box-shadow: 0 0 20px rgba(0,0,0,0.30);

	}
	
	footer {text-align: center;}
	
	footer img {
		display: block;
		margin: 0 auto;
	}
	
	.new-featured .indicator h3,
	.section-headline .indicator h2 {
		text-align: center;
		border-right: none;
		border-bottom: 2px solid;
		padding-left: 20px;
	}
	
	.section-headline .headline h3 {
		text-align: center;
	}
	
	.new-featured .logo img {
		width: 100px;
		height: 100px;
	}
	
	.new-featured .text p {
		text-align: center;
	}
	
	.new-featured .button a {
		display: block;
		text-align: center;
		float: none;
	}
	

} /* end of 950px break point */



/* -------------------------------- 

Smartphone

-------------------------------- */
@media screen and (max-width: 600px) {	
	
	.type-container.higher {
		top: 10%;
	}

	.type-container.higher-mobile {
		top: 5%;
	}

	
	.slides span.aim,
	.slides span.techfootin {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		width: 100%;
	}
	
	.slides span.aim:before {
		display: inline-block;
		vertical-align: middle;
		margin-right: 5px;
		width: 90px;
		height: 17px;
	}
	
	.slides span.techfootin:before {
		display: inline-block;
		vertical-align: middle;
		margin-right: 5px;
		width: 129px;
		height: 41px;
	}
	

	
		
	.brand {
		top: 42px;
		width: 152px;
		height: 45px;
	}	
	
	.blue-button,
	.blue-button:nth-of-type(2),
	.blue-button:nth-of-type(3),
	.blue-button:nth-of-type(4) {
		margin-left: 0;
		margin-right: 10px;
		margin-top: 10px;
	}
	
	.white-button,
	.white-button:nth-of-type(2),
	.white-button:nth-of-type(3),
	.white-button:nth-of-type(4) {
		display: block;
		margin: 0 0 10px;
		text-align: center;
		
	}
	
	span.results {
		display: block;
		text-align: center;
	}
	
	.marketplaces.aim .table-content:nth-of-type(1),
	.marketplaces.techfootin .table-content:nth-of-type(1) {height: 300px;}
		
	.headline-section a {float: none; margin-top: 10px;}
	
	
	
	.fe-info {
		display: block;
		height: 320px;
		width: 100%;
		border-radius: 2px;
		padding: 0;
		overflow: hidden;
		box-shadow: 0 0 20px rgba(35,74,156,0.30);
	}



	.fe-text {
		display: block;
		width: 100%;
		height: 225px;
		padding: 0;
	}

	.fe-text img {
		display: block;
		height: 100px;
		width: 100px;
		border-radius: 50%;
		margin: 20px auto 0;
		box-shadow: 0 0 20px rgba(35,74,156,0.30);
	}

	.fe-text p {
		display: block;
		padding: 20px;
		text-align: center;
		line-height: 1.5;
	}

	.fe-link {
		display: block;
		width: 100%;
		float: none;
		text-align: center;
		height: 70px;
		padding-right: 20px;
	}

	.fe-link a {
		display: inline-block;
		font-size: 0.9em;
		color: white;
		background: #3875f7;
		padding: 10px 20px;
		margin-top: 15px;
		border-radius: 2px;
		box-shadow: 0 0 20px rgba(35,74,156,0.30);
	}

	
	.cta-bar a {
		margin-left: 0;
		margin-top: 20px;
	}	
	
	
	
	
	p.text-hide {
		height: 2.25em;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		margin-bottom: 10px;
	}
	
	div.text-hide {
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		margin-bottom: 10px;
	}
	

} /***** end of mobile styles *****/







/* -------------------------------- 

Animations

-------------------------------- */

.fadeIt { animation: smooth 1s ease;}

@keyframes smooth {
	from {opacity: 0;}
	to {opacity: 1;}
}

.test {
	opacity: 0;
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	-o-transform: translateY(20%);
	transform: translateY(20%);
	transition: all 1.15s ease;
}

.title-effect {
	transform: translateX(0);
}


.speed {
	opacity: 0;
	-webkit-transform: translateX(-75%);
	-moz-transform: translateX(-75%);
	-ms-transform: translateX(-75%);
	-o-transform: translateX(-75%);
	transform: translateX(-75%);
	transition: all 0.4s ease-out;
}

@keyframes sliderEffect {
	0% {opacity: 1;}
	
	100% {opacity: 1;}
}

.animate {
	transform: translateY(0);
	opacity: 1;
}

.animate-left {
	transform: translateX(0);
	opacity: 1;
}







/**** End of Animations *****/



/* -------------------------------- 

Remove zoom from Form inputs

-------------------------------- */
/* Remove Input Auto Zoom on Form Inputs */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    select,
    textarea,
    input {
        font-size: 16px;
    }

    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px;
    }

}

