@font-face {
    font-family: 'Larsseit';
    src: url('../css/fonts/Larsseit-Light.eot');
    src: url('../css/fonts/Larsseit-Light.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Larsseit-Light.woff2') format('woff2'),
        url('../css/fonts/Larsseit-Light.woff') format('woff'),
        url('../css/fonts/Larsseit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Larsseit';
    src: url('../css/fonts/Larsseit-Medium.eot');
    src: url('../css/fonts/Larsseit-Medium.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Larsseit-Medium.woff2') format('woff2'),
        url('../css/fonts/Larsseit-Medium.woff') format('woff'),
        url('../css/fonts/Larsseit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Larsseit';
    src: url('../css/fonts/Larsseit.eot');
    src: url('../css/fonts/Larsseit.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/Larsseit.woff2') format('woff2'),
        url('../css/fonts/Larsseit.woff') format('woff'),
        url('../css/fonts/Larsseit.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Monotype Modern Std';
    src: url('../css/fonts/ModernMTStd-Bold.eot');
    src: url('../css/fonts/ModernMTStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/ModernMTStd-Bold.woff2') format('woff2'),
        url('../css/fonts/ModernMTStd-Bold.woff') format('woff'),
        url('../css/fonts/ModernMTStd-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
}

body {
	font-size: 1em;
	font-weight: 300;
    font-style: normal;
	color: #323232;
	font-family: 'Open Sans', sans-serif;
}

.center {
	text-align: center;
}

.container {
	width: 1400px;
	display: block;
	margin: auto;
	padding: 0px 15px;
	box-sizing: border-box;
}

.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: #f1f1f1;
}

.logo {
	width: 200px;
	display: inline-block;
}

.logo img {
	padding: 12px 33px 6px 10px;
    box-sizing: border-box;
}

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: 18px 15px 18px 15px;
    display: inline-block;
}

.hamburger {
	display: none;
	position: absolute;
    top: 19px;
    right: 0px;
    width: 36px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
}

.hamburger span {
	width: 100%;
	height: 3px;
	background-color: #e8e8e8;
	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;
}

span.s2.s2move {
	visibility: hidden;
	opacity: 0;
}

span.s3.s3move {
	transform: rotate(-45deg);
	transform-origin: 7px 4px;
}

.mobile-menu {
    height: 100vh;
    width: 100%;
    position: fixed;
    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;
    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: bold;
    text-transform: uppercase;
    font-size: 36px;
    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: 6px;
    font-size: 12pt;
    font-weight: 400;
    margin-bottom: 28px;
    display: block;
}

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 {
		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 {
		width: 960px;
	}
	.half {
		width: 48.6%;
	}
	.third {
		width: 31.6%;
	}
	.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 {
		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 {
		width: 450px;
	}
	.half, .third, .fourth, .two-thirds {
		width: 100%;
    	margin-right: 0px;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.container {
		width: 100%;
	}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	.container {
		width: 100%
	}
}