     /* =========================================================
   PROMAN WORLDWIDE NAVBAR
========================================================= */

/* .pw-header {
    width: 100%;
    height: 84px;

    background: #ffffff;

    border-bottom: 1px solid #e8edf1;

    position: relative;
    z-index: 99999;
} */
 .pw-header {
    width: 100%;
    height: 84px;

    background: #ffffff;

    border-bottom: 1px solid #e8edf1;

    position: sticky;
    top: 0;

    z-index: 99999;

    box-shadow:
        0 4px 18px rgba(20, 45, 65, 0.08);

    transition:
        box-shadow 0.3s ease;
}


/* =========================================================
   NAV CONTAINER
========================================================= */

.pw-nav-container {
    width: 92%;
    max-width: 1380px;

    height: 84px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.pw-logo {
    display: flex;

    flex-direction: column;

    justify-content: center;

    width: 180px;

    text-decoration: none;

    line-height: 1;
}


.pw-logo-main {
    color: #0874b9;

    font-size: 31px;

    font-weight: 800;

    letter-spacing: -1px;
}


.pw-logo-sub {
    margin-top: 6px;

    color: #82c341;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}


/* =========================================================
   NAVBAR
========================================================= */

.pw-navbar {
    height: 84px;

    display: flex;

    align-items: center;

    gap: 4px;
}


/* =========================================================
   NORMAL NAV LINKS
========================================================= */

.pw-nav-link {
    height: 84px;

    padding: 0 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    color: #17324d;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .4px;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color .25s ease,
        background .25s ease;
}


/* Hover */

.pw-nav-link:hover {
    color: #0874b9;
}


/* =========================================================
   ACTIVE LINK
========================================================= */

.pw-nav-link.active {
    color: #0874b9;
}


.pw-nav-link.active::after {

    content: "";

    position: absolute;

    left: 17px;
    right: 17px;

    bottom: 0;

    height: 3px;

    background: #82c341;
}


/* =========================================================
   DROPDOWN WRAPPER
========================================================= */

.pw-dropdown {

    height: 84px;

    position: relative;

    display: flex;

    align-items: center;
}


/* =========================================================
   ARROW
========================================================= */

.pw-arrow {

    margin-left: 7px;

    color: #82c341;

    font-size: 15px;

    line-height: 1;

    transform: translateY(-1px);

    transition:
        transform .25s ease;
}


/* Rotate arrow */

.pw-dropdown:hover .pw-arrow {

    transform:
        translateY(2px)
        rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.pw-dropdown-menu {

    position: absolute;

    top: 84px;

    left: 50%;

    width: 245px;

    transform:
        translateX(-50%)
        translateY(12px);

    padding: 8px 0;

    background: #ffffff;

    border-top:
        3px solid #0874b9;

    box-shadow:
        0 15px 40px
        rgba(20,45,65,.15);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}


/* =========================================================
   SHOW DROPDOWN
========================================================= */

.pw-dropdown:hover
.pw-dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.pw-dropdown-menu a {

    display: flex;

    align-items: center;

    min-height: 46px;

    padding: 0 22px;

    color: #17324d;

    background: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    border-bottom:
        1px solid #edf0f2;

    transition:
        color .2s ease,
        background .2s ease,
        padding-left .2s ease;
}


.pw-dropdown-menu a:last-child {
    border-bottom: none;
}


/* Dropdown hover */

.pw-dropdown-menu a:hover {

    color: #0874b9;

    background: #f4f8fa;

    padding-left: 29px;
}


/* Small green line on hover */

.pw-dropdown-menu a::before {

    content: "";

    width: 0;

    height: 2px;

    margin-right: 0;

    background: #82c341;

    transition:
        width .2s ease,
        margin-right .2s ease;
}


.pw-dropdown-menu a:hover::before {

    width: 12px;

    margin-right: 7px;
}


/* =========================================================
   ENQUIRY BUTTON
========================================================= */

.pw-enquiry {

    height: 43px;

    min-width: 112px;

    padding: 0 22px;

    margin-left: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0874b9,
            #075c91
        );

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .5px;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.pw-enquiry:hover {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #82c341,
            #679f2d
        );

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(8,116,185,.18);
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.pw-menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    background: #0874b9;

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

    .pw-nav-container {
        width: 94%;
    }


    .pw-nav-link {
        padding: 0 11px;

        font-size: 11px;
    }


    .pw-nav-link.active::after {

        left: 11px;

        right: 11px;
    }


    .pw-enquiry {

        margin-left: 7px;

        min-width: 95px;

        padding: 0 14px;
    }

}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 900px) {

    .pw-header,
    .pw-nav-container {

        height: 74px;
    }


    .pw-nav-container {

        width: 92%;
    }


    .pw-logo-main {
        font-size: 27px;
    }


    .pw-logo-sub {

        font-size: 8px;

        letter-spacing: 3px;
    }


    /* Mobile button */

    .pw-menu-btn {

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 2px;
    }


    /* Mobile navigation */

    .pw-navbar {

        position: absolute;

        top: 74px;

        left: 0;

        width: 100%;

        height: auto;

        padding: 10px 0 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: #ffffff;

        box-shadow:
            0 15px 35px
            rgba(20,45,65,.15);
    }


    .pw-navbar.pw-mobile-open {

        display: flex;
    }


    /* Links */

    .pw-nav-link {

        width: 100%;

        height: 50px;

        padding: 0 25px;

        justify-content: space-between;

        font-size: 12px;

        border-bottom:
            1px solid #edf0f2;
    }


    .pw-nav-link.active::after {

        display: none;
    }


    /* Dropdown */

    .pw-dropdown {

        width: 100%;

        height: auto;

        display: block;
    }


    .pw-dropdown > .pw-nav-link {

        height: 50px;
    }


    .pw-dropdown-menu {

        position: static;

        width: 100%;

        padding: 0;

        transform: none;

        border-top: none;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        display: none;
    }


    .pw-dropdown:hover
    .pw-dropdown-menu {

        transform: none;

    }


    /* Mobile dropdown appears on hover */

    .pw-dropdown:hover
    .pw-dropdown-menu {

        display: block;
    }


    .pw-dropdown-menu a {

        min-height: 43px;

        padding-left: 45px;

        background: #f5f8fa;

        font-size: 11px;
    }


    .pw-dropdown-menu a:hover {

        padding-left: 52px;
    }


    /* Enquiry */

    .pw-enquiry {

        height: 46px;

        margin: 15px 25px 0;

        width: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .pw-nav-container {
        width: 90%;
    }


    .pw-logo {
        width: auto;
    }


    .pw-logo-main {
        font-size: 25px;
    }


    .pw-logo-sub {
        font-size: 7px;
    }

}

.pw-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.pw-logo img {
    width: 150px;
    height: auto;
    display: block;
}

/* =====================================================
   MEDIA KIT NAVBAR BUTTON
===================================================== */

.pw-media-kit {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 42px;

    padding: 0 17px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0874b9,
            #82c341
        );

    border-radius: 4px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    overflow: hidden;

    box-shadow:
        0 5px 15px
        rgba(8,116,185,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* Moving shine */

.pw-media-kit::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .6s ease;

}


.pw-media-kit:hover::before {

    left: 140%;

}


.pw-media-kit:hover {

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(8,116,185,.30);

}


/* =====================================================
   DOWNLOAD ICON
===================================================== */

.pw-media-kit-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 18px;

    height: 18px;

}


.pw-media-kit-icon svg {

    width: 17px;

    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;

    transition:
        transform .3s ease;

}


.pw-media-kit:hover
.pw-media-kit-icon svg {

    animation:
        mediaDownload .7s
        ease-in-out;

}


@keyframes mediaDownload {

    0% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(3px);
    }

    100% {
        transform:
            translateY(0);
    }

}