/*
 * Author: Carlos Alvarez
 * URL: http://alvarez.is
 *
 * Project Name: Minimal - Free Bootstrap 3 Theme
 * Version: 1.0
 * URL: http://blacktie.co
 */

html {
	scroll-behavior: smooth;
}

body {
  	background-color: #242424;
    font-family: 'Lexend Peta', "Trebuchet MS", Tahoma, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #f2f2f2;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    padding: .4em 0;
	text-transform: uppercase;
}

/* Paragraph & Typographic */
p, address {
    line-height: 1.5em;
    margin-bottom: 25px;
}

.centered {
    text-align: center;
}

/* Links */
a {
    color: #00aeef;
    word-wrap: break-word;

    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in, border 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in, border 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in, border 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in, border 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in, border 0.1s ease-in;
}

a:hover,
a:focus {
    color: #f2f2f2;
    text-decoration: none;
    outline: 0;
}

 hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #c2c2c2;
    margin: 1em 0;
    padding: 0;
}

.btn {
	font-size: 0.875em;
	text-transform: lowercase;
	border-radius: 2px;
	border: 6px double #00aeef;
	color: #00aeef;
	background: transparent;
}

.btn:hover {
	border-color: #c2c2c2;
	color: #c2c2c2;
}

/* ==========================================================================
   Wrap Sections
   ========================================================================== */

#headerwrap {
	background: url(../img/header-bg.jpg) no-repeat center top;
	margin-top: -10px;
	padding-top:20px;
	text-align:center;
	background-attachment: relative;
	background-position: bottom center;
	min-height: 700px;
	width: 100%;
	color: #f2f2f2;
	
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#headerwrap h1 {
	margin: 34vh auto 0;
	font-size: 4.375em;
	font-weight: 700;
}

#headerwrap h2 {
	font-size: 1.5em;
}

#headerwrap .logo {
	width: 80%;
}

#headerwrap .logo img{
	max-width: 100%;
}

section {
	padding-bottom: 10em;
}

.content h3 {
	font-size: 2.5em;
	letter-spacing: 1px;
	text-align: center;	
}

.content h4 {
	font-size: 1.75em;
	letter-spacing: 1px;
}

.content p, .content address {
	font-size: 1.2em;
}

.content img, .content .cta {
	text-align: center;
}

/* MENU CONF*/

.menu {
	position: fixed;
	right: -200px;
	width: 260px;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: left;
}

.menu.menu-open {
	right: 0px;
}

.menu-wrap {
	position: absolute;
	top: 0;
	left: 60px;
	background: rgba(21,21,21,0.8);
	width: 200px;
	height: 100%;
	padding-top: 1em;
}

.menu a {
	margin-left: 20px;
	display: block;
	font-size: 0.875em;
	line-height: 2.5em;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.menu a:hover {
	color: #c2c2c2;
}

.menu a:active {
	color: #c2c2c2;
}

.menu a > i {
	float: left;
	display: inline-block;
	vertical-align: middle; 
	text-align: left;
	width: 25px;
	font-size: 0.875em;
	line-height: 2.5em;
	margin: 25px 2px;
}

.menu {
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		 -o-transition: all .3s ease;
			transition: all .3s ease;
}

#menuToggle {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 11;
	display: block;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	background: rgba(0,0,0,0.25);
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

#menuToggle i:after {
	content: '\f0c9';
}

#menuToggle.active i:after {
	 content: '\f00d';
}

/*Media Queries*/

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
	#headerwrap .logo {
		width: 60%;
	}
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	#headerwrap .logo {
		width: 55%;
	}
}