
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Helvetica", sans-serif;
  background-color: #333333;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  background: #333333;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: #18d26e;
}

a:hover {
  color: #35e888;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  transition: ease-in-out 0.3s;
}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Helvetica", sans-serif;
}

#header h1 a, #header h1 a:hover {
  color: #fff;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 24px;
  margin-top: 20px;
  font-family: "Helvetica", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

#header h2 span {
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
}

#header .contacts {
  margin-top: 40px;
  display: flex;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
}
