/*
Theme Name: whole earth technical
Author: Interzone
Version: 1.0
*/

@font-face {
	font-family: 'Helvetica Neue';
	font-style: normal;
	font-weight: 300;
	src: url('Helvetica-Neue-Light.woff2') format('woff2');
}

body,
html {
	margin: 0;
	padding: 0;
	font-weight: 300;
	font-family: 'Helvetica Neue';
	letter-spacing: .05em;
	color: #19232e;
}

* {
	box-sizing: border-box;
}

body {
	display: none;
	position: relative;
	min-height: 100vh;
	min-height: -webkit-fill-available;

}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: unset;
	text-decoration: unset;
}

a:hover {
	opacity: .6;
}

#menu {
	position: absolute;
	top: 60px;
	left: 60px;
	z-index: 1;
}

h1 {
	margin: 0;
	padding: 0;
	font-weight: 300;
	font-size: 16px;
	cursor: pointer;
}

.menu-main-menu-container {
	display: none;
	position: relative;
	font-size: 24px;
	margin-top: 10px;
}

#subscribe {
	font-size: 16px;
	position: absolute;
	top: 60px;
	right: 60px;
	z-index: 1;
}

#subscribe-button {
	cursor: pointer;
}

#form-wrapper {
	display: none;
}

form {
	display: flex;
	justify-content: flex-end;
}

form input {
	outline: none !important;
	border: 0;
	padding: 0;
	appearance: none;
	background: none;
	border-radius: 0;
	font-weight: 300;
	font-family: 'Helvetica Neue';
	letter-spacing: .05em;
	color: #19232e;
	font-size: 16px;
}

form input[type=email] {
	border-bottom: 1px solid #19232e;
	width: 300px;
	margin-right: 5px;
}

form input[type=submit] {
	cursor: pointer;
}

img.logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	cursor: url('cursor.png'), auto;
}

#subscribe-result {
	display: none;
	/* position: absolute;
			top: 100%;
			font-size: 16px;
			left: 0;
			margin-top: 10px;
			width: 100%; */
}

#main {
	max-width: 1000px;
	margin: 0 auto;
	padding: 140px 20px;
}

#menu-main-menu li:last-child {
		display: none;
}

#is-mobile {
	display: none;
	width: 1px;
	height: 1px;
	position: fixed;
	top: 1px;
	left: 1px;
}

img {
	width: 100%;
	display: block;
	height: auto;
	margin: 1em auto;
}

@media only screen and (max-width : 800px) {
	#menu {
		top: 20px;
		left: 20px;
	}

	h1 {
		font-size: 20px;
	}

	#subscribe {
		font-size: 20px;
		top: unset;
		right: 20px;
		bottom: 20px;
		width: calc(100% - 40px);
		text-align: right;
	}

	form input {
		font-size: 20px;
	}

	form input[type=email] {
		min-width: 0;
		max-width: 300px;
		flex: 1;
	}

	img.logo {
		width: 120%;
	}
	#menu-main-menu li:last-child {
		display: block;
	}
	#is-mobile {
	display: block;
	}
}