*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

body {
  font-size: 1.5rem;
  font-family: "Alata", sans-serif;
  scroll-behavior: smooth;
}

header {
  background-image: url(../images/mobile/image-hero.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
}

.logo {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  padding: 6rem 1.5rem 1.5rem 3rem;
  z-index: 4;
}

.menu-btn {
  position: absolute;
  z-index: 4;
  right: 3rem;
  top: 6.5rem;
  height: 2.1rem;
  width: 2.8rem;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn-burger {
  position: absolute;
  right: 0;
  top: 0.8rem;
  width: 2.8rem;
  height: 0.3rem;
  background: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn-burger::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  width: 2.8rem;
  height: 0.3rem;
  background: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn-burger::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  width: 2.8rem;
  height: 0.3rem;
  background: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn-burger.open {
  -webkit-transform: rotate(720deg);
          transform: rotate(720deg);
  background: transparent;
}

.menu-btn-burger.open::before {
  -webkit-transform: rotate(45deg) translate(0.5rem, 0.8rem);
          transform: rotate(45deg) translate(0.5rem, 0.8rem);
}

.menu-btn-burger.open::after {
  -webkit-transform: rotate(-45deg) translate(0.3rem, -0.6rem);
          transform: rotate(-45deg) translate(0.3rem, -0.6rem);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0.95;
  visibility: hidden;
  z-index: 3;
}

.nav.open {
  visibility: visible;
}

.nav-menu {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  padding-left: 2rem;
  background: #000000;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.nav-menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav-menu-item {
  padding: 2.5rem 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.nav-menu-link {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
}

.floating-div {
  position: absolute;
  width: auto;
  border: 1px solid #ffffff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.floating-div h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
  padding: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 705px) {
  .floating-div {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .floating-div h3 {
    font-size: 6.5rem;
    width: 13ch;
  }
}

@media screen and (min-width: 950px) {
  header {
    background-image: url(../images/desktop/image-hero.jpg);
    background-size: auto;
    height: 650px;
    margin-bottom: 16rem;
    padding-left: 12rem;
    padding-right: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .nav {
    position: relative;
    visibility: visible;
    justify-self: flex-end;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    padding-right: 3rem;
    z-index: 2;
  }
  header .nav-menu {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: 100%;
    background: transparent;
    text-align: right;
  }
  header .nav-menu-item {
    display: inline-block;
    position: relative;
    padding-top: 6.3rem;
    padding-bottom: 1rem;
    margin-left: 2rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  header .nav-menu-item:hover::after {
    content: "";
    display: block;
    position: absolute;
    /* position this at the bottom */
    bottom: 0;
    left: 25%;
    /* left and right determine length of line, the longer you want it, the closer to 0 these values should be */
    right: 25%;
    height: 2px;
    background: #ffffff;
    /* match the font color */
  }
  header .nav-menu-link {
    font-family: "Alata", sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: capitalize;
  }
  header .menu-btn {
    visibility: hidden;
  }
  .floating-div {
    width: 60rem;
    -webkit-transform: translate(0);
            transform: translate(0);
    top: 22rem;
    left: 16rem;
  }
  .floating-div h3 {
    font-size: 6.8rem;
    padding: 2.5rem 3.5rem 1.5rem 2.5rem;
  }
  .overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

@media screen and (min-width: 1440px) {
  header {
    width: 1440px;
    margin: 0 auto;
    margin-bottom: 17rem;
  }
}

.vr {
  padding: 0 2.5rem;
  margin-top: 13rem;
  text-align: center;
}

.vr img {
  margin-bottom: 6rem;
}

.vr h2 {
  margin-bottom: 4rem;
}

.vr p {
  font-size: 1.8rem;
  margin-bottom: 13rem;
  color: #8c8c8c;
  padding: 0 2rem;
  line-height: 1.8;
}

@media screen and (min-width: 705px) {
  .vr img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 950px) {
  .vr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 18rem;
  }
  .vr img {
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 0;
    -ms-flex-preferred-size: 68%;
        flex-basis: 68%;
  }
  .vr-wrap {
    padding: 10rem 0.1rem 0 10rem;
    background: #ffffff;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 5;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    text-align: left;
    -ms-flex-preferred-size: 410px;
        flex-basis: 410px;
  }
  .vr-wrap h2 {
    font-size: 3.5rem;
    padding-right: 9rem;
  }
  .vr-wrap p {
    font-size: 1.5rem;
    margin-bottom: 0;
    padding-left: 0;
  }
}

.creation {
  padding: 0 2.5rem;
  text-align: center;
}

.creation h2 {
  margin-bottom: 7rem;
}

.creation-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.creation-gallery .container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.creation-gallery .container:hover h4 {
  color: black;
}

.creation-gallery .container img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
}

.creation-gallery .container img:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.creation-gallery .container h4 {
  position: absolute;
  color: #ffffff;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 2.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  z-index: 2;
}

.creation-btn {
  display: inline-block;
  letter-spacing: 0.4rem;
  color: #000000;
  padding: 1rem 3.5rem;
  border: 1px solid #000000;
  margin-bottom: 12rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.creation-btn:hover {
  background: #000000;
  color: #ffffff;
}

@media screen and (min-width: 705px) {
  .creation-gallery {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 950px) {
  .creation-gallery {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 950px) {
  .creation {
    display: none;
  }
}

.creation-pc {
  display: none;
  padding: 0 2.5rem;
  text-align: center;
}

.creation-pc-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.creation-pc-gallery .container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.creation-pc-gallery .container:hover h4 {
  color: black;
}

.creation-pc-gallery .container img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
}

.creation-pc-gallery .container img:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.creation-pc-gallery .container h4 {
  position: absolute;
  color: #ffffff;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 2.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  z-index: 2;
}

.creation-pc-btn {
  display: inline-block;
  letter-spacing: 0.4rem;
  color: #000000;
  padding: 1rem 3.5rem;
  border: 1px solid #000000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.creation-pc-btn:hover {
  background: #000000;
  color: #ffffff;
}

@media screen and (min-width: 950px) {
  .creation-pc {
    display: block;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 15rem;
  }
  .creation-pc-gallery {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .creation-pc-titlewrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 8rem;
  }
  .creation-pc-titlewrap h2 {
    font-size: 3.4rem;
  }
  .container img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .container img:hover {
    opacity: 0.5;
  }
}

.f {
  background: #000000;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  place-items: center;
  gap: 4rem;
  padding: 7rem 0;
}

.f-menu-item {
  padding: 1.5rem 0;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.f-menu-item:hover::after {
  content: "";
  display: block;
  position: absolute;
  /* position this at the bottom */
  bottom: 0;
  left: 25%;
  /* left and right determine length of line, the longer you want it, the closer to 0 these values should be */
  right: 25%;
  height: 2px;
  background: #ffffff;
  /* match the font color */
}

.f-menu-link {
  color: #ffffff;
}

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

.f-social a {
  padding-bottom: 0.5rem;
  height: 3rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.f-social a:hover {
  border-bottom: 2px solid #ffffff;
}

.f-social a + a {
  margin-left: 1.5rem;
}

.f p {
  color: #8c8c8c;
}

@media screen and (min-width: 950px) {
  .f {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 3.5rem 16.5rem;
  }
  .f img {
    justify-self: flex-start;
  }
  .f-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    justify-self: flex-start;
  }
  .f-menu-item + .f-menu-item {
    margin-left: 3rem;
  }
  .f-social {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    justify-self: flex-end;
  }
  .f p {
    justify-self: flex-end;
  }
}

h2 {
  font-size: 4.5rem;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Josefin Sans", sans-serif;
}

@media screen and (min-width: 1440px) {
  .wrapper {
    max-width: 1440px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=style.css.map */