/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 25 août 2022, 11:33:16
    Author     : Boitmobile
*/
  
  a {
    color: #000;
  }
  
  /* header */
  
  .header {
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    width: 100%;
    z-index: 3;
    display: flow-root;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
  }
  
  .header li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
  }
  
  .header .logo {
    display: inline-block;
    font-size: 2em;
    padding: 20px 20px;
    text-decoration: none;
    height: 100%;
    width: auto;
    max-height: 67px;
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    margin-top: 15px;
    margin-right: 15px;
  }
  
  .header .menu-icon .navicon {
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 100%;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 1024px) {
    .header li {
      float: left;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
      margin-right: 30px;
    }
    .header .menu-icon {
      display: none;
    }
  }

  @media (max-width: 1024px) {
      .sous{
          left: 20%;
          width: 75%;
      }
  }
  
  
.sous-active > .sous{
    display: block;
}
    
.sous{
    display: none;
    box-shadow: 0 1px 4px #365576 ;
    background-color: white;
    position: absolute;
    z-index: 1000;
    width: 300px;
}

.sous-sous{
    display: none;
    box-shadow: 0 1px 4px #365576 ;
    background-color: white;
    position: absolute;
    z-index: 1000;
}

.menu-deroulant:hover{
    cursor: default;
}

.menu-deroulant:hover > .sous{
    display: block;
  cursor: pointer;
}

.deroulant{
    width: 100%;
}

.deroulant > a{
    padding: 10px 20px !important;
}