.header-top-list { 
    gap: 15px; 
  }
  .header-top-link {
    color: var(--white);
    font-size: var(--fs-6);
    font-weight: var(--fw-700);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .header-top-link:is(:hover, :focus) { 
    color: #0b2c3c; 
  }
  .header-top-link ion-icon {
    color: var(--orange-soda);
    font-size: 15px;
    --ionicon-stroke-width: 60px;
  }
  .header-top-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  #header {
    position: sticky;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 98.7vw;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#header .header {
    min-height: 8vh;
    background-color: #fff;
    transform: .3s ease background-color;
}
#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 5%;
}
#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: rgba(31, 30, 30);
    width: 100%;
    height: 100vh;
    top: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: first baseline;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
}
#header .nav-list ul.active {
    left: 0%;
}
#header .nav-list ul a {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: .2rem;
    text-decoration: none;
    color: #000000;
    text-transform: inherit;
    padding: 20px;
    display: block;
}
#header .nav-list  .dropdown_menu {
   display: none;
}
#header .nav-list ul li:hover .dropdown_menu {
   display: block;
   color: #000;
   position: absolute;
   width: 20%;
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
   background-color: #fff;
}
#header .dropdown_menu ul {
   display: block;
   margin: 20px;
}
#header .dropdown_menu ul a {
   width: 100%;
   padding: 10px;
   font-size: 2.0rem;
   font-weight: 400;
   text-decoration: none;
   color: #000000;
   text-transform: inherit;
}
#header .nav-list  .dropdown_menu1 {
   display: none;
}
#header .nav-list ul li:hover .dropdown_menu1 {
   display: block;
   color: #000;
   position: absolute;
   width: 20%;
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
   background-color: #fff;
}
#header .dropdown_menu1 ul {
   display: block;
   margin: 20px;
 }
#header .dropdown_menu1 ul a {
     width: 100%;
     padding: 10px;
     font-size: 2.0rem;
     font-weight: 400;
     text-decoration: none;
     color: #000000;
     text-transform: inherit;
 }

#header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 7rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease letter-spacing ;
}
#header .nav-list ul li:hover a::after{
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li a:hover {
    color: crimson;
}
#header .hamburger {
    height: 60px;
    width: 60px;
    display:inline block;
    border: 3px solid #000;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
    margin-right: 20px;
}
#header .hamburger::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid #000;
    animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: #000;
    z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: #000;
    transition: .3s ease;
    transition-property: top, bottom;
}
#header .hamburger .bar::after{
    top: 8px;
}
#header .hamburger .bar::before {
    bottom: 8px;
}
#header .hamburger.active .bar::before {
    bottom: 0;
}
#header .hamburger.active .bar::after {
    top: 0;
}
#header  .brand1 ul {
   list-style: none;
   display: flex;
   position: relative;
   align-items: center;
}
#header  .brand1 {
   font-size: 1.5rem;
   color: #000;
   font-weight: 600;
   margin-top: 2px;
}
#header  .brand1 .button{
   width: 100%;
   padding: 12px 20px;
   margin: 20px 0;
   display: inline-block;
   border: 1px solid #0e1133;
   box-sizing: border-box;
   border-radius: 10px;
   background-color: #0e1133;
   font-weight: 600;
   color: #fff;
   margin-left: 20px;
 }
#header .brand1:hover .button{
   background-color: #fff;
   color: #000;
}
/*end header section*/
@media only screen and (max-width:768px){
    #header .nav-list {
       margin-right: -100%;
    }
    #header .nav-list ul {
       flex-direction: column;
       text-align: left;
       width: 130%;
    }
    #header .nav-list ul a {
       color: #fff;
       margin-left: 5%;
       margin-right: -80%;
    }
    #header .nav-list ul.active {
        display: flex;
    }
    #header .dropdown_menu,
    #header .dropdown_menu1 {
       position: relative;
       width: 100%;
    }
    #header .dropdown_menu ul,
    #header .dropdown_menu1 ul {
       width: 150%;
       padding: 0;
       margin-left: 75%;
    }
    #header .nav-list ul li:hover .dropdown_menu {
       display: block;
       position: absolute;
       width: 35%;
    }
    #header .dropdown_menu ul a {
        width: 150%;
        padding: 10px;
        font-size: 2.0rem;
        font-weight: 400;
        text-decoration: none;
    }
    #header .nav-list ul li:hover .dropdown_menu1 {
       display: block;
       position: absolute;
       width: 35%;
    }
   #header .dropdown_menu1 ul a {
       width: 150%;
       padding: 10px;
       font-size: 2.0rem;
       font-weight: 400;
   }
   #header  .brand1 {
       margin-right: 20%;
    }
   #header  .brand1 .button{
        display: none;
    }
}

@media only screen and (min-width:1200px) {
   #header .hamburger {
        display: none;
    }
    #header .nav-list ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 1.8rem;
    }
    #header .nav-list ul a::after {
        display: none;
    }
}
/*end media query for desktop*/