/* Fonts */

    @font-face {
	font-family: 'Proxima Nova Rg Regular';
	src: url('fonts/proxima_nova_rg_regular-webfont.eot');
	src: url('fonts/proxima_nova_rg_regular-webfont.eot?#iefix') format('embedded-opentype'),url('fonts/proxima_rg_regular-webfont.woff') format('woff'),url('fonts/proxima_rg_regular-webfont.ttf') format('truetype');
    }
	@font-face {
	font-family: 'Proxima Nova Rg Bold';
	src: url('fonts/proxima_nova_bold-webfont.eot');
	src: url('fonts/proxima_nova_bold-webfont.eot?#iefix') format('embedded-opentype'),url('fonts/proxima_nova_bold-webfont.woff') format('woff'),url('fonts/proxima_nova_bold-webfont.ttf') format('truetype');
    }
	@font-face {
	font-family: 'Proxima Nova Cn Rg Bold';
	src: url('fonts/proxima_nova_condensed_bold-webfont.eot');
	src: url('fonts/proxima_nova_condensed_bold-webfont.eot?#iefix') format('embedded-opentype'),url('fonts/proxima_nova_condensed_bold-webfont.woff') format('woff'),url('fonts/proxima_nova_condensed_bold-webfont.ttf') format('truetype');
    }
	@font-face {
	font-family: 'Proxima Nova ExCn Rg Bold';
	src: url('fonts/proxima_nova_extra_condensed_bold-webfont.eot');
	src: url('fonts/proxima_nova_extra_condensed_bold-webfont.eot?#iefix') format('embedded-opentype'),url('fonts/proxima_nova_extra_condensed_bold-webfont.woff') format('woff'),url('fonts/proxima_nova_extra_condensed_bold-webfont.ttf') format('truetype');
    }

    @font-face {
	font-family: 'Proxima Nova Extra Condensed Light';
	src: url('fonts/proxima_nova_extra_condensed_light-webfont.eot');
	src: url('fonts/proxima_nova_extra_condensed_light-webfont.eot?#iefix') format('embedded-opentype'),url('fonts/proxima_nova_extra_condensed_light-webfont.woff') format('woff'),url('fonts/proxima_nova_extra_condensed_light-webfont.ttf') format('truetype');
    }

/* The Overlay (Sandwich Button Menu) */

.btn-open a {
	font-family: 'Proxima Nova Cn Rg Bold', Gotham, Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 28px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0px;
	font-weight: normal;
	position: fixed;
	width: 28px;
	height: 28px;
	top: 10px;
	right: 25px;
	float: right;
	padding: 6px 0 6px 0;
	cursor: pointer;
	z-index: 1;
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}
 .btn-open a:hover {
  color: #44EA62;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */    
  height: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: hidden;
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  overflow: hidden;
}

/* The navigation links inside the overlay */
.overlay a {
  font-family: 'Proxima Nova Cn Rg Bold', Gotham, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  padding: 8px;
  text-decoration: none;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #44EA62;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: -5px;
  right: 18px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 28px;
    top: 25px;
    right: 25px;
  }
}