* {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "specter", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  background-color: #000;
}
body h2 {
  font-size: 75px;
}
body h3 {
  font-size: 50px;
}
body p {
  line-height: 1.75em;
  font-size: 28px;
}
body a {
  color: white;
  text-decoration: none;
}
body img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

#container {
  background-color: black;
  padding: 0;
}

#video-player {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
}

#links {
  position: fixed;
  margin: auto;
  width: auto;
  z-index: 11;
  right: -100%;
  height: 100px;
  top: 0;
}
#links.active {
  display: flex;
  animation-name: linksAppear;
  animation-duration: 0.3s;
  right: 200px;
}
#links.inactive {
  animation-name: linksHide;
  animation-duration: 0.3s;
  display: flex;
}
#links a {
  margin: auto;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 200;
  margin-left: 20px;
}
#links.hidden {
  display: none;
}

@keyframes linksAppear {
  0% {
    right: -100%;
  }
  100% {
    right: 200px;
  }
}
@keyframes linksHide {
  0% {
    right: 200px;
  }
  100% {
    right: -100%;
  }
}
#hamburger {
  display: flex;
  cursor: pointer;
  background: black;
  position: fixed;
  z-index: 12;
  right: 0;
  padding-right: 50px;
  height: 100px;
  top: 0;
}
#hamburger .menu-text {
  display: grid;
  margin-left: 15px;
}
#hamburger .menu-text p {
  margin: auto;
  font-size: 20px;
}
#hamburger .menu-icon {
  display: grid;
  height: 30px;
  margin: auto;
  width: 20px;
}
#hamburger .menu-icon .bar {
  width: 100%;
  height: 2px;
  margin: auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
  position: relative;
  top: 0px;
  opacity: 1;
}
#hamburger .menu-icon .bar1.active {
  transform: rotate(45deg);
  top: 100%;
}
#hamburger .menu-icon .bar2.active {
  transform: rotate(-45deg);
}
#hamburger .menu-icon .bar3.active {
  opacity: 0;
}

#navigation {
  display: flex;
  position: fixed;
  z-index: 10;
  top: 0;
  background: none;
  width: 100%;
  padding: 0;
  height: 100px;
  background: black;
}
#navigation #logo {
  width: 75px;
  margin: auto 50px;
}

.content {
  position: relative;
  margin-top: 100px;
}
.content .block {
  display: grid;
  grid-template-columns: 15% auto 15%;
}
.content #landing {
  display: grid;
  height: calc(100vh - 100px);
}
.content #landing #taglineMB {
  display: none;
}
.content #landing #tagline {
  margin: auto;
  display: grid;
  width: 100%;
}
.content #landing #tagline span {
  position: relative;
}
.content #landing #tagline span.stop::before {
  animation: none;
}
.content #landing #tagline span::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 0.25vw;
  background: #fff;
  filter: drop-shadow(2px 2px rgb(0, 0, 0));
  top: 30%;
  right: -1vw;
  transform: translate(-45%);
  animation: blink 0.7s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.content #landing #tagline a {
  display: grid;
}
.content #landing #tagline h2 {
  font-family: "Permanent Marker", cursive;
  text-shadow: 2px 2px #000;
  font-weight: 100;
  margin: auto;
  padding-bottom: 2%;
  font-size: 3vw;
}
.content #landing #tagline .chevron {
  width: 2vw;
  margin: auto;
  filter: drop-shadow(2px 2px rgb(0, 0, 0));
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}
.content #gallery {
  background: rgb(25, 25, 25);
  height: 100%;
  transition: 1s ease;
}
.content #gallery .paragraph {
  padding-top: 5%;
  grid-column: 2;
}
.content #gallery #photo-gallery {
  grid-column: 2;
  padding-bottom: 5%;
}
.content #gallery #photo-gallery #photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15vw, 1fr));
  grid-auto-rows: 24vh;
  grid-auto-flow: dense;
  padding-top: 5%;
}
.content #gallery #photo-gallery #photo-grid div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25vh;
  overflow: hidden;
}
.content #gallery #photo-gallery #photo-grid div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: linear 0.5s;
  scale: 1;
}
.content #gallery #photo-gallery #photo-grid div img:hover {
  scale: 1.05;
}
.content #gallery #photo-gallery #photo-grid div.enlarge {
  width: 101vw;
  height: 100vh;
  position: fixed;
  z-index: 900;
  transition: linear 0s;
  top: 0;
  left: -2px;
  background-color: rgba(0, 0, 0, 0.8);
}
.content #gallery #photo-gallery #photo-grid div.enlarge img {
  height: 95%;
  width: auto;
  transition: linear 0s;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0px 0px 15px 1px #000;
}
.content #gallery #photo-gallery #photo-grid div.enlarge img:hover {
  scale: 1;
}
.content #gallery #photo-gallery #photo-grid div.slowed img {
  transition: linear 0s;
}
.content #gallery #photo-gallery #photo-grid .tall {
  grid-row: span 2;
}
.content #gallery #photo-gallery #photo-grid .wide {
  grid-column: span 2;
}
.content #gallery #photo-gallery #photo-grid .big {
  grid-row: span 2;
  grid-column: span 2;
}
.content #gallery #photo-gallery #photo-grid .img-hidden {
  display: none;
}
.content #gallery #photo-gallery #photo-grid .img-hidden.active {
  display: flex;
}
.content #gallery #photo-gallery .text-hidden {
  display: none;
}
.content #gallery #photo-gallery .text-hidden.active {
  display: flex;
}
.content #gallery #photo-gallery #seeAll {
  margin: auto;
  margin-right: 2%;
  width: -moz-max-content;
  width: max-content;
}
.content #gallery #photo-gallery #seeAll h3 {
  margin-bottom: 0;
}
.content #gallery #photo-gallery #seeMoreBut {
  margin: auto;
  cursor: pointer;
  width: 2vw;
  transition: 0.2s ease;
  margin-top: 5%;
}
.content #gallery #photo-gallery #seeMoreBut:hover {
  animation: jump 2s ease infinite;
}
@keyframes jump {
  0% {
    transform: translateY(0%);
  }
  10% {
    transform: translateY(-15%);
  }
  20% {
    transform: translateY(0%);
  }
  30% {
    transform: translateY(-7%);
  }
  40% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0%);
  }
}
.content #gallery #photo-gallery #seeMoreBut.flip {
  transform: rotate(180deg);
}
.content #gallery #photo-gallery #seeMoreBut.flip:hover {
  animation: flipjump 2s ease infinite;
}
@keyframes flipjump {
  0% {
    transform: translateY(0%) rotate(180deg);
  }
  10% {
    transform: translateY(-15%) rotate(180deg);
  }
  20% {
    transform: translateY(0%) rotate(180deg);
  }
  30% {
    transform: translateY(-7%) rotate(180deg);
  }
  40% {
    transform: translateY(0%) rotate(180deg);
  }
  50% {
    transform: translateY(-3%) rotate(180deg);
  }
  100% {
    transform: translateY(0%) rotate(180deg);
  }
}
.content #websites {
  background: rgb(255, 255, 255);
  display: grid;
  grid-template-columns: 15% auto 15%;
  height: 100%;
  padding: 5% 0;
}
.content #websites .web-section {
  grid-column: 2;
  display: grid;
  margin: 5% auto;
  grid-template-columns: 75% 25%;
}
.content #websites .web-section .info-text {
  padding-right: 10%;
  margin: 0;
}
.content #websites .web-section h3 {
  margin: 0;
  width: -moz-max-content;
  width: max-content;
  grid-row: 1;
  grid-column: 1;
}
.content #websites .web-section p {
  grid-column: 1;
  grid-row: 2;
}
.content #websites .web-section P,
.content #websites .web-section h3 {
  color: black;
}
.content #websites .web-section img,
.content #websites .web-section .info-text {
  grid-row: 2;
  margin: auto;
}
.content #websites .web-section img {
  height: 75%;
  grid-column: 2;
  -o-object-fit: contain;
     object-fit: contain;
}
.content #websites h2 {
  grid-column: 2;
  color: black;
  margin: 5% 0;
}
.content #footer {
  background: rgba(0, 0, 0, 0.8);
  padding-top: 5%;
  padding-bottom: 1%;
  grid-column: 2/4;
  display: grid;
  margin: auto;
}
.content #footer div {
  margin: auto;
  grid-row: 1;
  margin: 0 1vw;
  display: grid;
  text-align: center;
}
.content #footer div p {
  margin: 0;
}
.content #footer div a {
  line-height: 1.75em;
}
.content #footer div p,
.content #footer div a {
  font-size: 1vw;
}
.content #contact {
  background: rgba(0, 0, 0, 0.8);
  padding: 5% 0;
  grid-template-columns: 15% auto 15%;
  padding-bottom: 1%;
}
.content #contact #form {
  grid-column: 2;
  margin: auto;
}
.content #contact #form .form-item {
  display: grid;
  margin: 2% auto;
  width: 40vw;
}
.content #contact #form .form-item label {
  font-size: 1vw;
  margin: 3% 0;
}
.content #contact #form .form-item input {
  font-size: 1.5vw;
  border-radius: 5px 5px;
  padding: 1% 2%;
  color: rgb(50, 50, 50);
  font-family: archivo black;
  border: none;
}
.content #contact #form .form-item input:focus {
  border: none;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 0 2px 2px #fff;
  transition: 0.2s ease;
}
.content #contact #form .form-item #inputText {
  padding: 2%;
  color: rgb(50, 50, 50);
  font-family: archivo black;
  font-size: 1vw;
}
.content #contact #form .form-item #inputText:focus {
  border: none;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 0 2px 2px #fff;
  transition: 0.2s ease;
}
.content #contact #form button {
  margin: 2% 0;
  background-color: white;
  font-family: archivo black;
  font-size: 1vw;
  border: none;
  border-radius: 5px 5px;
  padding: 1% 2%;
  cursor: pointer;
}
.content .thanks {
  display: grid;
  height: calc(100vh - 100px);
  min-height: auto;
}
.content .thanks .text {
  grid-column: 2;
}
.content .thanks .text h2 {
  font-size: 5vw;
}
.content .thanks .text h3 {
  font-size: 2vw;
}

.content #contact.block.thanks {
  scroll-behavior: auto;
  padding: 0;
}

.content #contact.block.thanks #footer {
  padding-top: 0;
}

.load-hidden {
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(10vh);
}

.load-hidden-2 {
  opacity: 0;
  transition: all 1s;
}

.load-show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion) {
  .load-hidden {
    transition: none;
  }
}
@media only screen and (max-width: 1000px) {
  body h1 {
    font-size: 50px;
  }
  body h2 {
    font-size: 30px;
  }
  body h3 {
    font-size: 20px;
  }
  body p {
    font-size: 15px;
  }
  body a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 800px) {
  #links {
    z-index: 10;
    display: none;
    animation-name: linksAppear;
    animation-duration: 0.3s;
    position: fixed;
    width: 100%;
    background: black;
    height: calc(100vh - 100px);
    right: 0;
  }
  #links a {
    margin: auto;
    z-index: -1;
  }
  #links.active {
    display: grid;
    top: 100px;
    right: 0;
  }
  #links.inactive {
    display: grid;
  }
  #links.hidden {
    display: none;
  }
  @keyframes linksAppear {
    0% {
      top: -100vh;
    }
    100% {
      top: 100px;
    }
  }
  @keyframes linksHide {
    0% {
      top: 100px;
    }
    100% {
      top: -100vh;
    }
  }
  .content {
    position: relative;
    margin-top: 100px;
  }
  .content h2 {
    font-size: 10vw;
    margin: 5vh auto;
  }
  .content #landing #tagline {
    display: none;
  }
  .content #landing #taglineMB {
    display: grid;
    width: 100%;
    height: 100%;
  }
  .content #landing #taglineMB a {
    margin: auto;
    height: -moz-max-content;
    height: max-content;
  }
  .content #landing #taglineMB a h2 {
    height: 6vw;
    width: 100%;
  }
  .content #landing #taglineMB span {
    position: relative;
  }
  .content #landing #taglineMB span.stop::before {
    animation: none;
  }
  .content #landing #taglineMB span::before {
    content: "";
    position: absolute;
    height: 60%;
    width: 0.25vw;
    background: #fff;
    filter: drop-shadow(2px 2px rgb(0, 0, 0));
    top: 25%;
    right: -2vw;
    transform: translate(-45%);
    animation: blink 0.7s infinite;
    opacity: 1;
  }
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  .content #landing #taglineMB a {
    display: grid;
  }
  .content #landing #taglineMB h2 {
    font-family: "Permanent Marker", cursive;
    text-shadow: 2px 2px #000;
    font-weight: 100;
    margin: auto;
    padding-bottom: 2%;
    font-size: 6vw;
  }
  .content #gallery #intro-text {
    display: grid;
  }
  .content #gallery #intro-text h2 {
    margin: 5vh auto;
  }
  .content #gallery #photo-gallery #photo-grid {
    grid-template-columns: auto;
    grid-auto-rows: 12vh;
  }
  .content #gallery #photo-gallery #seeMoreBut {
    width: 5vh;
    margin: 2vh auto;
  }
  .content #gallery #photo-gallery #seeAll {
    font-size: 2vh;
    margin: 5vh auto;
  }
  .content #websites h2 {
    margin: 5vh auto;
    text-align: center;
  }
  .content #websites .web-section {
    grid-template-columns: auto;
  }
  .content #websites .web-section h3,
  .content #websites .web-section img,
  .content #websites .web-section div {
    grid-column: 1;
  }
  .content #websites .web-section h3 {
    font-size: 3vh;
    width: auto;
    grid-row: 1;
    margin: 5vh auto;
    text-align: center;
  }
  .content #websites .web-section img {
    grid-row: 2;
    margin: 5vh auto;
    height: auto;
    width: 75%;
  }
  .content #websites .web-section .info-text {
    padding-right: 0;
    grid-row: 3;
    text-align: center;
  }
  .content #websites .web-section .info-text p {
    font-size: 2vh;
  }
  .content #contact #form {
    width: -moz-fit-content;
    width: fit-content;
  }
  .content #contact #form h2 {
    text-align: center;
  }
  .content #contact #form .form-item label {
    font-size: 5vw;
    text-align: center;
  }
  .content #contact #form .form-item input {
    border-radius: 2px;
    font-size: 5vw;
    width: 100%;
    box-sizing: border-box;
  }
  .content #contact #form .form-item #inputText {
    font-size: 5vw;
    border-radius: 2px;
  }
  .content #contact #form .form-item {
    width: 100%;
    margin: 5vh auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .content #contact #form button {
    font-size: 5vw;
    margin: 5vh auto;
    padding: 5%;
    width: 100%;
  }
  .content #contact #footer {
    width: auto;
    margin: auto;
    grid-column: 2;
  }
  .content #contact #footer div {
    display: grid;
  }
  .content #contact #footer .email a {
    font-size: 4vw;
    margin: auto;
  }
  .content #contact #footer .copy-right p {
    font-size: 4vw;
    margin: auto;
  }
  .content .thanks .text h2 {
    font-size: 30px;
  }
  .content .thanks .text h3 {
    font-size: 20px;
    margin-bottom: 5vh;
  }
}/*# sourceMappingURL=styles.css.map */