.menu-item {
    cursor: pointer;   
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 1;   
}

.menu-item:hover {
    color: #e7e5e5;
    transform: scale(1.08);
}

.menu-item1 {
    cursor: pointer;   
    transition: all 0.2s ease-in-out;
    /* position: relative; */
    /* z-index: 1;    */
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.menu-item1:hover {
    color: #c44601;
    transform: scale(1.01);
    background: rgb(241, 239, 239);
}

.bottom-b {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #c44601;
}

.menu-item1:hover .bottom-b {
    display: block;
}

.menu-item1::after {
    content: "";
}

.p-holder {
    cursor: pointer;   
    transition: all 2s ease-in-out;
    overflow: hidden;
    z-index: 999;
}

.p-holder:hover .p-image {
    transition: all 1s ease-in;
    transform: scale(1.2);
}

.third-menu-item {
    cursor: pointer;
}

#clothing-content {
display: none;
}

#clothing:hover #clothing-content {
display: block;
}



.navbar {
    overflow: hidden;
    /* background-color: #333; */
    /* font-family: Arial, Helvetica, sans-serif; */
    /* text-align: center; */
    color: #1e1d1d;
  }
  
 
  .dropdown {
    float: center;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 14px !important;  
    border: none;
    outline: none;
    color: #1e1d1d;
    padding: 10px 16px;
    background-color: inherit;
    font: inherit;
    margin: 0;
    float: center;
  }
  
/*   .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
  } */
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9;
    background: rgba(0,0,0,0.2);
  }

  .dropdown-content-1 {
    display: none;
    position: absolute;   
    width: 100%;
    /*height: calc(100vh - 65px);*/
    top: 65px;
    left: 0px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
    background: rgba(0,0,0,0.2);
  }

  .dropdown-content-profile {
    display: none;
    position: absolute;   
    width: 240px;
    height: auto;
    top: 27px;
    right: 0px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999999;
    background: rgba(0,0,0,0.2);
  }

  .dropdown-content-sub-1 {
    display: none;
    position: absolute;   
    /* width: 100%; */
    /* height: 100%; */
    top: 40px;
    left: 368px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
    background: rgba(255, 254, 254, 1);
  }

  .sub-menu {
    float: center;
    overflow: hidden;
    /* position: relative; */
  }
  
  
  .dropdown-content .header {
    background: red;
    padding: 16px;
    color: white;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown:hover .dropdown-content-profile {
    display: block;
    z-index: 12 !important;
  }

  .dropdown:hover .dropdown-content-1 {
    display: block;
  }

  .sub-menu:hover .dropdown-content-sub-1 {
    display: block;
  }
  
  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 33.33%;
    padding: 10px;
    background-color: #ccc;
    height: 250px;
  }
  
  .column a {
    float: none;
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .column a:hover {
    background-color: #ddd;
  }
  
  /* Clear floats after the columns */
  

  .f-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto new lines */
    gap: 0; /* We will use pseudo-elements for spacing */
  }
  
  .f-item {
    /* padding: 10px;        */
    box-sizing: border-box;
    position: relative; /* Positioning context for the pseudo-elements */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .f-item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px; /* Width of the vertical divider */
    height: 100%;
    background-color: #ccc;
  }
  
  .f-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Height of the horizontal divider */
    background-color: #ccc;
  }
  
  .f-item:nth-last-child(3):after {
    display: none; 
  }
  
  .f-item:nth-last-child(-n+2)::before {
    display: none; /* Hide the horizontal divider for the last row */
  }


  .swiper
  {
    z-index: 0 !important;
  }