header {
  position: absolute;
  top: 64px;
  width: 100%;
  z-index: 100;
}

a {
  text-decoration: none;
  color: white;
}

ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

ul :not(:last-child) {
  margin-right: 34px;
}

li {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

li::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 2px;
  background-color: white;
  display: block;
  top: 120%;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

li:hover::after {
  opacity: 1;
}

.header__content {
  padding: 0 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.header__content img {
  height: 100%;
}

.hamburger-menu {
  height: 20px;
  width: 30px;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  -webkit-transition: opacity 200ms, -webkit-transform 300ms;
  transition: opacity 200ms, -webkit-transform 300ms;
  transition: transform 300ms, opacity 200ms;
  transition: transform 300ms, opacity 200ms, -webkit-transform 300ms;
}

.hamburger-menu :not(:last-child) {
  margin-bottom: 7px;
}

.menu {
  position: absolute;
  z-index: 90;
  height: 100vh;
  width: 100vw;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: moveRight 400ms ease-in-out;
          animation: moveRight 400ms ease-in-out;
  overflow-y: hidden;
}

.menu ul {
  padding-left: 0;
  margin: auto 0;
  margin-left: 32px;
  list-style: none;
  display: initial;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.menu ul :not(:last-child) {
  margin-bottom: 20px;
}

.menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../images/desktop/image-hero.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/desktop/image-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, center;
  height: 650px;
}

.hero .title {
  max-width: 648px;
  width: 100%;
  min-height: 276px;
  -webkit-box-shadow: 0px 0px 0px 2px white;
          box-shadow: 0px 0px 0px 2px white;
  margin-top: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .title h1 {
  margin: 0;
  margin-left: 27px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 72px;
  text-transform: uppercase;
}

.description {
  margin-top: 160px;
}

.description__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 500px;
}

.description__content #interactive-mobile {
  display: none;
}

.description__content img {
  position: absolute;
  z-index: 0;
}

.content__description {
  background-color: white;
  position: absolute;
  right: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
  height: 317px;
  width: 540px;
}

.content__description h1 {
  margin-left: 100px;
  margin-top: 98px;
  margin-bottom: 35px;
  font-size: 48px;
  font-weight: 300;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  color: black;
}

.content__description p {
  line-height: 1.6;
  margin: 0;
  margin-left: 100px;
  font-size: 14px;
  color: #8c8c8c;
}

.creations {
  margin-top: 186px;
}

.creations__content {
  color: black;
  display: -ms-grid;
  display: grid;
}

.creations__content h1 {
  font-family: 'Josefin Sans', sans-serif;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
}

.creations__content button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: end;
      justify-self: end;
  width: 155px;
  height: 38px;
  -webkit-box-shadow: 0px 0px 0px 2px dimgray;
          box-shadow: 0px 0px 0px 2px dimgray;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  background-color: transparent;
  font-size: 15px;
  color: black;
  text-transform: uppercase;
  font-family: 'Alata', sans-serif;
  letter-spacing: 2px;
  border: none;
  outline: none;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.creations__content button:hover {
  cursor: pointer;
  color: white;
  background-color: black;
}

.creations__content .creations__slides {
  display: -ms-grid;
  display: grid;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  width: 100%;
  height: 930px;
  grid-gap: 30px;
}

.slide {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
}

.slide h1 {
  font-size: 32px;
  color: white;
  position: absolute;
  left: 10%;
  bottom: 7%;
  max-width: 170px;
  margin: 0;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.slide .slide__bg {
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
}

.slide .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.3) 100%);
}

.slide__bg {
  width: 100%;
  height: inherit;
}

.slide:hover {
  cursor: pointer;
}

.slide:hover .slide__bg {
  opacity: .5;
}

.slide:hover h1 {
  opacity: 1;
  color: black;
}

footer {
  height: 160px;
  width: 100%;
  background-color: black;
}

.footer__content {
  height: 100%;
  margin: auto 0;
  display: -ms-grid;
  display: grid;
}

.footer__grid {
  display: -ms-grid;
  display: grid;
  margin: auto 0;
  row-gap: 32px;
}

.footer__grid img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

.footer__grid ul {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__grid .icons {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-column-align: end;
      justify-self: end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__grid .icons a {
  position: relative;
}

.footer__grid .icons :not(:first-child) {
  margin-left: 18px;
}

.footer__grid .icons a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 2px;
  background-color: white;
  display: block;
  top: 120%;
  left: 0%;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.footer__grid .icons a:hover::after {
  opacity: 1;
}

.footer__grid span {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-column-align: end;
      justify-self: end;
  opacity: .5;
}

@media (min-width: 861px) {
  .creations {
    margin-bottom: 184px;
  }
  .creations__content .creations__slides {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .creations__content .slide {
    height: 450px;
  }
  .wid {
    max-width: 1110px;
  }
  .earth {
    background: url("../images/desktop/image-deep-earth.jpg");
  }
  .arcade {
    background: url("../images/desktop/image-night-arcade.jpg");
  }
  .soccer {
    background: url("../images/desktop/image-soccer-team.jpg");
  }
  .theGrid {
    background: url("../images/desktop/image-grid.jpg");
  }
  .above {
    background: url("../images/desktop/image-from-above.jpg");
  }
  .borealis {
    background: url("../images/desktop/image-pocket-borealis.jpg");
  }
  .curiosity {
    background: url("../images/desktop/image-curiosity.jpg");
  }
  .fisheye {
    background: url("../images/desktop/image-fisheye.jpg");
  }
}

@media (max-width: 1220px) {
  .description__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .description__content img {
    position: relative;
  }
  .content__description {
    position: relative;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .content__description h1, .content__description p {
    margin: 0;
    text-align: center;
  }
  .content__description h1 {
    margin-top: 62px;
    margin-bottom: 40px;
  }
  .wid {
    max-width: 900px;
  }
  .hero .title {
    min-height: 250px;
    max-width: 500px;
  }
  .hero .title h1 {
    font-size: 45px;
  }
  .description__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .description__content img {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 1110px) {
  .slide h1 {
    font-size: 28px;
  }
  .description {
    margin-top: 122px;
  }
  .description__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .description__content img {
    width: 90%;
    margin: 0 auto;
  }
  .wid {
    max-width: 800px;
  }
  .header__content {
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .content__description h1 {
    font-size: 40px;
  }
}

@media (max-width: 860px) {
  .creations {
    margin-top: 130px;
    margin-bottom: 118px;
  }
  .creations__content {
    overflow: visible;
  }
  .creations__content .slide {
    height: 152px;
  }
  .creations__content > h1 {
    text-align: center;
  }
  .description__content img {
    width: 100%;
  }
  .wid {
    max-width: 600px;
    padding: 0 30px;
  }
  .hero .title {
    max-width: none;
    min-height: 200px;
    width: 100%;
  }
  .hero .title h1 {
    font-size: 40px;
  }
  #interactive-desktop {
    display: none;
  }
  .description__content #interactive-mobile {
    display: block;
  }
  .content__description h1 {
    font-size: 35px;
  }
  .creations__content {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  .creations__content h1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .creations__content button {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    -ms-grid-column-align: center;
        justify-self: center;
    margin-top: 42px;
    margin-bottom: 5px;
  }
  .creations__content .creations__slides {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    height: auto;
  }
  .creations__slides .slide .gradient {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.5)));
    background: linear-gradient(-90deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  }
  .creations__slides .slide h1 {
    bottom: 20%;
  }
  .slide__bg {
    background-position: initial;
    background-position-x: center;
    background-size: cover;
  }
  .earth {
    background-image: url("../images/mobile/image-deep-earth.jpg");
  }
  .arcade {
    background-image: url("../images/mobile/image-night-arcade.jpg");
  }
  .soccer {
    background-image: url("../images/mobile/image-soccer-team.jpg");
  }
  .theGrid {
    background-image: url("../images/mobile/image-grid.jpg");
  }
  .above {
    background-image: url("../images/mobile/image-from-above.jpg");
  }
  .borealis {
    background-image: url("../images/mobile/image-pocket-borealis.jpg");
  }
  .curiosity {
    background-image: url("../images/mobile/image-curiosity.jpg");
  }
  .fisheye {
    background-image: url("../images/mobile/image-fisheye.jpg");
  }
  .footer__grid {
    margin: 70px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__grid img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .footer__grid ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-row: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__grid ul :not(:last-child) {
    margin-bottom: 38px;
  }
  .footer__grid ul li {
    margin: 0;
  }
  .footer__grid .icons {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .footer__grid .icons :not(:first-child) {
    margin-left: 18px;
  }
  .footer__grid span {
    grid-row: auto;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-column-align: end;
        justify-self: end;
    opacity: .5;
  }
  footer {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

@media (max-width: 375px) {
  .hero {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../images/mobile/image-hero.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/mobile/image-hero.jpg");
    background-repeat: no-repeat;
    background-position: center, center;
    background-size: auto 826px;
  }
  .hero .title {
    min-height: 150px;
  }
  .hero .title h1 {
    font-size: 30px;
  }
}

body {
  font-family: 'Alata', sans-serif;
  font-size: 15px;
  margin: 0;
  width: 100%;
  min-height: 100vh;
  color: white;
}

section {
  overflow: auto;
  width: 100%;
}

a {
  text-decoration: none;
}

.oyh {
  overflow-y: hidden;
}

.wid {
  margin: 0 auto;
}

:visited {
  color: inherit;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dn {
  display: none;
}

@-webkit-keyframes moveRight {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes moveRight {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (min-width: 1111px) {
  .hide-for-desktop {
    display: none;
  }
}

@media (max-width: 1110px) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 861px) {
  .hide-for-desktop-medium {
    display: none;
  }
}

@media (max-width: 860px) {
  .hide-for-mobile-medium {
    display: none;
  }
}

.open span:first-child {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.open span:nth-child(2) {
  opacity: 0;
}

.open span:last-child {
  position: absolute;
  width: 30px;
  bottom: 5px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/*# sourceMappingURL=main.css.map */