/* Load in custom fonts. */
@font-face {
    font-family: 'Neuzeit';
    src: url('../fonts/neuzeits-book-webfont.eot');
    src: url('../fonts/neuzeits-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/neuzeits-book-webfont.woff2') format('woff2'),
         url('../fonts/neuzeits-book-webfont.woff') format('woff'),
         url('../fonts/neuzeits-book-webfont.ttf') format('truetype'),
         url('../fonts/neuzeits-book-webfont.svg#neuzeits-bookbook') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neuzeit';
    src: url('../fonts/neuezeitSheavybook.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
  margin: 0 auto;
  font-family: 'Neuzeit', 'Arial', serif;
  color: #FFF;
}

a {
  color: #FFF;
}

li {
  text-transform: uppercase;
}

#logo {
	height: 60px;
}

.home-menu-wrapper {
	padding-top: 40px;
	padding-bottom: 50px;
}

.home-menu {
  list-style: none;
  padding-top: 50px;
  padding-left: 0px;
}

.home-menu li {
  padding-bottom: 5px;
  letter-spacing: 1px;
  line-height: 30px;
  font-size: 12px;
}
.nested-items {
    display: none;
}

.nested-items li {
    text-indent: 20px;
    line-height: 20px;
    letter-spacing: 1px;
    font-size: 10px;
    list-style: none;
}

/* Bold links as you hover them. */
.home-menu li a:hover {
    text-decoration: none;
    font-weight: bold;
    color: #FFF;
}


/* Carousel base class */
.carousel {

  height: 500px;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-bottom: 40px;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 500px;
}

.carousel-inner > .item > img {
  width: 100%;
  margin: 0 auto;
  vertical-align: middle;
}

.social {
  padding-right: 10px;
  padding-top: 50px;
  font-size: 20px;
}

.social:hover {
  opacity: 0.8
}

.carousel-control {
  background:transparent;
  text-shadow: none;
  color: #BDBEC2;
  opacity: 1;
  position: relative; /* override the position: absolute; it inherits. */
  font-size: 20px;
  margin-right: -3px;
  margin-left: -3px;
}

.carousel-control:hover {
  opacity: .5;
  color: #FFF000;
}

#carousel-buttons {
  height: 40px;
  color: ;
}

/* If we're less than 960px but not a smartphone, then
	 adding back padding. */
@media (max-width: 960px) {
  .home-menu-wrapper {
	padding-top: 40px;
	padding-bottom: 50px;
	padding-left: 100px; /* Override normal style */
	display: block;
	margin: 0 auto;
  }
}

/* If we're on a smartphone, center the menu vertically */
@media (max-width: 500px) {
  .home-menu-wrapper {
  	padding-top: 40px;
  	padding-bottom: 50px;
  	padding-left: 0px; /* Override normal style */
  	display: block;
  	width: 100%;
  	margin: 0 auto;
  }

  /* Don't display arrows */
  .carousel-control {
    display: none;
  }

  .carousel .item {
    width: 100%;
    height: auto;

  }

  .carousel .item:before {    /* create a full-height inline block pseudo=element */
    content: ' ';
    display: inline-block;
    vertical-align: middle;  /* vertical alignment of the inline element */
    height: 100%;
  } 
  .carousel-inner > .item > img {
    width: 100%;
    height: auto;
    vertical-align: middle;
  } 

  .content-container {
    width: 100%;
  }

}



