@font-face {
  font-family: "Vogue";
  src: url("/static/fonts/Vogue.ttf");
}
@font-face {
  font-family: "Futura";
  src: url("/static/fonts/OPTIFutura Demibold It.ttf");
}
@font-face {
  font-family: "FuturaNit";
  src: url("/static/fonts/OPTIFuturaDemiBold.otf");
}
@font-face {
  font-family: "FuturaLight";
  src: url("/static/fonts/SansSerifFLF.otf");
}
@font-face {
  font-family: "FuturaIt";
  src: url("/static/fonts/Futura Medium Italic.otf");
}
section.top-page {
  padding: 20px 25px;
  height: 100vh;
  /* height: -moz-available; */
  height: -webkit-fill-available;
  height: stretch;
  z-index: 999;
}

.only-phone {
  display: none;
}

header {
  color: white;
  letter-spacing: 0.07em;
  font-size: calc(0.9em + 0.8vw);
  align-items: center;
  display: flex;
}

.title {
  text-align: center;
  cursor: pointer;
  margin-right: auto;
}
.title h1 {
  font-size: calc((0.9em + 0.8vw) * 0.9);
}
.title h2 {
  font-size: calc((0.9em + 0.8vw) * 0.5);
}

/* Navbar */
nav {
  width: 70%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}
nav a {
  cursor: pointer;
  color: white;
}
nav .active {
  text-underline-offset: 3px;
}
@media (min-width: 800px) {
  nav .sous-cat {
    display: none;
    position: absolute;
    margin-left: 1.5vw;
    padding-top: 3px;
    font-style: italic;
  }
  nav li:hover .sous-cat {
    display: block;
  }
  nav .arrow {
    display: none;
  }
}

/* Burger icon */
.hamburger-icon {
  display: none;
  margin: auto 0;
  cursor: pointer;
  z-index: 10001;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
  z-index: 10;
  position: relative;
}

.open .bar1 {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.open .bar2 {
  opacity: 0;
}
.open .bar3 {
  transform: rotate(45deg) translate(-6px, -8px);
}
.open nav {
  left: 0;
}

/* Navbar responsive */
@media (max-width: 800px) {
  .hamburger-icon {
    display: block;
  }
  .only-phone {
    display: block;
  }
  nav {
    /* padding-top: 30vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* justify-content: flex-start; */
    background-color: black;
    position: fixed;
    top: 0;
    left: -100vw;
    height: 100vh;
    width: 100vw;
    align-items: center;
    transition: 0.5s;
    /* overflow-y : hidden; */
  }
  nav a {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s ease-in-out;
  }
  nav .deroulant a {
    font-size: 30px;
  }
  nav li {
    padding-bottom: 5px;
    padding-top: 5px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  nav .sous-cat {
    display: none;
  }
  nav .sous-cat-open a {
    color: white;
  }
  nav .sous-cat-open .down {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  nav .sous-cat-open .sous-cat {
    display: block;
  }
  nav .sous-cat-open .sous-cat li {
    /* background-color: rgba(50, 50, 50, 0.5); */
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.arrow {
  margin-left: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

nav .deroulant .sous-cat li a {
  font-size: 20px;
}

/* Arrow down at the bottom of the header */
.arrow-page {
  box-sizing: border-box;
  position: absolute;
  bottom: 5%;
  left: calc(50% - (3vw + 3vh) / 2);
  height: calc(3vw + 3vh);
  width: calc(3vw + 3vh);
  border-style: solid;
  border-color: white;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  transition: 300ms ease-in-out;
  animation: grow-animation 2s ease-in-out infinite;
  cursor: pointer;
}

.arrow-page:hover {
  transform: rotate(45deg) scale(1.3);
  border-bottom-width: 8px;
  border-right-width: 8px;
}

@keyframes grow-animation {
  0% {
    transform: rotate(45deg) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(1.1);
  }
  100% {
    transform: rotate(45deg) scale(1);
  }
}
/* Grid menu */
.table-menu {
  height: 100vh;
}

.i1 {
  grid-area: modele;
  background: url("/static/img/grid-index/Modele.jpg") center center;
  background-size: cover;
}

.i2 {
  grid-area: photo;
  background: url("/static/img/grid-index/Photographies.jpg") center center;
  background-size: cover;
}

.i3 {
  grid-area: shop;
  background: url("/static/img/grid-index/Shop.jpg") center center;
  background-size: cover;
}

.i4 {
  grid-area: apropos;
  background: url("/static/img/grid-index/a-propos.jpg") center center;
  background-size: cover;
}

.i5 {
  grid-area: contact;
  background: url("/static/img/grid-index/Contact.jpg") center center;
  background-size: cover;
}

.grid-container {
  display: grid;
  grid-gap: 2vw;
  padding: 4vw 4vw;
  height: 100vh;
  height: calc(100% - 8vw);
}

@media (max-width: 800px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "shop shop" "photo photo" "modele modele" "apropos contact";
  }
  .rectangle {
    width: 100%;
  }
}
@media (min-width: 800px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "modele modele photo photo" "shop shop photo photo" "shop shop apropos contact";
  }
}
.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}

.grid-container .wrap:hover h2 {
  font-size: 1.8em;
}

.grid-container h2 {
  text-align: center;
  /* background-color: green; */
  color: white;
  font-size: calc((0.9em + 0.8vw) * 1.5);
  font-family: "Futura";
  transition: all 0.5s ease-out;
  text-transform: uppercase;
}

.wrap {
  cursor: pointer;
  transition: all 0.5s;
  width: 100%;
}

.grid-container .wrap:hover {
  transform: scale(1.03);
}/*# sourceMappingURL=header.css.map */