.ftco-blocks-cover-1{
  background-color: aqua;
}

.site-menu .has-submenu {
    position: relative;
  }
  
  .site-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px 0;
    list-style: none;
    /*! border: 1px solid #ccc; */
    z-index: 1000;
    width:900px;
    height:400px;
  }
  
  .site-menu .submenu li {
    padding: 5px 15px;
  }
  
  .site-menu .submenu li a {
    color: #000;
    text-decoration: none;
  }
  
  .site-menu .submenu li a:hover {
    color: #007bff;
  }
  
  .site-menu .has-submenu:hover .submenu {
    display: block;
  }

  .site-menu .has-submenu:hover > a {
    background-color: teal; /* Change this to your desired color */
    color: #fff; /* Make text white for contrast */
    border-radius: 4px; /* Optional: Rounded corners */
  }
  