/* =====================================
   WRAPPER / TRIGGER
===================================== */
.sd-mobile-menu-wrapper {
    position: relative;
    z-index: 10001;
}

.sd-mobile-trigger {
    position: relative;
    z-index: 10001;
}

.sd-hamburger {

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    background: transparent !important;
}
.sd-hamburger i{
    font-size: 25px !important;
    color:#fff !important;
}

/* =====================================
   OFFCANVAS CONTAINER
===================================== */
.sd-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: #fff;
    transform: translateX(100%);
    transition: transform .4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
}

.sd-mobile-menu.open {
    transform: translateX(0);
}

@media only screen and (max-width:1025px) {

.sd-mobile-menu.open {
    transform: translateX(50%);
}
.sd-menu-panel{
    max-width: 50vw;

}

.sd-mobile-menu li:not(.has-submenu) > a > .sd-label{
    flex: 0 1 100% !important;
}

}
@media only screen and (max-width:768px) {
.sd-menu-panel{
    max-width: unset;

}
.sd-mobile-menu.open {
    transform: translateX(0);
}

.sd-mobile-menu li:not(.has-submenu) > a > .sd-label{
    flex: 0 1 60% !important;
}

.fl-builder-content-39 .fl-node-98a1xwtcrhlv{
    flex-basis: 40%;
}

}


/* =====================================
   PANELS
===================================== */
.sd-menu-panels {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.sd-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s ease;
    will-change: transform;
    overflow: hidden;
}


/* =====================================
   PANEL BODY (SCROLL FIX)
===================================== */
.sd-panel-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 81px; /* bottom padding to avoid CTA overlap */
}

/* Hide scrollbar visuals */
.sd-panel-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.sd-panel-body {
    scrollbar-width: none;
}


/* =====================================
   MENU LIST
===================================== */
.sd-mobile-menu ul {
    margin: 0;
    padding: 0;
}

.sd-mobile-menu li {
    list-style: none;
    position: relative;
}

.sd-panel-body > ul {
    display: flex;
    flex-flow: column nowrap;
    gap: 40px;
    max-width: 342px;
    margin: auto;
}

.sd-panel-body ul ul {
    display: none;
}


/* =====================================
   MENU LINK LAYOUT
===================================== */
.sd-mobile-menu a {
    text-decoration: none;
    color: var(--Navy, #1B2930);
    font-family: Poppins;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;

    display: flex;
    align-items: center;
    width: 100%;
}

.sd-mobile-menu a:focus,
.sd-mobile-menu a:active {
    color: var(--Navy, #1B2930);
}

/* Label takes flexible space */
.sd-label {
    flex: 1 1 auto;
}

/* Icon element */
.sd-icon {
    flex: 0 0 auto;
    line-height: 1;
    color: #646F79;
    font-size: 18px;
    transition: color .2s ease;
}
i.fa-kit.fa-arrow-1.sd-icon.sd-icon-arrow {
    font-size: 10px !important;
    color: #1B2930;

}
.sd-mobile-menu i.fa-chevron-right{
      font-size: 15px !important;
    color: #1B2930;
}

.sd-mobile-menu a:hover .sd-icon {
    color: #1B2930;
}
.sd-mobile-menu li:not(.has-submenu) > a {
    justify-content: flex-start;
}

.sd-mobile-menu li:not(.has-submenu) > a {
    display: inline-flex;
}


/* =====================================
   SUBMENU vs DIRECT LINK SPACING
===================================== */

/* Submenu items → icon pushed to right edge */
.sd-mobile-menu li.has-submenu > a {
    justify-content: space-between;
}

/* Direct links → icon only 20px from text */
.sd-mobile-menu li:not(.has-submenu) > a {
    justify-content: flex-start;
}

.sd-mobile-menu li:not(.has-submenu) > a .sd-icon {
    margin-left: 20px;
}


/* =====================================
   HEADER (LOGO + CLOSE)
===================================== */
.sd-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 45px;
}

.sd-menu-logo {
    display: flex;
    align-items: center;
}

.sd-menu-logo img {
    max-height: 28px;
    width: auto;
}

.sd-menu-close,
.sd-back {
    cursor: pointer;
    border: none;
    background: transparent !important;
    padding: 0;
    line-height: 1;
    color: #646F79;
}

.sd-menu-close {
    font-size: 30px;
}

.sd-back {
    font-size: 13px;
}

.sd-back:hover {
    color: #1B2930;
}


/* =====================================
   SUBHEADER (BACK + TITLE)
===================================== */
.sd-subheader {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 342px;
    margin: auto;
    width: 100%;
    padding: 0 0 45px;
}

.sd-title {
    flex: 1;
    text-align: left;
    color: #646F79;
    font-family: Roboto;
    font-size: 19px;
    font-weight: 500;
    line-height: 130%;
}

/* Root panel hides subheader */
.sd-root-panel .sd-subheader {
    display: none;
}


/* =====================================
   BOTTOM CTA (VISIBLE ON ALL PANELS)
===================================== */
.sd-menu-bottom {
    flex: 0 0 auto;
    width: 100%;
    height: 81px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 5;
}

.sd-bottom-btn{
    width: 100%;
    height: 81px;
    background: #40B5B7;
    color: #1B2930;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: Roboto !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 130%;
    letter-spacing: 0.8px;
}

.sd-bottom-btn:hover,
.sd-bottom-btn:active{
    background: #127F81;
}