@charset "utf-8";

html,
html * {
  	box-sizing:border-box;
  	margin-left: 0px;
  	padding: 0px;
	max-width: 90%;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0px;
	line-height: 1.5em;
	hyphens: auto;
	background-color: #FFF1EB;
	color: black;
}

body {
	margin-left: 200px;
}

header {
	width: 100%;
	display:flex;
	justify-content: space-between;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.fa-bars {
	display:none;
}

.site-nav_Logo {
	float:right;
	padding:12px 12px 12px;
	font-size:11px;
}

.site-nav li {
	display: inline;
	list-style-type:none;
}

.site-nav {
	display: flex;
	width: 30%;
	padding: 26px 0px 0px;
	text-align: center;	
	text-transform: uppercase;
	letter-spacing: 2px;
}

.site-nav a{
	color: white;
	text-decoration: none;
	padding:0px 25px;
}

.head-image {
    position: relative;
	high: 80%;
}

.head-image a, .head-image a:hover {
    text-decoration: none;
}

.head-image .head-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #424242;
    background-position: 50% 25%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 100px;
}

.head-image .head-content {
    min-height: 600px;
    background-position: center center;
}

.head-image .head-content:before {
    content: '';
    background: rgba(0, 0, 0, .63);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.head-image .head-content a {
    color: inherit;
}

.head-image .head-content h1 {
    font-size: 80px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
}

.head-image .head-content p {
    margin: 0 auto;
    padding: 0;
	max-width: 50%;
}

.head-image .showing {
    opacity: 1;
    z-index: 0;
}

.head-image .head-content .head-text {
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 75%;
    color: #ffffff;
    z-index: 99;
    padding-top: 6%;
	padding-bottom: 6%
}

	