 /*Small devices (landscape phones, 576px and up) */
 @media (max-width: 766px) {
     .menuDropdown {
         max-height: 150px;
         padding: 10px;
     }

     .menuDropdown ul {
         display: flex;
         flex-direction: column;
         gap: 5%;
         padding-left: 10px;
         height: 100%;
         justify-content: space-between;
     }
 }

 /* Medium devices (tablets, 768px and up)*/
 @media (min-width: 768px) {
     .menuDropdown {
         max-height: 100px;
         padding-top: 30px;

     }

     .menuDropdown ul {
         display: flex;
         flex-direction: row;
         gap: 7%;

     }
 }

 .menuDropdown {
     top: 0px;
     background: #F7983C;
     left: 0;

     width: 100vw;
     height: 0;
     z-index: 1;
 }




 .menuDropdown ul>li>a {
     text-decoration: none;
     color: black;
 }

 .menuDropdown ul>li>a>img {
     padding-right: 5px;
 }
