body {
  background-color: rgb(24, 25, 61);
  margin: 0;

  /* leave it to hide the scrollbars */
  overflow: hidden;
  z-index: -1;
}

/*NAVIGATION HEADER*/
@font-face{
  font-family: 'titleFont';
  src: url('BodoniModa.ttf') format('TrueType');
}

.navbar{
  position: absolute;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
}

.navbar ul{
  list-style: none;
}

.navbar a{
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  font-family: Helvetica, sans-serif;
  text-decoration: none;
}

.navbar a:hover{
  color: #e4e4e4;
}

.navbar .menu-hamburger{
  display: none;
  position: absolute;
  top: 50px;
  right: 50px;
  width: 35px;

}

.navbar .nav-mobile{
  display: none;
}

#flag{
  width: 18px;
}

/*BODY*/

.container{
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.container .content{
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: flex-end;
  margin: 11em 0em 0em 0em;
}

/*COLONNE GAUCHE*/

.container .left{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  margin: 0em 0em -18em 0em;
}

.container .left .nav a{
  font-size: 18px;
  font-family: 'titleFont', Helvetica, serif;
  /*font-family: Helvetica, sans-serif;*/
  color: #fff;
  text-decoration: none;
}

.container .left .nav a:hover{
  color: #B0B0B0;
}

.container .left .nav a:hover .line1{
  transform: translate(15px, 0px);
  transform-origin: 100% 0%;
}

.container .left .nav .line1{
  position: absolute;
  display: flex;
  flex-direction: row;
  align-self: center;
  width: 7%;
  height: 0.4px;
  background: #f4f4f49b;
}

.container .left .nav .text-hover{
  font-family: Helvetica, sans-serif;
  font-size: 15px;
  color: rgb(242, 242, 2);
  border: solid 1px #fff;
  border-radius: 30%;
  padding: 0.5em;
}
/*
.container .left .nav a:hover .btn-shop{
  opacity: 1;
}*/

/* On montre le premier texte */
.text-base{
  opacity:1;
}
/* On cache le second texte */
.text-hover{
  display:none;
}
/* On fait disparaitre le premier texte au passage de la souris. */
.button:hover span.text-base{
  opacity:0;
}
/* On fait apparaitre le second texte au passage de la souris. */
.button:hover span.text-hover{
  display:inherit;
  position:absolute;
}


/*COLONNE DROITE*/

.container .right{
  height: 40%;
  display: flex;
  flex-direction: column;
}

.container .right .menu-items .line2{
  position: absolute;
  display: flex;
  flex-direction: row;
  align-self: center;
  width: 4%;
  height: 0.2px;
  background: #f4f4f49b;
}

/* Dropdown menu */

.container .right .items,
.container .right .items ul {
  list-style: none;
  font-family:  Helvetica, sans-serif;
  text-decoration: none;
  transition: .2s all;
}

.container .right .items ul {
  display: none;
}

.container .right .items li {
  position: relative;
}

.container .right .items li:hover ul {
  display: block;
  position: absolute;
  top: 0px;
  left: 90px; 
  z-index: 100; 
}

.container .right .items li a {
  display: block;
  width: 100px;
  line-height: 35px;
  text-decoration: none;
  font-size: 14px;
  transition: .2s all;
  color: #fff; /* Couleur du texte du menu */
}

.container .right .items li:hover a {
  color: #B0B0B0; /* Couleur du texte du menu au survol */
}
.container .right .items li:active a {
  color: #B0B0B0; /* Couleur du texte du menu au survol */
}

.container .right .items li a i:hover{
  font-weight: 400;
}

/*sous menu*/ 

.container .right .items ul li a {
  color: #fff; /* Couleur du texte des sous-menu */
  font-size: 13px;
  line-height: 28px;
  width: 130px;
}
.container .right .items ul li:hover a {
  color: #fff; /* Couleur du texte des sous-menu au survol */
  
}
.container .right .items ul li:active a {
  color: #fff; /* Couleur du texte des sous-menu au survol */
}


/*ANIMATION*/

#line-2 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 2.5s;
  -webkit-animation: anim 2s linear forwards 2.5s;
  -o-animation: anim 2s linear forwards 2.5s;
  -ms-animation: anim 2s linear forwards 2.5s;
  animation: anim 2s linear forwards 2.5s;
}
#item0 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 2.5s;
  -webkit-animation: anim 2s linear forwards 2.5s;
  -o-animation: anim 2s linear forwards 2.5s;
  -ms-animation: anim 2s linear forwards 2.5s;
  animation: anim 2s linear forwards 2.5s;
}
#item1 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 3s;
  -webkit-animation: anim 2s linear forwards 3s;
  -o-animation: anim 2s linear forwards 3s;
  -ms-animation: anim 2s linear forwards 3s;
  animation: anim 2s linear forwards 3s;
}

#item2 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 3.5s;
  -webkit-animation: anim 2s linear forwards 3.5s;
  -o-animation: anim 2s linear forwards 3.5s;
  -ms-animation: anim 2s linear forwards 3.5s;
  animation: anim 2s linear forwards 3.5s;
}

#item3 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 4s;
  -webkit-animation: anim 2s linear forwards 4s;
  -o-animation: anim 2s linear forwards 4s;
  -ms-animation: anim 2s linear forwards 4s;
  animation: anim 2s linear forwards 4s;
}

#item4 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 4.5s;
  -webkit-animation: anim 2s linear forwards 4.5s;
  -o-animation: anim 2s linear forwards 4.5s;
  -ms-animation: anim 2s linear forwards 4.5s;
  animation: anim 2s linear forwards 4.5s;
}
#item5 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 5s;
  -webkit-animation: anim 2s linear forwards 5s;
  -o-animation: anim 2s linear forwards 5s;
  -ms-animation: anim 2s linear forwards 5s;
  animation: anim 2s linear forwards 5s;
}
#item6 {
  opacity:0;
  -moz-animation: anim 2s linear forwards 5.5s;
  -webkit-animation: anim 2s linear forwards 5.5s;
  -o-animation: anim 2s linear forwards 5.5s;
  -ms-animation: anim 2s linear forwards 5.5s;
  animation: anim 2s linear forwards 5.5s;
}
#shop {
  opacity:0;
  -moz-animation: anim 2s linear forwards 2s;
  -webkit-animation: anim 2s linear forwards 2s;
  -o-animation: anim 2s linear forwards 2s;
  -ms-animation: anim 2s linear forwards 2s;
  animation: anim 2s linear forwards 2s;
}
@-moz-keyframes anim {
 0%  {opacity:0;}
 100% {opacity:1;}
}
@-webkit-keyframes anim {
 0%  {opacity:0;}
 100% {opacity:1;}
}
@-o-keyframes anim {
 0%  {opacity:0;}
 100% {opacity:1;}
}
@-ms-keyframes anim {
 0%  {opacity:0;}
 100% {opacity:1;}
}
@keyframes anim {
 0%  {opacity:0;}
 100% {opacity:1;}
}



/*RESPONSIVE*/

@media screen and (min-width: 1600px) {
  .container .content {
    padding: 3em 2em 0em 2em;
  }
  .container .menu-items{
    flex-direction: row;
    justify-content: center;
  }
  /*menu gauche*/
  .container .left .nav a{
    font-size: 18px;
  }
  .container .left{
    margin: 0em 0em -23em 0em;
  }
  /*menu droit*/
  .container .right .items li a {
    display: block;
    width: 150px;
    line-height: 45px;
    text-decoration: none;
    font-size: 16px;
  }
  .container .right .items li:hover ul {
    display: block;
    position: absolute;
    top: 0px;
    left: 100px; 
    z-index: 100; 
  }
  .container .right .items ul li a {
    font-size: 14px;
    line-height: 28px;
    width: 150px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
 .navbar .menu-hamburger{
    display: block;
    top: 34px;
    right: 5%;
    width: 20px;
  }
  .container .right .menu-items{
    display: none;
  }
  .navbar .nav-mobile{
    display: block;
  }
  .navbar{
    padding: 0;
  }
  .navbar .logo{
    position: absolute;
    top: 30px;
    left: 5%;
    z-index: 1;
  }
  .navbar .btn-english{
    position: absolute;
    top: 35px;
    right: 10%;
    z-index: 1;
  }
  .container .left{
    margin: 0em 0em -12em 0em;
  }

  /*Menu Hamburger*/

  .menu-mobile{
    width: 0;
    height: 0;
    background-color: #30358c8e ;
    backdrop-filter: blur(7px);
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    letter-spacing: 1.5px;
    overflow: hidden;
    will-change: height;
    transition:  height 0.5s ease-in-out;
  }
  .menu-mobile.open-menu{
    width: 100%;
    height: 100vh;
    border-bottom-left-radius: 0;
  }
  .navbar .nav-mobile .menu-mobile ul{
    display: flex;
    flex-direction: column;
    margin: 18% 0% 0% 5%;
  }
  .navbar .nav-mobile .menu-mobile ul li{
    margin: 5px 0;
  }

/*menu*/

.nav-mobile .menu-mobile .menu-mobile-links a {
  font-family: Helvetica, sans-serif;
  font-size: 13px;
  line-height: 40px;
  font-weight: 500;
  display: inline-block;
}

.nav-mobile .menu-mobile .menu-mobile-links ul{
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.nav-mobile .menu-mobile .menu-mobile-links li:hover > ul{
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  width: 170px;
}

/*SUB-MENU*/

.nav-mobile .menu-mobile .menu-mobile-links ul li a{
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 15px;
  border-radius: 0px!important;
}

.nav-mobile .menu-mobile .menu-mobile-links ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}

.nav-mobile .menu-mobile .menu-mobile-links ul li{
  position: relative;
}

.nav-mobile .menu-mobile .menu-mobile-links ul li:hover ul{
  top: 0;
}
}


@media screen and (max-width: 767px) {
  .navbar .menu-hamburger{
     display: block;
     top: 18px;
     right: 7%;
     width: 22px;
   }
   .container .right .menu-items{
     display: none;
   }
   .navbar .nav-mobile{
     display: block;
   }
   .navbar{
     padding: 0;
   }
   .navbar .logo{
     position: absolute;
     top: 15px;
     left: 7%;
   }
   .navbar .btn-english{
     position: absolute;
     top: 20px;
     right: 17%;
   }
   /*Menu shop*/
   .container .left{
    margin: 0em 0em -12em 0em;
  }
   /*Menu Hamburger*/
   .menu-mobile{
     width: 0;
     height: 0;
     background-color: #30358c8e ;
     backdrop-filter: blur(7px);
     position: fixed;
     top: 0;
     right: 0;
     display: flex;
     align-items: center;
     letter-spacing: 1.5px;
     overflow: hidden;
    /* border-bottom-left-radius: 100%;*/
    /* transition: height 0.5s ease-in-out;*/
   }

   .menu-mobile.open-menu{
     width: 100%;
     height: 100vh;
     border-bottom-left-radius: 0;
   }
   .navbar .nav-mobile .menu-mobile ul{
     display: flex;
     flex-direction: column;
     align-items: baseline;
     justify-content: flex-start;
     margin-left: 5%;
   }
   .navbar .nav-mobile .menu-mobile ul li{
     margin: 5px 0;
   }

   .navbar .nav-mobile .menu-mobile ul li i{
    font-weight: 600;
    font-size: 10px;
    width: 15px;
   }


   /*menu*/

.nav-mobile .menu-mobile .menu-mobile-links a {
  font-family: Helvetica, sans-serif;
  font-size: 13px;
  line-height: 32px;
  font-weight: 500;
  display: inline-block;
}

.nav-mobile .menu-mobile .menu-mobile-links ul{
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.nav-mobile .menu-mobile .menu-mobile-links li:hover > ul{
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  width: 170px;
}

/*SUB-MENU*/

.nav-mobile .menu-mobile .menu-mobile-links ul li a{
  display: block;
  width: 100%;
  font-size: 10px;
  line-height: 25px;
  border-radius: 0px!important;
}

.nav-mobile .menu-mobile .menu-mobile-links ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}

.nav-mobile .menu-mobile .menu-mobile-links ul li{
  position: relative;
}

.nav-mobile .menu-mobile .menu-mobile-links ul li:hover ul{
  top: 0;
}
}

