* {
    margin: 0px;
    padding: 0px;
}

body {
	font-size: 1em;
	font-weight: 300;
    font-style: normal;
    color: #000;
	font-family: "futura-pt", sans-serif;
}

.container {
	width: 1400px;
	display: block;
	margin: auto;
	padding: 0px 15px;
	box-sizing: border-box;
}

.container.bf {
    width: 1200px;
    margin-bottom: 30px;
}

.half {
	width: 49.0%;
    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
}

.half:last-child {
	margin-right: 0px;
}

.third {
	width: 32.1%;
    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
}

.third:last-child {
	margin-right: 0px;
}

.two-thirds {
	margin-right: 20px;
	width: 66.1%;
	display: inline-block;
	vertical-align: top;
}

.fourth {
	width: 23.6%;
	margin-right: 20px;
	display: inline-block;
	vertical-align: top;
}

.fourth:last-child {
	margin-right: 0px;
}

.container div:last-child {
	margin-right: 0px !important;
}

/* Image Fullwidth */

img.fullwidth {
	width: 100%;
}

/* START Mobile Menu / Menu */

header {
	display: block;
	background-color: #fff;
}

ul.menu {
	display: inline-block;
    vertical-align: top;
    float: right;
}

ul.menu li {
	float: left;
	list-style-type: none;
}

ul.menu li a {
    color: black;
    padding: 32px 15px 34px 15px;
    display: inline-block;
    font-size: 18px;
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.hamburger {
	position: relative;
    z-index: 1000;
    top: 15px;
    width: 30px;
    height: 50px;
    z-index: 10000;
    cursor: pointer;
    float: right;
    margin-top: 16px;
	display: none;
}

.hamburger span {
	width: 100%;
	height: 3px;
	background-color: #000;
	display: block;
	margin-bottom: 7px;
	border-radius: 15px;
}

span.s1 {
	transition: 300ms ease;
}

span.s2 {
	transition: 300ms ease;
}

span.s3 {
	transition: 300ms ease;
}

span.s1.s1move {
	transform: rotate(45deg);
    transform-origin: 0px 3px;
    background-color: #fff;
}

span.s2.s2move {
	visibility: hidden;
	opacity: 0;
	background-color: #fff;
}

span.s3.s3move {
    transform: rotate(-45deg);
    transform-origin: 3px 2px;
    background-color: #fff;
}

.mobile-menu {
    height: 100vh;
    width: 100%;
    position: fixed;
	z-index: 10;
    top: 0px;
    left: 0px;
    background-color: rgba(49, 49, 49, 0.95);
    visibility: hidden;
    opacity: 0;
    transition: 200ms ease;
}

.mobile-menu.show-menu {
    visibility: visible;
    opacity: 1;
}

nav {
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    padding: 57px;
	padding-top: 0px;
    box-sizing: border-box;
}

.mobile-menu ul {
    width: 100%;
    text-align: center;
    margin-top: 91px;
}

.mobile-menu ul li {
    margin-bottom: 36px;
    list-style-type: none;
}

.mobile-menu ul li a {
    color: white;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 26px;
    border-bottom: 3px solid white;
    padding: 2px;
}

/* Mobile Menu / Menu END */

/* Contact forms START */

input {
	width: 100%;
	border: 1px solid #c7c7c7;
	border-radius: 4px;
	box-sizing: border-box;
	padding: 13px 16px;
	border-radius: 6px;
	margin-bottom: 20px;
}

label {
	padding-left: 16px;
    font-size: 10pt;
}

input[type="submit"] {
	width: 150px;
	text-align: center;
	display: block;
	margin: auto;
	cursor: pointer;
	margin-top: 20px;
}

textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 13px 16px;
}

.form-half {
	width: 48.64%;
	display: inline-block;
	margin-right: 20px;
}

.form-half.half-half {
	width: 48.2%;
}

.form-half div:last-child {
	margin-right: 0px !important;	
}

/* Contact forms END */

textarea,
select,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
	font-family: 'Open Sans', sans-serif;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: none;
}

a, a:focus  {
	text-decoration: none;
	outline: none;
}

a:focus {
	color: inherit;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1430px) {
	.container, .container.bf {
		width: 1150px;
	}
	.half {
		width: 48.8%;
	}
	.third {
		width: 31.8%;
	}
	.fourth {
		width: 23.3%;
	}
	
	.two-thirds {
		width: 65.8%;
	}
	.form-half {
		width: 48.3%;
	}
	.form-half.half-half {
		width: 47.7%;
	}
}
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.container, .container.bf {
		width: 960px;
	}
    ul.menu li a {
        font-size: 16px;
    }   
    .container .intro-txt:last-child {
        width: 100% !important;
    }
	.half {
		width: 48.6%;
	}
	.third {
        width: 31.5%;
	}
	.fourth {
		width: 22.9%;
	}
	.two-thirds {
		width: 65.5%;
	}
	.form-half {
		width: 48%;
	}
	.form-half.half-half {
		width: 47.3%;
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.container, .container.bf {
		width: 730px;
    }
	.half {
		width: 48.1%;
		margin-right: 20px;
	}
	.third {
		margin-right: 20px;
		width: 30.8%;
	}
	.fourth {
		width: 48.1%;
		margin-right: 20px;
	}
	.fourth:nth-child(2n) {
		margin-right: 0px;	
	}
	ul.menu {
		display: none;
	}
	.hamburger {
		display: block;
	}
	.form-half {
		width: 100%;
	}
	.form-half.half-half {
    	width: 100%;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.container, .container.bf {
		width: 450px;
	}
	.half, .third, .fourth, .two-thirds {
		width: 100%;
    	margin-right: 0px;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.container, .container.bf {
		width: 100%;
	}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	.container, .container.bf {
		width: 100%
	}
}