/* Basic styling for the flyout menu */
.flyout-menu {
    position: fixed;
    width: 250px;
    max-height: 100%;
    overflow-y: auto;
    z-index: 90000;
    top: 0px;
    right: -450px;
    transition: right 0.3s ease;
    height: 100vh;
    overflow-x: hidden;
    background: #E0EDF4;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

/* Styling when the menu is active */
.flyout-menu.active {
    right: 0; /* Brings menu into view */
}

ul#menu-desktop {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Close button styling */
.flyout-menu-close {
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    line-height: 1;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.flyout-menu .inner-menu{
    gap: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 40px;
}

/* Simple styling for the toggle button */
.flyout-menu-toggle {
    z-index: 1001;
    cursor: pointer;
    /* background-color: #fff; */
    border-radius: 400px;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 12px;
    width: 50px;
    height: 50px;
}

button.flyout-menu-toggle path {
        fill: #474747;
}

.flyout-menu-toggle img{
	width: 100%;
}

.flyout-menu-toggle:hover {
    background-color: transparent; /* Optional: change on hover */
}

h5.filterTitles {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}

/* Dropdown menu styling */
ul.sub-menu {
    list-style: none;
    display: none; /* Hide sub-menus by default */
    padding-left: 20px; /* Indent sub-menus */
}

.logo-close-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #003A5E;
    padding: 24px 20px;
    position: relative;
}

img.logo-img {
    width: 50%;
    max-width: 110px !important;
}

ul.menu-mob-nav {
	list-style: none;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
	font-family: 'Open Sans';
    gap: 24px;
}

.flyout-menu li a {
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    color: #fff;
}

ul.menu-mob-nav li.menu-item-has-children > a::after {
   background-image: url('/wp-content/uploads/2026/02/mobile-arrow.svg') !important; /* Arrow indicator for parent items */
	rotate: 135deg;
	margin-right: 10px;
}

ul.menu-mob-nav li.menu-item-has-children.active > a::after {
    rotate: 316deg;
	margin-right: 0;
}

ul.menu-mob-nav li.menu-item > a::after {
    content: " ";
    background-image: url(/wp-content/uploads/2026/02/mobile-arrow.svg);
	background-repeat: no-repeat;
    position: absolute;
    right: 40px;
    width: 20.8px;
    height: 20.8px;
}

.sub-menu.sub-menu a {
    font-size: 16px;
}

 ul.menu-mob-nav .sub-menu li.menu-item > a::after {
    background-image: url(/wp-content/uploads/2026/02/mobile-arrow.svg);  
    right: 60px;
   
}

.flyout-menu-buttons {
    padding: 0px 20px;
    display: flex;
    justify-content: center;
}

a.flyout-btn.btn-1 {
    border-radius: 999px;
    background: var(--Primary, #1559E9);
    color: var(--Text-Inverse, #FFF);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
}





/* ul.menu-mob-nav  li.menu-item-has-children.active  ul.sub-menu {
    display: flex;
	flex-direction: column;
} */

ul.sub-menu {
    display: none; /* Hide all sub-menus initially */
    padding-left: 15px;
}

.menu-item-has-children.active > .sub-menu {
    display: block; /* Show only the active sub-menu */
}

/* Ensure deeper nested menus stay hidden until their parent is clicked */
.menu-item-has-children .menu-item-has-children.active > .sub-menu {
    display: block;
}



.menu-mob-nav .menu-item a {
    display: flex;
    width: 100%;
    color: var(--Secondary, #003A5E);

    /* Desktop/Action */
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--Brand-Turquoise, #6CB1D2);
}

@media only screen and (max-width:768px){
   .flyout-menu {
        width: 90%;
        right: -780px;
    }


	
}

@media only screen and (max-width:1024px) and (min-width:768px){
.elementor-700 .elementor-element.elementor-element-bee608f > .elementor-widget-container {
    margin: 40px -68px -40px 0px;
}
	  
   .flyout-menu {
        width: 600px;
        right: -600px;
    }

.menu-mob-nav .menu-item a:focus {
    width: 600px;
}
}