* {
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
	background: #2b2b2b;
	overflow-x: hidden;
	margin: 0;
}
/*body#index {
	background: #000;
}*/
img {
	max-width: 100%;
}
a, a:hover, a:active, a:focus {
  color: inherit;
}

/*========================
 Nav
=========================*/

nav ul.nav.navbar-nav {
	margin: auto !important;
	float: 	none !important;
	display: 	table;
}
nav ul.nav.navbar-nav li {
	padding: 	0;
  margin: 0 20px;
}
nav ul.nav.navbar-nav li a {
  font-size: 34px;
  color: rgba(255,255,255,0.8);
  font-family: lato;
  text-transform: uppercase;
  font-weight: 200;
}
nav ul.nav.navbar-nav li.active a {
  color: rgba(255,255,255,1);
}
nav ul.nav.navbar-nav li a:before {	
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FFF;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
nav ul.nav.navbar-nav li a:hover:before,
nav ul.nav.navbar-nav li.active a:before {	
	visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.nav>li>a:focus, .nav>li>a:hover {
	background: none;
}

/*========================
 Landing Page
=========================*/

section#landing {
	z-index: 3;
}
.top-logo {
  position: fixed;
  height: 200px;
  top: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
  background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 99%, rgba(0,0,0,0) 100%); 
  background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 20%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 20%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
  
}
.top-logo img {
  margin: auto;
  display: block;
  margin-top: 50px;
}
.launch-date {
  font-size: 50px;
  color: #fff;
  display: block;
  font-family: lato;
  font-weight: 300;
  text-align: center;
  margin: -5px 0 0;
}
.home-btn-container {
  position: fixed;
  width: 390px;
  bottom: 15vh;
  left: calc(50% - (390px / 2));
  z-index: 9999;
}
.home-btn-container a {
  display: inline-block;
  float: left;
}
.home-btn-container a:first-child {
  padding-right: 30px;
}
.btn {
  position: relative;
  width: 180px;
  height: 73px;
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  font-family: 'lato', helvetica, sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 67px;
  border: 3px solid #fff;
  border-radius: 4px;
  padding: 0;  
  z-index: 1000;

  transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;

  cursor: pointer;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  box-sizing: border-box;
  white-space: nowrap;
}
/*.btn {
	position: fixed;
  width: 204px;
  height: 76px;
  bottom: 15vh;
  left: calc(50% - (204px / 2));
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  font-family: 'lato', helvetica, sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 38px;
  border: 3px solid #fff;
  border-radius: 4px;
  padding: 15px 30px;  
  z-index: 1000;

  transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;

  cursor: pointer;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  box-sizing: border-box;
  white-space: nowrap;
}*/
.btn a, .btn:focus a, .btn:active a, .btn a:visited {
  color: #fff;
  text-decoration: none;
}
.btn:hover {
  background-color: rgba(0,0,0,1);
}
video {
	margin: 0;
  padding: 0;
  position: fixed;
  top: 50%; left: 50%;
  z-index: 2;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.video-fallback {
  height: 100vh;
  background-image: url(/omnia/images/home-poster-2.jpg);
  background-position: center 150px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

/*========================
 Head
=========================*/

section#head {
  width: 100vw;
  padding-bottom: 25px;
  background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 99%, rgba(0,0,0,0) 100%); 
  background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 20%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 20%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 ); 
}
section#head img {
  margin: auto;
  display: block;
  padding-top: 50px;
}
section#head .logo-a {
  display: inline-block;
  left: calc(50% - (518px / 2));
  position: relative;
}

/*========================
 Content Pages
=========================*/

section#content {
	background: #2b2b2b;
	color: #fff;
	font-family: 'lato', helvetica, sans-serif;
}
section#content img {
	margin-top: 50px;
	pointer-events: none;
}
section#content div.desc {
	margin-top: -50px;
}
section#content h2 {
	font-size: 42px;
	font-weight: 300;
  line-height: 36px;
	text-align: right;
	margin: 0;
  border-right: 1px solid #fff;
  padding: 0px 20px 5px 0px;
}
section#content span {
	font-size: 24px;
	font-weight: 300;
	display: block;
  margin-top: 5px;
}
#synthetic section#content span {
	color: #e7b98e;
}
#natural section#content span {
	color: #e9dca5;
}
section#content p {
	font-size: 27px;
	font-weight: 300;
}

footer {
  padding: 60px 0 0;
  border-top: 1px solid #fff;
  margin: 100px auto 0
}
footer img {
	max-width: 250px;
  display: block;
  margin: auto;
}
footer ul {
  position: relative;
  display: inline-block;
  width: 145px;
  left: 50%;
  margin-left: -72.5px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 0;
  text-align: center;
}
footer ul li {
  float: left;
  padding-right: 30px;
  list-style: none;
}
footer ul li:last-child {
  padding-right: 0;
}
footer ul li a {
  color: rgba(255,255,255,0.9);
  font-size: 36px;
}
footer ul li a:hover, footer ul li a:focus, footer ul li a:active {
  color: rgba(255,255,255,1);
}

/*========================
 About Page
=========================*/

sup {
	font-size: 18px;
}
#about section#head {
	padding-bottom: 50px;
}
#about section#content p {
	margin-bottom: 30px;
}
#about section#content span {
	font-size: inherit;
	font-weight: inherit;
	display: initial;
	margin-top: inherit;
}
#about section#content span.rosegold {
	color: #e7b98e;
}
#about section#content span.gold {
	color: #e9dca5;
}
#about footer {
	margin-top: 40px;
}

/*========================
 Back To Top
=========================*/

.cd-top {
  display: inline-block;
  width: 50px;
  position: fixed;
  bottom: 50px;
  right: 65px;
  color: #FFFFFF;
  font-size: 36px;
  text-align: center;
  line-height: 35px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: rgba(35,35,35,0.7);
	border: 1px solid #fff;
	border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s, background .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s, background .3s;
  transition: opacity .3s 0s, visibility 0s .3s, background .3s;
  z-index: 99999;
}
.cd-top:hover {  
  background: rgba(35,35,35,1);
  color: #FFFFFF;
}
.cd-top:focus {
	color: #FFFFFF;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
	opacity: 1;
}

/*========================
 Media Queries
=========================*/

@media (max-width: 1199px) {
  .top-logo img {
    max-height: 110px;
  }
  .video-fallback {
	  background-position: center 125px;
	}
}

@media (max-width: 991px) {
	section#head .logo-a {
	  left: calc(50% - (400px / 2));
	}
	section#head img {
		padding-top: 30px !important;
    width: 400px;
    padding-bottom: 15px;
	}
	section#content div.desc {
		margin-top: 0 !important;
	}
  nav ul.nav.navbar-nav li {
    margin: 0 8px;
  }
}
@media (max-width: 767px) {
	body#synthetic section#content .container, body#natural section#content .container {
		padding: 0;
	}
	.col-sm-4, .col-sm-8 {
		padding: 0;
	}
  .video-fallback {
	  background-position: center 100px;
	}
	.top-logo {         
    background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 99%, rgba(0,0,0,0) 100%); 
    background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 99%,rgba(0,0,0,0) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 ); 
  }
  .top-logo img {
    max-height: 100px;
    margin-top: 20px;
  }
/*  .btn {
    font-size: 28px;
    padding: 8px 18px;
    width: 180px;
    height: 62px;
    left: calc(50% - (180px / 2));
  }*/
  .btn {
    font-size: 28px;
    height: 62px;
    line-height: 56px;
  }
	section#content img {
		margin-bottom: 20px;
	}
	.navbar-nav>li {
		float: left;
	}
	nav ul.nav.navbar-nav li {
		padding: 0;
    margin: 0 10px;
	}
	nav ul.nav.navbar-nav li a {
    padding: 15px 5px;
    font-size: 30px;
	}
	section#content h2 {
    text-align: center;
    border-right: none;
    margin: -20px -15px 0;
    padding-right: 0;
	}
	section#content p {
    margin-bottom: 50px;
	}
	footer {
	  margin: 0 auto;
	}
	.cd-top {
		bottom: 20px;
		right: 20px;
	}	
}
@media (max-width: 622px) {
  nav ul.nav.navbar-nav li {
    padding: 0;
    margin: 0 3px;
  }
  nav ul.nav.navbar-nav li a {
    padding: 9px 5px;
    font-size: 26px;
  }
}
@media (max-width: 509px) {
	nav ul.nav.navbar-nav li a {
    padding: 15px 3px 8px;
    font-size: 22px;
    font-weight: 400;
	}
	section#content .col-md-12 {
    overflow-x: scroll;
	}
	section#content h2 {
		margin-top: 0px !important;
	}
	section#content p {
    margin-bottom: 30px;
	}
	section#content img {
    width: 600px;
    max-width: inherit;
	}
}
@media (max-width: 435px) {
	section#head .logo-a {
	  left: calc(50% - (330px / 2));
	}
	section#head img {
    padding-top: 20px !important;
    width: 330px;
    padding-bottom: 10px;
	}
	nav ul.nav.navbar-nav li {
    padding: 0;
    margin: 0 4px;
	}
	nav ul.nav.navbar-nav li a {
    padding: 10px 0px 3px;
    font-size: 16px;
	}
	nav ul.nav.navbar-nav li.active a {
    font-size: 16px;
	}
	section#content p {
		font-size: 20px;
	}
  .home-btn-container {
    width: 180px;
    left: calc(50% - (180px / 2));
    bottom: 8vh;
  }
  .home-btn-container a:first-child {
    padding-right: 0px;
    padding-bottom: 20px;
  }
  .btn {
    background-color: rgba(0,0,0,0.8);
  }
}