*{
    margin: 0;
    padding: 0;
    
}
header{
    width: 100%;
    height: 69px;
    background-color: rgb(128, 126, 126);
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: row;
    z-index: 2;
}
header > a,
header button{
    color: white;
    margin: 0 15px;
    font-size: 1.1em;
}

#Entete{
    font-size: 1.1em;
}
.dropdown-button {
  min-width: 120px;
}
header button{
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

header .dropdown-1 {
    position: relative;
    height: 100%;
    display: flex;
    font-size: 1.2em;
    padding: 5px;
    
}

header .dropdown-1 .content{
    display: none;
    
}

header .content a{
    color: black;
}

header .icon{
    display: none;
}

header .name{
    display: none;
}

header .dropdown-1:hover .content{
    display: block;
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: rgb(214, 243, 205);
    top: 50px; 
    width: 120%;
    border-radius: 5px;
    padding: 8px 15px;
    box-sizing: border-box;
    text-align: center;
    
}
   
.dropdown-1 > a:after{
    content: '❯';
    font-size: 10px;
    margin-left: 7px;
    display: inline-block;
  }
  .content {
    margin-top: 7px;
    width: 100%;
    text-align: left;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    position: relative; 
    
  }

  .content >  a {
    border-bottom: 1px solid rgb(214, 250, 156);
    height: 50px;
    padding-left: 20px;
    width: 100%;
    align-items: center;
    display: flex;
  }

  nav >  a:hover {
    color: #2169EC;
  }
  .content > a:hover {
    background-color: rgba(33, 105, 236, 5.3);
  }
  
  .content > a:hover > a {
    color: white;
  }
  @keyframes rotationFleche {
    0% {
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(90deg);
    }
  }
  .dropdown-1:hover > a:after{
    animation: rotationFleche 0.2s linear forwards;
  }
  @keyframes apparitionSousMenu {
    0% {
      box-shadow: 0px 3px 3px 1px rgba(0,0,0,0);
      border-top: 3px solid #2169EC;
    }
    30% {
      box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
    }
    100% {
      max-height: 50em;
      border-top: 3px solid #2169EC;
      box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
    }
  }
  .dropdown-1:hover > .content {
    animation: apparitionSousMenu 1s forwards;
  }







@media (max-width: 1000px) {
    
    header > a,
    header button {
    display: none;
    }

    header .icon{
        display: block;
        position: absolute;
        right: 0;
        text-align: right;
        width: 5% !important;
        top: 20px;
        padding: 0 !important;
    }
    
    .Responsive{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .name {
      order: 1;
    }

    .icon {
      order: 2;
    }

    header.responsive > a{
        padding: 10px 0;
    
    }
    header.responsive > a,
    header.responsive .dropdown-1{
    display: block;
    width: 100%;
    
    }

    header.responsive button{
        display: block;
        padding: 10px 0;
        }

    header{
        flex-direction: column;
        height: 100%;
        align-items: flex-start;
        min-height: 70px;
    }


    header .dropdown-1:hover .content{
    position: relative;
    width: 100%;
    background-color: rgb(172, 238, 153);
    top: 0;
        
    }
}