
.dropd{
    display:inline-block; 
    margin-left:auto;   
} 
.dropd-content, .subm-content {
  display: none;

  /* other styling properties like background-color, box-shadow, min-width, etc. */
}

.dropd-content{
  position:absolute;
  margin-left: 20px;
}

.dropbtnd{
background-color: #f48001; 
  color: white; 
  padding: 16px; 
  font-size: 16px; 
  border: none; 
  cursor: pointer;
  margin-left:20px;
  margin-top:10px;
  border-radius:5px;
  
}

.dropd:hover .dropd-content{
display: block;
background-color: #eca4a4; /* Light background color */
width:110px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
z-index: 1; 
}

.dropd:hover .menu-arrow{
  visibility:visible;
  
}





/* .dropd-subm:nth-child(1) .subm-content li a{
color:red;
} */


.dropd-subm:hover .subm-content {
display: block;
background-color: #ddf184; /* Light background color */
width:220px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
z-index: 1; 
}

.dropd-subm:hover {
background-color: #ddf184;  
}


.dropd-subm {
  /* position: relative; */
  width:100%;
 
}

.dropd-subm .subm-content {
  position: absolute;
  top: 0px;
  left: 110px;
  /* other styling */
}

.c-li{
    list-style-type: none;
    /* border-bottom:1px solid #f48001;; */
}

.c-lia{
  color: black; /* Black text color */
  padding: 12px 16px; /* Padding for each link */
  text-decoration: none; /* Remove underline */
  display:block; /* Display as block for full width */
  
}

.dropd:hover .dropbtnd {
  background-color: #f48001;
  /* Darker green background on hover */
}
.c-ul{
padding-left: 0;
margin: 0;
}

.flex-container {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to a new line */
}

.menu-arrow{
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #eca4a4;
  margin-left:20px;
  /* position:absolute; */
 visibility:hidden; 
 

}

 @media screen and (min-width: 768px){

.dropd:hover .dropd-content {
  width:200px;  
}

.dropd-subm:hover .subm-content {
  width:400px;
}

.dropd-subm .subm-content {
  left: 200px;
 }

 .dropd{
    display:inline-block; 
    margin-left:10%;   
} 
}

@media screen and (min-width: 1200px){
   .dropd{
    display:inline-block; 
    margin-left:30%;   
}
}

@media screen and (min-width: 1500px){
   .dropd{
    display:inline-block; 
    margin-left:50%;   
}
}
