.nav-caret{
  width:10px; height:10px;
  display:inline-block;
  opacity:.7;
  transform:translateY(1px);
}
.nav-dropdown {
    position: absolute;
    /* top: calc(100% + 18px); */
    top: 35px;
    left: 135px;
    transform: translate(-50%, -6px);
    width: min(760px, calc(100vw - 48px));
    padding: 16px;
    border-radius: 18px;
    background: rgba(7, 10, 20, .92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .52);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.dd-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.dd-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}
.dd-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}
.dd-icon img {
    width: 48px;
    height: 30px;
    object-fit: contain;
}
.dd-text {
    min-width: 0;
}
.dd-title {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .02em;
    color: rgba(243, 246, 255, .92);
}
.dd-desc {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.35;
    color: rgba(243, 246, 255, .62);
}
.dd-arrow {
    margin-left: auto;
    opacity: .55;
}
.dd-foot {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.dd-foot a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}
.dd-foot small {
    color: rgba(243, 246, 255, .60);
}
.nav-links .nav_link {
    white-space: nowrap;
    color: #d7e4ec;
    font-size: .95rem;
    position: relative;
    padding: 6px 0;
}
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}
 .nav-item--dropdown:hover .nav-dropdown, .nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.service_dropdown .dd-item .dd-icon {
    display: none;
}
.service_dropdown .dd-item .dd-text .dd-desc {
    display: none;
}
.service_dropdown .dd-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.service_dropdown {
    width: 400px;
}
.nav-item--dropdown .nav_link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #ffffff, #2e4929);
}


@media (max-width: 860px) {
.nav-dropdown {
    z-index: 99999;
    width: auto;
    height: 400px;
    overflow-y: scroll;
    scrollbar-width: thin;
}
.nav-item--dropdown:hover .nav-dropdown, .nav-item--dropdown:focus-within .nav-dropdown {
        transform: translate(-25%, 0);
        
}
.dd-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

}