/* ===============================================================================================================
FONTS
================================================================================================================ */
@font-face {
  font-family: 'Polaris-Light';
  src: url('../fonts/Polaris-Light.eot'); /* IE9 Compat Modes */
  src: url('../fonts/Polaris-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    
       url('../fonts/Polaris-Light.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/Polaris-Light.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/Polaris-Light.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Polaris-Book';
  src: url('../fonts/Polaris-Book.eot'); /* IE9 Compat Modes */
  src: url('../fonts/Polaris-Book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    
       url('../fonts/Polaris-Book.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/Polaris-Book.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/Polaris-Book.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Polaris-Medium';
  src: url('../fonts/Polaris-Medium.eot'); /* IE9 Compat Modes */
  src: url('../fonts/Polaris-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    
       url('../fonts/Polaris-Medium.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/Polaris-Medium.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/Polaris-Medium.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Polaris-Bold';
  src: url('../fonts/Polaris-Bold.eot'); /* IE9 Compat Modes */
  src: url('../fonts/Polaris-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    
       url('../fonts/Polaris-Bold.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/Polaris-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/Polaris-Bold.svg#svgFontName') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Polaris-Heavy';
  src: url('../fonts/Polaris-Heavy.eot'); /* IE9 Compat Modes */
  src: url('../fonts/Polaris-Heavy.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    
       url('../fonts/Polaris-Heavy.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/Polaris-Heavy.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/Polaris-Heavy.svg#svgFontName') format('svg'); /* Legacy iOS */
}
/* ========================================
TEMP
======================================== */
#responsive {
	background: red;
	height: 6px;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 90000;
}

@media (min-width: 320px) {
	#responsive {
		background: coral;
	}
}

@media (min-width: 768px) {
	#responsive {
		background: blue;
	}
}

@media (min-width: 992px) {
	#responsive {
		background: green;
	}
}

@media (min-width: 1200px) {
	#responsive {
		background: orange;
	}
}

/* ========================================
DEFAULT
======================================== */
body {
	background: #c3c7ce;
	font-family: 'Polaris-Book', Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
	color: #fff;
	font-weight: normal;
	margin-top: 0;
}

a {
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

a:hover {
	text-decoration: none;
}

p {
	color: #f2eeee;
}

/* ========================================
DEFAULT ANIMATION
======================================== */
.animated-out,.animated-in {
	-webkit-transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	-moz-transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	-o-transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
}

.animated-out {
	-webkit-transform: translateY(35px);
	-moz-transform: translateY(35px);
	-o-transform: translateY(35px);
	-ms-transform: translateY(35px);
	transform: translateY(35px);
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
}

.animated-in {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
}

/* ========================================
CLASSES
======================================== */
.btn {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid transparent;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

.btn-default {
	background: none;
	border: 1px solid #fff;
	color: #fff;
}

.btn-default:hover {
	border: 1px solid #fff;
	background: #fff;
	color: #131a23;
}

input.form-control {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	border: none;
	font-size: 18px;
	padding: 12px 10px;
	line-height: 24px;
	height: auto;
}

/* ========================================
#modal
======================================== */
#modal {
	background: rgba(19, 26, 35, 0.9);
	position: fixed;
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10001;
}

#modalsignup > .btn,
#modal .btn {
	background: none;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10002;
}

#modalsignup > .btn img,
#modal .btn img {
	width: 60px;
	height: 60px;
}

#modal iframe {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* ========================================
#loader
======================================== */
#loader {
	background: rgba(19, 26, 35, 1);
	position: fixed;
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10000;
}

#loader .logo {
	position: absolute;
	height: 30px;
	width: 30px;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	-webkit-animation: loading 1s infinite; /* Safari 4+ */
	-moz-animation:    loading 1s infinite; /* Fx 5+ */
	-o-animation:      loading 1s infinite; /* Opera 12+ */
	animation:         loading 1s infinite; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes loading {
  0%   { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@-moz-keyframes loading {
  0%   { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@-o-keyframes loading {
  0%   { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes loading {
  0%   { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* ========================================
NAV
======================================== */
#nav {
	display: block;
	position: fixed;
	height: 50px;
	width: 100%;
	z-index: 9000;
	background: rgba(19, 26, 35, 0.0);
    -webkit-transition: background 250ms ease-out 0s;
    -moz-transition: background 250ms ease-out 0s;
    -o-transition: background 250ms ease-out 0s;
    transition: background 250ms ease-out 0s;
}

#nav.darken {
	background: rgba(19, 26, 35, 0.8);
}

#nav .container-fluid {}

#nav .container-fluid .row {}

#nav .container-fluid .row > div {}

#nav .container-fluid .row > div .logo {
	display: block;
	height: 30px;
	width: 10%;
	margin: 10px auto;
	position: absolute;
	left: 0;
	right: 0;
}

#nav .container-fluid .row > div ul {
	display: block;
	float: right;
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
}

#nav .container-fluid .row > div ul li {
	float: left;
	margin-left: 10px;
}

#nav .container-fluid .row > div .lang {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	display: block;
	font-size: 12px;
	color: #fff;
	padding: 7px 12px;
	line-height: 15px;
	margin-left: 30px;
	color: white;
}

#nav .container-fluid .row > div .lang:hover {
	background: rgba(19, 26, 35, 0.3);
}

#nav .container-fluid .row > div .btn {
	font-size: 10px;
	letter-spacing: 1px;
	padding: 6px 12px;
}

#nav .container-fluid .row > div .btn-menu {
	display: block;
	height: 50px;
	width: 50px;
	padding: 15px;
	position: absolute;
	left: 0;
	top: 0;
}

#nav .container-fluid .row > div .btn-menu:hover {
	background: rgba(19, 26, 35, 0.3);
}

#menu {
	position: fixed;
	top: 0px;
	left: -100%;
	z-index: 9999;
	background: rgba(19, 26, 35, 0.8);
	height: 100%;
	padding: 0px;
}

#menu .list-group {
	margin-top: 50px;
	width: 100%;
}

#menu .list-group-item {
	font-size: 12px;
	border: none;
	background: rgba(19, 26, 35, 0.2);
	height: 50px;
	border-radius: 0px;
	padding: 0px;
}

#menu .list-group-item:not(.list-group-title) {
	border-left: 5px solid rgba(19, 26, 35, 0.6);
}

#menu .list-group-title {
	padding-left: 25px;
	padding-top: 14px;
	font-size: 16px;
	background: rgba(19, 26, 35, 0.1);
	color:white
}

#menu .list-group-title:hover {
	background: rgba(19, 26, 35, 0.1) !important;
}

#menu .list-group-title:hover a {
	color:white;
}

#menu .list-group-item:hover {
	background: rgba(19, 26, 35, 0.7);
}

#menu .list-group-item:hover a {
	color: white;
}

#menu .list-group-item a {
	font-family:'Polaris-Book';
	font-size: 12px;
	width: 100%;
	height: 100%;
	color: #5b6370;
	text-align: left;
	padding-top: 15px;
}

#menu .list-group-item.active {
	background: rgba(19, 26, 35, 0.7);
}

#menu .list-group-item.active a {
	color: white;
}

.menu-close {
	position: absolute;
	right: 0px;
}

.menu-close img {
	padding: 17px;
	height: 50px;
}

@media (min-width: 320px) {
	#nav .container-fluid .row > div ul {
		width: 100%;
	}

	#nav .container-fluid .row > div ul li:last-child {
		float: right;
	}
}

@media (min-width: 992px) {
	#nav .container-fluid .row > div ul {
		width: auto;
	}
	#nav .container-fluid .row > div ul li:last-child {
		float: left;
	}
}

/* ========================================
INTRO
======================================== */
#intro {
	background: url(../images/intro-bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: block;
	overflow: hidden;
	position: relative;
	height: 700px;
}

#intro .container {

}

#intro .container .row {

}

#intro .container .row > div {
	position: static;
}

#intro .container .row > div .play {
	display: block;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	opacity: 0.9;
	position: absolute;
	top: 260px;
	left: 0;
	right: 0;
}

#intro .container .row > div .play:hover {
	opacity: 1.0;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

#intro .container .row > div .play img {
	display: block;
	width: 100%;
	height: auto;
}

#intro .container .row > div p {
	color: #fff;
	display: block;
	font-size: 30px;
	text-align: center;
	padding: 0 15px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	width: 100%;
	max-height: 30%;
}

#intro .container .row > div p .quote {
	width: 25px;
	height: 25px;
	margin-top: -28px;
	opacity: 0.2;
}

#intro .container .row > div p .quote.quote-left {
	margin-right: 30px;
}

#intro .container .row > div p .quote.quote-right {
	margin-left: 30px;
}

#intro .container .row > div p cite {
	/*background: url(../images/wsj_logo.svg) no-repeat center center;*/
	width: 25%;
	margin: 20px auto 0 auto;
	display: block;
}

@media (min-width: 1px) and (max-width: 767px) {
	#intro {
		height: 500px;
	}

	#intro .container .row > div .play {
		top: 100px;
	}

	#intro .container .row > div p {
		background: rgba(101, 109, 115, 0.8);
		padding: 20px 15px 20px 60px;
		text-align: right;
		font-size: 24px;
		max-height: 40%;
	}
	
	#intro .container .row > div p .quote.quote-left {
		position: absolute;
		left: 5%;
		margin: 0;
	}

	#intro .container .row > div p .quote.quote-right {
		display: none;
	}
	
	#intro .container .row > div p cite {
		width: 100%;
	}

	#intro .container .row > div p cite img:first-child {
		position: static;
		float: right;
		width: 30%;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	#intro .container .row > div p {
		padding-right: 10%;
	}

	#intro .container .row > div p .quote.quote-left {
		left: 20%;
	}

	#intro .container .row > div p cite img:first-child {
		width: 20%;
	}
}

@media (min-width: 768px) {
	#intro .container .row > div p cite {
		width: 10%;
	}
}

/* ========================================
MEDIA
======================================== */
#media {
	background: #656d73;
	padding: 70px 0;
}

#media .container {}

#media .container .row {}

#media .container .row > div {}

#media .container .row > div img {
	display: block;
	margin: 0 auto;
	width: 75%;
	height: auto;
}

#media .container .row > div img.cnet {
	width: auto;
	height: 60px;
	margin-top: -15px;
}

#media .container .row > div img.engadget {
	margin-top: -15px;	
}

@media (max-width: 767px) {
	#media .container .row > div img.cnet {
		height: 90px;
		margin-top: -5px;
	}

	#media .container .row > div:nth-child(3), #media .container .row > div:nth-child(4) {
		margin-bottom: 0;
	}
}

@media (max-width: 560px) {
	#media .container .row > div img.cnet {
		height: 60px;
		margin-top: -15px;
	}
}

@media (max-width: 991px) {
	#media .container .row > div {
		margin-bottom: 40px;
		height: 70px;
	}

	#media .container .row > div:nth-child(3),
	#media .container .row > div:nth-child(4) {
		margin-bottom: 0;
	}
}
/* ========================================
HUB
======================================== */
#hub {
	background: url(../images/hub-bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: block;
	overflow: hidden;
	position: relative;
	min-height: 700px;
}

#hub .container-fluid .row > div {
}

#hub .container-fluid .row > div .image {
	z-index: 2;
}

#hub .row .col-xs-12 {
	position: static;
}

#hub .row .image {
	position: relative;
}

#hub .dot {
	background: rgba(255,255,255,0.8);
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	z-index: 999;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

#hub .dot:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

#hub .dot span {
	background: rgba(255,255,255,0.5);
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	opacity: 0.0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
   	-webkit-animation: pulsate 1.4s ease-out;
    -webkit-animation-iteration-count: infinite; 
}

#hub .dot1 {
	top: 44%;
	left: 26%;
}

#hub .dot2 {
	top: 53%;
	left: 70%;
}

#hub .hub-overlay {
	position: absolute;
	background: #404549;
	display: block;
	visibility: hidden;
	opacity: 0;
	/*overflow: hidden;*/
	top: 0;
	bottom: 0;
	/*width: 33%;*/
	height: 100%;
	z-index: 200;
	max-width: 700px;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

#hub .hub-overlay.left, #hub .hub-overlay.right {
	right: -50px;
}

#hub .hub-overlay .arrow {
	position: absolute;
	opacity: 1;
	width: 20px;
	height: auto;
	left: -10px;
}

#hub .hub-overlay .inner-content {
	background: #404549;
	display: block;
	position: absolute;
	padding-top: 0px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

#hub .hub-overlay.left .inner-content {
	
	padding-top: 200px;
}

#hub .hub-overlay .inner-content p {
	padding: 0 20px;
}

#hub .hub-overlay .inner-content img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(3, 3); opacity: 0.0;}
}

#accessories .container-fluid .row > .image .content .dot i {
	display: block;
	cursor: pointer;
	position: absolute;
	width: 10px;
	height: 10px;
}

#hub .container-fluid .row > div .hub {
	display: block;
	margin-top: 150px;
	margin-left: 230px;
	height: auto;
	width: 100%;
}

#hub .container-fluid .row > div .title {
	position: absolute;
	bottom: 100px;
	left: 0;
	right: 0;
	display: block;
	text-align: center;
	z-index: 3;
}

#hub .container-fluid .row > div .content {
	-webkit-transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	-moz-transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	-o-transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	transition-timing-function: cubic-bezier(0.13,0.71,0.30,0.94);
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
	display: block;
	opacity: 0;
	margin-top: 150px;
	/*position: absolute;*/
	/*left: 44%;*/
	z-index: 5;
}

#hub .container-fluid .row > div .content p {
	margin-bottom: 30px;
}

#hub .container-fluid .row > div .content .grid {

}

#hub .container-fluid .row > div .content .grid img {
	cursor: pointer;
	display: inline-block;
	height: auto;
	max-width: 60px;
	max-height: 60px;
	margin-bottom: 20px;
	margin: 10px;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

#hub .container-fluid .row > div .content .grid img:hover {
	cursor: pointer;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

#hub .container-fluid .row > div .content .grid .details {
	display: block;
}

#hub .container-fluid .row > div .content .grid .details img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#hub .container-fluid .row > div .content .grid .details p {
	padding-top: 10px;
}

#hub .container-fluid .row > div .content .grid .tooltip {
	position: absolute;
	background: #404549;
	display: none;
	opacity: 1;
	width: 80%;
	height: auto;
	padding: 20px;
	margin-top: 80px;
}

#hub .container-fluid .row > div .content .grid .tooltip .grid-arrowup {
	margin: 0;
	position: absolute;
	left: 10px;
	top: -10px;
	width: 24px;
	height: auto;
}

#hub .container-fluid .row > div .content .grid .tooltip .grid-arrowup {
	cursor: default;
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
}

#hub .container-fluid .row > div .content .grid .tooltip p {
	margin-bottom: 0;
}

#hub .container-fluid .row > div .grid-content {
/*	position: absolute;
	opacity: 0;
	top: 0;
	bottom: 0;
	right: -30px;
	width: 0%;
	z-index: 6;*/
	position: absolute;
	opacity: 1;
	left: 0;
	bottom: -50px;
	right: 0;
	width: 100%;
	height: 0px;
	z-index: 6;
}

#hub .container-fluid .row > div .grid-arrow {
	position: absolute;
	/*top: 50%;*/
	opacity: 1;
	top: -10px;
	width: 20px;
	left: 70%;
	/*margin-top: -10px;*/
	height: auto;
}

#hub .container-fluid .row > div .grid-content .inner-content {
	background: #393f43;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 5;
}

#hub .container-fluid .row > div .grid-content .inner-content > div {
	background: #404549;
	display: none;
	/*width: 260px;*/
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

#hub .container-fluid .row > div .grid-content .inner-content img {
	width: 100%;
	height: auto;
}

#hub .container-fluid .row > div .grid-content .inner-content .text {
	padding: 30px 15px 0px 15px;
}

#hub .container-fluid .row > div .grid-content .inner-content .text p {
	font-size: 12px;
	margin-bottom: 20px;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#hub .container-fluid .row > div .grid-content .inner-content .text img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 40px;
	max-height: 40px;
	margin-bottom: 10px;
}

#hub .container-fluid .row > div .grid-content .inner-content .text p {
	text-align: center;
}

#hub .container-fluid .row > div .grid-content .inner-content .content-7 {
	display: block;
	width: 100%;
}

/* ===== MEDIA QUERIES ===== */

@media (min-width: 1px) and (max-width: 991px) {

	#hub .container-fluid .row > div {
		padding: 0;
	}

	#hub .container-fluid .row > div .hub {
		margin: 50px 0 0 0;
	}

	#hub .container-fluid .row > div .image {
		z-index: 0;
	}

	#hub .container-fluid .row > div .title {
		position: relative;
		top: 5px;
	}

	#hub .container-fluid .row > div .title h1 {
		margin-top: -50px;
	}

	#hub .container-fluid .row > div .content {
		margin-top: 50px;
		padding: 0;
	}

	#hub .container-fluid .row > div .content h2,
	#hub .container-fluid .row > div .content p {
		display: block;
		text-align: center;
		padding-left: 15px;
		padding-right: 15px;
	}

	#hub .container-fluid .row > div .content .grid span {
		background: #4f565d;
		cursor: pointer;
		display: block;
		width: 50%;
		float: left;
		/*height: 100px;*/
		min-height: 150px;
		padding: 20px 0;
		position: relative;
	    -webkit-transition: all 250ms ease-out 0s;
	    -moz-transition: all 250ms ease-out 0s;
	    -o-transition: all 250ms ease-out 0s;
	    transition: all 250ms ease-out 0s;
	}

	#hub .container-fluid .row > div .content .grid span img {
		display: block;
		margin: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
	}

	#hub .container-fluid .row > div .content .grid span img:hover {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}

	#hub .container-fluid .row > div .content .grid span:hover img {
		transform: scale(1.1);
		-webkit-transform: scale(1.1);
	}

	#hub .container-fluid .row > div .content .grid span.active,
	#hub .container-fluid .row > div .content .grid span:hover {
		background: #394047;
	}

	#hub .container-fluid .row > div .content .grid .details {
		background: #394047;
		clear: both;
		color: #fff;
		display: none;
		overflow: hidden;
		padding: 20px;
		text-align: center;
	}

	#hub .container-fluid .row > div .content .grid .details img {
		height: auto;
	}

	#hub .container-fluid .row > div .content .grid .details p {
		padding: 5px;
		padding-top: 10px;
		margin-bottom: 0;
		text-align: center;
		font-size: 12px;
	}

	#hub .container-fluid .row > div .content .grid br {
		display: none;
	}
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
	#hub .hub-overlay .inner-content {
		padding-top: 0px;
	}

	#hub .container-fluid .row > div .hub {
		display: block;
		margin-top: 150px;
		margin-left: 230px;
	}

	#hub .container-fluid .row > div .title {
		position: absolute;
	}

	#hub .container-fluid .row > div .content {
		margin-top: 150px;
	}

	#hub .container-fluid .row > div .content .grid .details {
		clear: none;
		display: none !important;
	}

	#hub .container-fluid .row > div .content .grid br {
		display: inline;
	}
}

@media (min-width: 1200px) {}

/* ========================================
ACCESSORIES
======================================== */
#accessories {
	background: url(../images/accessory-bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: block;
	overflow: hidden;
	position: relative;
	height: 900px;
}

#accessories .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

#accessories .container-fluid .row {
	margin: 0;
}

#accessories .container-fluid .row > div {
	padding: 0;
}

#accessories .container-fluid .row > .image {
	display: block;
	height: 700px;
	width: 100%;
}

#accessories .container-fluid .row > .image .default {
	background: url(../images/accessories-bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 700px;
}

#accessories .container-fluid .row > .image .content {
	padding-top: 40px;
	display: none;
}

#accessories .container-fluid .row > .image .content.necklace {
	padding-top: 0px;
}

#accessories .container-fluid .row > .image .content .dot {
	background: rgba(255,255,255,0.8);
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

#accessories .container-fluid .row > .image .content .dot:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

#accessories .container-fluid .row > .image .content .dot span {
	background: rgba(255,255,255,0.5);
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	opacity: 0.0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
   	-webkit-animation: pulsate 1.4s ease-out;
    -webkit-animation-iteration-count: infinite; 
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(3, 3); opacity: 0.0;}
}

#accessories .container-fluid .row > .image .content .dot i {
	display: block;
	cursor: pointer;
	position: absolute;
	width: 10px;
	height: 10px;
}

#accessories .container-fluid .row > .image .content .overlay {
	background: #404549;
	position: absolute;
	display: block;
	opacity: 0;
	/*overflow: hidden;*/
	top: 0;
	bottom: 0;
	/*width: 33%;*/
	height: 100%;
	z-index: 200;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

#accessories .container-fluid .row > .image .content .overlay.left {
	left: -50px;
}

#accessories .container-fluid .row > .image .content .overlay.right {
	right: -50px;
}

#accessories .container-fluid .row > .image .content .overlay .arrow {
	position: absolute;
	opacity: 1;
	width: 20px;
	height: auto;
}

#accessories .container-fluid .row > .image .content .overlay.left .arrow {
	right: -10px;	
}

#accessories .container-fluid .row > .image .content .overlay.right .arrow {
	left: -10px;	
}

#accessories .container-fluid .row > .image .content .overlay .inner-content {
	background: #404549;
	display: block;
	padding: 250px 0px 20px 0px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

#accessories .container-fluid .row > .image .content.necklace .overlay.left .inner-content {
	padding-top: 200px;
}

#accessories .container-fluid .row > .image .content.necklace .overlay.right .inner-content {
	padding-top: 100px;
}

#accessories .container-fluid .row > .image .content .overlay .inner-content p {
	padding: 0 20px;
}

#accessories .container-fluid .row > .image .content .overlay .inner-content img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

#accessories .container-fluid .row > .image h1 {
	position: absolute;
	bottom: 100px;
	left: 0;
	right: 0;
	display: block;
	text-align: center;
}

#accessories .container-fluid .row > .image .content .device {
	margin-top: 140px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 100%;
}

#accessories .container-fluid .row > .image .content.pocket .device {
	margin-top: 80px;
}

#accessories .container-fluid .row > .image .content.pocket .device .dot1 {
	top: 30%;
	left: 20%;
}

#accessories .container-fluid .row > .image .content.pocket .device .dot2 {
	top: 40%;
	right: 20%;
}

#accessories .container-fluid .row > .image .content.tab .device {
	margin-top: 100px;
}

#accessories .container-fluid .row > .image .content.tab .device .dot1 {
	top: 30%;
	left: 50%;
}

#accessories .container-fluid .row > .image .content.tab .device .dot2 {
	top: 80%;
	right: 10%;
}

#accessories .container-fluid .row > .image .content.keys .device {
	margin-top: 100px;
}

#accessories .container-fluid .row > .image .content.keys .device .dot1 {
	top: 80%;
	left: 30%;
}

#accessories .container-fluid .row > .image .content.keys .device .dot2 {
	top: 15%;
	right: 10%;
}

#accessories .container-fluid .row > .image .content.tabkeys .device {
	margin-top: 250px;
}

#accessories .container-fluid .row > .image .content.tabkeys .device.open {
	margin-top: 150px;
}


#accessories .container-fluid .row > .image .content.tabkeys .device .device-tabkeys img {
	margin-left: auto;
	margin-right: auto;
}

#accessories .container-fluid .row > .image .content.tabkeys .device .device-tabkeys-open {
	display: none;
}

#accessories .container-fluid .row > .image .content.tabkeys .device .dot1 {
	top: 80%;
	left: 50%;
}

#accessories .container-fluid .row > .image .content.dongle .device {
	margin-top: 100px;
}

#accessories .container-fluid .row > .image .content.dongle .device .dot1 {
	top: 20%;
	left: 30%;
}

#accessories .container-fluid .row > .image .content.dongle .device .dot2 {
	top: 80%;
	right: 30%;
}

#accessories .container-fluid .row > .image .content.dongle {
	padding-top: 80px;
}

#accessories .container-fluid .row > .image .content.necklace .device {
	margin-top: 160px;
	margin-bottom: 20px;
}

#accessories .container-fluid .row > .image .content.necklace .device .dot1 {
	top: 71%;
	left: 11%;
}

#accessories .container-fluid .row > .image .content.necklace .device .dot2 {
	top: -1%;
	right: 5%;
}

#accessories .container-fluid .row > .image .content.necklace p {
	padding-bottom: 50px;
}

#accessories .container-fluid .row > .image .content .device img {
	width: 100%;
}

#accessories .container-fluid .row > .image .content .text.left,
#accessories .container-fluid .row > .image .content .text.right {
	display: block;
	padding-top: 260px;
	text-align: center;
}

#accessories .container-fluid .row .bottomnav {
	background: #4f565d;
	display: block;
	/*height: 200px;*/
	width: 100%;
	position: absolute;
	bottom: 0;
}

#accessories .container-fluid .row .bottomnav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#accessories .container-fluid .row .bottomnav ul li {
	float: left;
	width: 16.666666667%;
	height: 200px;
	display: block;
}

#accessories .container-fluid .row .bottomnav ul li a {
	display: block;
	color: #fff;
	cursor: pointer;
	width: 100%;
	height: 200px;
	overflow: hidden;
	font-size: 16px;
	text-decoration: none;
}

#accessories .container-fluid .row .bottomnav ul li a img {
	display: block;
	margin: 50px auto 20px auto;
	max-height: 60px;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

#accessories .container-fluid .row .bottomnav ul li a span {
	display: block;
	text-align: center;
}

#accessories .container-fluid .row .bottomnav ul li.active a,
#accessories .container-fluid .row .bottomnav ul li.active a:hover {
	background: #474e56;
}

#accessories .container-fluid .row .bottomnav ul li a:hover {
	background: #394047;
	text-decoration: none;
}


#accessories .container-fluid .row .bottomnav ul li a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

@media (min-width: 1px) and (max-width: 991px) {
	#accessories {
		min-height: 1100px;
		height: auto;
	}
	#accessories .container-fluid .row .bottomnav {
		position: static;
		min-height: 400px;
	}

	#accessories .container-fluid .row .bottomnav ul li {
		width: 33.333333333%;
	}

	#accessories .container-fluid .row .bottomnav ul li.content {
		background: url(../images/accessory-bg.jpg) no-repeat center center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		clear: both;
		display: none;
		float: none;
		width: 100%;
		height: inherit;
		overflow: hidden;
		padding: 20px;
	}

	#accessories .container-fluid .row .bottomnav ul li.content .device-dongle {
		width: 20%;
	}

	#accessories .container-fluid .row .bottomnav ul li.content img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 80%;
		height: auto;
	}

	#accessories .container-fluid .row .bottomnav ul li.content .left,
	#accessories .container-fluid .row .bottomnav ul li.content .right {
		padding-top: 30px;
		padding-bottom: 30px;
		text-align: center;
	} 

	#accessories .container-fluid .row > .image .content {
		display: none !important;
	}

	#accessories .container-fluid .row > .image .default {
		display: block !important;
	}
}

@media (min-width: 991px) and (max-width: 1200px) {
	#accessories .container-fluid .row > .image .content.pocket .text.right {
		padding-top: 100px;
	}
}

@media (min-width: 991px) {
	#accessories {
		height: auto;
	}

	#accessories .container-fluid .row > .image .content .text.left {
		padding-top: 200px;
	}

	#accessories .container-fluid .row > .image .content.dongle .text.left {
		padding-top: 150px;
	}

	#accessories .container-fluid .row > .image .content .text.right {
		padding-top: 200px;
	}

	#accessories .container-fluid .row > .image {
		height: auto;
	}

	#accessories .container-fluid .row > .image .content {
		padding-bottom: 100px;
	}
	
	#accessories .container-fluid .row > .image .default {
		min-height: 900px;
	}

	#accessories .container-fluid .row > .image .content .device {
		padding-top: 0px;
		margin-top: 0px;
	}

	#accessories .container-fluid .row > .image .content .device {
		margin-bottom: 100px;
	}

	#accessories .container-fluid .row > .image .content.tabkeys .device {
		margin-top: 200px;
	}

	#accessories .container-fluid .row > .image .content .device > .necklace {
		margin-bottom: 0px;
	}

	#accessories .container-fluid .row > .image .content.necklace .text p {
		width: 60%;
		margin-left: auto;
		margin-right: auto;
	}	

	#accessories .container-fluid .row > .image .content.dongle .device img {
		width: 60%;
	}

	#accessories img {
		max-height: 900px;
	}

	#accessories .container-fluid .row .bottomnav {
		position: relative;
	}

	#accessories .container-fluid .row > .image .content.tabkeys .device.open {
		margin-top: 0px;
	}
}

@media (min-width: 1250px) {
	#accessories .container-fluid .row > .image .content.pocket .text.right {
		padding-top: 300px;
	}

	#accessories .container-fluid .row > .image .content .text.left, #accessories .container-fluid .row > .image .content .text.right {
		padding-top: 400px;
	}

	#accessories .container-fluid .row > .image .content.tabkeys .text.right {
		padding-top: 250px;
	}
}

@media (min-width: 1650px) {

	#accessories .container-fluid .row > .image .content.tab .device,
	#accessories .container-fluid .row > .image .content.keys .device {
		margin-top: 315px;
	}

	#accessories .container-fluid .row > .image .content.necklace .device {
		margin-top: 395px;
	}

	#accessories .container-fluid .row > .image .content.dongle .text.left {
		padding-top: 200px;
	}

	#accessories .container-fluid .row > .image .content .text.left, #accessories .container-fluid .row > .image .content .text.right {
		padding-top: 535px;
	}
}


/* ========================================
FEATURES
======================================== */
#features {
	background: url(../images/features-bg.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: block;
	position: relative;
	/*height: 700px;*/
	padding: 70px 0;
}

#features .container {}

#features .container .row {}

#features .container .row img {
	display: block;
	margin: 0 auto 30px auto;
	max-height: 100px;
}

#features .container .row h2 {
	display: block;
	text-align: center;
	margin-bottom: 30px;
}

#features .container .row p {
	display: block;
	text-align: center;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}


/* ========================================
CALL TO ACTION
======================================== */
#cta {
	background: #474e56;
	padding: 70px 0;
}

#cta h2 {
	display: block;
	text-align: center;
	margin-bottom: 20px;
}

#cta p {
	display: block;
	text-align: center;
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
}

#cta form .btn {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	border: none;
	background: #fff;
	height: 49px;
	margin: 0;
}

#cta form .btn img {
	width: 20px;
	height: auto;
    -webkit-transition: all 250ms ease-out 0s;
    -moz-transition: all 250ms ease-out 0s;
    -o-transition: all 250ms ease-out 0s;
    transition: all 250ms ease-out 0s;
}

#cta form .btn:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#cta form .input-group-btn {

}

#cta .btn.btn-block {
	line-height: 34px;
}

@media (min-width: 1px) and (max-width: 991px) {
	#cta .container .row .col-xs-12 {
		margin-bottom: 20px;
	}
}

/* ========================================
FOOTER
======================================== */
#footer {
	background: #373f47;
	color: #9097a0;
	padding: 70px 0;
}

#footer h5 {
	margin-bottom: 20px;
}

#footer p {
	color: #9097a0;
	display: block;
	margin-bottom: 50px;
}

#footer p a {
	color: #9097a0;
	text-decoration: underline;
}

#footer p a:hover {
	color: #fff;
}

#footer .connect p a.social {
	margin-left: 10px;
	margin-right: 10px;
}

#footer p a .fa {
	font-size: 18px;
}

@media (max-width: 767px) {
	#footer .about p {
		width: 80%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#footer .about p {
		width: 50%;
	}
}

@media (max-width: 991px) {
	#footer h5 {
		text-align: center;
	}

	#footer p {
		text-align: center;
	}

	#footer .about p {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ========================================
MODALSIGNUP
======================================== */
#modalsignup {
	background: rgba(19, 26, 35, 0.9);
	position: fixed;
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10002;
}

#modalsignup #signup {
	margin-top: 100px;
}

#modalsignup #signup .btn {
	height: 50px;
}

#modalsignup #signup input.disabled{
	opacity: 0.5;
}

#modalsignup #signup .btn-default.disabled {
	opacity: 0.3;
	background: none;
}

#modalsignup #signup #message {
	display: none;
	padding-top: 20px;
}

#modalsignup #signup h3,
#modalsignup #signup p {
	display: block;
	text-align: center;
}

#modalsignup #signup p a {
	color: #fff;
	text-decoration: underline;
}

#modalsignup #signup .ajax {
	display: none;
	margin: 20px auto;
}