.topbar {
    width: 100%;
    min-height: 40px;
    background: #092354;
    color: #ffffff;
}

.topbarContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 32px;
    position: relative;
}

.topbarTagline {
    margin: 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.topbarRight {
    display: flex;
    align-items: center;
    gap: 15px;

}

.topbarRight a {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-decoration: none;
}

.topbarCall {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topbarCall svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.topbarNumber:hover,
.topbarCall:hover {
    color: #ef801c;
}

.topbarDivider {
    color: rgba(255, 255, 255, .7);
}

.topbarSocial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.topbarSocial:hover {
    color: #ef801c;
}

.topbarSocial svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.topbarSearch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #dc7918;
    color: #ffffff;
    cursor: pointer;
    transition: all .25s ease;
}

.topbarSearch:hover {
    background: #bd6108;
}

.topbarSearch svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
@media (max-width: 1199px) {
    .topbarTagline{
        font-size: 13px;
    }
    .topbarRight a{
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .topbar {
        overflow: hidden;
    }

    .topbarContainer {
        /* justify-content: center; */
        min-height: 42px;
        padding: 0 15px;
    }

    /* .topbarRight {
        display: none;
    } */
    .topbarCall,
    .topbarNumber,
    .topbarSocial {
        display: none;
    }

    .topbarDivider {
        color: rgb(30, 71, 149);
    }

    .topbarTagline {
        font-size: 12px;
        text-align: center;
    }
}


.topbarSearchBox {
    position: absolute;
    top: 36px;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 390px;
    height: 100%;
    padding: 15px;
    background: rgba(9, 35, 84, .98);
    border-radius: 0 0 0 6px;
    height: max-content;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(25px);
    transition: all .3s ease;
}

.topbarSearchBox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.searchClose {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #092354;
    cursor: pointer;
}

.searchClose svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.topbarSearchBox form {
    display: flex;
    flex: 1;
    margin: 0;
}

.topbarSearchBox input {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-right: 0;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
}

.topbarSearchBox input::placeholder {
    color: rgba(255, 255, 255, .92);
}

.topbarSearchBox form button {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: #dc7918;
    color: #ffffff;
    cursor: pointer;
}

.topbarSearchBox form button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .topbarSearchBox {
        width: 100%;
        padding: 15px;
        top: 0;
    }
}



.header {
    position: relative;
    width: 100%;
    padding: 0;
    background: #fff;
    z-index: 99;
}

.header .headerContainer {
    position: relative;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 70px;
    padding: 0 38px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 45px rgba(28, 39, 64, .10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header.header-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    border-bottom: 1px solid #e9edf2;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 35px rgba(28, 39, 64, .12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: gmHeaderSlideDown .35s ease forwards;
}

.header.header-fixed .navbar {
    min-height: 70px;
    padding: 0 30px;
    border-radius: 0;
    box-shadow: none;
}

@keyframes gmHeaderSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.logo img,
.logo-image img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 58px;
}

.navigation-wrapper {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: 0;
}

.menu {
    min-width: 0;
}

.menu>.nav {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0px;
    min-height: 54px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    list-style: none;
}

.menu .nav li {
    position: relative;
}

.menu .nav>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    padding: 8px 14px;
    color: #1f2b38;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}

.menu .nav>li>a::before {
    position: absolute;
    right: 15px;
    bottom: 2px;
    left: 15px;
    height: 2px;
    border-radius: 10px;
    background: #d67a1f;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.menu .nav>li:hover>a,
.menu .nav>li.active>a,
.menu .nav>li.submenu-open>a {
    color: #d67a1f;
}

.menu .nav>li:hover>a::before,
.menu .nav>li.active>a::before,
.menu .nav>li.submenu-open>a::before {
    transform: scaleX(1);
}

/* .menu .home>a span {
    display: none;
} */

.menu .home>a svg {
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.menu li.cs-submenu>a {
    padding-right: 25px;
}

.menu li.cs-submenu>a::after {
    position: absolute;
    top: 50%;
    right: 11px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: all .3s ease;
}

.menu li.cs-submenu:hover>a::after,
.menu li.cs-submenu.submenu-open>a::after {
    border-color: #d67a1f;
}

.menu .cs-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 3000;
    display: block;
    width: 265px;
    margin: 0;
    padding: 10px;
    border: 1px solid #e9edf2;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(28, 39, 64, .15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.menu .cs-dropdown::before {
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
    content: "";
}

.menu .cs-dropdown li {
    width: 100%;
}

.menu .cs-dropdown li+li {
    margin-top: 0;
}

.menu .cs-dropdown li>a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 9px 32px 9px 12px;
    border-radius: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: all .3s ease;
}

.menu .cs-dropdown li>a:hover,
.menu .cs-dropdown li>a.active {
    padding-left: 17px;
    color: #d67a1f;
    background: rgba(213, 180, 111, .15);
}

.menu .cs-dropdown .cs-dropdown {
    top: -10px;
    left: calc(100% + 11px);
}

.menu .cs-dropdown .cs-dropdown::before {
    top: 0;
    left: -12px;
    width: 12px;
    height: 100%;
}

.menu .cs-dropdown li.cs-submenu>a::after {
    right: 13px;
    transform: translateY(-50%) rotate(-45deg);
}

.menu>.nav>li.cs-submenu:not(.mega) {
    z-index: 30;
}

.menu>.nav>li.mega {
    position: static;
    z-index: 20;
}

.menu>.nav>li.mega>.megaMenu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2000;
    display: none;
    width: min(1100px, calc(100vw - 60px));
    gap: 0;
    padding: 18px;
    border: 1px solid #e9edf2;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(28, 39, 64, .15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.menu>.nav>li.mega>.megaMenu4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu>.nav>li.mega>.megaMenu3 {
    width: min(850px, calc(100vw - 60px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu>.nav>li.mega>.megaMenu2 {
    width: min(620px, calc(100vw - 60px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu>.nav>li.mega>.megaMenu::before {
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 12px;
    content: "";
}

.menu .megaMenu>.mega-column {
    min-width: 0;

    margin: 0;
    padding: 0 10px 0 14px;
    border-right: 1px solid #e9edf2;

}

.menu .megaMenu>.mega-column>.cs-dropdown {
    max-height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.menu .megaMenu>.mega-column>.cs-dropdown:hover {
    scrollbar-color: #d87818 #f4f6f9;
}

.menu .megaMenu>.mega-column>.cs-dropdown::-webkit-scrollbar {
    width: 5px;
}

.menu .megaMenu>.mega-column>.cs-dropdown::-webkit-scrollbar-track {
    margin: 6px 0;
    border-radius: 20px;
    background: transparent;
}

.menu .megaMenu>.mega-column>.cs-dropdown::-webkit-scrollbar-thumb {
    border: 1px solid transparent;
    border-radius: 20px;
    background: transparent;
}

.menu .megaMenu>.mega-column>.cs-dropdown:hover::-webkit-scrollbar-track {
    background: #f4f6f9;
}

.menu .megaMenu>.mega-column>.cs-dropdown:hover::-webkit-scrollbar-thumb {
    border-color: #f4f6f9;
    background: #d87818;
}

.menu .megaMenu>.mega-column>.cs-dropdown:hover::-webkit-scrollbar-thumb:hover {
    background: #0b2354;
}



.menu .megaMenu4>.mega-column:nth-child(4n),
.menu .megaMenu3>.mega-column:nth-child(3n),
.menu .megaMenu2>.mega-column:nth-child(2n) {
    border-right: 0;
}

.menu .megaMenu>.mega-column>a {
    display: block;
    min-height: auto;
    margin-bottom: 10px;
    padding: 0 0 11px;
    border-bottom: 1px solid #dfe5eb;
    border-radius: 0;
    color: #d67a1f;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.menu .megaMenu>.mega-column>a::after {
    display: none;
}

.menu .megaMenu>.mega-column>a:hover {
    padding-left: 0;
    color: #8b692d;
    background: transparent;
}

.menu .megaMenu>.mega-column>.cs-dropdown {
    position: static;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.menu .megaMenu>.mega-column>.cs-dropdown::before {
    display: none;
}

.menu .megaMenu>.mega-column>.cs-dropdown>li>a {
    min-height: 37px;
    padding: 8px 26px 8px 0;
    border-radius: 6px;
}

.menu .megaMenu>.mega-column>.cs-dropdown>li>a:hover {
    padding-left: 9px;
}

.menu .megaMenu>.mega-column>.cs-dropdown>li.cs-submenu>a::after {
    display: block;
}

.menu .megaMenu>.mega-column>.cs-dropdown>li.cs-submenu>.cs-dropdown {
    position: absolute;
    top: -8px;
    left: calc(100% + 5px);
    display: block;
    width: 235px;
    padding: 9px;
    border: 1px solid #dfe5eb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(28, 39, 64, .15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.menu .megaMenu>.mega-column>.cs-dropdown>li.cs-submenu:hover>.cs-dropdown,
.menu .megaMenu>.mega-column>.cs-dropdown>li.cs-submenu.submenu-open>.cs-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.menu .megaMenu>.mega-column:last-child>.cs-dropdown>li.cs-submenu>.cs-dropdown {
    right: calc(100% + 12px);
    left: auto;
    transform: translateX(-8px);
}

.menu .megaMenu>.mega-column:last-child>.cs-dropdown>li.cs-submenu:hover>.cs-dropdown,
.menu .megaMenu>.mega-column:last-child>.cs-dropdown>li.cs-submenu.submenu-open>.cs-dropdown {
    transform: translateX(0);
}

.menu>.nav>li.mega>.megaMenu4.last {
    left: 66%;
}

.header-action {
    flex: 0 0 auto;
    margin-left: 5px;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 19px;
    border-radius: 50px;
    background: #d67a1f;
    box-shadow: 0 9px 22px rgba(53, 64, 95, .18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}

.quote-btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.quote-btn:hover {
    border-color: #d67a1f;
    background: #d67a1f;
    box-shadow: 0 13px 28px rgba(213, 180, 111, .28);
    color: #092354;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex: 0 0 44px;
    width: 44px;
    height: 42px;
    padding: 8px 9px;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    background: #f7f9fc;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 20px;
    background: #254b82;
    transition: all .3s ease;
}

.menu-toggle.active {
    border-color: #254b82;
    background: #254b82;
}

.menu-toggle.active span {
    background: #ffffff;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hiddenDt{
    display: none;
}
@media (min-width: 1200px) {
    .menu>.nav>li.cs-submenu:not(.mega):hover>.cs-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu>.nav>li:not(.mega) .cs-dropdown li.cs-submenu:hover>.cs-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .menu>.nav>li.mega:hover>.megaMenu {
        display: grid;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 1480px) {
    .menu .nav>li>a {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 14px;
    }

    .menu li.cs-submenu>a {
        padding-right: 25px;
    }
}

@media (max-width: 1399px) {
    .navbar {
        gap: 18px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .menu .nav>li>a {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 12px;
    }

    .menu li.cs-submenu>a {
        padding-right: 20px;
    }

    .menu li.cs-submenu>a::after {
        width: 5px;
        height: 5px;
    }

    .quote-btn {
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (max-width: 1199px) {
    .navbar {
        position: relative;
        justify-content: space-between;
        min-height: 82px;
        padding: 0 20px;
        border-radius: 0 0 25px 25px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navigation-wrapper {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: block;
        max-height: calc(100vh - 120px);
        padding: 12px;
        border: 1px solid #dfe5eb;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 20px 50px rgba(28, 39, 64, .15);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: all .3s ease;
    }

    .navigation-wrapper.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu>.nav {
        display: block;
    }

    .menu .nav>li {
        width: 100%;
        border-bottom: 1px solid #e9edf2;
    }

    .menu .nav>li:last-child {
        border-bottom: 0;
    }

    .menu .nav>li>a {
        justify-content: flex-start;
        min-height: 43px;
        padding: 10px 38px 10px 12px;
        border-radius: 6px;
        color: #1f2b38;
        font-size: 12px;
    }

    .menu .nav>li>a::before {
        display: none;
    }

    .menu .nav>li:hover>a,
    .menu .nav>li.active>a,
    .menu .nav>li.submenu-open>a {
        color: #254b82;
        background: rgba(213, 180, 111, .13);
    }

    .menu li.cs-submenu>a::after {
        right: 15px;
        transform: translateY(-70%) rotate(45deg);
    }

    .menu li.cs-submenu.submenu-open>a::after {
        transform: translateY(-30%) rotate(225deg);
    }

    .menu .megaMenu>.mega-column>a::after {
        display: block;
    }

    .menu .cs-dropdown,
    .menu .cs-dropdown .cs-dropdown,
    .menu>.nav>li.mega>.megaMenu,
    .menu>.nav>li.mega>.megaMenu2,
    .menu>.nav>li.mega>.megaMenu3,
    .menu>.nav>li.mega>.megaMenu4 {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        width: 100%;
        max-height: none;
        margin: 0;
        padding: 7px 0 7px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .menu li.submenu-open>.cs-dropdown {
        display: block;
    }

    .menu li.mega.submenu-open>.megaMenu {
        display: grid;
    }

    .menu .megaMenu>.mega-column {
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid #e9edf2;
    }

    .menu .megaMenu>.mega-column:last-child {
        border-bottom: 0;
    }

    .menu .megaMenu>.mega-column>a {
        display: flex;
        align-items: center;
        min-height: 43px;
        margin: 0;
        padding: 8px 30px 8px 10px;
        border: 0;
        border-radius: 6px;
        color: #254b82;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 800;
    }

    .menu .megaMenu>.mega-column>.cs-dropdown {
        display: none;
        padding-left: 14px;
    }

    .menu .megaMenu>.mega-column>.cs-dropdown {
        max-height: none;
        padding-right: 0;
        overflow: visible;
        scrollbar-width: auto;
    }

    .menu .megaMenu>.mega-column>.cs-dropdown::-webkit-scrollbar {
        display: none;
    }


    .menu .megaMenu>.mega-column.submenu-open>.cs-dropdown {
        display: block;
    }

    .menu .megaMenu>.mega-column>.cs-dropdown>li.cs-submenu>.cs-dropdown {
        position: static;
        display: none;
        width: 100%;
        margin: 0;
        padding: 7px 0 7px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .menu .megaMenu>.mega-column>.cs-dropdown>li.cs-submenu.submenu-open>.cs-dropdown {
        display: block;
    }

    .header-action {
        margin: 12px 0 0;
    }

    .quote-btn {
        width: 100%;
    }

    .menu .home>a span {
        display: block;
    }
}

@media (max-width: 1023px) {
    .navigation-wrapper {
        top: calc(100% + 0px);
    }

    .menu .nav>li>a {
        font-size: 14px;
        border-radius: 0;
        min-height: auto;
    }

    .menu li.cs-submenu>a::after {
        width: 8px;
        height: 8px;
    }

    .header-action {
        display: none;
    }

    .menu li.mega.submenu-open>.megaMenu {
        background: #f5f8ff;
    }

    .menu .cs-dropdown li>a {
        border-bottom: 1px solid #dee3f0;
        border-radius: 0;
    }
.hiddenDt{
    display: block;
}
}

@media (max-width: 575px) {
    .navbar {
        min-height: 70px;
        padding: 0 14px;
        border-radius: 0 ;
    }

    .logo img,
    .logo-image img {
        max-width: 200px;
        max-height: 42px;
    }

    .navigation-wrapper {
        right: 0;
        left: 0;
        padding: 10px;
    }
}