* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

body {
  color: #f0ede2;
  font-size: 1em;
  line-height: 1.6;
  background: url(/styles/giraffe-seamless-transparent.svg);
  background-repeat: repeat;
  background-color: black;
  background-attachment: fixed;
  overflow-x: hidden;
  font-family: "Lato", "Arial";
}

header {
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
}

footer {
  width: 100%;
  background-color: #333;
  color: #fbfbfb;
  margin-bottom: -1px;
}
footer .section {
  padding-bottom: 0;
}
footer .footer-icon {
  vertical-align: bottom;
  height: 24px;
  margin: 0 10px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  color: #9bcfe0 !important;
  text-decoration: none;
}
a:link, a:visited {
  color: #fbfbfb;
}
a img {
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  margin: 0 5px;
}

h2 {
  font-size: 2.5em;
}

address {
  display: inline;
}

.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  max-width: 1000px;
  width: 100%;
}

.nav-branding {
  width: 40vw;
  max-width: 250px;
  z-index: 200;
}

.nav-link {
  transition: 0.7s ease;
}

.nav-link:hover() {
  color: dodgerblue;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #6f4a38;
}

.button {
  color: #fbfbfb;
  font-size: 1.5em;
  font-weight: 100;
  text-shadow: 0 0 0.1em #fbfbfb, 0 0 0.2em #fbfbfb, 0 0 0.3em #fbfbfb, 0 0 0.4em #f0ede2, 0 0 0.6em #f1a661, 0 0 0.8em #f1a661, 0 0 1em #f1a661, 0 0 1.2em #f1a661;
  border-radius: 30px;
  padding: 10px 20px;
  -webkit-box-shadow: 0 0 5px #f1a661;
  -moz-box-shadow: 0 0 5px #f1a661;
  box-shadow: 0 0 5px #f1a661;
  border-color: #ffd8a9;
  border-style: double;
  transition: 0.3s;
}
.button:hover {
  -webkit-box-shadow: 0 0 20px #ffd8a9;
  -moz-box-shadow: 0 0 20px #ffd8a9;
  box-shadow: 0 0 20px #ffd8a9;
  font-weight: 300;
}

.button:hover {
  background-color: black;
  color: #9bcfe0;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 100;
  top: -10px;
  right: -10px;
  padding: 25px;
  background-color: #f1a661;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 0 0 #f1a661, 0 0 0 0 #f1a661;
}

.hamburger.hamburger.active {
  box-shadow: 0 0 0 100vw #f1a661, 0 0 0 100vh #f1a661;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: fixed;
  right: -100%;
  top: -75%;
  gap: 0;
  flex-direction: column;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  /* Fade in */
}
.nav-menu a {
  color: #6f4a38;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: #9bcfe0;
  transition: opacity 300ms, transform 300ms;
  opacity: 1;
  transform: translate3d(-101%, 0, 0);
}
.nav-menu a:hover::after,
.nav-menu a:focus::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-item {
  margin: 16px 0;
}

.nav-menu.active {
  right: 0;
  top: 35%;
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 100px 25px;
  text-align: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: -1px;
}
.section p {
  flex: 0 0 100%;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
  overflow: hidden;
}

.item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

.icon {
  width: 200px;
  height: 200px;
  background: #9bcfe0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.design {
  font-weight: 300;
  font-style: italic;
}

.hidden {
  display: none;
}

.highlight {
  color: #9bcfe0;
}

.highlight-contrast {
  color: #6f4a38;
}

.neon {
  text-shadow: 0 0 0.1em #fbfbfb, 0 0 0.2em #fbfbfb, 0 0 0.3em #fbfbfb, 0 0 0.4em #f0ede2, 0 0 0.6em #f1a661, 0 0 0.8em #f1a661, 0 0 1em #f1a661, 0 0 1.2em #f1a661;
  animation: flicker 2s infinite alternate;
}

/* Flickering animation */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 0.1em #fbfbfb, 0 0 0.2em #fbfbfb, 0 0 0.3em #fbfbfb, 0 0 0.4em #f0ede2, 0 0 0.6em #f1a661, 0 0 0.8em #f1a661, 0 0 1em #f1a661, 0 0 1.2em #f1a661;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}
#landing {
  height: 100vh;
  min-height: 777px;
  background-color: black;
  display: flex;
  background-image: url(/styles/laptop-unsplash-opt.jpg);
  background-size: 100vh;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  padding: 80px 25px;
  justify-content: flex-start;
  text-align: left;
}
#landing h1 div:first-of-type {
  font-size: 2em;
  line-height: normal;
}
#landing .content {
  padding: 5px;
}
#landing .item {
  align-items: baseline;
}

#what-we-do {
  background-color: #333;
}

#who-we-are {
  background-color: rgba(251, 251, 251, 0.98);
  color: #333;
}

#my-pic {
  padding: 3px;
  width: 300px;
  height: 300px;
  max-width: 80vw;
  max-height: 80vw;
  background: #ffd8a9;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

#portfolio {
  background-color: rgba(51, 51, 51, 0.9);
  height: 688px;
}

#pricing {
  background-color: rgba(251, 251, 251, 0.98);
  color: #333;
  background-image: url(/styles/wave-sky.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 150px 0;
}
#pricing .item {
  background-color: rgba(251, 251, 251, 0.3);
  border-radius: 10px;
  padding: 5px;
}

#contact-us-header {
  color: #fbfbfb;
  background-color: #333;
  font-size: 1.4em;
  font-weight: 500;
  overflow: hidden;
  transition: all 2s;
}
#contact-us-header .content {
  justify-content: center;
}

.moon {
  display: flex;
  background-color: #fbfbfb;
  border-radius: 50%;
  height: 180px;
  width: 180px;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  -webkit-box-shadow: 0 0 20px #f0ede2;
  -moz-box-shadow: 0 0 20px #f0ede2;
  box-shadow: 0 0 20px #f0ede2;
}
.moon#reflection {
  height: 250px;
  width: 250px;
  color: #333;
  font-weight: 100;
  font-size: 2.2em;
  line-height: normal;
  background-color: rgba(251, 251, 251, 0.8);
  background-image: url(/styles/giraffe-head.svg);
  background-position: center;
  background-size: contain;
  border-style: double;
  -webkit-box-shadow: 0 0 100px rgba(251, 251, 251, 0.8);
  -moz-box-shadow: 0 0 100px rgba(251, 251, 251, 0.8);
  box-shadow: 0 0 100px rgba(251, 251, 251, 0.8);
}

#contact-us-body {
  background-color: #333;
  background-image: url(/styles/animate-waves.svg);
  background-repeat: repeat-x;
  background-position: bottom;
}

#contact-us-sea {
  background-color: #9bcfe0;
  color: #333;
  font-size: 1.5em;
}

#contact-us-page {
  background-color: rgba(51, 51, 51, 0.95);
  font-size: 0.9em;
  flex-grow: 1;
}
#contact-us-page .content {
  justify-content: center;
  gap: 0;
  align-items: stretch;
}
#contact-us-page :first-of-type.content {
  padding-top: 38px;
}
#contact-us-page h1 {
  font-family: "Neonderthaw", "Lato", "Arial";
  font-weight: 100;
  font-size: 5em;
  font-style: italic;
  transform: rotate(-12deg);
  line-height: normal;
}
#contact-us-page .icon {
  width: 220px;
  height: 220px;
}

#contact-form {
  background-color: rgba(251, 251, 251, 0.9);
  color: #333;
  font-weight: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 50px 40px;
  -webkit-box-shadow: 0 0 5px #f0ede2;
  -moz-box-shadow: 0 0 5px #f0ede2;
  box-shadow: 0 0 5px #f0ede2;
}
#contact-form div {
  gap: 10px !important;
}
#contact-form input {
  border: none;
  border-bottom: 1px solid #6f4a38;
  background-color: transparent;
  color: #6f4a38;
  padding: 10px;
  font-size: 1em;
  width: 100%;
  max-width: 90vw;
  transition: all 0.3s;
}
#contact-form input:focus {
  border-left: 5px solid #9bcfe0;
}
#contact-form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #6f4a38;
  opacity: 1;
}
#contact-form #message {
  width: 100%;
  height: 100px;
}
#contact-form #submit-btn {
  background-color: #9bcfe0;
  color: #333;
  border: none;
  font-size: 1.5em;
  font-weight: 100;
  padding: 10px;
  transition: all 0.3s;
}
#contact-form #submit-btn:hover {
  background-color: #333;
  color: #9bcfe0;
}

#contact-info {
  background-color: #333;
  padding: 30px 15px;
}
#contact-info .label {
  font-size: 1.5em;
}

#thank-you {
  background-color: rgba(251, 251, 251, 0.7);
  color: #333;
  padding: 30px 20px;
}
#thank-you a {
  color: #6f4a38;
  transition: all 1s;
}

#footer-header {
  background-image: url(/styles/footer-stacked-peaks.svg);
  background-repeat: repeat-x;
  background-size: cover;
}

.fade-in {
  opacity: 0;
  transition: all 1s;
}
.fade-in.left {
  transform: translate(-10vh, 0);
}
.fade-in.right {
  transform: translate(10vh, 0);
}

.fade-in.active {
  opacity: 1;
  transform: translate(0, 0);
}

form.fade-in {
  transition: all 2s;
}

.hr {
  display: inline-block;
  width: 100%;
  border-top: 0.2px solid #fbfbfb;
}

@media (min-width: 760px) {
  body {
    font-size: 1em;
  }
  a {
    color: #fbfbfb;
  }
  .hamburger {
    display: none;
    cursor: pointer;
  }
  .nav-menu {
    position: inherit;
    flex-direction: row;
    gap: 40px;
    width: auto;
  }
  .nav-menu a {
    color: #fbfbfb;
  }
  .section {
    flex-direction: column;
  }
  .content {
    flex-direction: row;
  }
  #landing {
    height: 92vh;
    background-size: 120vh;
    background-position: calc(50% + 400px) 50%;
    font-size: 1.3em;
  }
  #what-we-do .content {
    align-items: baseline;
  }
  #what-we-do .content .item {
    width: 30%;
  }
  #contact-us-page h1 {
    font-size: 6em;
  }
  #contact-us-page .icon {
    width: 300px;
    height: 300px;
  }
  #contact-form {
    min-width: 500px;
  }
}

/*# sourceMappingURL=style.css.map */
