span.mobile-menu {
    display: none;
}
.gp-icon svg {

    right:3em  !important;
    padding: 5px;
    color: #293743;
    
}
.close-search .icon-search svg:nth-child(2), .toggled .icon-menu-bars svg:nth-child(2) {
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
}
.navigation-branding img, .site-logo.mobile-header-logo img {
    height: 110px !important;
}
/* Hamburger menu button styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10001; /* Make sure it stays on top */
    position:fixed;
    right:20px;
    top:7px;
}

.menu-toggle span {
    width: 100%;
    height: 4px;
}

/* Basic styles for the overlay */

#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #293743;
    color: #fff;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden; /* Use visibility for transitions */
    transform: translateY(-100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Animation for showing the overlay */
#mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible; /* Set visibility to visible */
    transform: translateY(0); /* Slide down to its original position */
}

/* Overlay content styles */
.overlay-content {
    /*width: 90%;*/
    max-width: 750px;
    text-align: left;  
    margin: 0 auto;
}

/* Header inside overlay */
.overlay-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}


/* Close button styles */
.menu-close {
    font-size: 30px;
    cursor: pointer;
}

/* Styling for the menu items */

@media (max-width: 768px) {
    .gp-icon svg {
        right:0em  !important;
    }
}
@media (max-width: 992px) {
    /* Site logo */
.site-logo img {
    max-height: 80px;
}

    .menu li {
        margin: 10px 0;
        border-bottom: 1px #34414c solid;
        padding-bottom: 10px;
    }
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        display: none !important; /* Hide the default navigation */
    }

    .secondary-navigation .menu-toggle {
        display: block;
    }
    .main-nav{
        display:none;
    }
    .main-navigation.has-branding .inside-navigation.grid-container {
        justify-content: center;
    }
    .menu {
        list-style: none;
        padding-right:15px;
        padding-left:15px;
        margin: 0;

    }
    
    
    .menu a {
        color: white;
        text-decoration: none;
        font-size: 19px;
        padding: 0 20px;
		font-family: "Marcellus", serif;
    }
    
    .menu a:hover {
        text-decoration: underline;
    }
   
}

