/* CSS this is a comment */

/* Always define your body how you want things to look like, you can always modify them down the road */

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	font-style: normal;
	color: #4d4d4d;
	margin: 0;
	padding: 0;
  background-color: #000;
}

/* You have option to normalize your CSS for easier styling down the road */

/* Now you want to personalize some of you HTML tags */

h1 {
	font-size: 36px;
	font-weight: 100;
}

h2 {
	font-size: 28px;
	font-weight: 300;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Now you want to set some global classes you would reuse several times */

/* clear both sides of the float elements */
.clear {
	clear: both;
}

/*
* Now you want to start styling your markup in the order of the structure to easily keep track
* and you should separate each section by a comment to easily organize your code to be able to maitain
* it down the road or reuse some of it as weel
*/



/* ======= MAIN CONTAINER DIV ======== */

#container {
	width: 100%;
	/*background-color: #f9f9f9;*/
}

.background-img {
	background-image: url(../img/head1.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	height: 700px;
}

#container video {
	width: 100%;
	z-index: 0;
}


/* ======= HEADER FIRT MAIN NAV ======== */

#nav {
	width: 100%;
	display: table;
	background-color: rgba(255,255,255,0.8);
	border-bottom: 1px solid #ddd;
	padding: 20px 0px;
	margin: 0;
	top: 0;
	text-align: center;
	z-index: 1000;
	position: fixed;

}

.background-video #nav {
	border-bottom: 1px solid #808080;
	color: #fff;
	background-color: transparent;
}

.background-video #nav > li select {
	color: #fff;
}

#nav > li {
	display: table-cell;
	vertical-align: middle;
	width: 33%;
	margin-top: 0px;
	text-transform: uppercase;
	font-size: 14px;
}


#nav > li select {
	background: transparent;
   	font-size: 14px;
   	border: none;
   	height: 30px;
   	padding: 6px; /* If you add too much padding here, the options won't show in IE */
}

#nav > li select:focus {
	outline: none; /* very inputs or select option comes with blue outline on focus we remove it for better styling */
}


.dropdown {
	padding: 0;
	display: none;
  	visibility: hidden;
  	background-color: rgba(0,0,0,0.9);
}

.dropdown li {
	display: block;
}

.dropdown li a {
	color: #4d4d4d;
}

#nav li:hover > ul {
	display: block;
  	visibility: visible;
}

.rounded-select {
	-webkit-border-radius: 20px; /* set border radius to all browser kits */
   -moz-border-radius: 20px;
   border-radius: 20px;
   border: 1px solid #ccc;
   height: 30px;
   padding: 5px 0px;
   overflow: hidden; /* hide any overflow mistakes */
   width: 150px;
   margin: 0 auto; /* because it is a div center inside table cell */
}

.rounded-select img {
	display: inline-block;
	vertical-align: middle;
	border-right: 1px solid #ccc;
	padding-right: 10px;
}

/* ======= HEADER SUB NAV ======== */

#sub-nav {
	width: 80%;
	background-color: transparent;
	border-bottom: 1px solid #ddd;
	text-align: right;
	margin: 110px auto 0px auto;
	padding-bottom: 20px;
	padding-left: 0px;
}

#sub-nav li {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	padding: 10px 20px;
}

#sub-nav li a {
	font-size: 14px;
	vertical-align: middle;
}

#sub-nav li a:hover {
	color: #0197d6;
}

#sub-nav li:first-child {
	text-transform: uppercase;
	font-weight: 100;
	font-size: 22px;
	color: black;
	float: left;
}

#sub-nav li:last-child a {
	padding: 10px 20px;
	border: 1px solid #0197d6;
	color: #0197d6;
	-webkit-border-radius: 20px; /* set border radius to all browser kits */
   -moz-border-radius: 20px;
   border-radius: 20px;
}

#sub-nav li:last-child a:hover {
	background-color: #0197d6;
	color: #fff;
}

#headphone-features {
	display: table;
}

#headphone-features img {
	display: table-cell;
}

#features {
	display: table-cell;
	vertical-align: middle;
}

#features table {
	margin: 80px 0px;
}

.line-details p {
	text-align: center;
	max-width: 300px;
	margin: 5px 0px 0px 0px;
}
.line-details h4 {
	text-align: center;
	margin: 0;
}

.lineball {
	width: 30px;
	height: 30px;
	background-color: #0197d6;
	border-radius: 100%;
}

.line {
	border-right: 1px dashed #0197d6;
	width: 100%;
	height: 30px;
}

.line.up {
	border-bottom: 1px dashed #0197d6;
}

.line.down {
	border-top: 1px dashed #0197d6;
}

#description {
	max-width: 400px;
	display: block;
	margin: 0px auto 40px auto;
	text-align: center;
}

#description h3 {
	font-size: 32px;
	font-weight: 300;
	margin: 0px 0px 5px 0px;
}

#description span {
	font-weight: 100;
	font-size: 48px;
}

#description p {
	font-size: 14px;
	color: #808080;
}

#description #colors {
	width: 200px;
	padding: 0;
	margin: 0 auto;
}

#description #colors li {
	display: inline-block;
	margin: 0px 10px;
	border: 1px solid transparent;
	border-radius: 100%;
	background-color: transparent;
}

#description #colors li:hover {
	border: 1px solid #ccc;
	border-radius: 100%;
	background-color: #fff;
}

#description #colors li a {
	display: block;
	width: 20px;
	height: 20px;
	margin: 5px;
	border-radius: 100%;
}

#description #colors #orange a {
	background-color: orange;
}

#description #colors #blue a {
	background-color: #0197d6;
}

#description #colors #green a {
	background-color: #8cc63f;
}

.concept {
	display: flex;
	flex-flow: row wrap;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

.concept > div {
	flex: auto;
	border: none;
	width: 200px;
}

.concept > div > img {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.concept-image {
	background: #000;
}

.concept-text {
	vertical-align: middle;
	color: #fff;

	background: -webkit-linear-gradient(left, black , #3e4347); /* For Safari 5.1 to 6.0 */
  	background: -o-linear-gradient(right, black, #3e4347); /* For Opera 11.1 to 12.0 */
  	background: -moz-linear-gradient(right, black, #3e4347); /* For Firefox 3.6 to 15 */
  	background: linear-gradient(to right, black , #3e4347); /* Standard syntax */
}

.inner-text {
	margin: 30% 0%;
}

.inner-text h2 {
	font-size: 36px;
	font-weight: 100;
	margin-bottom: 5px;
}

.inner-text > p {
	max-width: 400px;
	color: #808080;
	font-size: 14px;
}

.inner-text > ul {
	display: table;
}

.inner-text > ul > li {
	display: table-cell;
	vertical-align: top;
	padding: 0px 10px;
}

.inner-text > ul > li > p {
	text-transform: uppercase;
	font-weight: 300;
	font-size: 10px;
	margin: 0;
}

.inner-text > ul > li:nth-child(odd) {
	font-size: 44px;
	font-weight: 100;
}

.inner-text > ul > li:nth-child(even) {
	font-size: 24px;
	font-weight: 100;
	vertical-align: middle;
}

.background-home {
	width: 100%;
	height: 100%;

}






/* Parallax base styles
  --------------------------------------------- */

  .parallax {
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-perspective: 300px;
    perspective: 300px;
    -webkit-perspective-origin-x: 100%;
    perspective-origin-x: 100%;
  }

  .parallax__group {
    position: relative;
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .parallax__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform-origin-x: 100%;
    transform-origin-x: 100%;
  }

  .parallax__layer--fore {
    -webkit-transform: translateZ(90px) scale(.7);
    transform: translateZ(90px) scale(.7);
    z-index: 1;
  }

  .parallax__layer--base {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 4;
  }

  .parallax__layer--back {
    -webkit-transform: translateZ(-300px) scale(2);
    transform: translateZ(-300px) scale(2);
    z-index: 3;
  }

  .parallax__layer--deep {
    -webkit-transform: translateZ(-600px) scale(3);
    transform: translateZ(-600px) scale(3);
    z-index: 2;
  }


  /* demo styles
  --------------------------------------------- */


  .parallax {
    font-size: 200%;
  }

   /* centre the content in the parallax layers */
  .title {
/*    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
  }
.title h2 {
	font-size: 42px;
	font-weight: 100;
	margin-bottom: 5px;
}
.title p {
	font-weight: 300;
	font-size: 22px;
	max-width: 400px;
}
.title .button a {
	padding: 10px 20px;
	font-size: 16px;
	border: 1px solid #0197d6;
	color: #0197d6;
	-webkit-border-radius: 20px; /* set border radius to all browser kits */
   -moz-border-radius: 20px;
   border-radius: 20px;
}
.title .button a:hover {
	background-color: #0197d6;
	color: #fff;
}


.title.right {
    position: absolute;
    right: 15%;
    top: 25%;
}

.title.left {
    position: absolute;
    left: 15%;
    top: 25%;
}

.title.middle {
    position: absolute;
    left: 25%;
    right: 25%;
    top: 25%;
    text-align: center;
}

.title.middle p {
	max-width: 800px;
}



  /* style the groups
  --------------------------------------------- */

  #group1 {
    z-index: 5; /* slide over group 2 */
  }
  #group1 .parallax__layer--base {
    /*background: rgb(102,204,102);*/
  }

  #group2 {
    z-index: 3; /* slide under groups 1 and 3 */
    color: grey;
  }
  #group2 .parallax__layer--back {
    background-image: url(../img/headphone.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-color: #000;
  }

  #group3 {
    z-index: 4; /* slide over group 2 and 4 */
  }
  #group3 .parallax__layer--base {
    background-image: url(../img/head2.jpg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-color: #fff;
    background-position: right;
  }

  #group4 {
    z-index: 2; /* slide under group 3 and 5 */
    color: white;
  }
  #group4 .parallax__layer--deep {
    background-image: url(../img/people.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  #group5 {
    z-index: 3; /* slide over group 7 */
  }
  #group5 .parallax__layer--base {
    /*background: rgb(255,241,100);*/
    background-color: #23222b;
    color: #d4bcd1;
  }

  #group5 ul {
  	padding: 0;
  }
  #group5 ul li {
  	display: inline-block;
  	vertical-align: top;
  	padding: 20px;
  	width: 30%;

  }
  #group5 ul li h2 {
  	font-size: 28px;
  }
  #group5 ul li p {
  	font-size: 14px;
  }
  #group5 ul li:first-child {
  	border-right: 1px dashed #4d4d4d;
  }

  #group5 ul li .button a {
	padding: 5px 20px;
	font-size: 18px;
	border: 1px solid #4d4d4d;
	color: #4d4d4d;
	-webkit-border-radius: 20px; /* set border radius to all browser kits */
   -moz-border-radius: 20px;
   border-radius: 20px;
}
 #group5 ul li .button a:hover {
	background-color: rgba(255,255,255,0.2);
	/*border: 1px solid #d4bcd1;*/
	color: #000;
}

.contact-form {
	position: absolute;
	padding: 20px;
	background-color: rgba(0,0,0,0.6);
	bottom: 50px;
	right:150px;
}

.contact-form input {
	display: block;
	width: 350px;
	font-size: 16px;
	height: 30px;
	margin-bottom: 40px;
	background-color: transparent;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px dashed #808080;
	color: #fff;
}

.contact-form textarea {
	display: block;
	width: 350px;
	font-size: 16px;
	margin-bottom: 40px;
	height: 100px;
	background-color: transparent;
	color: #fff;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px dashed #808080;
}

.contact-form .inline {
	display: inline-block;
	width: 45%;
}

.contact-form #reset {
	color: #0197d6;
	font-size: 12px;
	border: none;
	text-align: left;
	display: block;
	cursor: pointer;
}

.contact-form input:focus {
	outline: none;
	color: white;
	border-bottom: 1px solid #0197d6;
}

.contact-form textarea:focus {
	outline: none;
	color: white;
}

.contact-form #submit {
	background-color: #23222b;
	color: #d4bcd1;
	margin-top: 40px;
	height: 40px;
	border: none;
	cursor: pointer;

}

.contact-form #submit:hover  {
	background-color: ;
}

.footer {
	background-color: #2b3238;
	color: #5a676f;
	margin: 0 auto;
	font-weight: 100;
}

.footer h5 {
	color: #feffff;
	text-transform: uppercase;
}

.footer li a {
	color: #01b8da;
}








