/**                NavBar                    **/
.sinscrireBtn{
    background-color: #16C2ED;
    padding: 1em;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    color: #ffff;
    font-family: sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    flex-direction: row;
    padding: 1em 8em;
}
dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0 !important;
}
  nav .logo {
    display: flex;
    align-items: center;
  }
  
  nav .logo img {
    height: 100%;
    width: 100%;
    margin-right: 10px;
}
  nav .logo h1 {
    font-size: 1.1rem;
    background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}
  nav ul li {
    margin-left: 1.5rem;
  }
  nav ul li a {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    text-decoration: none;
    color: #0B0D53;
    font-size: 15px;
    font-weight: 500;
    font-family: sans-serif;
    text-transform: capitalize;
}
  
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px; /* Adjust as needed */
    bottom: 0;
    left: 0;
    background-color: #FEEFC2; /* The color of the underline */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    
  }
  
  nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    
  }
  nav ul li a:hover{
    color:rgb(9, 0, 51) !important
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  .menubar.active {
    display: block;
  }
  
  .close-icon {
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    display: none; /* Hidden until menu is active */
  }
  
  .menubar.active .close-icon {
    display: block;
  }
  

  .hamburger .line {
    width: 25px;
    height: 2px;
    background-color: #00081c;
    display: block;
    margin: 7px auto;
    transition: all 0.3s ease-in-out;
}
  .hamburger-active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
  }
  
  .hamburger-active .line:nth-child(2) {
    width: 0px;
  }
  
  .hamburger-active .line:nth-child(1),
  .hamburger-active .line:nth-child(3) {
    transition-delay: 0.3s;
  }
  
  .hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
  }
  
  .hamburger-active .line:nth-child(3) {
    transform: translateY(-5px) rotate(90deg);
  }
  
  .menubar {
    position: absolute;
    top: 0;
    left: -60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: 100vh;
    padding: 20% 0;
    background: rgba(255, 255, 255);
    transition: all 0.5s ease-in;
    z-index: 2;
  }
  .active {
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
  .menubar ul {
    padding: 0;
    list-style: none;
  }
  .menubar ul li {
    margin-bottom: 32px;
  }
  
  .menubar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 95%;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .menubar ul li a:hover {
    background-color: #f5f5f5;
  }

  section {
    overflow: hidden;
    padding: 4% 0 0 0;
  }
  .navigiation {
    padding: 0em 0em 0em 0em;
}

  .section-header {
    text-align: center;
  }
  
  .bloc-right-slider {
    padding-left: 5%;
  }
  
  .navbar a {
    color: var(--color-secondary);
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;
  }
  .topbar {
    background-color: #FAB20F;
    display: flex
;
    align-items: center;
    padding: 0.7em 8em;
    justify-content: space-between;
}
.topbar p{
    color: #FFFFFF;
    font-family: sans-serif;
    text-align: center;
    font-size: 16px;
    margin: 0;

}
.reseaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  align-items: center;
  gap: 0.5em;
}
.topbar a{
    color: #ffff;
    text-decoration: none;
    font-size: 16px;
}

  @media screen and (max-width: 790px) {
    .reseaux {
      display: none;
  }
    .topbar p{
        font-size: 12px;
    }
    .topbar a{
        font-size: 12px;
    }
    .topbar {
      padding: 0.7em 2em !important;
      justify-content: center !important;
  }
  .reseaux {
    display: none;
}
    .hamburger {
      display: block;
    }
    nav ul {
      display: none;
    }
    nav{
        padding: 1em;
    }
.reseaux-icons{
  display: none;
}

  }