li{
    padding: 2rem 1.7rem;
  
    
}
li:hover{
    opacity: .8;
}
/* .hamBurger{
    display: none;
}
.navlist{
    display: flex;
}
@media screen and(max-width: 680px) {
    .hamBurger{
        display: block;
    }
    .navlist{
        display: none;
    }
} */

/* 
#burgermenu{
    background-color: black;
    position: absolute;
    height: 100vh;
    width: max-content;
} */

.ch-subHead{
    font-size: 1.5rem;
    font-weight: 700;
    width: 80%;
    text-align: center;
    color: rgb(11, 11, 90);
}
.imgDiv{
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.accordion {
    background-color: #eeeeee00;
    color: #0ba4bb;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-size: 4rem;
    font-weight: 800;
    border: none;
    outline: none;
    transition: 0.4s;
    border-bottom: 1.8px yellow solid;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
    
   color: yellow;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 20px 18px;
    background-color: #eeeeee00;
    display: none;
    color: white;
    overflow: hidden;
  }

  .step-div{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 350px;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 10px;
  }

  .container{
    /* max-width: 1200px; */
    display: flex;
    /* background-color: #0ba4bb; */
    height: 450px;
    width: 100%;
  }
 
  
  

  @media screen and (max-width: 786px) {
    .accordion{
        font-size: 2rem;
    }
    .step-div{
        /* flex-direction: row; */
        flex-wrap: wrap;
    }
  }