/**                NavBar                    **/
body {
  font-family: 'Work Sans', sans-serif;
}

.signup {
    background-color: #B8FF7A;
    padding: 1em 2em;
    border: solid 1px #1D211A;
    border-radius: 50px;
    font-size: 15px;
    color: #1D211A;
    font-family: 'Work Sans';
    font-weight: 600;
    text-transform: uppercase;
}
.login {
    background-color: #1D211A;
    color: #fff;
    padding: 1em 2.5em;
    border: solid 1px #B8FF7A;
}
nav {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  flex-direction: row;
  padding: 0.5em 5em;
  border-bottom: 1.5px solid #eeeeee;
  align-items: center;
}
  nav .logo {
    display: flex;
    align-items: center;
  }
  dl, ol, ul {
    margin-top: 1rem !important;
}
  nav .logo img {
    width: 200px;
}
  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;
  }
  li.li-btn {
    margin-left: 0.8rem;
}
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}
  nav ul li {
    margin-left: 2.5rem;
  }
  nav ul li a {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    text-decoration: none;
    color: #0D141C;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Work Sans';
    text-transform: capitalize;
}
  
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    
  }
  
  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 {
    padding-top: 0.7em;
    padding-bottom: 0.7em;
    background-color: #FAB20F;
    display: flex
;
    justify-content: space-around;
    align-items: center;
}
.topbar p{
    color: #FFFFFF;
    font-family: sans-serif;
    text-align: center;
    font-size: 16px;
    margin: 0;

}
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  align-items: center;
  gap: 0.5em;
}
.topbar a{
    color: #ffff;
    text-decoration: none;
    font-size: 16px;
}
.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
  @media screen and (max-width: 790px) {

    .hamburger {
      display: block;
    }
    nav ul {
      display: none;
    }
    nav{
        padding: 1em;
    }


  }