/*
 * header-custom.css
 * Static navy header modeled on cevalogistics.com/en:
 *  - single solid navy bar (no transparency, no scroll-swap)
 *  - top utility row: language (text) + search (text)
 *  - main row: logo, inline links, icon-labelled utilities, red Menu button
 *  - Menu button opens a full-width overlay with every nav link, large type
 * Plus a single-slide hero that supports an optional background video
 * with a CEVA-style pause/play control.
 * Load this AFTER vendor.min.css and style.css.
 */

/* ---------- Tokens ---------- */
/* Navy:  #0c1f44 (header) / #081733 (overlay, hero base)
   Red:   #e11d07 (existing site accent - doubles as the CEVA-style red)
   Red hover: #b81606
   White text: #ffffff / rgba(255,255,255,.7-.85) for secondary */

/* ---------- Header shell (static - not transparent, not fixed) ---------- */

.site-header {
    background-color: #0c1f44;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: box-shadow .3s ease-in-out;
    -o-transition: box-shadow .3s ease-in-out;
    transition: box-shadow .3s ease-in-out;
}

/* A transform on any ancestor (e.g. the theme's parallax wrapper) creates a new
   containing block, which breaks position:fixed on the header below it and can
   show as a blank gap above the header. Force it off so the header always
   anchors to the real viewport. */
#wrapperParallax {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

.site-header.is-scrolled {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

/* ---------- Utility row: language + search ---------- */

.site-header-utility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 0 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header-utility > * + * {
    margin-left: 40px;
}

.lang-text-switch {
    position: relative;
    display: inline-block;
}

.lang-text-trigger {
    background: none;
    border: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(255, 255, 255, .75);
    font-family: roboto, sans-serif;
    font-size: 13px;
    cursor: pointer;
}

.lang-text-trigger i {
    margin-left: 6px;
    font-size: 10px;
}

.lang-text-switch:hover .lang-text-trigger {
    color: #fff;
}

/* The real Google Translate widget is stretched invisibly over the text
   trigger, so clicks/keyboard land on the native control while the
   visible UI stays fully custom. Google renders its own gadget (icon +
   coloured "English"/"Translate" text) inside this box by default, so we
   force the whole thing transparent with opacity rather than only hiding
   individual pieces - that keeps it clickable while guaranteeing nothing
   Google draws can ever show through the custom label. */
.lang-text-widget {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

#google_translate_element {
    width: 100%;
    height: 100%;
    opacity: 0;
}

#google_translate_element,
#google_translate_element .goog-te-gadget,
#google_translate_element .goog-te-gadget-simple,
#google_translate_element .goog-te-gadget-icon,
#google_translate_element .goog-te-menu-value,
#google_translate_element .goog-te-menu-value span {
    background: transparent !important;
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

#google_translate_element .goog-te-gadget {
    width: 100%;
    height: 100%;
    font-size: 0; /* belt-and-braces: also collapse the "Powered by Google" text */
}

#google_translate_element .goog-te-gadget-simple {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: pointer;
}

#google_translate_element .goog-te-gadget-simple img {
    display: none; /* Google's flag/arrow icon */
}

#google_translate_element .goog-te-gadget .goog-te-combo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border: 0;
}

/* Google injects a banner iframe and shifts <body> down on load - suppress that */
body {
    top: 0 !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.site-header-search .module-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
    cursor: pointer;
}

.site-header-search .search-icon i {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    padding: 0;
}

.site-header-search .search-icon .title {
    display: inline-block !important; /* theme hides this title by default on desktop */
    margin-left: 7px;
    color: rgba(255, 255, 255, .75);
    font-family: roboto, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
}

.site-header-search:hover .search-icon i,
.site-header-search:hover .search-icon .title {
    color: #fff;
}

/* ---------- Main row: logo, inline nav, icon utilities, Menu button ---------- */

.site-header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0;
}

.site-logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.site-logo img {
    width: 130px;
    max-width: 100%;
    height: auto;
}

.site-nav-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-nav-inline a {
    position: relative;
    display: inline-block;
    margin-right: 34px;
    padding: 6px 0;
    color: #fff;
    font-family: roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.site-nav-inline a:last-child {
    margin-right: 0;
}

.site-nav-inline a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e11d07;
    -webkit-transition: width .25s ease-in-out;
    -o-transition: width .25s ease-in-out;
    transition: width .25s ease-in-out;
}

.site-nav-inline a:hover {
    color: #fff;
}

.site-nav-inline a:hover::after {
    width: 100%;
}

.site-header-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.action-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 26px;
    color: rgba(255, 255, 255, .85);
    text-align: center;
    font-family: roboto, sans-serif;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.action-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 13px;
    -webkit-transition: border-color .2s ease-in-out;
    -o-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out;
}

.action-label {
    font-size: 11px;
    letter-spacing: .02em;
    line-height: 1.2;
    white-space: nowrap;
}

.action-item:hover {
    color: #fff;
}

.action-item:hover .action-icon {
    border-color: #fff;
}

.menu-toggle-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    background-color: #e11d07;
    color: #fff;
    border: none;
    font-family: roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    -webkit-transition: background-color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
}

.menu-toggle-btn span:first-child {
    margin-right: 14px;
}

.menu-toggle-bars i {
    font-size: 16px;
}

.menu-toggle-btn:hover,
.menu-toggle-btn[aria-expanded="true"] {
    background-color: #b81606;
}

/* ---------- Full menu overlay (CEVA-style: white drawer sliding in from the right) ---------- */

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 23, 51, .6);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-in-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-in-out, visibility 0s linear .3s;
    transition: opacity .3s ease-in-out, visibility 0s linear .3s;
}

.menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

body.menu-open {
    overflow: hidden;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 620px;
    height: 100%;
    background-color: #fff;
    z-index: 1100;
    overflow-y: auto;
    -webkit-box-shadow: -10px 0 34px rgba(0, 0, 0, .28);
    box-shadow: -10px 0 34px rgba(0, 0, 0, .28);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
}

.menu-overlay.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.menu-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 84px;
    background-color: #e11d07;
    border: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    font-family: roboto, sans-serif;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.menu-close-btn i {
    font-size: 20px;
    margin-bottom: 6px;
}

.menu-close-btn span {
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.menu-close-btn:hover {
    background-color: #b81606;
}

.menu-overlay-inner {
    padding: 108px 44px 48px;
}

.menu-overlay-lang {
    margin-bottom: 26px;
}

.menu-overlay-lang-trigger {
    background: none;
    border: none;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0c1f44;
    font-family: rubik, sans-serif;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
}

.menu-overlay-lang-trigger i {
    margin-left: 10px;
    font-size: 16px;
    color: #e11d07;
}

.menu-overlay-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #d8dce3;
    margin-bottom: 34px;
}

.menu-overlay-search input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 18px;
    font-family: roboto, sans-serif;
    font-size: 15px;
    color: #0c1f44;
}

.menu-overlay-search input::-webkit-input-placeholder {
    color: #8992a3;
}

.menu-overlay-search input::-moz-placeholder {
    color: #8992a3;
}

.menu-overlay-search input:-ms-input-placeholder {
    color: #8992a3;
}

.menu-overlay-search input::placeholder {
    color: #8992a3;
}

.menu-overlay-search button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 54px;
    border: none;
    background-color: #e11d07;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.menu-overlay-search button:hover {
    background-color: #b81606;
}

.menu-overlay-links {
    list-style: none;
    margin: 0 0 6px;
    padding: 0;
}

.menu-overlay-links li {
    border-bottom: 1px solid #e4e7ec;
}

.menu-overlay-links li:last-child {
    border-bottom: 0;
}

.menu-overlay-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 19px 0;
    color: #0c1f44;
    font-family: rubik, sans-serif;
    font-size: 20px;
    font-weight: 500;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.menu-overlay-links a i {
    font-size: 14px;
    color: #0c1f44;
    opacity: .55;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.menu-overlay-links a:hover {
    color: #e11d07;
}

.menu-overlay-links a:hover i {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}

.menu-overlay-links a.menu-overlay-explore {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 2px 0 18px;
    padding: 11px 20px;
    border: 1px solid #0c1f44;
    color: #0c1f44;
    font-family: roboto, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    -webkit-transition: background-color .2s ease-in-out, color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out, color .2s ease-in-out;
    transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.menu-overlay-links a.menu-overlay-explore i {
    margin-right: 9px;
    font-size: 14px;
}

.menu-overlay-links a.menu-overlay-explore:hover {
    background-color: #0c1f44;
    color: #fff;
}

.menu-overlay-bottom {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid #e4e7ec;
}

.menu-overlay-bottom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.menu-overlay-bottom-row + .menu-overlay-bottom-row {
    margin-top: 16px;
}

.menu-overlay-bottom a {
    color: #0c1f44;
    font-family: roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.menu-overlay-bottom-row a + a {
    margin-left: 60px;
}

.menu-overlay-bottom a:hover {
    color: #e11d07;
}

/* ---------- Hero (single slide, optional background video) ---------- */

.hero-section {
    position: relative;
    min-height: 480px;
    margin-bottom: 110px;
    overflow: visible;
    background-color: #081733;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(8, 23, 51, .82)), color-stop(55%, rgba(8, 23, 51, .55)), to(rgba(8, 23, 51, .25)));
    background: -webkit-linear-gradient(left, rgba(8, 23, 51, .82) 0%, rgba(8, 23, 51, .55) 55%, rgba(8, 23, 51, .25) 100%);
    background: -o-linear-gradient(left, rgba(8, 23, 51, .82) 0%, rgba(8, 23, 51, .55) 55%, rgba(8, 23, 51, .25) 100%);
    background: linear-gradient(90deg, rgba(8, 23, 51, .82) 0%, rgba(8, 23, 51, .55) 55%, rgba(8, 23, 51, .25) 100%);
}

.hero-content-wrap {
    position: relative;
    min-height: 480px;
    z-index: 1;
}

.hero-content {
    padding-top: 40px;
}

.hero-eyebrow {
    color: #e11d07;
    font-family: roboto, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 13px;
    margin-bottom: 14px;
}

.hero-headline {
    color: #fff;
    font-family: rubik, sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.18;
    margin-bottom: 20px;
    text-transform: capitalize;
    animation: heroFadeUp .8s ease-out both;
}

@media only screen and (min-width: 1200px) {
    .hero-headline {
        font-size: 54px;
    }
}

.hero-desc {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 30px;
}

.hero-buttons {
    animation: heroFadeUp .8s ease-out .18s both;
}

.hero-buttons .btn.btn--transparent.btn--inverse {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 0;
    color: #fff;
    padding: 16px 36px;
    font-family: roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    -webkit-transition: background-color .25s ease-in-out, color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out, color .25s ease-in-out;
    transition: background-color .25s ease-in-out, color .25s ease-in-out;
}

.hero-buttons .btn.btn--transparent.btn--inverse:hover {
    background-color: #fff;
    color: #0c1f44;
}

.hero-video-toggle {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.hero-video-toggle:hover {
    background-color: rgba(0, 0, 0, .8);
}

/* ---------- Hero Track & Trace card (overlaps the bottom of the hero, CEVA-style) ---------- */

.hero-track-card {
    position: absolute;
    left: 0;
    top: 290px;
    width: 72%;
    max-width: 1040px;
    z-index: 4;
    background-color: #fff;
    padding: 42px 48px 48px;
    animation: heroFadeUp .8s ease-out .34s both;
    -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, .22);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .22);
}

.hero-track-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e4e7ec;
    margin-bottom: 28px;
    overflow-x: auto;
}

.hero-track-tab {
    background: none;
    border: none;
    padding: 0 0 17px;
    margin-right: 38px;
    color: #5b6472;
    font-family: roboto, sans-serif;
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.hero-track-tab:last-child {
    margin-right: 0;
}

.hero-track-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background-color: transparent;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.hero-track-tab:hover {
    color: #0c1f44;
}

.hero-track-tab.is-active {
    color: #0c1f44;
}

.hero-track-tab.is-active::after {
    background-color: #e11d07;
}

.hero-track-panel {
    display: none;
}

.hero-track-panel.is-active {
    display: block;
}

.hero-track-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #d8dce3;
    margin-bottom: 20px;
    -webkit-transition: border-color .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out;
    transition: border-color .15s ease-in-out;
}

.hero-track-form.is-invalid {
    border-color: #e11d07;
}

.hero-track-form input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    outline: none;
    padding: 19px 20px;
    font-family: roboto, sans-serif;
    font-size: 17px;
    color: #0c1f44;
}

.hero-track-form input::-webkit-input-placeholder {
    color: #8992a3;
}

.hero-track-form input::-moz-placeholder {
    color: #8992a3;
}

.hero-track-form input:-ms-input-placeholder {
    color: #8992a3;
}

.hero-track-form input::placeholder {
    color: #8992a3;
}

.hero-track-form button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 60px;
    border: none;
    background-color: #fff;
    color: #0c1f44;
    font-size: 19px;
    cursor: pointer;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.hero-track-form button:hover {
    color: #e11d07;
}

.hero-track-error {
    color: #e11d07;
    font-family: roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: -12px 0 16px;
}

.hero-track-link {
    display: inline-block;
    color: #0c1f44;
    font-family: roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.hero-track-link:hover {
    color: #e11d07;
}

.hero-track-text {
    color: #4a5266;
    font-family: roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ---------- Mobile ---------- */

@media only screen and (max-width: 991px) {
    .site-nav-inline,
    .action-item {
        display: none;
    }

    .site-header-utility {
        padding: 8px 0 6px;
    }

    .site-header-main {
        padding: 12px 0;
    }

    .menu-toggle-btn {
        height: 44px;
        padding: 0 16px;
        font-size: 12px;
    }

    .hero-headline {
        font-size: 32px;
        line-height: 1.25;
        white-space: normal;
    }

    .hero-headline-break {
        display: none;
    }

    .hero-section {
        min-height: 380px;
        margin-bottom: 40px;
    }

    .hero-content-wrap {
        min-height: 0;
    }

    .hero-content {
        padding-top: 50px;
    }

    .menu-overlay {
        max-width: 100%;
    }

    .hero-track-card {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 30px;
        padding: 26px 24px 30px;
    }
}

@media only screen and (max-width: 575px) {
    .site-header-utility > * + * {
        margin-left: 16px;
    }

    .menu-toggle-btn span:first-child {
        margin-right: 8px;
    }

    .menu-close-btn {
        width: 66px;
        height: 66px;
    }

    .menu-close-btn i {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .menu-close-btn span {
        font-size: 10px;
    }

    .menu-overlay-inner {
        padding: 88px 24px 36px;
    }

    .menu-overlay-lang-trigger {
        font-size: 20px;
    }

    .menu-overlay-links a {
        font-size: 17px;
        padding: 16px 0;
    }

    .menu-overlay-bottom-row a + a {
        margin-left: 32px;
    }
}

/* ---------- Animation: hero entrance ---------- */

@-webkit-keyframes heroFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(26px);
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(26px);
        -ms-transform: translateY(26px);
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ---------- Animation: fade-up reveal as sections scroll into view ---------- */

.reveal {
    opacity: 0;
    -webkit-transform: translateY(28px);
    -ms-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-transition: opacity .6s ease-out, -webkit-transform .6s ease-out;
    transition: opacity .6s ease-out, -webkit-transform .6s ease-out;
    -o-transition: opacity .6s ease-out, transform .6s ease-out;
    transition: opacity .6s ease-out, transform .6s ease-out;
    transition: opacity .6s ease-out, transform .6s ease-out, -webkit-transform .6s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero-headline,
    .hero-buttons,
    .hero-track-card {
        animation: none !important;
    }

    .reveal {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---------- Breadcrumb / page-title banner height (all inner pages, not home) ---------- */

.page-title {
    position: relative;
    height: 340px;
    min-height: 340px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.page-title .bg-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-title .bg-section img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

@media only screen and (max-width: 575px) {
    .page-title {
        height: 260px;
        min-height: 260px;
    }

    .page-title > .container {
        -webkit-transform: translateY(-26px);
        -ms-transform: translateY(-26px);
        transform: translateY(-26px);
    }
}
