/*
Theme Name: Planet Earth LLC
Version: 1.0
Author: Interzone Studio
*/

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('fonts/NeueHaasDisplay-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('fonts/NeueHaasDisplay-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/fonts/NeueHaasDisplay-Mediu.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('fonts/NeueHaasDisplay-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

html {
  margin: 0;
  padding: 0;
}

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

* {
  box-sizing: border-box;
}

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

a:hover {
  color: blue;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Neue Haas Grotesk Display Pro', Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .025em;
}

body.fixed {
  overflow: hidden;
}

bold,
strong {
  font-weight: 500;
}

#landing {
/*  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;*/
}

#landing img {
 /*  width: 80%;
  height: auto;
  max-height: calc(100vh - 150px);
  object-fit: contain;
 -webkit-animation: spin 60s linear infinite;
  -moz-animation: spin 60s linear infinite;
  animation: spin 60s linear infinite;*/
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

header {
  padding: 50px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  letter-spacing: .05em;
}

#logotype {
  font-size: 24px;
}

#menu {
  display: flex;
  align-items: center;
}

#menu li {
  display: inline;
  position: relative;
  margin-left: 20px;
}

#menu span:hover {
  /*color: blue;*/
  cursor: default;
}

#menu li:hover ul {
  display: block;
}

#menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}

#menu ul li {
  display: block;
  margin: 3px 0;
  white-space: nowrap;
}

#search span {
  cursor: pointer;
}

#search span:hover {
  color: blue;
  cursor: pointer;
}

#search form {
  display: inline;
  margin: 0;
  padding: 0;
}

#search input {
  -webkit-appearance: none;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid black;
  width: 0;
  padding: 1px 0;
  margin: 0;
  outline: none;
  font-family: 'Neue Haas Grotesk Display Pro', Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
  height: 17px;
  letter-spacing: .05em;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

header li img {
  width: 15px;
  margin-bottom: -2px;
}

header li img:hover {
  filter: invert(9%) sepia(99%) saturate(7462%) hue-rotate(248deg) brightness(87%) contrast(144%);
}

#menu-button {
  display: none;
}

#mobile-menu {
  display: none;
}

main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

#description {
  margin: 50px 0;
  width: 100%;
}

#description p {
  margin: 0 0 20px 0;
}

#description p:last-child {
  margin: 0;
}

main img {
  display: block;
  width: 100%;
	height: auto;
}

main .portrait {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.image {
  margin-bottom: 50px;
}

.caption {
  margin-top: 10px;
  text-align: center;
}

#top {
  display: flex;
  margin-bottom: 50px;
  justify-content: flex-start;
}

#top img {
  width: 66.66%;
}

#top #description {
  /*width: 33.33%;*/
  margin: 0;
  padding-left: 50px;
  flex: 1;
}

#inquire {
  letter-spacing: .05em;
}

h1 {
  font-weight: unset;
  font-size: 14px;
  text-transform: uppercase;
  margin: 10px 0 50px 0;
  padding: 0;
  text-align: center;
  letter-spacing: .05em;
}

h2 {
  font-weight: unset;
  font-size: 14px;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 0;
  text-align: center;
  letter-spacing: .05em;
}

.project {
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  header {
    padding: 20px;
    align-items: center;
    z-index: 99;
    position: relative;
  }
  #menu {
    display: none;
  }
  #menu-button {
    display: block;
    width: 20px;
    height: 15px;
    position: relative;
    cursor: pointer;
  }
  #menu-button img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
  }
  #close {
    display: none;
  }
  #mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 98;
  }
  #mobile-menu-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  #mobile-menu-inner ul {
    display: none;
    font-size: 16px;
    margin-top: 20px;
  }
  #mobile-menu-inner ul li {
    padding: 3px
  }
  #mobile-menu-inner li {
    padding: 10px 0;
  }
  #mobile-menu-inner li img {
    width: 15px;
  }
  #mobile-menu-inner li img:hover {
    filter: invert(9%) sepia(99%) saturate(7462%) hue-rotate(248deg) brightness(87%) contrast(144%);
  }
  #mobile-search form {
    display: none;
    margin: 0;
    padding: 0;
    height: 24px;
  }
  #mobile-search input {
    -webkit-appearance: none;
    background: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid black;
    width: 250px;
    padding: 0 0 1px 0;
    margin: 0 auto;
    outline: none;
    font-family: 'Neue Haas Grotesk Display Pro', Helvetica, sans-serif;
    font-weight: 300;
    font-size: 20px;
    height: auto;
    letter-spacing: .05em;
    text-align: center;
  }
  #mobile-menu span:hover {
    color: blue;
    cursor: pointer;
  }
  main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
  }
  main .portrait {
    width: 100%;
  }
  h1 {
    margin-top: 25px;
  }
  #top {
    flex-wrap: wrap;
  }
  #top img {
    width: 100%;
    margin-bottom: 50px;
  }
  #top #description {
    width: 100%;
    padding-left: 0px;
  }
}