@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
}

.hero {
  height: 100vh;
  background-image: url("../images/mobile/image-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1000px) {
  .hero {
    height: 774px;
    background-image: url("../images/desktop/image-hero.jpg");
  }
}

.hero .nav_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Alata", sans-serif;
  padding: 1.5rem 1.5rem;
  -webkit-transition: 0.5s background ease-in-out;
  transition: 0.5s background ease-in-out;
}

@media (min-width: 1000px) {
  .hero .nav_container {
    width: 90%;
    margin: auto;
    padding: 3rem 1.5rem;
  }
}

.hero .nav_container .logo {
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-animation: 1s logo ease-in-out forwards;
          animation: 1s logo ease-in-out forwards;
}

@media (min-width: 1000px) {
  .hero .nav_container .logo {
    font-size: 2.5rem;
  }
}

.hero .nav_container .humbergar {
  cursor: pointer;
}

@media (min-width: 476px) {
  .hero .nav_container .humbergar {
    display: none;
  }
}

.hero .nav_container .humbergar span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hero .nav_container .humbergar span:nth-child(2) {
  margin: 0.3rem 0;
}

.hero .nav_container .humbergar.active {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hero .nav_container .humbergar.active span {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hero .nav_container .humbergar.active span:nth-child(1) {
  -webkit-transform: translate(0, 4px) rotate(45deg);
          transform: translate(0, 4px) rotate(45deg);
}

.hero .nav_container .humbergar.active span:nth-child(2) {
  display: none;
}

.hero .nav_container .humbergar.active span:nth-child(3) {
  -webkit-transform: translate(0, 2px) rotate(-45deg);
          transform: translate(0, 2px) rotate(-45deg);
}

.hero .nav_container .mobile_nav {
  display: none;
}

.hero .nav_container .mobile_nav.active {
  position: absolute;
  z-index: 10;
  top: 5rem;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s background ease-in-out;
  transition: 0.5s background ease-in-out;
}

@media (min-width: 476px) {
  .hero .nav_container .mobile_nav.active {
    display: none;
  }
}

.hero .nav_container .mobile_nav.active a {
  text-decoration: none;
  color: white;
  margin: 0.9rem 1.5rem;
  padding-left: 0.5rem;
  font-size: 1.8rem;
  font-family: "Josefin Sans", sans-serif;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.hero .nav_container .mobile_nav.active a:hover {
  border-left: 4px solid white;
}

.hero .nav_container .desktop_nav a {
  color: white;
  padding: 1rem;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  -webkit-animation: navigation 1s ease-in-out  forwards;
          animation: navigation 1s ease-in-out  forwards;
}

.hero .nav_container .desktop_nav a::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 1.7rem;
  width: 0;
  height: 2px;
  background-color: white;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.hero .nav_container .desktop_nav a:hover::before {
  width: 30%;
}

@media (max-width: 1000px) {
  .hero .nav_container .desktop_nav {
    display: none;
  }
}

.hero .nav_container.active {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: black;
}

.hero .hero_content {
  width: 85%;
  margin: auto;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-animation: 1s heroContent ease-in-out forwards;
          animation: 1s heroContent ease-in-out forwards;
}

@media (min-width: 1000px) {
  .hero .hero_content {
    width: 85%;
    margin: auto;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.hero .hero_content h1 {
  color: white;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 2.5rem;
  padding: 1.5rem;
  border: 1px solid white;
  line-height: 1.2;
}

@media (min-width: 1000px) {
  .hero .hero_content h1 {
    width: 60%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    font-size: 5rem;
    padding: 2rem;
  }
}

@-webkit-keyframes navigation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes navigation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes logo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes heroContent {
  0% {
    left: -10rem;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes heroContent {
  0% {
    left: -10rem;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

.intro .container {
  width: 90%;
  margin: auto;
  padding: 5rem 0;
}

@media (min-width: 1000px) {
  .intro .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 10rem 0;
  }
}

.intro .container .image {
  width: 100%;
  padding: 1rem 0;
}

@media (min-width: 1000px) {
  .intro .container .image {
    width: 60%;
    padding: 0;
  }
}

.intro .container .image img {
  width: 100%;
}

.intro .container .intro_content {
  text-align: center;
  padding: 2rem;
  position: relative;
}

@media (min-width: 1000px) {
  .intro .container .intro_content {
    text-align: left;
    padding: 6rem 0 0rem 6rem;
    width: 50%;
    background-color: white;
    position: absolute;
    bottom: 8.3rem;
    right: 2rem;
  }
}

.intro .container .intro_content h1 {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 300;
  font-family: "Josefin Sans", sans-serif;
}

@media (min-width: 1000px) {
  .intro .container .intro_content h1 {
    font-size: 3.5rem;
  }
}

.intro .container .intro_content p {
  font-family: "Alata", sans-serif;
  color: #8c8c8c;
  padding: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 1000px) {
  .intro .container .intro_content p {
    font-size: 1rem;
  }
}

/*@keyframes leftside {
  0% {
    top: 0rem;
  }
  100% {
    bottom: 8.3rem;
    right: 2rem;
  }
}
*/
.creations {
  padding: 3rem 0;
}

.creations .container {
  width: 90%;
  margin: auto;
  text-align: center;
}

.creations .container .creations_header {
  text-align: center;
}

@media (min-width: 1000px) {
  .creations .container .creations_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.creations .container .creations_header h1 {
  font-size: 2rem;
  font-weight: 300;
  font-family: "Josefin Sans", sans-serif;
}

@media (min-width: 1000px) {
  .creations .container .creations_header h1 {
    font-size: 3rem;
  }
}

.creations .container .creations_header button {
  font-size: 0.9rem;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1rem;
  padding: 0.8rem 3rem;
  background-color: white;
  border: 2px solid black;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.creations .container .creations_header button:hover {
  background-color: black;
  color: white;
}

@media (max-width: 475px) {
  .creations .container .creations_header button {
    display: none;
  }
}

.creations .container .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[4];
      grid-template-rows: repeat(4, 1fr);
  padding: 4rem 0;
  text-align: left;
}

@media (min-width: 1000px) {
  .creations .container .grid {
    -ms-grid-rows: none;
        grid-template-rows: none;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.creations .container .grid div {
  height: 150px;
  margin: 1rem 0rem;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  -webkit-box-shadow: inset 0em -8em 50px rgba(0, 0, 0, 0.596);
          box-shadow: inset 0em -8em 50px rgba(0, 0, 0, 0.596);
}

@media (min-width: 1000px) {
  .creations .container .grid div {
    height: 500px;
    margin: 1rem;
  }
}

.creations .container .grid div:hover {
  opacity: 0.8;
}

.creations .container .grid div h1 {
  width: 65%;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  position: absolute;
  font-weight: 300;
  bottom: 1rem;
  left: 2rem;
  color: white;
}

@media (min-width: 1000px) {
  .creations .container .grid div h1 {
    bottom: 2rem;
    left: 2rem;
    font-size: 2.3rem;
    line-height: 1.3;
  }
}

.creations .container .btn_mobile {
  font-size: 0.9rem;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1rem;
  padding: 0.8rem 3rem;
  background-color: white;
  border: 2px solid black;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.creations .container .btn_mobile:hover {
  background-color: black;
  color: white;
}

@media (min-width: 1000px) {
  .creations .container .btn_mobile {
    display: none;
  }
}

footer {
  background-color: black;
}

footer .container {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1000px) {
  footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2rem 0;
  }
}

footer .container .navigation .logo {
  color: white;
  padding: 2rem 0;
  font-family: "Alata", sans-serif;
  font-size: 2rem;
  cursor: pointer;
}

@media (min-width: 1000px) {
  footer .container .navigation .logo {
    padding: 0;
  }
}

footer .container .navigation nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1000px) {
  footer .container .navigation nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    padding: 2rem 0;
  }
}

footer .container .navigation nav a {
  font-family: "Alata", sans-serif;
  color: white;
  padding: 1rem;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (min-width: 1000px) {
  footer .container .navigation nav a {
    margin: 0 1.5rem 0 0;
    padding: 0;
    font-size: 0.9rem;
  }
}

footer .container .navigation nav a::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 1.7rem;
  width: 0;
  height: 2px;
  background-color: white;
  margin: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (min-width: 1000px) {
  footer .container .navigation nav a::before {
    top: 2rem;
    left: 1rem;
  }
}

footer .container .navigation nav a:hover::before {
  width: 40%;
}

footer .container .social_links {
  padding: 1rem 0;
}

footer .container .social_links img {
  margin: 0 1rem;
  padding: 1rem 0;
  cursor: pointer;
  position: relative;
  border-bottom: 3px solid transparent;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

footer .container .social_links img:hover {
  border-color: #8c8c8c;
}

footer .container .social_links p {
  font-family: "Alata", sans-serif;
  font-size: 0.9rem;
  color: #8c8c8c;
}
/*# sourceMappingURL=main.css.map */