    .custom-menu-items {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        color: white;
        z-index: 1000;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .custom-menu-items.active {
        display: flex;
        flex-direction: row;
        /* padding-top: 200px; */
    }

    .custom-overlay-menu-list {
        list-style: none;
        text-align: center;
    }

    .custom-overlay-menu-list li {
        margin: 20px 0;
    }

    .custom-overlay-menu-list a {
        color: #fff;
        font-size: 24px;
        text-decoration: none;
    }
    .custom-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        background: none;
        border: none;
        color: white!important;
        cursor: pointer;
    }
    .custom-menu-close:hover {
        color: black!important;
         background: none;
    }
    .custom-menu-close i{font-size: 50px !important;}

.site-header {
    position: fixed;
    top: 0;
    left: 0;  /* ensure it starts at the very left */
    right: 0; /* stretch to the right edge */
    background-color: dodgerblue;
    width: 100%; /* optional if using left+right 0 */
    z-index: 9999;
}

.inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}

.main-title a, .main-title a:hover {
    color: white;
	font-family: inherit;
    text-transform: uppercase;
}
    
/* Left Panel */
.custom-menu-left {
  background-color: #36454F;
  width: 25%;
  height: 100vh;
  padding: 60px 40px;
  box-sizing: border-box;
  text-transform: uppercase;
  /* padding-top:200px; */
  font-weight: bold;
}

.custom-menu-left-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-menu-left-list li {
  margin: 20px 0;
  list-style: none !important;
}
.custom-menu-left-list li a{background-color: unset !important;}

.custom-menu-left-list  .sub-menu a {font-size: 16px !important;}
.custom-menu-left-list a {
  color: white !important;
  text-decoration: none;
  font-size: 30px;
}
.custom-menu-left-list a:hover{color: white !important;}

/* Right Panel */
.custom-menu-right {
  background-color: #00aeef;
  width: 75%;
  height: 100vh;
  padding: 60px 40px;
  box-sizing: border-box;
  text-transform: none;
  display: flex;
  flex-direction: column;
  justify-content: start;
  font-size: 18px;
  overflow-y: scroll !important;
}

.custom-menu-right p {
  margin: 10px 0;
  color: white;
}

.custom-header-toggle{display: flex; align-items: center; }
.custom-header-toggle .custommenup{margin-right: 15px !important; font-size: 18px; text-transform: uppercase;}
.custom-menu-right-list li{list-style: none !important; margin-bottom: 15px !important;}
.custom-menu-right-list li a {
color: #353535 !important; font-size: 18px !important;text-transform: uppercase !important; font-weight: 700 !important;text-decoration: none !important;
}
.custom-menu-right-list li ul.sub-menu {
    padding-left: 0px !important;
    display: flex;
    padding-top: 17px !important;
    flex-direction: column;
    list-style: none;
    color: white !important;
} 
.custom-menu-right-list li ul.sub-menu a{color: white !important; font-weight: 400 !important; text-decoration: none !important; padding: 5px 0 !important; text-transform: capitalize !important;
position: relative;
  display: inline-block;
}

/* .custom-menu-right-list li ul.sub-menu a:hover{border-bottom: 2px solid #353535 !important;} */
.custom-menu-right-list li ul.sub-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background-color: #353535;
  transition: width 0.3s ease;
}

.custom-menu-right-list li ul.sub-menu a:hover::after {
  width: 100%;
}

.submenu-group h3{
    text-align:left!important;
    color:black;
    font-weight: bold;
}

.submenu-group ul{
    list-style: none;
}
.submenu-group ul li a{
    text-decoration: none;
    color:white;
}
.submenu-group ul li a:hover{
    color:white;
}
.custom-menu-left-list li a:hover{
    color: white!important;
}


#menu-main li a{position: relative; display: inline-block;overflow: hidden;}
#menu-main li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #00aeef;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

#menu-main li a:hover::after {
  transform: scaleY(1);
}

#menu-main li:last-child {
  border: 4px solid #fff !important;
  text-align: center !important;
  padding: 8px !important;
  transition: .4s;
}
#menu-main li:last-child:hover {
  border: 4px solid #00aeef !important;
  transition: .4s;
  transform: scale(1.1);
}

#menu-main li:last-child:hover a{color: #00aeef !important;}

#menu-main li:last-child a{
  text-transform: none !important;
  text-align: center !important;
  font-weight: 700;
  font-size: 19px !important;
}

#menu-main li:last-child a:hover{
  border: unset !important;
}
#menu-main li:last-child a::after{
  display: none !important;
}


#menu-footer li a{color: #fff !important;}

#overlay-social a{color: #fff !important; text-decoration: none !important; }
#overlay-social a i{color: #fff !important; text-decoration: none !important; font-size: 28px;
    margin-right: 10px;}

.request-proposal {
    border: 4px solid #fff;
    padding: 13px;
    text-align: center;
    font-family: Montserrat;
    text-transform: uppercase;
    display: block;
    font-weight: 700;
    font-size: 15px;
    transition: .4s;
    color: #fff !important;
    text-decoration: none !important; transition: all .3s ease;
}    
.request-proposal:hover{border: 4px solid #00aeef !important; color: #00aeef !important;transform: scale(1.1); transition: all .3s ease;}

/* @media only screen and (min-width:1200px){
.custommenup {cursor: pointer;color: inherit;}
/* .custom-header-toggle:hover .custommenup{color: #00aeef !important;}
.custom-header-toggle:hover button.hometoggelmenu{background-color: white !important;border: 2px solid white !important;color: #00aeef !important;} */


/*button.hometoggelmenu:hover{background-color: transparent!important;border: 2px solid #00aeef !important;color: #00aeef !important;}

} */

@media screen and (max-width:992px) {
    .site-branding .main-title{display: none !important;}
    .inside-header {flex-direction: row !important;}
    .inside-header {flex-direction: row !important;}
    #custom-overlay-menu{background-color: #363636 !important;}
    .custom-menu-items{overflow: scroll !important;}
    .custom-menu-items.active {display: block !important; flex-direction: column !important; }
    .custom-menu-left{background-color: #363636 !important; width: 100% !important; text-align: center; display: block; height: auto !important; padding-bottom: 20px !important;}
    .custom-menu-right {background-color: #363636 !important; width: 100% !important; display: block; text-align: center;
    overflow: unset !important; height: auto !important;padding: 20px 40px !important;}
    #menu-rideside{margin: 0 !important;}
    .custom-menu-left p{text-align: center !important;}
    .custom-menu-close i{
    font-size: 30px !important;}
    .custom-menu-right-list li a {font-size: 20px !important;}
    .custom-menu-right-list li ul.sub-menu {margin: 0 !important;}
}
@media only screen and (max-width: 768px) {
  .custom-menu-right-list li a {
    color: white !important;
  }
}