.zamp_topbar {
    background: var(--color-bg-50);
    padding-top: 3.42px;
    padding-bottom: 3.42px;
}
.zamp_topbar_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    line-height: 0;
    text-align: center;
}
.zamp_topbar_text {
    margin: 0;
    font-family: var(--season-sans);
    font-weight: 400;
    font-size: 11.87px;
    line-height: 21.5px;
    color: var(--color-bg-black);
}
.zamp_topbar_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.zamp_topbar_link p{
    font-family: var(--season-sans);
    font-weight: 600;
    font-size: 11.87px;
    line-height: 21.5px;
    color: var(--color-bg-black);
    margin: 0;
}
.zamp_topbar_arrow {
    width: 11.47px;
    height: auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.zamp_topbar_link:hover .zamp_topbar_arrow {
    transform: translateX(3px);
    opacity: 0.85;
}
.zamp_topbar_wrapper {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: inherit;
}
.zamp_header_wrapper {
    position: sticky;
    top: 0;
    z-index: 2990;
    background: var(--color-bg-white);
    border-bottom: 1.7px solid #EDE9DE;
}
.zamp_header {
    background-color: var(--color-bg-white);
    position: sticky;
    top: 0;
    z-index: 50;
}
.zamp_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}
.zamp_logo img {
    display: block;
    max-width: 68px;
    width: 100%;
    height: auto;
}
.zamp_nav > ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.zamp_nav > ul > li {
    position: relative;
}
.zamp_nav > ul > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7.71px;
    text-decoration: none;
    color: var(--color-bg-black);
    font-family: var(--season-sans);
    font-weight: 400;
    font-size: 13.57px;
    line-height: 20.35px;
    padding: 4px 0;
    transition: color 0.25s ease;
}
.zamp_nav > ul > li > a:hover {
    color: var(--color-link-hover-50);
}
.zamp_has_dropdown {
    position: relative;
}
.zamp_dropdown_arrow {
    width: 13.57px;
    height: auto;
    transition: transform 0.25s ease;
}
.zamp_has_dropdown:hover .zamp_dropdown_arrow {
    transform: rotate(180deg);
}
.zamp_dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: var(--color-bg-white);
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.zamp_dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: var(--color-bg-white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(15, 23, 42, 0.03);
}
.zamp_has_dropdown:hover .zamp_dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.zamp_dropdown li {
    padding: 0;
}
.zamp_dropdown li a {
    display: block;
    padding: 9px 18px;
    text-decoration: none;
    color: var(--color-bg-black);
    font-family: var(--season-sans);
    font-weight: 400;
    font-size: 13.57px;
    line-height: 20.35px;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.zamp_dropdown li a:hover {
    background-color: var(--color-bg-hover-50);
}
.zamp_header_btns {
    display: flex;
    align-items: center;
    gap: 5.57px;
}
.zamp_btn_black,
.zamp_btn_white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    font-family: var(--season-sans);
    font-weight: 500;
    font-size: 13px;
    line-height: 16.96px;
    text-decoration: none;
    border: 0.85px solid var(--color-bg-black);
    cursor: pointer;
}
.zamp_btn_black {
    background-color: var(--color-bg-black);
    color: var(--color-bg-white);
}
.zamp_btn_black:hover {
    background-color: var(--color-bg-white);
    color: var(--color-bg-black);
}
.zamp_btn_white {
    background-color: var(--color-bg-white);
    color: var(--color-bg-black);
}
.zamp_btn_white:hover {
    background-color: var(--color-bg-black);
    color: var(--color-bg-white);
}
.zamp_hamburger {
    width: 26px;
    height: 18px;
    border: none;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
}
.zamp_hamburger span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background-color: var(--color-bg-black);
}
.zamp_mobile_menu {
    background-color: var(--color-bg-white);
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: .4s ease;
    z-index: 5000;
}
.zamp_mobile_menu.zamp_open {
    transform: translateX(0);
}
.zamp_mobile_menu_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eeeeee;
}
.zamp_mobile_logo img {
    max-width: 68px;
    width: 100%;
    height: auto;
    display: block;
}
.zamp_mobile_close {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #4A4949;
    background: transparent;
    padding: 0;
    position: relative;
    cursor: pointer;
}
.zamp_mobile_close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--color-bg-black);
    border-radius: 999px;
}
.zamp_mobile_close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}
.zamp_mobile_close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.zamp_mobile_menu_list {
    list-style: none;
    margin: 0;
    padding: 8px 20px 20px;
    flex: 1;
    overflow-y: auto;
}
.zamp_mobile_menu_list li {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}
.zamp_mobile_single_link {
    display: block;
    text-decoration: none;
     color: var(--color-bg-black);
    font-family: var(--season-sans);
    font-weight: 400;
    font-size: 13.57px;
    line-height: 20.35px;
    padding: 6px 0;
}
.zamp_mobile_item_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 6px 0;
    line-height: 0;
}
.zamp_mobile_item_header span:first-child {
    color: var(--color-bg-black);
    font-family: var(--season-sans);
    font-weight: 400;
    font-size: 13.57px;
    line-height: 20.35px;
}
.zamp_mobile_item_icon {
    font-size: 18px;
    transition: transform 0.25s ease;
}
.zamp_mobile_dropdown {
    display: none;
    padding: 4px 0 10px 0;
}
.zamp_mobile_dropdown a {
    display: block;
    text-decoration: none;
    color: var(--color-bg-black);
    font-family: var(--season-sans);
    font-weight: 400;
    font-size: 13.57px;
    line-height: 20.35px;
    padding: 6px 0 6px 8px;
}
.zamp_mobile_dropdown a:hover {
    color: var(--color-bg-black);
}
.zamp_mobile_has_dropdown.zamp_open .zamp_mobile_dropdown {
    display: block;
}
.zamp_mobile_has_dropdown.zamp_open .zamp_mobile_item_icon {
    transform: rotate(45deg);
}
.zamp_mobile_menu_btns {
    padding: 16px 20px 24px;
    border-top: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Media Quary */
@media only screen and (max-width: 1024px) {
.zamp_nav {
    display: none;
}
.zamp_header_btns {
    margin-left: auto;
    gap: 8px;
}
.zamp_btn_white {
    display: inline-flex;
}
.zamp_hamburger {
    display: flex;
}
.zamp_header_inner {
    padding: 10px 0;
}
}
@media only screen and (max-width: 600px) {
.zamp_header_btns{
    display: none;
}
.zamp_topbar_inner{
    flex-direction: column;
    gap: 10px;
}
.zamp_topbar_text{
    line-height: 18.5px;
}
.zamp_topbar{
    padding-top: 6.42px;
    padding-bottom: 6.42px;
}
.zamp_hamburger{
    width: 22px;
    height: 16px;
}
.zamp_mobile_close {
    width: 28px;
    height: 28px;
}
.zamp_mobile_close span{
    width: 13px;
    height: 1px;
}
}
