*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Josefin-Sans", "Helvetica", "sans-serif";
}

img {
  max-width: 100%;
}

@font-face {
  font-family: "Josefin-Sans";
  src: url("../fonts/JosefinSans-VariableFont_wght.ttf");
}
.header__title {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 1rem;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 1rem + 3vw, 4.5rem);
}

.leader__title, .creations__title {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0;
}

.content__copy {
  color: #818181;
  font-weight: 500;
  line-height: 1.5;
}

.creations__title {
  text-align: center;
}

.creations__link {
  text-decoration: none;
  color: #000000;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  border: 1px solid #000000;
  padding: 0.8rem 2.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.creations__link:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #000000;
}

.card__title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  width: 125px;
  margin: 0;
  position: absolute;
  left: 1rem;
  bottom: 2rem;
}

.nav__list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list__link {
  color: #FFFFFF;
  padding: 0.75rem 0;
  background-color: transparent;
}

.list__link:hover {
  cursor: pointer;
  background: linear-gradient(hsla(0, 2%, 90%, 0.7) 0 0) center bottom/100% 5px no-repeat;
  background-size: 50% 3px;
}

.footer__copyright {
  color: #818181;
  margin: 0;
  font-size: 0.9rem;
}

.menu__item {
  list-style-type: none;
}

.menu__link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 200;
  text-transform: uppercase;
}

.desktop-nav__list {
  list-style-type: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.desktop__link {
  color: #FFFFFF;
  padding: 0.75rem 0;
  background-color: transparent;
}

.desktop__link:hover {
  cursor: pointer;
  background: linear-gradient(hsla(0, 2%, 90%, 0.7) 0 0) center bottom/100% 5px no-repeat;
  background-size: 50% 3px;
}

.mobile-head__logo {
  height: 1.5rem;
}

.slide-menu__logo {
  height: 1.5rem;
}

.leader__img {
  height: 225px;
  width: 100%;
  background-image: url("../images/mobile/image-interactive.jpg");
  background-size: cover;
}

.footer__logo {
  height: 1.5rem;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.main {
  margin: 0 1.5rem;
}

.header {
  background-image: url("../images/mobile/image-hero.jpg");
  background-size: cover;
  height: 100vh;
  width: 100%;
  padding: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 0 2000px rgba(10, 10, 10, 0.4);
}

.mobile-header__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: calc(100% - 3rem);
  top: 1.5rem;
  left: 1.5rem;
}

.leader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader__content {
  text-align: start;
  padding: 1.5rem;
}

.creations {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.creations__card-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.5rem;
}

.creations__card {
  width: 100%;
  height: 8rem;
  box-shadow: inset 0 0 0 2000px rgba(10, 10, 10, 0.4);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.creations__card:hover {
  cursor: pointer;
  opacity: 0.5;
}

#deep-earth {
  background-image: url("../images/mobile/image-deep-earth.jpg");
}

#night-arcade {
  background-image: url("../images/mobile/image-night-arcade.jpg");
}

#soccer {
  background-image: url("../images/mobile/image-soccer-team.jpg");
}

#the-grid {
  background-image: url("../images/mobile/image-grid.jpg");
}

#from-up-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 {
  background-color: #000000;
}

.footer__container {
  padding: 3rem;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  gap: 1rem;
}

.footer__container--right, .footer__container--left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.slide-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  inset: 0;
  background-color: #000000;
  width: 0;
  transition: 0.6s;
  overflow: hidden;
}
.slide-menu__container {
  padding: 1.5rem;
}
.slide-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15vh;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
}

.desktop-creations {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.card__img--desktop {
  flex: 1;
  filter: brightness(90%);
}

.desktop-header {
  padding: 4rem;
  display: none;
  width: clamp(800px, 80%, 1300px);
}

.desktop-header__head {
  display: flex;
  justify-content: space-between;
  width: clamp(800px, 100%, 1300px);
}

.desktop-creations__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.desktop-creations__card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (min-width: 767px) {
  .header {
    height: 72vh;
    padding: 4rem;
  }
  .mobile-header__head {
    width: calc(100% - 8rem);
    top: 4rem;
    left: 4rem;
  }
  .mobile-head__logo, .slide-menu__logo {
    height: 2rem;
  }
  .header__title {
    font-size: 4.5rem;
    padding: 3rem;
  }
  .slide-menu__container {
    padding: 4rem;
  }
  .main {
    margin: 0 4rem;
  }
  .leader__img {
    height: 320px;
  }
  .footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: clamp(500px, 80%, 1300px);
    padding: 3rem 0;
    gap: 0;
  }
  .footer__container--left, .footer__container--right {
    height: 80px;
    gap: 1.5rem;
  }
  .footer__container--left {
    align-items: flex-start;
  }
  .footer__container--right {
    align-items: flex-end;
  }
  .footer__copyright {
    text-align: end;
  }
  .nav__list {
    flex-direction: row;
    margin: 0;
  }
}
@media (min-width: 1400px) {
  .container {
    align-items: center;
    gap: 10rem;
  }
  .footer {
    align-self: stretch;
  }
  .main {
    display: flex;
    flex-direction: column;
    width: clamp(800px, 80%, 1300px);
    gap: 8rem;
  }
  .mobile-header {
    display: none;
  }
  .desktop-header {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    padding: 0 0 3rem;
  }
  .header__title {
    width: 60%;
    padding: 2rem 0 1.5rem 1.75rem;
  }
  .header {
    background-image: url("../images/desktop/image-hero.jpg");
    padding: 0;
    justify-content: center;
  }
  .leader {
    position: relative;
    margin-bottom: 3rem;
  }
  .leader__img {
    background-image: url("../images/desktop/image-interactive.jpg");
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .leader__content {
    position: absolute;
    bottom: 0;
    left: 37rem;
    z-index: 1;
    background-color: white;
    padding: 3rem 0 0 5.5rem;
    width: 600px;
    height: 300px;
  }
  .content__copy {
    margin-bottom: 0;
  }
  .leader__title, .creations__title {
    font-size: 3rem;
  }
  .desktop-creations {
    display: flex;
  }
  .creations__title {
    margin: 0;
  }
  .creations {
    display: none;
  }
  .creations__card {
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    flex-grow: 1;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
  }
  .card__title {
    font-size: 2rem;
    width: 170px;
    left: 3rem;
  }
}/*# sourceMappingURL=styles.css.map */