@CHARSET "UTF-8";
@font-face {
	font-family: 'Titillium Web';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/titillium-web-v15-latin-regular.eot'); /* IE9 Compat Modes */
	src: local(''),
		 url('../fonts/titillium-web-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		 url('../fonts/titillium-web-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
		 url('../fonts/titillium-web-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
		 url('../fonts/titillium-web-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
		 url('../fonts/titillium-web-v15-latin-regular.svg#TitilliumWeb') format('svg'); /* Legacy iOS */
  }

  @font-face {
	font-family: 'Titillium Web SemiBold';
	font-style: bold;
	font-weight: 600;
	src: local(''),
		 url('../fonts/TitilliumWeb-SemiBold.ttf') format('truetype'), /* Safari, Android, iOS */
  }

*, :after, :before {
	box-sizing: border-box;
}

body, html {
	height: 100%;
	width: 100%;
	background-color:#575757;
	
}

body {
	font-family: 'Titillium Web';
	font-size: 18px;
}

body, p, h1, h2, h3 {
	margin: 0;
	padding: 0;
}

p, h1, h2 {
/*	text-shadow: 0 0 5px rgba(0, 0, 0, .6);*/
	width: 100%;
}

h1, h2 {
	font-size: 40px;
	font-size: 1.9rem;
	line-height: 1;
	font-family: 'Titillium Web SemiBold';
}

h1 {
	margin-bottom: 10px;
	margin-top: -2px;
}

h2 {
	margin-bottom: 20px;
}

p {
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: 0;
	letter-spacing: .02rem;
	line-height: 1.3;
	margin-bottom: 20px;
}
p:last-child {
	margin-bottom: 0;
}
p.p--credits {
	font-size: 14px;
	font-size: .9rem;
}
p strong {
	display: inline-block;
	margin-bottom: 2px;
}

a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}
a.a--no-weight {
	font-style: italic;
	font-weight: 300;
}

.container {
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 15px;
	position: relative;
	width: 100%;
}
.container--big {
	height: 100vh;
}
.container--full {
	height: 120vh;
	z-index:1;
}
.container--small {
	height: 60vh;
}
.container .content {
	background: rgba(0, 0, 0, .4);
	border-radius: 8px;
	color: #fff;
	margin: 0 auto;
	padding: 30px 35px;
	text-align: center;
}

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	/* can be put in a seperate class for better control */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* --------------------------- */
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}

.show-on-mobile--inline {
	display: none;
}

.arrow {
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
	bottom: -64px;
	bottom: -4rem;
	left: calc(50% - 19px);
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: opacity 250ms ease-in-out;
	width: 38px;
}
.arrow--hide {
	opacity: 0;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}
/*
@media screen and (max-width: 200px) {
	.hide-on-mobile {
		display: none;
	}

	.show-on-mobile--inline {
		display: inline;
	}
}
*/


#mbar {
    background: #333;
    color: #fff;
    padding: 10px 0;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.containerMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
	
}

.logo h1 {
    margin: 0;
}

nav {
    position: relative;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
	z-index: 123;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #575757;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #333;
        flex-direction: column;
        width: 200px;
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }
}

main {
    padding: 20px;
}


#headerMail {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

.containerMail {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    margin: 0;
}

#mainMail {
    padding: 20px;
}

.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
	resize: none;
}

button {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    background: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	font-size: 1.4em;
}

button:hover {
    background: #555;
}
