*{
    font-family: 'Helvetica', 'Arial', sans-serif;
  }

  #bgcolor{
    background-color:#00B98E;
   
  }

  .text {
    position: absolute;
    top: 28px;
    left: 20px;
    
    text-transform: uppercase;
    font-family: verdana;
    font-size: 1.5em;
    font-weight: 600;
    color: #d4d4d4;
    text-shadow: 1px 1px 1px #919191,
        1px 2px 1px #919191,
        1px 2px 1px #919191,
        1px 2px 1px #919191,
        1px 3px 1px #919191,
        1px 3px 1px #919191,
        1px 3px 1px #919191,
        1px 4px 1px #919191,
        1px 3px 1px #919191,
        1px 3px 1px #919191,
    1px 18px 6px rgba(16,16,16,0.4),
    1px 22px 10px rgba(16,16,16,0.2),
    1px 25px 35px rgba(16,16,16,0.2),
    1px 30px 60px rgba(16,16,16,0.4);
}

.text2 {
   
    text-transform: uppercase;
    font-family: verdana;
    font-size: 1.5em;
    font-weight: 600;
    color: #f5efef;
    text-shadow: 1px 1px 1px #fdf9f9,
        1px 2px 1px #919191,
        1px 2px 1px #919191,
        1px 2px 1px #919191,
        1px 3px 1px #919191,
        1px 3px 1px #919191,
        1px 3px 1px #919191,
        1px 4px 1px #919191,
        1px 3px 1px #919191,
        1px 3px 1px #919191,
    1px 8px 6px rgba(16,16,16,0.4),
    1px 2px 10px rgba(16,16,16,0.2),
    1px 5px 5px rgba(16,16,16,0.2),
    1px 3px 6px rgba(16,16,16,0.4);
}
  
  
  img {
    max-width: 100%;
    height: auto;
  }
  
    .dropdown:hover {
      display: block;
      
    }
  
  /* grid */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    height: 250px;
    padding: 10px;
    overflow: hidden;
  }
  
  .grid-item {
    background-color: #f2f3f3;
    padding: 1rem;
    border-radius: 8px;
    
  }
  
  .arrow-btn {
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    margin: 0 8px;
  }
  
  @media screen and (max-width: 768px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (max-width: 480px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }
  
  
    .active {
      background-color: #0ed4b3; /* Dark pink color */
      padding: 1px;
      padding-left: 10px;
      padding-right: 10px;
      border-radius: 5px;
  }
  
   
    @media (max-width: 767px) {
    .dropdown-menu {
     position: relative; /* Change to relative positioning  */
        display: none;
       
      }
  
     .dropdown:hover .dropdown-menu {
        display: block;
         position: relative; /* Change to absolute positioning on hover  */
        z-index: 1000;
        width: 100%; 
     }
      .dropdown-menu li:hover{
       border: 1px solid gray;
     } 
     
    }
  
  
      .dot {
        width: 15px;
        height: 15px;
        margin: 0 5px;
        border-radius: 50%;
        cursor: pointer;
        
      }
   
      .active {
       color: rgb(3, 130, 118);
       
      }
  