<!DOCTYPE html>
<html lang="en-US">

<head>
    <script>
        if (navigator.userAgent.match(/MSIE|Internet Explorer/i) || navigator.userAgent.match(/Trident\/7\..*?rv:11/i)) {
            var href = document.location.href;
            if (!href.match(/[?&]nowprocket/)) {
                if (href.indexOf("?") == -1) {
                    if (href.indexOf("#") == -1) {
                        document.location.href = href + "?nowprocket=1"
                    } else {
                        document.location.href = href.replace("#", "?nowprocket=1#")
                    }
                } else {
                    if (href.indexOf("#") == -1) {
                        document.location.href = href + "&nowprocket=1"
                    } else {
                        document.location.href = href.replace("#", "&nowprocket=1#")
                    }
                }
            }
        }
    </script>
    <script>
        class RocketLazyLoadScripts {
            constructor(e) {
                this.triggerEvents = e, this.eventOptions = {
                    passive: !0
                }, this.userEventListener = this.triggerListener.bind(this), this.delayedScripts = {
                    normal: [],
                    async: [],
                    defer: []
                }, this.allJQueries = []
            }
            _addUserInteractionListener(e) {
                this.triggerEvents.forEach((t => window.addEventListener(t, e.userEventListener, e.eventOptions)))
            }
            _removeUserInteractionListener(e) {
                this.triggerEvents.forEach((t => window.removeEventListener(t, e.userEventListener, e.eventOptions)))
            }
            triggerListener() {
                this._removeUserInteractionListener(this), this._loadEverythingNow()
            }
            async _loadEverythingNow() {
                this._handleDocumentWrite(), this._registerAllDelayedScripts(), this._preloadAllScripts(), await this._loadScriptsFromList(this.delayedScripts.normal), await this._loadScriptsFromList(this.delayedScripts.defer), await this._loadScriptsFromList(this.delayedScripts.async), await this._triggerDOMContentLoaded(), await this._triggerWindowLoad(), window.dispatchEvent(new Event("rocket-allScriptsLoaded"))
            }
            _registerAllDelayedScripts() {
                document.querySelectorAll("script[type=rocketlazyloadscript]").forEach((e => {
                    e.hasAttribute("src") ? e.hasAttribute("async") && !1 !== e.async ? this.delayedScripts.async.push(e) : e.hasAttribute("defer") && !1 !== e.defer || "module" === e.getAttribute("data-rocket-type") ? this.delayedScripts.defer.push(e) : this.delayedScripts.normal.push(e) : this.delayedScripts.normal.push(e)
                }))
            }
            async _transformScript(e) {
                return await this._requestAnimFrame(), new Promise((t => {
                    var n = document.createElement("script");
                    [...e.attributes].forEach((e => {
                        let t = e.nodeName;
                        "type" !== t && ("data-rocket-type" === t && (t = "type"), n.setAttribute(t, e.nodeValue))
                    })), e.hasAttribute("src") ? (n.addEventListener("load", t), n.addEventListener("error", t)) : (n.text = e.text, t()), e.parentNode.replaceChild(n, e)
                }))
            }
            async _loadScriptsFromList(e) {
                const t = e.shift();
                return t ? (await this._transformScript(t), this._loadScriptsFromList(e)) : Promise.resolve()
            }
            _preloadAllScripts() {
                var e = document.createDocumentFragment();
                [...this.delayedScripts.normal, ...this.delayedScripts.defer, ...this.delayedScripts.async].forEach((t => {
                    const n = t.getAttribute("src");
                    if (n) {
                        const t = document.createElement("link");
                        t.href = n, t.rel = "preload", t.as = "script", e.appendChild(t)
                    }
                })), document.head.appendChild(e)
            }
            _delayEventListeners() {
                let e = {};

                function t(t, n) {
                    ! function (t) {
                        function n(n) {
                            return e[t].eventsToRewrite.indexOf(n) >= 0 ? "rocket-" + n : n
                        }
                        e[t] || (e[t] = {
                            originalFunctions: {
                                add: t.addEventListener,
                                remove: t.removeEventListener
                            },
                            eventsToRewrite: []
                        }, t.addEventListener = function () {
                            arguments[0] = n(arguments[0]), e[t].originalFunctions.add.apply(t, arguments)
                        }, t.removeEventListener = function () {
                            arguments[0] = n(arguments[0]), e[t].originalFunctions.remove.apply(t, arguments)
                        })
                    }(t), e[t].eventsToRewrite.push(n)
                }

                function n(e, t) {
                    const n = e[t];
                    Object.defineProperty(e, t, {
                        get: n || function () { },
                        set: n => {
                            e["rocket" + t] = n
                        }
                    })
                }
                t(document, "DOMContentLoaded"), t(window, "DOMContentLoaded"), t(window, "load"), t(window, "pageshow"), t(document, "readystatechange"), n(document, "onreadystatechange"), n(window, "onload"), n(window, "onpageshow")
            }
            _delayJQueryReady(e) {
                let t;
                Object.defineProperty(window, "jQuery", {
                    get: () => t,
                    set(n) {
                        if (n && n.fn && !e.allJQueries.includes(n)) {
                            n.fn.ready = n.fn.init.prototype.ready = function (t) {
                                e.domReadyFired ? t.bind(document)(n) : document.addEventListener("rocket-DOMContentLoaded", (() => t.bind(document)(n)))
                            };
                            const t = n.fn.on;
                            n.fn.on = n.fn.init.prototype.on = function () {
                                if (this[0] === window) {
                                    function e(e) {
                                        return e.split(" ").map((e => "load" === e ? "rocket-load" : e)).join(" ")
                                    }
                                    "string" == typeof arguments[0] || arguments[0] instanceof String ? arguments[0] = e(arguments[0]) : "object" == typeof arguments[0] && Object.keys(arguments[0]).forEach((t => {
                                        delete Object.assign(arguments[0], {
                                            [e(t)]: arguments[0][t]
                                        })[t]
                                    }))
                                }
                                return t.apply(this, arguments), this
                            }, e.allJQueries.push(n)
                        }
                        t = n
                    }
                })
            }
            async _triggerDOMContentLoaded() {
                this.domReadyFired = !0, await this._requestAnimFrame(), document.dispatchEvent(new Event("rocket-DOMContentLoaded")), await this._requestAnimFrame(), window.dispatchEvent(new Event("rocket-DOMContentLoaded")), await this._requestAnimFrame(), document.dispatchEvent(new Event("rocket-readystatechange")), await this._requestAnimFrame(), document.rocketonreadystatechange && document.rocketonreadystatechange()
            }
            async _triggerWindowLoad() {
                await this._requestAnimFrame(), window.dispatchEvent(new Event("rocket-load")), await this._requestAnimFrame(), window.rocketonload && window.rocketonload(), await this._requestAnimFrame(), this.allJQueries.forEach((e => e(window).trigger("rocket-load"))), window.dispatchEvent(new Event("rocket-pageshow")), await this._requestAnimFrame(), window.rocketonpageshow && window.rocketonpageshow()
            }
            _handleDocumentWrite() {
                const e = new Map;
                document.write = document.writeln = function (t) {
                    const n = document.currentScript,
                        r = document.createRange(),
                        i = n.parentElement;
                    let o = e.get(n);
                    void 0 === o && (o = n.nextSibling, e.set(n, o));
                    const a = document.createDocumentFragment();
                    r.setStart(a, 0), a.appendChild(r.createContextualFragment(t)), i.insertBefore(a, o)
                }
            }
            async _requestAnimFrame() {
                return new Promise((e => requestAnimationFrame(e)))
            }
            static run() {
                const e = new RocketLazyLoadScripts(["keydown", "mouseover", "touchmove", "touchstart", "wheel"]);
                e._delayEventListeners(), e._delayJQueryReady(e), e._addUserInteractionListener(e)
            }
        }
        RocketLazyLoadScripts.run();
    </script>
    <meta charset="UTF-8">
    <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
    <title>Sea Freight to NZ | Freight Shipping to New Zealand</title>
    <style id="rocket-critical-css">
        body,
        h1,
        h2,
        html,
        li,
        p,
        ul {
            margin: 0;
            padding: 0;
            border: 0
        }

        html {
            font-family: sans-serif;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale
        }

        main {
            display: block
        }

        html {
            box-sizing: border-box
        }

        *,
        ::after,
        ::before {
            box-sizing: inherit
        }

        button,
        input {
            font-family: inherit;
            font-size: 100%;
            margin: 0
        }

        [type=search] {
            -webkit-appearance: textfield;
            outline-offset: -2px
        }

        [type=search]::-webkit-search-decoration {
            -webkit-appearance: none
        }

        ::-moz-focus-inner {
            border-style: none;
            padding: 0
        }

        :-moz-focusring {
            outline: 1px dotted ButtonText
        }

        body,
        button,
        input {
            font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            font-weight: 400;
            text-transform: none;
            font-size: 17px;
            line-height: 1.5
        }

        p {
            margin-bottom: 1.5em
        }

        h1,
        h2 {
            font-family: inherit;
            font-size: 100%;
            font-style: inherit;
            font-weight: inherit
        }

        h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2em;
            font-weight: 400;
            text-transform: none
        }

        h2 {
            font-size: 35px;
            margin-bottom: 20px;
            line-height: 1.2em;
            font-weight: 400;
            text-transform: none
        }

        ul {
            margin: 0 0 1.5em 3em
        }

        ul {
            list-style: disc
        }

        button {
            background: #55555e;
            color: #fff;
            border: 1px solid transparent;
            -webkit-appearance: button;
            padding: 10px 20px
        }

        input[type=search] {
            border: 1px solid;
            border-radius: 0;
            padding: 10px 15px;
            max-width: 100%
        }

        a,
        a:visited {
            text-decoration: none
        }

        .screen-reader-text {
            border: 0;
            clip: rect(1px, 1px, 1px, 1px);
            -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute !important;
            width: 1px;
            word-wrap: normal !important
        }

        .main-navigation {
            z-index: 100;
            padding: 0;
            clear: both;
            display: block
        }

        .main-navigation a {
            display: block;
            text-decoration: none;
            font-weight: 400;
            text-transform: none;
            font-size: 15px
        }

        .main-navigation ul {
            list-style: none;
            margin: 0;
            padding-left: 0
        }

        .main-navigation .main-nav ul li a {
            padding-left: 20px;
            padding-right: 20px;
            line-height: 60px
        }

        .inside-navigation {
            position: relative
        }

        .main-navigation .inside-navigation {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between
        }

        .main-navigation .main-nav>ul {
            display: flex;
            flex-wrap: wrap;
            align-items: center
        }

        .main-navigation li {
            position: relative
        }

        .site-header {
            position: relative
        }

        .inside-header {
            padding: 20px 40px
        }

        .inside-header {
            display: flex;
            align-items: center
        }

        .nav-float-right #site-navigation {
            margin-left: auto
        }

        .entry-content:not(:first-child) {
            margin-top: 2em
        }

        .entry-header,
        .site-content {
            word-wrap: break-word
        }

        .entry-title {
            margin-bottom: 0
        }

        .widget-area .widget {
            padding: 40px
        }

        .sidebar .widget :last-child {
            margin-bottom: 0
        }

        .widget-title {
            margin-bottom: 30px;
            font-size: 20px;
            line-height: 1.5;
            font-weight: 400;
            text-transform: none
        }

        .widget ul {
            margin: 0
        }

        .widget .search-field {
            width: 100%
        }

        .widget .search-form {
            display: flex
        }

        .widget .search-form button.search-submit {
            font-size: 15px
        }

        .sidebar .widget:last-child {
            margin-bottom: 0
        }

        .site-content {
            display: flex
        }

        .grid-container {
            margin-left: auto;
            margin-right: auto;
            max-width: 1200px
        }

        .sidebar .widget,
        .site-main>* {
            margin-bottom: 20px
        }

        .separate-containers .inside-article {
            padding: 40px
        }

        .separate-containers .site-main {
            margin: 20px
        }

        .separate-containers.right-sidebar .site-main {
            margin-left: 0
        }

        .separate-containers .inside-right-sidebar {
            margin-top: 20px;
            margin-bottom: 20px
        }

        .separate-containers .site-main>:last-child {
            margin-bottom: 0
        }

        .inside-site-info {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 40px
        }

        .site-info {
            text-align: center;
            font-size: 15px
        }

        .gp-icon {
            display: inline-flex;
            align-self: center
        }

        .gp-icon svg {
            height: 1em;
            width: 1em;
            top: .125em;
            position: relative;
            fill: currentColor
        }

        .icon-menu-bars svg:nth-child(2) {
            display: none
        }

        .container.grid-container {
            width: auto
        }

        .menu-toggle {
            display: none
        }

        .menu-toggle {
            padding: 0 20px;
            line-height: 60px;
            margin: 0;
            font-weight: 400;
            text-transform: none;
            font-size: 15px
        }

        .menu-toggle .mobile-menu {
            padding-left: 3px
        }

        .menu-toggle .gp-icon+.mobile-menu {
            padding-left: 9px
        }

        button.menu-toggle {
            background-color: transparent;
            flex-grow: 1;
            border: 0;
            text-align: center
        }

        .mobile-menu-control-wrapper {
            display: none;
            margin-left: auto;
            align-items: center
        }

        @media (max-width:768px) {
            .inside-header {
                flex-direction: column;
                text-align: center
            }

            .site-content {
                flex-direction: column
            }

            .container .site-content .content-area {
                width: auto
            }

            .is-right-sidebar.sidebar {
                width: auto;
                order: initial
            }

            #main {
                margin-left: 0;
                margin-right: 0
            }

            body:not(.no-sidebar) #main {
                margin-bottom: 0
            }
        }
    </style>
    <meta name="google-site-verification" content="S2xst7Pf_Gm1A1rgBwrHvKKrxC-0e6DVjF2CYgfTNws" />
    <link rel="canonical" href="https://israelpolitik.org/" />
    <meta property="og:locale" content="en_US" />
    <meta property="og:type" content="website" />
    <meta property="og:title" content="Sea Freight to NZ | Freight Shipping to New Zealand" />
    <meta property="og:description"
        content="International Sea Freight Services Facebook Twitter Envelope Linkedin Worry-Free Worldwide Shipping Sea Freight to NZ Sea freight is undoubtedly the most cost-effective shipping method from the United States to New Zealand, although it is also slower than air freight. Our shipping service can deliver your product within 15-30 days of receiving it at our warehouse. ... Read more" />
    <meta property="og:url" content="https://israelpolitik.org/" />
    <meta property="article:modified_time" content="2026-04-09T00:19:00+07:00" />
    <meta property="og:image" content="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png" />
    <meta name="twitter:card" content="summary_large_image" />
    <meta name="twitter:label1" content="Est. reading time" />
    <meta name="twitter:data1" content="5 minutes" />
    <script type="application/ld+json" class="yoast-schema-graph">
        {
            "@context": "https://schema.org",
            "@graph": [{
                "@type": "WebSite",
                "@id": "https://israelpolitik.org/#website",
                "url": "https://israelpolitik.org/",
                "name": "Sea Freight to NZ | Freight Shipping to New Zealand",
                "description": "",
                "potentialAction": [{
                    "@type": "SearchAction",
                    "target": {
                        "@type": "EntryPoint",
                        "urlTemplate": "https://israelpolitik.org/?s={search_term_string}"
                    },
                    "query-input": "required name=search_term_string"
                }],
                "inLanguage": "en-US"
            }, {
                "@type": "ImageObject",
                "@id": "https://israelpolitik.org/#primaryimage",
                "inLanguage": "en-US",
                "url": "https://israelpolitik.org/wp-content/uploads/2021/07/IsraelPolitik-Logo.png",
                "contentUrl": "https://israelpolitik.org/wp-content/uploads/2021/07/IsraelPolitik-Logo.png",
                "width": 358,
                "height": 256,
                "caption": "Sea Freight to NZ"
            }, {
                "@type": "WebPage",
                "@id": "https://israelpolitik.org/#webpage",
                "url": "https://israelpolitik.org/",
                "name": "Sea Freight to NZ | Freight Shipping to New Zealand | IsraelPolitik.org",
                "isPartOf": {
                    "@id": "https://israelpolitik.org/#website"
                },
                "primaryImageOfPage": {
                    "@id": "https://israelpolitik.org/#primaryimage"
                },
                "datePublished": "2021-07-12T05:10:04+07:00",
                "lastReviewed": "2026-04-09T00:19:00+07:00",
                "dateModified": "2026-04-09T00:19:00+07:00",
                "breadcrumb": {
                    "@id": "https://israelpolitik.org/#breadcrumb"
                },
                "inLanguage": "en-US",
                "potentialAction": [{
                    "@type": "ReadAction",
                    "target": ["https://israelpolitik.org/"]
                }]
            }, {
                "@type": "BreadcrumbList",
                "@id": "https://israelpolitik.org/#breadcrumb",
                "itemListElement": [{
                    "@type": "ListItem",
                    "position": 1,
                    "name": "Home",
                    "item": "https://israelpolitik.org/"
                },
                {
                    "@type": "ListItem",
                    "position": 2,
                    "name": "Planetwd Slot Online",
                    "item": "https://israelpolitik.org/about/"
                },
                {
                    "@type": "ListItem",
                    "position": 3,
                    "name": "Planetwd Login Online",
                    "item": "https://israelpolitik.org/privacy-policy/"
                }]
            }]
        }
    </script>
    <!-- / Yoast SEO plugin. -->


    <link href="https://fonts.gstatic.com/" crossorigin rel="preconnect" />
    <link rel="alternate" type="application/rss+xml" title=" » Feed" href="http://www.israelpolitik.org/feed/" />
    <link rel="alternate" type="application/rss+xml" title=" » Comments Feed"
        href="http://www.israelpolitik.org/comments/feed/" />
    <style>
        img.wp-smiley,
        img.emoji {
            display: inline !important;
            border: none !important;
            box-shadow: none !important;
            height: 1em !important;
            width: 1em !important;
            margin: 0 0.07em !important;
            vertical-align: -0.1em !important;
            background: none !important;
            padding: 0 !important;
        }
    </style>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css">
    <style id="global-styles-inline-css">
        body {
            --wp--preset--color--black: #000000;
            --wp--preset--color--cyan-bluish-gray: #abb8c3;
            --wp--preset--color--white: #ffffff;
            --wp--preset--color--pale-pink: #f78da7;
            --wp--preset--color--vivid-red: #cf2e2e;
            --wp--preset--color--luminous-vivid-orange: #ff6900;
            --wp--preset--color--luminous-vivid-amber: #fcb900;
            --wp--preset--color--light-green-cyan: #7bdcb5;
            --wp--preset--color--vivid-green-cyan: #00d084;
            --wp--preset--color--pale-cyan-blue: #8ed1fc;
            --wp--preset--color--vivid-cyan-blue: #0693e3;
            --wp--preset--color--vivid-purple: #9b51e0;
            --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
            --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
            --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
            --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
            --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
            --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
            --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
            --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
            --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
            --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
            --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
            --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
            --wp--preset--duotone--dark-grayscale: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-dark-grayscale');
            --wp--preset--duotone--grayscale: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-grayscale');
            --wp--preset--duotone--purple-yellow: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-purple-yellow');
            --wp--preset--duotone--blue-red: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-blue-red');
            --wp--preset--duotone--midnight: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-midnight');
            --wp--preset--duotone--magenta-yellow: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-magenta-yellow');
            --wp--preset--duotone--purple-green: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-purple-green');
            --wp--preset--duotone--blue-orange: url('/web/20220526073941im_/http://www.israelpolitik.org/#wp-duotone-blue-orange');
            --wp--preset--font-size--small: 13px;
            --wp--preset--font-size--medium: 20px;
            --wp--preset--font-size--large: 36px;
            --wp--preset--font-size--x-large: 42px;
        }

        .has-black-color {
            color: var(--wp--preset--color--black) !important;
        }

        .has-cyan-bluish-gray-color {
            color: var(--wp--preset--color--cyan-bluish-gray) !important;
        }

        .has-white-color {
            color: var(--wp--preset--color--white) !important;
        }

        .has-pale-pink-color {
            color: var(--wp--preset--color--pale-pink) !important;
        }

        .has-vivid-red-color {
            color: var(--wp--preset--color--vivid-red) !important;
        }

        .has-luminous-vivid-orange-color {
            color: var(--wp--preset--color--luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-amber-color {
            color: var(--wp--preset--color--luminous-vivid-amber) !important;
        }

        .has-light-green-cyan-color {
            color: var(--wp--preset--color--light-green-cyan) !important;
        }

        .has-vivid-green-cyan-color {
            color: var(--wp--preset--color--vivid-green-cyan) !important;
        }

        .has-pale-cyan-blue-color {
            color: var(--wp--preset--color--pale-cyan-blue) !important;
        }

        .has-vivid-cyan-blue-color {
            color: var(--wp--preset--color--vivid-cyan-blue) !important;
        }

        .has-vivid-purple-color {
            color: var(--wp--preset--color--vivid-purple) !important;
        }

        .has-black-background-color {
            background-color: var(--wp--preset--color--black) !important;
        }

        .has-cyan-bluish-gray-background-color {
            background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
        }

        .has-white-background-color {
            background-color: var(--wp--preset--color--white) !important;
        }

        .has-pale-pink-background-color {
            background-color: var(--wp--preset--color--pale-pink) !important;
        }

        .has-vivid-red-background-color {
            background-color: var(--wp--preset--color--vivid-red) !important;
        }

        .has-luminous-vivid-orange-background-color {
            background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-amber-background-color {
            background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
        }

        .has-light-green-cyan-background-color {
            background-color: var(--wp--preset--color--light-green-cyan) !important;
        }

        .has-vivid-green-cyan-background-color {
            background-color: var(--wp--preset--color--vivid-green-cyan) !important;
        }

        .has-pale-cyan-blue-background-color {
            background-color: var(--wp--preset--color--pale-cyan-blue) !important;
        }

        .has-vivid-cyan-blue-background-color {
            background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
        }

        .has-vivid-purple-background-color {
            background-color: var(--wp--preset--color--vivid-purple) !important;
        }

        .has-black-border-color {
            border-color: var(--wp--preset--color--black) !important;
        }

        .has-cyan-bluish-gray-border-color {
            border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
        }

        .has-white-border-color {
            border-color: var(--wp--preset--color--white) !important;
        }

        .has-pale-pink-border-color {
            border-color: var(--wp--preset--color--pale-pink) !important;
        }

        .has-vivid-red-border-color {
            border-color: var(--wp--preset--color--vivid-red) !important;
        }

        .has-luminous-vivid-orange-border-color {
            border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-amber-border-color {
            border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
        }

        .has-light-green-cyan-border-color {
            border-color: var(--wp--preset--color--light-green-cyan) !important;
        }

        .has-vivid-green-cyan-border-color {
            border-color: var(--wp--preset--color--vivid-green-cyan) !important;
        }

        .has-pale-cyan-blue-border-color {
            border-color: var(--wp--preset--color--pale-cyan-blue) !important;
        }

        .has-vivid-cyan-blue-border-color {
            border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
        }

        .has-vivid-purple-border-color {
            border-color: var(--wp--preset--color--vivid-purple) !important;
        }

        .has-vivid-cyan-blue-to-vivid-purple-gradient-background {
            background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
        }

        .has-light-green-cyan-to-vivid-green-cyan-gradient-background {
            background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
        }

        .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
            background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
        }

        .has-luminous-vivid-orange-to-vivid-red-gradient-background {
            background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
        }

        .has-very-light-gray-to-cyan-bluish-gray-gradient-background {
            background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
        }

        .has-cool-to-warm-spectrum-gradient-background {
            background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
        }

        .has-blush-light-purple-gradient-background {
            background: var(--wp--preset--gradient--blush-light-purple) !important;
        }

        .has-blush-bordeaux-gradient-background {
            background: var(--wp--preset--gradient--blush-bordeaux) !important;
        }

        .has-luminous-dusk-gradient-background {
            background: var(--wp--preset--gradient--luminous-dusk) !important;
        }

        .has-pale-ocean-gradient-background {
            background: var(--wp--preset--gradient--pale-ocean) !important;
        }

        .has-electric-grass-gradient-background {
            background: var(--wp--preset--gradient--electric-grass) !important;
        }

        .has-midnight-gradient-background {
            background: var(--wp--preset--gradient--midnight) !important;
        }

        .has-small-font-size {
            font-size: var(--wp--preset--font-size--small) !important;
        }

        .has-medium-font-size {
            font-size: var(--wp--preset--font-size--medium) !important;
        }

        .has-large-font-size {
            font-size: var(--wp--preset--font-size--large) !important;
        }

        .has-x-large-font-size {
            font-size: var(--wp--preset--font-size--x-large) !important;
        }
    </style>
    <link rel="preload" href="/wp-content/themes/generatepress/assets/css/main.min.css" data-rocket-async="style"
        as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <style id="generate-style-inline-css">
        body {
            background-color: #f7f8f9;
            color: #222222;
        }

        a {
            color: #1e73be;
        }

        a:hover,
        a:focus,
        a:active {
            color: #000000;
        }

        .wp-block-group__inner-container {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        body,
        button,
        input,
        select,
        textarea {
            font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        }

        body {
            line-height: 1.5;
        }

        .entry-content>[class*="wp-block-"]:not(:last-child) {
            margin-bottom: 1.5em;
        }

        .main-navigation .main-nav ul ul li a {
            font-size: 14px;
        }

        .sidebar .widget,
        .footer-widgets .widget {
            font-size: 17px;
        }

        @media (max-width:768px) {
            h1 {
                font-size: 31px;
            }

            h2 {
                font-size: 27px;
            }

            h3 {
                font-size: 24px;
            }

            h4 {
                font-size: 22px;
            }

            h5 {
                font-size: 19px;
            }
        }

        .top-bar {
            background-color: #636363;
            color: #ffffff;
        }

        .top-bar a {
            color: #ffffff;
        }

        .top-bar a:hover {
            color: #303030;
        }

        .site-header {
            background-color: #ffffff;
        }

        .main-title a,
        .main-title a:hover {
            color: #222222;
        }

        .site-description {
            color: #757575;
        }

        .mobile-menu-control-wrapper .menu-toggle,
        .mobile-menu-control-wrapper .menu-toggle:hover,
        .mobile-menu-control-wrapper .menu-toggle:focus,
        .has-inline-mobile-toggle #site-navigation.toggled {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .main-navigation,
        .main-navigation ul ul {
            background-color: #ffffff;
        }

        .main-navigation .main-nav ul li a,
        .menu-toggle,
        .main-navigation .menu-bar-items {
            color: #515151;
        }

        .main-navigation .main-nav ul li:hover>a,
        .main-navigation .main-nav ul li:focus>a,
        .main-navigation .main-nav ul li.sfHover>a,
        .main-navigation .menu-bar-item:hover>a,
        .main-navigation .menu-bar-item.sfHover>a {
            color: #7a8896;
            background-color: #ffffff;
        }

        button.menu-toggle:hover,
        button.menu-toggle:focus {
            color: #515151;
        }

        .main-navigation .main-nav ul li[class*="current-menu-"]>a {
            color: #7a8896;
            background-color: #ffffff;
        }

        .main-navigation .main-nav ul li[class*="current-menu-"]>a:hover,
        .main-navigation .main-nav ul li[class*="current-menu-"].sfHover>a {
            color: #7a8896;
            background-color: #ffffff;
        }

        .navigation-search input[type="search"],
        .navigation-search input[type="search"]:active,
        .navigation-search input[type="search"]:focus,
        .main-navigation .main-nav ul li.search-item.active>a,
        .main-navigation .menu-bar-items .search-item.active>a {
            color: #7a8896;
            background-color: #ffffff;
        }

        .main-navigation ul ul {
            background-color: #eaeaea;
        }

        .main-navigation .main-nav ul ul li a {
            color: #515151;
        }

        .main-navigation .main-nav ul ul li:hover>a,
        .main-navigation .main-nav ul ul li:focus>a,
        .main-navigation .main-nav ul ul li.sfHover>a {
            color: #7a8896;
            background-color: #eaeaea;
        }

        .main-navigation .main-nav ul ul li[class*="current-menu-"]>a {
            color: #7a8896;
            background-color: #eaeaea;
        }

        .main-navigation .main-nav ul ul li[class*="current-menu-"]>a:hover,
        .main-navigation .main-nav ul ul li[class*="current-menu-"].sfHover>a {
            color: #7a8896;
            background-color: #eaeaea;
        }

        .separate-containers .inside-article,
        .separate-containers .comments-area,
        .separate-containers .page-header,
        .one-container .container,
        .separate-containers .paging-navigation,
        .inside-page-header {
            background-color: #ffffff;
        }

        .entry-title a {
            color: #222222;
        }

        .entry-title a:hover {
            color: #55555e;
        }

        .entry-meta {
            color: #595959;
        }

        .sidebar .widget {
            background-color: #ffffff;
        }

        .footer-widgets {
            background-color: #ffffff;
        }

        .footer-widgets .widget-title {
            color: #000000;
        }

        .site-info {
            color: #ffffff;
            background-color: #55555e;
        }

        .site-info a {
            color: #ffffff;
        }

        .site-info a:hover {
            color: #d3d3d3;
        }

        .footer-bar .widget_nav_menu .current-menu-item a {
            color: #d3d3d3;
        }

        input[type="text"],
        input[type="email"],
        input[type="url"],
        input[type="password"],
        input[type="search"],
        input[type="tel"],
        input[type="number"],
        textarea,
        select {
            color: #666666;
            background-color: #fafafa;
            border-color: #cccccc;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="url"]:focus,
        input[type="password"]:focus,
        input[type="search"]:focus,
        input[type="tel"]:focus,
        input[type="number"]:focus,
        textarea:focus,
        select:focus {
            color: #666666;
            background-color: #ffffff;
            border-color: #bfbfbf;
        }

        button,
        html input[type="button"],
        input[type="reset"],
        input[type="submit"],
        a.button,
        a.wp-block-button__link:not(.has-background) {
            color: #ffffff;
            background-color: #55555e;
        }

        button:hover,
        html input[type="button"]:hover,
        input[type="reset"]:hover,
        input[type="submit"]:hover,
        a.button:hover,
        button:focus,
        html input[type="button"]:focus,
        input[type="reset"]:focus,
        input[type="submit"]:focus,
        a.button:focus,
        a.wp-block-button__link:not(.has-background):active,
        a.wp-block-button__link:not(.has-background):focus,
        a.wp-block-button__link:not(.has-background):hover {
            color: #ffffff;
            background-color: #3f4047;
        }

        a.generate-back-to-top {
            background-color: rgba(0, 0, 0, 0.4);
            color: #ffffff;
        }

        a.generate-back-to-top:hover,
        a.generate-back-to-top:focus {
            background-color: rgba(0, 0, 0, 0.6);
            color: #ffffff;
        }

        @media (max-width:768px) {

            .main-navigation .menu-bar-item:hover>a,
            .main-navigation .menu-bar-item.sfHover>a {
                background: none;
                color: #515151;
            }
        }

        .nav-below-header .main-navigation .inside-navigation.grid-container,
        .nav-above-header .main-navigation .inside-navigation.grid-container {
            padding: 0px 20px 0px 20px;
        }

        .site-main .wp-block-group__inner-container {
            padding: 40px;
        }

        .separate-containers .paging-navigation {
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .entry-content .alignwide,
        body:not(.no-sidebar) .entry-content .alignfull {
            margin-left: -40px;
            width: calc(100% + 80px);
            max-width: calc(100% + 80px);
        }

        .rtl .menu-item-has-children .dropdown-menu-toggle {
            padding-left: 20px;
        }

        .rtl .main-navigation .main-nav ul li.menu-item-has-children>a {
            padding-right: 20px;
        }

        @media (max-width:768px) {

            .separate-containers .inside-article,
            .separate-containers .comments-area,
            .separate-containers .page-header,
            .separate-containers .paging-navigation,
            .one-container .site-content,
            .inside-page-header {
                padding: 30px;
            }

            .site-main .wp-block-group__inner-container {
                padding: 30px;
            }

            .inside-top-bar {
                padding-right: 30px;
                padding-left: 30px;
            }

            .inside-header {
                padding-right: 30px;
                padding-left: 30px;
            }

            .widget-area .widget {
                padding-top: 30px;
                padding-right: 30px;
                padding-bottom: 30px;
                padding-left: 30px;
            }

            .footer-widgets-container {
                padding-top: 30px;
                padding-right: 30px;
                padding-bottom: 30px;
                padding-left: 30px;
            }

            .inside-site-info {
                padding-right: 30px;
                padding-left: 30px;
            }

            .entry-content .alignwide,
            body:not(.no-sidebar) .entry-content .alignfull {
                margin-left: -30px;
                width: calc(100% + 60px);
                max-width: calc(100% + 60px);
            }

            .one-container .site-main .paging-navigation {
                margin-bottom: 20px;
            }
        }

        /* End cached CSS */
        .is-right-sidebar {
            width: 30%;
        }

        .is-left-sidebar {
            width: 30%;
        }

        .site-content .content-area {
            width: 70%;
        }

        @media (max-width:768px) {

            .main-navigation .menu-toggle,
            .sidebar-nav-mobile:not(#sticky-placeholder) {
                display: block;
            }

            .main-navigation ul,
            .gen-sidebar-nav,
            .main-navigation:not(.slideout-navigation):not(.toggled) .main-nav>ul,
            .has-inline-mobile-toggle #site-navigation .inside-navigation>*:not(.navigation-search):not(.main-nav) {
                display: none;
            }

            .nav-align-right .inside-navigation,
            .nav-align-center .inside-navigation {
                justify-content: space-between;
            }

            .has-inline-mobile-toggle .mobile-menu-control-wrapper {
                display: flex;
                flex-wrap: wrap;
            }

            .has-inline-mobile-toggle .inside-header {
                flex-direction: row;
                text-align: left;
                flex-wrap: wrap;
            }

            .has-inline-mobile-toggle .header-widget,
            .has-inline-mobile-toggle #site-navigation {
                flex-basis: 100%;
            }

            .nav-float-left .has-inline-mobile-toggle #site-navigation {
                order: 10;
            }
        }

        .elementor-template-full-width .site-content {
            display: block;
        }
    </style>
    <link data-minify="1" rel="preload"
        href="/wp-content/cache/min/1/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link rel="preload" href="/wp-content/plugins/elementor/assets/css/frontend.min.css" data-rocket-async="style"
        as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <style id="elementor-frontend-inline-css">
        @font-face {
            font-family: eicons;
            src: url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0);
            src: url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0#iefix) format("embedded-opentype"),
                url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.10.0) format("woff2"),
                url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.10.0) format("woff"),
                url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.10.0) format("truetype"),
                url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.10.0#eicon) format("svg");
            font-weight: 400;
            font-style: normal
        }
    </style>
    <link data-minify="1" rel="preload" href="/wp-content/cache/min/1/wp-content/uploads/elementor/css/post-8.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link rel="preload" href="/wp-content/plugins/elementor-pro/assets/css/frontend.min.css" data-rocket-async="style"
        as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link data-minify="1" rel="preload" href="/wp-content/cache/min/1/wp-content/uploads/elementor/css/global.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link data-minify="1" rel="preload" href="/wp-content/cache/min/1/wp-content/uploads/elementor/css/post-11.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <style id="rocket-lazyload-inline-css">
        .rll-youtube-player {
            position: relative;
            padding-bottom: 56.23%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
        }

        .rll-youtube-player iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 100;
            background: 0 0
        }

        .rll-youtube-player img {
            bottom: 0;
            display: block;
            left: 0;
            margin: auto;
            max-width: 100%;
            width: 100%;
            position: absolute;
            right: 0;
            top: 0;
            border: none;
            height: auto;
            cursor: pointer;
            -webkit-transition: .4s all;
            -moz-transition: .4s all;
            transition: .4s all
        }

        .rll-youtube-player img:hover {
            -webkit-filter: brightness(75%)
        }

        .rll-youtube-player .play {
            height: 72px;
            width: 72px;
            left: 50%;
            top: 50%;
            margin-left: -36px;
            margin-top: -36px;
            position: absolute;
            background: url(https://web.archive.org/web/20220526073941im_/http://www.israelpolitik.org/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat;
            cursor: pointer
        }

        .wp-has-aspect-ratio .rll-youtube-player {
            position: absolute;
            padding-bottom: 0;
            width: 100%;
            height: 100%;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0
        }
    </style>
    <link rel="preload"
        href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CSarala%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRubik%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7COswald%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRed+Hat+Text%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&amp;display=swap&amp;ver=6.0"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link rel="preload" href="/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link data-minify="1" rel="preload"
        href="/wp-content/cache/min/1/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link data-minify="1" rel="preload"
        href="/wp-content/cache/min/1/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <link rel="https://api.w.org/" href="https://israelpolitik.org/wp-json/" />
    <link rel="alternate" type="application/json" href="https://israelpolitik.org/wp-json/wp/v2/pages/11" />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://israelpolitik.org/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml"
        href="https://israelpolitik.org/wp-includes/wlwmanifest.xml" />
    <meta name="generator" content="WordPress 6.0" />
    <link rel="shortlink" href="https://israelpolitik.org/" />
    <script type="rocketlazyloadscript">
        document.documentElement.className = document.documentElement.className.replace( 'no-js', 'js' );
		</script>
    <style>
        .no-js img.lazyload {
            display: none;
        }

        figure.wp-block-image img.lazyloading {
            min-width: 150px;
        }

        .lazyload,
        .lazyloading {
            opacity: 0;
        }

        .lazyloaded {
            opacity: 1;
            transition: opacity 400ms;
            transition-delay: 0ms;
        }
    </style>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
        .recentcomments a {
            display: inline !important;
            padding: 0 !important;
            margin: 0 !important;
        }
    </style>
    <link rel="icon" href="/wp-content/uploads/2021/07/cropped-IsraelPolitik-Logo-32x32.png" sizes="32x32" />
    <link rel="icon" href="/wp-content/uploads/2021/07/cropped-IsraelPolitik-Logo-192x192.png" sizes="192x192" />
    <link rel="apple-touch-icon" href="/wp-content/uploads/2021/07/cropped-IsraelPolitik-Logo-180x180.png" />
    <meta name="msapplication-TileImage"
        content="https://israelpolitik.org/wp-content/uploads/2021/07/cropped-IsraelPolitik-Logo-270x270.png" />
    <noscript>
        <style id="rocket-lazyload-nojs-css">
            .rll-youtube-player,
            [data-lazy-src] {
                display: none !important;
            }
        </style>
    </noscript>
    <script type="rocketlazyloadscript">
        /*! loadCSS rel=preload polyfill. [c]2017 Filament Group, Inc. MIT License */
(function(w){"use strict";if(!w.loadCSS){w.loadCSS=function(){}}
var rp=loadCSS.relpreload={};rp.support=(function(){var ret;try{ret=w.document.createElement("link").relList.supports("preload")}catch(e){ret=!1}
return function(){return ret}})();rp.bindMediaToggle=function(link){var finalMedia=link.media||"all";function enableStylesheet(){link.media=finalMedia}
if(link.addEventListener){link.addEventListener("load",enableStylesheet)}else if(link.attachEvent){link.attachEvent("onload",enableStylesheet)}
setTimeout(function(){link.rel="stylesheet";link.media="only x"});setTimeout(enableStylesheet,3000)};rp.poly=function(){if(rp.support()){return}
var links=w.document.getElementsByTagName("link");for(var i=0;i<links.length;i++){var link=links[i];if(link.rel==="preload"&&link.getAttribute("as")==="style"&&!link.getAttribute("data-loadcss")){link.setAttribute("data-loadcss",!0);rp.bindMediaToggle(link)}}};if(!rp.support()){rp.poly();var run=w.setInterval(rp.poly,500);if(w.addEventListener){w.addEventListener("load",function(){rp.poly();w.clearInterval(run)})}else if(w.attachEvent){w.attachEvent("onload",function(){rp.poly();w.clearInterval(run)})}}
if(typeof exports!=="undefined"){exports.loadCSS=loadCSS}
else{w.loadCSS=loadCSS}}(typeof global!=="undefined"?global:this))
</script>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
</head>

<body
    class="home page-template page-template-elementor_canvas page page-id-11 wp-embed-responsive right-sidebar nav-float-right separate-containers header-aligned-left dropdown-hover elementor-default elementor-template-canvas elementor-kit-8 elementor-page elementor-page-11">
    <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-dark-grayscale">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0 0.49803921568627" />
                    <fefuncg type="table" tablevalues="0 0.49803921568627" />
                    <fefuncb type="table" tablevalues="0 0.49803921568627" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-grayscale">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0 1" />
                    <fefuncg type="table" tablevalues="0 1" />
                    <fefuncb type="table" tablevalues="0 1" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-purple-yellow">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0.54901960784314 0.98823529411765" />
                    <fefuncg type="table" tablevalues="0 1" />
                    <fefuncb type="table" tablevalues="0.71764705882353 0.25490196078431" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-blue-red">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0 1" />
                    <fefuncg type="table" tablevalues="0 0.27843137254902" />
                    <fefuncb type="table" tablevalues="0.5921568627451 0.27843137254902" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-midnight">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0 0" />
                    <fefuncg type="table" tablevalues="0 0.64705882352941" />
                    <fefuncb type="table" tablevalues="0 1" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-magenta-yellow">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0.78039215686275 1" />
                    <fefuncg type="table" tablevalues="0 0.94901960784314" />
                    <fefuncb type="table" tablevalues="0.35294117647059 0.47058823529412" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-purple-green">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0.65098039215686 0.40392156862745" />
                    <fefuncg type="table" tablevalues="0 1" />
                    <fefuncb type="table" tablevalues="0.44705882352941 0.4" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none"
        style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;">
        <defs>
            <filter id="wp-duotone-blue-orange">
                <fecolormatrix color-interpolation-filters="sRGB" type="matrix"
                    values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 " />
                <fecomponenttransfer color-interpolation-filters="sRGB">
                    <fefuncr type="table" tablevalues="0.098039215686275 1" />
                    <fefuncg type="table" tablevalues="0 0.66274509803922" />
                    <fefuncb type="table" tablevalues="0.84705882352941 0.41960784313725" />
                    <fefunca type="table" tablevalues="1 1" />
                </fecomponenttransfer>
                <fecomposite in2="SourceGraphic" operator="in" />
            </filter>
        </defs>
    </svg>
    <div data-elementor-type="wp-page" data-elementor-id="11" class="elementor elementor-11"
        data-elementor-settings="[]">
        <div class="elementor-section-wrap">
            <header
                class="elementor-section elementor-top-section elementor-element elementor-element-2dd89c46 elementor-section-full_width elementor-section-height-min-height elementor-section-items-top elementor-section-height-default"
                data-id="2dd89c46" data-element_type="section"
                data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
                <div class="elementor-background-overlay"></div>
                <div class="elementor-container elementor-column-gap-no">
                    <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2616db88"
                        data-id="2616db88" data-element_type="column">
                        <div class="elementor-widget-wrap elementor-element-populated">
                            <section
                                class="elementor-section elementor-inner-section elementor-element elementor-element-61d95c1 elementor-section-full_width elementor-section-height-default elementor-section-height-default"
                                data-id="61d95c1" data-element_type="section">
                                <div class="elementor-container elementor-column-gap-default">
                                    <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-257cb8fb"
                                        data-id="257cb8fb" data-element_type="column">
                                        <div class="elementor-widget-wrap elementor-element-populated">
                                            <div class="elementor-element elementor-element-59cf055f elementor-widget elementor-widget-image"
                                                data-id="59cf055f" data-element_type="widget"
                                                data-widget_type="image.default">
                                                <div class="elementor-widget-container">
                                                    <a href="https://israelpolitik.org/">
                                                        <img width="358" height="256"
                                                            src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20358%20256'%3E%3C/svg%3E"
                                                            title="IsraelPolitik Logo" alt="Sea Freight to NZ"
                                                            data-lazy-src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png" /><noscript><img
                                                                width="358" height="256" title="IsraelPolitik Logo"
                                                                alt="Sea Freight to NZ"
                                                                data-src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png"
                                                                class="lazyload"
                                                                src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img
                                                                    width="358" height="256" title="IsraelPolitik Logo"
                                                                    alt="Sea Freight to NZ"
                                                                    data-src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png"
                                                                    class="lazyload"
                                                                    src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img
                                                                        width="358" height="256"
                                                                        src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png"
                                                                        title="IsraelPolitik Logo"
                                                                        alt="Sea Freight to NZ" /></noscript></noscript></noscript>
                                                    </a>
                                                </div>
                                            </div>
                                            <div class="elementor-element elementor-element-dd0b3df elementor-widget elementor-widget-heading"
                                                data-id="dd0b3df" data-element_type="widget"
                                                data-widget_type="heading.default">
                                                <div class="elementor-widget-container">
                                                    <h2 class="elementor-heading-title elementor-size-default">
                                                        International Sea Freight Services</h2>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3cbc7e83"
                                        data-id="3cbc7e83" data-element_type="column">
                                        <div class="elementor-widget-wrap elementor-element-populated">
                                            <div class="elementor-element elementor-element-69609ce7 elementor-nav-menu__align-center elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu"
                                                data-id="69609ce7" data-element_type="widget"
                                                data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;fas fa-caret-down&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}"
                                                data-widget_type="nav-menu.default">
                                                <div class="elementor-widget-container">
                                                    <nav migration_allowed="1" migrated="0" role="navigation"
                                                        class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none">
                                                        <ul id="menu-1-69609ce7" class="elementor-nav-menu">
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-11 current_page_item menu-item-339">
                                                                <a href="https://israelpolitik.org/"
                                                                    aria-current="page"
                                                                    class="elementor-item elementor-item-active">Home</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-274">
                                                                <a href="https://israelpolitik.org/contact/"
                                                                    class="elementor-item">Contact</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-275">
                                                                <a href="https://israelpolitik.org/about/"
                                                                    class="elementor-item">About</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-277">
                                                                <a href="https://israelpolitik.org/privacy-policy/"
                                                                    class="elementor-item">Privacy Policy</a>
                                                            </li>
                                                        </ul>
                                                    </nav>
                                                    <div class="elementor-menu-toggle" role="button" tabindex="0"
                                                        aria-label="Menu Toggle" aria-expanded="false">
                                                        <i class="eicon-menu-bar" aria-hidden="true"
                                                            role="presentation"></i>
                                                        <span class="elementor-screen-only">Menu</span>
                                                    </div>
                                                    <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container"
                                                        role="navigation" aria-hidden="true">
                                                        <ul id="menu-2-69609ce7" class="elementor-nav-menu">
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-11 current_page_item menu-item-339">
                                                                <a href="https://israelpolitik.org/"
                                                                    aria-current="page"
                                                                    class="elementor-item elementor-item-active"
                                                                    tabindex="-1">Home</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-274">
                                                                <a href="https://israelpolitik.org/contact/"
                                                                    class="elementor-item" tabindex="-1">Contact</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-275">
                                                                <a href="https://israelpolitik.org/about/"
                                                                    class="elementor-item" tabindex="-1">About</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-277">
                                                                <a href="https://israelpolitik.org/privacy-policy/"
                                                                    class="elementor-item" tabindex="-1">Privacy
                                                                    Policy</a>
                                                            </li>
                                                        </ul>
                                                    </nav>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-354c33ad"
                                        data-id="354c33ad" data-element_type="column">
                                        <div class="elementor-widget-wrap elementor-element-populated">
                                            <div class="elementor-element elementor-element-1a45f81 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons"
                                                data-id="1a45f81" data-element_type="widget"
                                                data-widget_type="social-icons.default">
                                                <div class="elementor-widget-container">
                                                    <div class="elementor-social-icons-wrapper elementor-grid">
                                                        <span class="elementor-grid-item">
                                                            <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-f683bfe"
                                                                target="_blank">
                                                                <span class="elementor-screen-only">Facebook</span>
                                                                <i class="fab fa-facebook"></i> </a>
                                                        </span>
                                                        <span class="elementor-grid-item">
                                                            <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-90917a6"
                                                                target="_blank">
                                                                <span class="elementor-screen-only">Twitter</span>
                                                                <i class="fab fa-twitter"></i> </a>
                                                        </span>
                                                        <span class="elementor-grid-item">
                                                            <a class="elementor-icon elementor-social-icon elementor-social-icon-envelope elementor-repeater-item-a3a75f8"
                                                                target="_blank">
                                                                <span class="elementor-screen-only">Envelope</span>
                                                                <i class="fas fa-envelope"></i> </a>
                                                        </span>
                                                        <span class="elementor-grid-item">
                                                            <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-3357304"
                                                                target="_blank">
                                                                <span class="elementor-screen-only">Linkedin</span>
                                                                <i class="fab fa-linkedin"></i> </a>
                                                        </span>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </section>
                            <div class="elementor-element elementor-element-3ba7f481 elementor-widget elementor-widget-spacer"
                                data-id="3ba7f481" data-element_type="widget" data-widget_type="spacer.default">
                                <div class="elementor-widget-container">
                                    <div class="elementor-spacer">
                                        <div class="elementor-spacer-inner"></div>
                                    </div>
                                </div>
                            </div>
                            <section
                                class="elementor-section elementor-inner-section elementor-element elementor-element-583ac914 elementor-section-boxed elementor-section-height-default elementor-section-height-default"
                                data-id="583ac914" data-element_type="section">
                                <div class="elementor-container elementor-column-gap-default">
                                    <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-27c2800b"
                                        data-id="27c2800b" data-element_type="column">
                                        <div class="elementor-widget-wrap elementor-element-populated">
                                            <div class="elementor-element elementor-element-3962467a elementor-widget elementor-widget-heading"
                                                data-id="3962467a" data-element_type="widget"
                                                data-widget_type="heading.default">
                                                <div class="elementor-widget-container">
                                                    <h2 class="elementor-heading-title elementor-size-default">
                                                        Worry-Free Worldwide Shipping</h2>
                                                </div>
                                            </div>
                                            <div class="elementor-element elementor-element-15599cb elementor-widget-divider--view-line elementor-widget elementor-widget-divider"
                                                data-id="15599cb" data-element_type="widget"
                                                data-widget_type="divider.default">
                                                <div class="elementor-widget-container">
                                                    <div class="elementor-divider">
                                                        <span class="elementor-divider-separator">
                                                        </span>
                                                    </div>
                                                </div>
                                            </div>
                                            <div class="elementor-element elementor-element-208012c0 elementor-widget elementor-widget-spacer"
                                                data-id="208012c0" data-element_type="widget"
                                                data-widget_type="spacer.default">
                                                <div class="elementor-widget-container">
                                                    <div class="elementor-spacer">
                                                        <div class="elementor-spacer-inner"></div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </section>
                        </div>
                    </div>
                </div>
            </header>
            <section
                class="elementor-section elementor-top-section elementor-element elementor-element-475c552b elementor-section-boxed elementor-section-height-default elementor-section-height-default"
                data-id="475c552b" data-element_type="section"
                data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
                <div class="elementor-container elementor-column-gap-default">
                    <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3299f02"
                        data-id="3299f02" data-element_type="column">
                        <div class="elementor-widget-wrap elementor-element-populated">
                            <div class="elementor-element elementor-element-4546def elementor-widget elementor-widget-spacer"
                                data-id="4546def" data-element_type="widget" data-widget_type="spacer.default">
                                <div class="elementor-widget-container">
                                    <div class="elementor-spacer">
                                        <div class="elementor-spacer-inner"></div>
                                    </div>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-46fae4ab elementor-widget elementor-widget-heading"
                                data-id="46fae4ab" data-element_type="widget" data-widget_type="heading.default">
                                <div class="elementor-widget-container">
                                    <h2 class="elementor-heading-title elementor-size-default">Sea Freight to NZ</h2>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-38ebc0b8 elementor-widget elementor-widget-image"
                                data-id="38ebc0b8" data-element_type="widget" data-widget_type="image.default">
                                <div class="elementor-widget-container">
                                    <img width="1418" height="530"
                                        src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201418%20530'%3E%3C/svg%3E"
                                        title="Sea Freight to NZ" alt="Sea Freight to NZ"
                                        data-lazy-src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-1.jpg" /><noscript><img
                                            width="1418" height="530" title="Sea Freight to NZ" alt="Sea Freight to NZ"
                                            data-src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-1.jpg"
                                            class="lazyload"
                                            src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img
                                                width="1418" height="530"
                                                src="https://web.archive.org/web/20220526073941im_/http://www.israelpolitik.org/wp-content/uploads/2021/07/Sea-Freight-to-NZ-1.jpg"
                                                title="Sea Freight to NZ"
                                                alt="Sea Freight to NZ" /></noscript></noscript>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-11434c88 elementor-widget elementor-widget-text-editor"
                                data-id="11434c88" data-element_type="widget" data-widget_type="text-editor.default">
                                <div class="elementor-widget-container">
                                    <p>Sea freight is undoubtedly the most cost-effective shipping method from the
                                        United States to New Zealand, although it is also slower than air freight. Our
                                        shipping service can deliver your product within 15-30 days of receiving it at
                                        our warehouse. Therefore, we feel it will be well worth the wait to reduce the
                                        delivery price by 88 percent!</p>
                                    <p>For more information about <a
                                            href="https://web.archive.org/web/20220526073941/https://www.seafreightservices.com/sea-freight-services-to-new-zealand/">Sea
                                            Freight to NZ</a>.</p>
                                    <p>Sea freight shipping has historically been a critical component of the global
                                        economy, and that fact continues to be true today. There are still a number of
                                        countries that rely heavily on sea-based freight forwarding to sustain their
                                        economies. The phrase &#8220;sea freight&#8221; refers to the movement of cargo
                                        in containers to and from other seaports or terminals worldwide. Approximately
                                        four days after departure, an Express Bill of Lading with a unique number is
                                        provided. This will be given to you through email.</p>
                                    <p>People continue to rely on this mode of shipping as their major mode of travel.
                                        Even with the expansion of land routes, land transport remains inefficient in
                                        comparison to maritime travel. Roads require regular upkeep, and it costs a lot
                                        of money to build new roads. Obviously, driving a cargo truck across the water
                                        is tough. Sea freight rates are often calculated in cubic meters, with one cubic
                                        meter per booking. Terminal costs are also paid upon delivery of the goods to
                                        the final destination.</p>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-ab64c1f elementor-widget elementor-widget-heading"
                                data-id="ab64c1f" data-element_type="widget" data-widget_type="heading.default">
                                <div class="elementor-widget-container">
                                    <h2 class="elementor-heading-title elementor-size-default">The Shipping Industry
                                    </h2>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-304b020 elementor-widget elementor-widget-image"
                                data-id="304b020" data-element_type="widget" data-widget_type="image.default">
                                <div class="elementor-widget-container">
                                    <img width="1496" height="690"
                                        src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201496%20690'%3E%3C/svg%3E"
                                        title="Sea Freight to NZ 2" alt="Sea Freight to NZ"
                                        data-lazy-src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-2.jpg" /><noscript><img
                                            width="1496" height="690" title="Sea Freight to NZ 2"
                                            alt="Sea Freight to NZ"
                                            data-src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-2.jpg"
                                            class="lazyload"
                                            src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img
                                                width="1496" height="690"
                                                src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-2.jpg"
                                                title="Sea Freight to NZ 2"
                                                alt="Sea Freight to NZ" /></noscript></noscript>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-de08a5b elementor-widget elementor-widget-text-editor"
                                data-id="de08a5b" data-element_type="widget" data-widget_type="text-editor.default">
                                <div class="elementor-widget-container">
                                    <p>Another method of transporting your items does not include traveling on land or
                                        using a vessel afloat in the water. Indeed, it originates from what humans have
                                        wished for centuries: the air. However, aviation has come a long way from the
                                        Wright Brothers&#8217; early achievements.</p>
                                    <p>More and more freight forwarders are turning to the sky, equipped with fleets of
                                        aircraft capable of transporting your item anywhere in the globe. However, if
                                        oil prices continue to rise, this type of freight forwarding can be rather
                                        pricey. The cost of airplanes has also increased dramatically as a result of
                                        technological advancements. This is why each airline seat is utilized and why
                                        customers pay a high price to ship their products via air freight.</p>
                                    <p>Deliver all items to the warehouse of the shipping firm for booking and weighing.
                                        A matching invoice will be sent by the shipper. For an extra cost, service
                                        providers will pick up products from your house or business.</p>
                                    <p>It is critical to submitting booking forms two days before the scheduled event.
                                        All reservations are confirmed within one business day. All pickups take place
                                        on weekdays. The driver will phone you before the pickup. After one day, the
                                        firm will provide booking information, an invoice, and payment instructions.
                                        Prior to departure, financial obligations must be paid through credit card or
                                        Internet banking. You may contact the shipper&#8217;s agent for instructions
                                        prior to arrival.</p>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-0ac2a24 elementor-widget elementor-widget-heading"
                                data-id="0ac2a24" data-element_type="widget" data-widget_type="heading.default">
                                <div class="elementor-widget-container">
                                    <h2 class="elementor-heading-title elementor-size-default">A Guide to Freight
                                        Forwarding</h2>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-07a1a70 elementor-widget elementor-widget-image"
                                data-id="07a1a70" data-element_type="widget" data-widget_type="image.default">
                                <div class="elementor-widget-container">
                                    <img width="842" height="423"
                                        src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20842%20423'%3E%3C/svg%3E"
                                        title="Sea Freight to NZ" alt="Sea Freight to NZ"
                                        data-lazy-src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-3.jpg" /><noscript><img
                                            width="842" height="423" title="Sea Freight to NZ" alt="Sea Freight to NZ"
                                            data-src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-3.jpg"
                                            class="lazyload"
                                            src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img
                                                width="842" height="423"
                                                src="/wp-content/uploads/2021/07/Sea-Freight-to-NZ-3.jpg"
                                                title="Sea Freight to NZ"
                                                alt="Sea Freight to NZ" /></noscript></noscript>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-832d7a9 elementor-widget elementor-widget-text-editor"
                                data-id="832d7a9" data-element_type="widget" data-widget_type="text-editor.default">
                                <div class="elementor-widget-container">
                                    <p>Several ship types are used for international sea freight; the distinctions
                                        reflect the diverse needs of importers and exporters, with certain boats
                                        employed to convey various sorts of goods. However, container shipping accounts
                                        for the lion&#8217;s share of international shipments. The advantages of
                                        container shipping include the ease of intermodal transit (containers can be
                                        unloaded and transferred directly to a road or rail vehicle); the ability to
                                        provide door to door service; the speed and efficiency of loading and unloading,
                                        as well as the obvious financial impact; and finally, the security of the goods
                                        while in transit.</p>
                                    <p>Breakbulk refers to non-containerized non-bulk products on pallets, crates,
                                        drums, or sacks. This kind of transport is typically employed for specialized
                                        goods, such as fresh fruit and vegetables, or for delivery to smaller ports
                                        lacking the necessary infrastructure to handle container freight.</p>
                                    <p>Numerous factors will affect the cost of shipping goods by water. There are two
                                        components to this cost: the actual cost of the sea freight charged by the
                                        vessel operator and the charges associated with the processing and clearance of
                                        the cargo at the ports of origin and destination.</p>
                                    <p>You are solely responsible for packing. Assure that the items are appropriately
                                        packaged to minimize needless damage. Seal the containers securely and
                                        thoroughly read all packaging regulations. Pallet use incurs extra charges.
                                        Consignments are not automatically insured. There is always a limit to the
                                        shipping company&#8217;s obligation.</p>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-cca461f elementor-widget elementor-widget-spacer"
                                data-id="cca461f" data-element_type="widget" data-widget_type="spacer.default">
                                <div class="elementor-widget-container">
                                    <div class="elementor-spacer">
                                        <div class="elementor-spacer-inner"></div>
                                    </div>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-650a3008 elementor-widget elementor-widget-heading"
                                data-id="650a3008" data-element_type="widget" data-widget_type="heading.default">
                                <div class="elementor-widget-container">
                                    <h2 class="elementor-heading-title elementor-size-default">Recent Articles</h2>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-8286695 elementor-widget elementor-widget-heading"
                                data-id="8286695" data-element_type="widget" data-widget_type="heading.default">
                                <div class="elementor-widget-container">
                                    <h4 class="elementor-heading-title elementor-size-default"><a
                                            href="https://israelpolitik.org/air-freight-vs-sea-freight/">1.
                                            Air Freight Vs Sea Freight</a></h4>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-0dca1de elementor-widget elementor-widget-heading"
                                data-id="0dca1de" data-element_type="widget" data-widget_type="heading.default">
                                <div class="elementor-widget-container">
                                    <h4 class="elementor-heading-title elementor-size-default"><a
                                            href="https://israelpolitik.org/sea-freight/">2.
                                            All About Sea Freight</a></h4>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </section>
            <section
                class="elementor-section elementor-top-section elementor-element elementor-element-4d224cb5 elementor-section-full_width elementor-section-height-min-height elementor-section-items-top elementor-section-height-default"
                data-id="4d224cb5" data-element_type="section"
                data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
                <div class="elementor-container elementor-column-gap-no">
                    <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-773b06f8"
                        data-id="773b06f8" data-element_type="column">
                        <div class="elementor-widget-wrap elementor-element-populated">
                            <div class="elementor-element elementor-element-36326c3f elementor-widget elementor-widget-heading"
                                data-id="36326c3f" data-element_type="widget" data-widget_type="heading.default">
                                <div class="elementor-widget-container">
                                    <h2 class="elementor-heading-title elementor-size-default">Find The Best<br> Freight
                                        Quote</h2>
                                </div>
                            </div>
                            <div class="elementor-element elementor-element-15202837 elementor-align-right elementor-widget elementor-widget-button"
                                data-id="15202837" data-element_type="widget" data-widget_type="button.default">
                                <div class="elementor-widget-container">
                                    <div class="elementor-button-wrapper">
                                        <a href="#" class="elementor-button-link elementor-button elementor-size-lg"
                                            role="button">
                                            <span class="elementor-button-content-wrapper">
                                                <span class="elementor-button-text">Contact Us</span>
                                            </span>
                                        </a>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </section>
            <section
                class="elementor-section elementor-top-section elementor-element elementor-element-220877c elementor-section-full_width elementor-section-height-default elementor-section-height-default"
                data-id="220877c" data-element_type="section"
                data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
                <div class="elementor-container elementor-column-gap-no">
                    <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1d03bb09"
                        data-id="1d03bb09" data-element_type="column">
                        <div class="elementor-widget-wrap elementor-element-populated">
                            <section
                                class="elementor-section elementor-inner-section elementor-element elementor-element-7cc5013a elementor-section-boxed elementor-section-height-default elementor-section-height-default"
                                data-id="7cc5013a" data-element_type="section">
                                <div class="elementor-container elementor-column-gap-default">
                                    <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-b483092"
                                        data-id="b483092" data-element_type="column">
                                        <div class="elementor-widget-wrap elementor-element-populated">
                                            <div class="elementor-element elementor-element-2490383d elementor-widget elementor-widget-image"
                                                data-id="2490383d" data-element_type="widget"
                                                data-widget_type="image.default">
                                                <div class="elementor-widget-container">
                                                    <img width="358" height="256"
                                                        src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20358%20256'%3E%3C/svg%3E"
                                                        title="IsraelPolitik Logo" alt="Sea Freight to NZ"
                                                        data-lazy-src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png" /><noscript><img
                                                            width="358" height="256" title="IsraelPolitik Logo"
                                                            alt="Sea Freight to NZ"
                                                            data-src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png"
                                                            class="lazyload"
                                                            src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img
                                                                width="358" height="256" title="IsraelPolitik Logo"
                                                                alt="Sea Freight to NZ"
                                                                data-src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png"
                                                                class="lazyload"
                                                                src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img
                                                                    width="358" height="256"
                                                                    src="/wp-content/uploads/2021/07/IsraelPolitik-Logo.png"
                                                                    title="IsraelPolitik Logo"
                                                                    alt="Sea Freight to NZ" /></noscript></noscript></noscript>
                                                </div>
                                            </div>
                                            <div class="elementor-element elementor-element-ee2c557 elementor-widget elementor-widget-heading"
                                                data-id="ee2c557" data-element_type="widget"
                                                data-widget_type="heading.default">
                                                <div class="elementor-widget-container">
                                                    <h2 class="elementor-heading-title elementor-size-default">
                                                        International Sea Freight Services</h2>
                                                </div>
                                            </div>
                                            <div class="elementor-element elementor-element-16a0213d elementor-widget elementor-widget-heading"
                                                data-id="16a0213d" data-element_type="widget"
                                                data-widget_type="heading.default">
                                                <div class="elementor-widget-container">
                                                    <h2 class="elementor-heading-title elementor-size-default">
                                                        Worry-Free | Worldwide Shipping</h2>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-55d640aa"
                                        data-id="55d640aa" data-element_type="column">
                                        <div class="elementor-widget-wrap elementor-element-populated">
                                            <div class="elementor-element elementor-element-399954e8 elementor-widget elementor-widget-heading"
                                                data-id="399954e8" data-element_type="widget"
                                                data-widget_type="heading.default">
                                                <div class="elementor-widget-container">
                                                    <h2 class="elementor-heading-title elementor-size-default">Links
                                                    </h2>
                                                </div>
                                            </div>
                                            <div class="elementor-element elementor-element-4434d51c elementor-nav-menu__align-left elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu"
                                                data-id="4434d51c" data-element_type="widget"
                                                data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;fas fa-caret-down&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}"
                                                data-widget_type="nav-menu.default">
                                                <div class="elementor-widget-container">
                                                    <nav migration_allowed="1" migrated="0" role="navigation"
                                                        class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none">
                                                        <ul id="menu-1-4434d51c" class="elementor-nav-menu sm-vertical">
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-11 current_page_item menu-item-339">
                                                                <a href="https://israelpolitik.org/"
                                                                    aria-current="page"
                                                                    class="elementor-item elementor-item-active">Home</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-274">
                                                                <a href="https://israelpolitik.org/contact/"
                                                                    class="elementor-item">Contact</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-275">
                                                                <a href="https://israelpolitik.org/about/"
                                                                    class="elementor-item">About</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-277">
                                                                <a href="https://israelpolitik.org/privacy-policy/"
                                                                    class="elementor-item">Privacy Policy</a>
                                                            </li>
                                                        </ul>
                                                    </nav>
                                                    <div class="elementor-menu-toggle" role="button" tabindex="0"
                                                        aria-label="Menu Toggle" aria-expanded="false">
                                                        <i class="eicon-menu-bar" aria-hidden="true"
                                                            role="presentation"></i>
                                                        <span class="elementor-screen-only">Menu</span>
                                                    </div>
                                                    <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container"
                                                        role="navigation" aria-hidden="true">
                                                        <ul id="menu-2-4434d51c" class="elementor-nav-menu sm-vertical">
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-11 current_page_item menu-item-339">
                                                                <a href="https://israelpolitik.org/"
                                                                    aria-current="page"
                                                                    class="elementor-item elementor-item-active"
                                                                    tabindex="-1">Home</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-274">
                                                                <a href="https://israelpolitik.org/contact/"
                                                                    class="elementor-item" tabindex="-1">Contact</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-275">
                                                                <a href="https://israelpolitik.org/about/"
                                                                    class="elementor-item" tabindex="-1">About</a>
                                                            </li>
                                                            <li
                                                                class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-277">
                                                                <a href="https://israelpolitik.org/privacy-policy/"
                                                                    class="elementor-item" tabindex="-1">Privacy
                                                                    Policy</a>
                                                            </li>
                                                        </ul>
                                                    </nav>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </section>
                            <section
                                class="elementor-section elementor-inner-section elementor-element elementor-element-3a83afc4 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default"
                                data-id="3a83afc4" data-element_type="section">
                                <div class="elementor-container elementor-column-gap-default">
                                    <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-66df5ac9"
                                        data-id="66df5ac9" data-element_type="column">
                                        <div class="elementor-widget-wrap elementor-element-populated">
                                            <div class="elementor-element elementor-element-392398fc elementor-widget elementor-widget-heading"
                                                data-id="392398fc" data-element_type="widget"
                                                data-widget_type="heading.default">
                                                <div class="elementor-widget-container">
                                                    <h2 class="elementor-heading-title elementor-size-default">Copyright
                                                        © 2026 israelpolitik.org. All Rights Reserved</h2>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </section>
                        </div>
                    </div>
                </div>
            </section>
        </div>
    </div>
    <link rel="preload" href="/wp-content/plugins/elementor/assets/lib/animations/animations.min.css"
        data-rocket-async="style" as="style" onload="this.onload=null;this.rel='stylesheet'" media="all" />
    <script type="rocketlazyloadscript" id="rocket-browser-checker-js-after">
        "use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
    <script id="rocket-preload-links-js-extra">
        var RocketPreloadLinksConfig = {
            "excludeUris": "\/(.+\/)?feed\/?.+\/?|\/(?:.+\/)?embed\/|\/(index\\.php\/)?wp\\-json(\/.*|$)|\/wp-admin\/|\/logout\/|\/wp-login.php",
            "usesTrailingSlash": "1",
            "imageExt": "jpg|jpeg|gif|png|tiff|bmp|webp|avif",
            "fileExt": "jpg|jpeg|gif|png|tiff|bmp|webp|avif|php|pdf|html|htm",
            "siteUrl": "https:\/\/www.israelpolitik.org",
            "onHoverDelay": "100",
            "rateThrottle": "3"
        };
    </script>
    <script type="rocketlazyloadscript" id="rocket-preload-links-js-after">
        (function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/wp-smush-pro/app/assets/js/smush-lazy-load.min.js"
        id="smush-lazy-load-js" defer></script>
    <!--[if lte IE 11]>
<script src='http://www.israelpolitik.org/wp-content/themes/generatepress/assets/js/classList.min.js?ver=3.0.4' id='generate-classlist-js'></script>
<![endif]-->
    <script id="generate-main-js-extra">
        var generatepressMenu = {
            "toggleOpenedSubMenus": "1",
            "openSubMenuLabel": "Open Sub-Menu",
            "closeSubMenuLabel": "Close Sub-Menu"
        };
    </script>
    <script type="rocketlazyloadscript" src="/wp-content/themes/generatepress/assets/js/main.min.js"
        id="generate-main-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-includes/js/jquery/jquery.min.js" id="jquery-core-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"
        defer></script>
    <script type="rocketlazyloadscript"
        src="/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js" id="smartmenus-js"
        defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js"
        id="elementor-pro-webpack-runtime-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js"
        id="elementor-webpack-runtime-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/js/frontend-modules.min.js"
        id="elementor-frontend-modules-js" defer></script>
    <script type="rocketlazyloadscript" id="elementor-pro-frontend-js-before">
        var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.israelpolitik.org\/wp-admin\/admin-ajax.php","nonce":"4cfe1f3363","urls":{"assets":"https:\/\/http:\/\/www.israelpolitik.org\/wp-content\/plugins\/elementor-pro\/assets\/"},"i18n":{"toc_no_headings_found":"No headings were found on this page."},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"google":{"title":"Google+","has_counter":true},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/http:\/\/www.israelpolitik.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
</script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor-pro/assets/js/frontend.min.js"
        id="elementor-pro-frontend-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js"
        id="elementor-waypoints-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-includes/js/jquery/ui/core.min.js" id="jquery-ui-core-js"
        defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js"
        id="swiper-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js"
        id="share-link-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js"
        id="elementor-dialog-js" defer></script>
    <script type="rocketlazyloadscript" id="elementor-frontend-js-before">
        var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile","value":767,"direction":"max","is_enabled":true,"default_value":767},"mobile_extra":{"label":"Mobile Extra","value":880,"direction":"max","is_enabled":false,"default_value":880},"tablet":{"label":"Tablet","value":1024,"direction":"max","is_enabled":true,"default_value":1024},"tablet_extra":{"label":"Tablet Extra","value":1365,"direction":"max","is_enabled":false,"default_value":1365},"laptop":{"label":"Laptop","value":1620,"direction":"max","is_enabled":false,"default_value":1620},"widescreen":{"label":"Widescreen","value":2400,"direction":"min","is_enabled":false,"default_value":2400}}},"version":"3.3.0","is_static":false,"experimentalFeatures":{"e_dom_optimization":true,"a11y_improvements":true,"e_import_export":true,"landing-pages":true,"elements-color-picker":true,"admin-top-bar":true,"form-submissions":true,"video-playlist":true},"urls":{"assets":"https:\/\/http:\/\/www.israelpolitik.org\/wp-content\/plugins\/elementor\/assets\/"},"settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":11,"title":"","excerpt":"","featuredImage":false}};
</script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/js/frontend.min.js"
        id="elementor-frontend-js" defer></script>
    <script type="rocketlazyloadscript"
        src="/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js"
        id="pro-preloaded-elements-handlers-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js"
        id="preloaded-modules-js" defer></script>
    <script type="rocketlazyloadscript" src="/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js"
        id="e-sticky-js" defer></script>
    <script>
        window.lazyLoadOptions = {
            elements_selector: "img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",
            data_src: "lazy-src",
            data_srcset: "lazy-srcset",
            data_sizes: "lazy-sizes",
            class_loading: "lazyloading",
            class_loaded: "lazyloaded",
            threshold: 300,
            callback_loaded: function (element) {
                if (element.tagName === "IFRAME" && element.dataset.rocketLazyload == "fitvidscompatible") {
                    if (element.classList.contains("lazyloaded")) {
                        if (typeof window.jQuery != "undefined") {
                            if (jQuery.fn.fitVids) {
                                jQuery(element).parent().fitVids()
                            }
                        }
                    }
                }
            }
        };
        window.addEventListener('LazyLoad::Initialized', function (e) {
            var lazyLoadInstance = e.detail.instance;
            if (window.MutationObserver) {
                var observer = new MutationObserver(function (mutations) {
                    var image_count = 0;
                    var iframe_count = 0;
                    var rocketlazy_count = 0;
                    mutations.forEach(function (mutation) {
                        for (i = 0; i < mutation.addedNodes.length; i++) {
                            if (typeof mutation.addedNodes[i].getElementsByTagName !== 'function') {
                                continue
                            }
                            if (typeof mutation.addedNodes[i].getElementsByClassName !== 'function') {
                                continue
                            }
                            images = mutation.addedNodes[i].getElementsByTagName('img');
                            is_image = mutation.addedNodes[i].tagName == "IMG";
                            iframes = mutation.addedNodes[i].getElementsByTagName('iframe');
                            is_iframe = mutation.addedNodes[i].tagName == "IFRAME";
                            rocket_lazy = mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');
                            image_count += images.length;
                            iframe_count += iframes.length;
                            rocketlazy_count += rocket_lazy.length;
                            if (is_image) {
                                image_count += 1
                            }
                            if (is_iframe) {
                                iframe_count += 1
                            }
                        }
                    });
                    if (image_count > 0 || iframe_count > 0 || rocketlazy_count > 0) {
                        lazyLoadInstance.update()
                    }
                });
                var b = document.getElementsByTagName("body")[0];
                var config = {
                    childList: !0,
                    subtree: !0
                };
                observer.observe(b, config)
            }
        }, !1)
    </script>
    <script data-no-minify="1" async
        src="/wp-content/plugins/wp-rocket/assets/js/lazyload/16.1/lazyload.min.js"></script>
    <script>
        function lazyLoadThumb(e) {
            var t = '<img loading="lazy" data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img  alt="" width="480" height="360" data-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript></noscript>',
                a = '<div class="play"></div>';
            return t.replace("ID", e) + a
        }

        function lazyLoadYoutubeIframe() {
            var e = document.createElement("iframe"),
                t = "ID?autoplay=1";
            t += 0 === this.dataset.query.length ? '' : '&' + this.dataset.query;
            e.setAttribute("src", t.replace("ID", this.dataset.src)), e.setAttribute("frameborder", "0"), e.setAttribute("allowfullscreen", "1"), e.setAttribute("allow", "accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"), this.parentNode.replaceChild(e, this)
        }
        document.addEventListener("DOMContentLoaded", function () {
            var e, t, a = document.getElementsByClassName("rll-youtube-player");
            for (t = 0; t < a.length; t++) e = document.createElement("div"), e.setAttribute("data-id", a[t].dataset.id), e.setAttribute("data-query", a[t].dataset.query), e.setAttribute("data-src", a[t].dataset.src), e.innerHTML = lazyLoadThumb(a[t].dataset.id), e.onclick = lazyLoadYoutubeIframe, a[t].appendChild(e)
        });
    </script>
    <script
        type="rocketlazyloadscript">"use strict";var wprRemoveCPCSS=function wprRemoveCPCSS(){var elem;document.querySelector('link[data-rocket-async="style"][rel="preload"]')?setTimeout(wprRemoveCPCSS,200):(elem=document.getElementById("rocket-critical-css"))&&"remove"in elem&&elem.remove()};window.addEventListener?window.addEventListener("load",wprRemoveCPCSS):window.attachEvent&&window.attachEvent("onload",wprRemoveCPCSS);</script>
    <noscript>
        <link rel="stylesheet" id="wp-block-library-css"
            href="https://web.archive.org/web/20220526073941cs_/http://www.israelpolitik.org/wp-includes/css/dist/block-library/style.min.css?ver=6.0"
            media="all" />
        <link rel="stylesheet" id="generate-style-css" href="/wp-content/themes/generatepress/assets/css/main.min.css"
            media="all" />
        <link data-minify="1" rel="stylesheet" id="elementor-icons-css"
            href="/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css" media="all" />
        <link rel="stylesheet" id="elementor-frontend-css"
            href="/wp-content/plugins/elementor/assets/css/frontend.min.css" media="all" />
        <link data-minify="1" rel="stylesheet" id="elementor-post-8-css"
            href="/wp-content/cache/min/1/wp-content/uploads/elementor/css/post-8.css" media="all" />
        <link rel="stylesheet" id="elementor-pro-css"
            href="/wp-content/plugins/elementor-pro/assets/css/frontend.min.css" media="all" />
        <link data-minify="1" rel="stylesheet" id="elementor-global-css"
            href="/wp-content/cache/min/1/wp-content/uploads/elementor/css/global.css" media="all" />
        <link data-minify="1" rel="stylesheet" id="elementor-post-11-css"
            href="/wp-content/cache/min/1/wp-content/uploads/elementor/css/post-11.css" media="all" />
        <link rel="stylesheet" id="google-fonts-1-css"
            href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CSarala%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRubik%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7COswald%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRed+Hat+Text%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&amp;display=swap&amp;ver=6.0"
            media="all" />
        <link rel="stylesheet" id="elementor-icons-shared-0-css"
            href="/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css" media="all" />
        <link data-minify="1" rel="stylesheet" id="elementor-icons-fa-solid-css"
            href="/wp-content/cache/min/1/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css"
            media="all" />
        <link data-minify="1" rel="stylesheet" id="elementor-icons-fa-brands-css"
            href="/wp-content/cache/min/1/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css"
            media="all" />
        <link rel="stylesheet" id="e-animations-css"
            href="/wp-content/plugins/elementor/assets/lib/animations/animations.min.css" media="all" />
    </noscript>
</body>

</html>