:root {
    --vls-blue: #001871;
    --vls-red: #e03c31;
    --vls-white: #ffffff;
    --vls-cyan: #4EC3E0;
    --vls-green: #6abf4b;
    --vls-silver-sand: #B7B8B9;
    --vls-wild-sand: #f8f5f0;
    --vls-subtext-grey: #888888;
    --vls-grey-bg: #F4F4F2;
    --vls-nav-line: rgba(0, 0, 0, 0.09);
    --vls-footer-bg: #080808;
    --vls-footer-text: #ffffff96;
    --vls-footer-heading: #ffffff96;
    --vls-footer-link: #ffffff96;
    --vls-footer-base: #ffffff96;
    --vls-footer-rule: #6a6a6a96;
}
body {
    font-family: "Poppins", Arial, sans-serif;
}
body.vls-body {
    background: var(--vls-white);
    color: var(--vls-blue);
    margin: 0;
}
.pointer {
    cursor: pointer;
}
.blue-text {
    color: var(--vls-blue);
}
.red-text {
    color: var(--vls-red);
}
.cyan-text {
    color: var(--vls-cyan);
}
.grey-text {
    color: var(--vls-grey-bg);
}
.green-text {
    color: var(--vls-green);
}
.vls-header {
    background: var(--vls-white);
    border-bottom: 1px solid var(--vls-nav-line);
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.vls-nav,
.vls-nav__inner {
    height: 72px;
}
.vls-nav__inner {
    align-items: center;
    display: flex;
    margin: 0 48px;
}
.vls-nav__brand {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    padding-right: 52px;
}
.vls-nav__brand img {
    display: block;
    height: 47px;
    width: 128px;
}
.vls-nav__collapse {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    height: 72px;
    min-width: 0;
}
.vls-nav__toggle {
    display: none;
}
.vls-nav__links {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    height: 72px;
    list-style: none;
    margin: 0;
    padding: 0 0 0 2px;
}
.vls-nav__item {
    position: relative;
}
.vls-nav__link {
    align-items: center;
    border-bottom: 2px solid transparent;
    color: var(--vls-blue);
    display: flex;
    flex-direction: column;
    font-size: 12.5px;
    font-weight: 500;
    gap: 4px;
    height: 72px;
    justify-content: center;
    line-height: normal;
    padding: 13px 15px 11px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}
.vls-nav__label {
    align-items: center;
    display: inline-flex;
    gap: 4px;
    line-height: normal;
}
.vls-chevron {
    position: static;
}
.vls-nav__link:hover,
.vls-nav__link:focus {
    color: var(--vls-blue);
}
.vls-nav__submenu {
    background: var(--vls-white);
    border: 1px solid rgba(0, 24, 113, 0.08);
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(0, 24, 113, 0.12);
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 210px;
    opacity: 0;
    padding: 10px 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}
.vls-nav__submenu li {
    margin: 0;
}
.vls-nav__submenu-link {
    color: var(--vls-blue);
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
}
.vls-nav__item:hover>a.vls-nav__link {
    border-bottom-color: var(--vls-red);
}
.vls-nav__item.is-active>a.vls-nav__link {
    border-bottom-color: var(--vls-red);
    color: var(--vls-red);
}
.vls-nav__submenu-link:hover,
.vls-nav__submenu-link:focus,
.vls-nav__submenu-link.is-active {
    background: rgba(0, 24, 113, 0.05);
    color: var(--vls-red);
}
.vls-nav__item--has-menu:hover .vls-nav__submenu,
.vls-nav__item--has-menu:focus-within .vls-nav__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.vls-nav__item--has-menu:hover .vls-chevron::before,
.vls-nav__item--has-menu:focus-within .vls-chevron::before {
    transform: rotate(225deg) translateY(-1px);
}
.vls-chevron {
    align-items: center;
    display: inline-flex;
    height: 9px;
    justify-content: center;
    margin-left: 4px;
    opacity: 0.4;
    width: 9px;
}
.vls-chevron::before {
    border-bottom: 1.25px solid currentColor;
    border-right: 1.25px solid currentColor;
    content: "";
    display: block;
    height: 5.4px;
    transform: rotate(45deg) translateY(-1px);
    width: 5.4px;
}
.vls-nav__actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    height: 32px;
    justify-content: flex-end;
}
.vls-nav__search {
    background: var(--vls-white);
    border: 1px solid #dddddd;
    border-radius: 5px;
    color: #1c1c1c;
    flex: 0 0 148px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    height: 32px;
    line-height: normal;
    padding: 7px 12px;
    width: 200px;
}
.vls-nav__search::placeholder {
    opacity: 1;
}
.vls-nav__search:focus {
    border-color: var(--vls-blue);
    box-shadow: 0 0 0 2px rgba(0, 24, 113, 0.08);
    outline: none;
}
.vls-language {
    flex: 0 0 auto;
    position: relative;
}
.vls-language__toggle {
    align-items: center;
    background: var(--vls-white);
    border: 1px solid #dddddd;
    border-radius: 5px;
    color: #1c1c1c;
    display: inline-flex;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    gap: 7px;
    height: 32px;
    justify-content: center;
    line-height: normal;
    padding: 6px 10px;
    white-space: nowrap;
}
.vls-language__toggle::-webkit-details-marker {
    display: none;
}
.vls-language__toggle::marker {
    content: "";
}
.vls-language__toggle:hover,
.vls-language__toggle:focus {
    border-color: var(--vls-blue);
    box-shadow: 0 0 0 2px rgba(0, 24, 113, 0.08);
    outline: none;
}
.vls-language__flag {
    display: block;
    flex: 0 0 auto;
    height: 18px;
    object-fit: cover;
    width: 26px;
}
.vls-language__menu {
    background: var(--vls-white);
    border: 1px solid rgba(0, 24, 113, 0.08);
    border-radius: 5px;
    box-shadow: 0 14px 30px rgba(0, 24, 113, 0.12);
    list-style: none;
    margin: 6px 0 0;
    max-height: 320px;
    min-width: 158px;
    overflow-y: auto;
    opacity: 0;
    padding: 6px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(6px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    z-index: 1040;
}
.vls-language:hover .vls-language__menu,
.vls-language[open] .vls-language__menu,
.vls-language:focus-within .vls-language__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.vls-language:hover .vls-chevron::before,
.vls-language[open] .vls-chevron::before,
.vls-language:focus-within .vls-chevron::before {
    transform: rotate(225deg) translateY(-1px);
}
.vls-language__option {
    align-items: center;
    border-radius: 4px;
    color: var(--vls-blue);
    display: flex;
    font-size: 12px;
    font-weight: 500;
    gap: 8px;
    padding: 8px;
    text-decoration: none;
    white-space: nowrap;
}
.vls-language__option:hover,
.vls-language__option:focus,
.vls-language__option.is-active {
    background: rgba(0, 24, 113, 0.06);
    color: var(--vls-blue);
    outline: none;
}
.vls-btn {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    height: 32px;
    justify-content: center;
    line-height: normal;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
}
.vls-btn--login {
    border: 1px solid #dddddd;
    color: var(--vls-blue);
    font-weight: 600;
    gap: 6px;
    width: 82px;
    border-radius: 5px;
}
.vls-btn--account {
    background: var(--vls-red);
    color: var(--vls-white);
    font-weight: 700;
    width: 85px;
    border-radius: 5px;
}
.vls-btn:hover,
.vls-btn:focus {
    color: inherit;
}
.vls-btn--account:hover,
.vls-btn--account:focus {
    color: var(--vls-white);
}
.vls-btn__icon {
    color: currentColor;
    flex: 0 0 13px;
    opacity: 0.55;
}
.vls-home {
    background: var(--vls-white);
    color: var(--vls-blue);
    overflow: hidden;
}
.vls-fcl {
    background: var(--vls-white);
    color: var(--vls-blue);
    overflow: hidden;
}
.vls-home h1,
.vls-home h2,
.vls-home h3,
.vls-home p {
    margin: 0;
}
.vls-home-btn {
    align-items: center;
    border-radius: 0px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    line-height: normal;
    min-width: 170px;
    padding: 0 28px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 5px;
}
[data-signup-open] {
    cursor: pointer;
}
.vls-home-btn--primary {
    background: var(--vls-red);
    color: var(--vls-white);
}
.vls-home-btn--secondary {
    background: var(--vls-blue);
    color: var(--vls-white);
    height: 46px;
}
.vls-home-btn--outline {
    background: var(--vls-white);
    border: 1px solid rgba(0, 24, 113, 0.16);
    color: var(--vls-blue);
}
.vls-home-btn--transparent {
    background: transparent;
    border: 2px solid #FFFFFF73;
    color: var(--vls-white);
}
.vls-home-btn--primary:hover,
.vls-home-btn--primary:focus,
.vls-home-btn--secondary:hover,
.vls-home-btn--secondary:focus {
    color: var(--vls-white);
}
.home-shipment-dummy {
    display: grid;
    gap: 20px;
}
.home-shipment-dummy__card {
    background: #EBEBEB;
    min-height: 0;
    padding: 54px 44px 42px;
}
.home-shipment-dummy__card--map {
    background: #EBEBEB url("/static/img/home/map.png") no-repeat right 18px top 58px / 270px auto;
}
.home-shipment-dummy__card h3 {
    color: var(--vls-blue);
    font-size: 26px;
    font-weight: 900;
    line-height: 28.6px;
    margin-bottom: 33px;
    max-width: 560px;
    position: relative;
}
.home-shipment-dummy__card > h3::after {
    background: #001871;
    bottom: -17px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 102px;
}
.home-shipment-dummy__card > p:not(.home-shipment-dummy__eyebrow) {
    color: #202020;
    font-size: 13px;
    line-height: 21.45px;
    margin-bottom: 42px;
    max-width: 410px;
}
.home-shipment-dummy__card--alt {
    background: linear-gradient(180deg, #f8f9fd 0%, #eef3ff 100%);
}
.home-shipment-dummy__eyebrow {
    color: var(--vls-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.manage-documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 14px;
}
.manage-card {
    height: 78px;
    background: #fff;
    border-radius: 4px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.manage-card-content {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-width: 0;
}
.manage-card-content img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.manage-card strong {
    color: #001a78;
    font-size: 13px;
    font-weight: 600;
    line-height: 100%;
    margin: 0 0 8px;
    display: block;
}
.manage-card span span {
    color: #8a8a8a;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    margin: 0;
    display: block;
}
.arrow-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 10px;
}
.home-track-shipment {
    display: grid;
    min-height: 458px;
}
.home-track-shipment__lookup {
    background: #EBEBEB;
    padding: 56px 42px;
}
.home-track-shipment__lookup h3 {
    color: var(--vls-blue);
    font-size: 28px;
    font-weight: 900;
    line-height: 34px;
    margin-bottom: 8px;
}
.home-track-shipment__lookup p {
    color: #4f4f4f;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 28px;
}
.home-track-shipment__form {
    display: grid;
    gap: 10px;
}
.home-track-shipment__form input {
    background: var(--vls-white);
    border: 0;
    color: var(--vls-blue);
    font-size: 14px;
    min-height: 40px;
    outline: 0;
    padding: 10px 14px;
    width: 100%;
}
.home-track-shipment__form input::placeholder {
    color: #b8b8b8;
}
.home-track-shipment__form button {
    align-items: center;
    background: var(--vls-red);
    border: 0;
    color: var(--vls-white);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 12px;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    transition: background-color 0.2s ease;
    width: 100%;
}
.home-track-shipment__form button:hover,
.home-track-shipment__form button:focus-visible {
    background: #d92f26;
}
.home-quote-card {
    background: #05175f;
    color: var(--vls-white);
    display: grid;
    gap: 18px;
    min-height: 596px;
    padding: 28px;
}
.home-quote-card__head {
    display: grid;
    gap: 8px;
}
.home-quote-card__head span {
    color: var(--vls-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}
.home-quote-card__head h3 {
    color: var(--vls-white);
    font-size: 28px;
    font-weight: 800;
    line-height: 34px;
}
.home-quote-card__head p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 20px;
}
.home-quote-tabs {
    display: flex;
    gap: 6px;
}
.home-quote-tabs button {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    color: var(--vls-white);
    font-size: 12px;
    font-weight: 700;
    height: 32px;
    padding: 0 20px;
}
.home-quote-tabs button.is-active {
    background: #2b8ec6;
    border-color: #2b8ec6;
}
.home-quote-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-quote-grid label {
    display: grid;
    gap: 7px;
}
.home-quote-grid span,
.home-cargo-details span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 600;
}
.home-quote-grid input,
.home-updates__form input {
    border: 0;
    border-radius: 2px;
    color: var(--vls-blue);
    font: inherit;
    min-height: 44px;
    padding: 0 14px;
}
.home-cargo-details {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}
.home-cargo-details div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 76px;
    padding: 14px;
}
.home-cargo-details strong {
    color: var(--vls-white);
    display: block;
    font-size: 18px;
    line-height: 24px;
    margin-top: 8px;
}
.home-quote-submit {
    align-self: end;
    background: var(--vls-red);
    border: 0;
    border-radius: 2px;
    color: var(--vls-white);
    font-size: 12px;
    font-weight: 800;
    height: 46px;
    justify-self: start;
    min-width: 190px;
    padding: 0 24px;
    text-transform: uppercase;
}
.vls-tile-divider {
    height: 6px;
    background: linear-gradient(
        to right,
        var(--vls-red) 0 20%,
        var(--vls-blue) 20% 40%,
        var(--vls-cyan) 40% 60%,
        var(--vls-silver-sand) 60% 80%,
        var(--vls-red) 80% 100%
    );
}
.globe-location-tooltip {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 38, 75, 0.14);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    color: var(--vls-blue);
    font-size: 12px;
    left: 0;
    line-height: 1.35;
    max-width: min(260px, calc(100% - 24px));
    opacity: 0;
    padding: 8px 10px;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: opacity 160ms ease;
    white-space: normal;
    z-index: 1000;
}
.globe-location-tooltip.is-visible {
    opacity: 1;
}
.globe-location-tooltip__name {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    font-weight: 700;
    justify-content: space-between;
}
.globe-location-tooltip__icon {
    flex: 0 0 auto;
    height: 16px;
    margin-top: 1px;
    width: 11px;
}
.globe-location-tooltip__meta {
    color: rgba(15, 38, 75, 0.78);
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}
.home-insights {
    min-height: 631px;
    background: #F8F5F0;
}
.home-insights h2,
.home-insights h3,
.home-insights p {
    margin: 0;
}
.home-insights .home-section-row h2 {
    color: var(--vls-blue);
    font-size: 34px;
    font-weight: 900;
    line-height: 38px;
}
.home-carousel-controls {
    display: flex;
    gap: 8px;
}
.home-carousel-controls button {
    background: var(--vls-red);
    border: none;
    border-radius: 2px;
    height: 35px;
    position: relative;
    width: 36px;
}
.home-carousel-controls button::before {
    border-bottom: 3px solid var(--vls-white);
    border-left: 3px solid var(--vls-white);
    content: "";
    height: 9px;
    left: 14px;
    position: absolute;
    top: 12px;
    transform: rotate(45deg);
    width: 9px;
}
.home-carousel-controls button:last-child::before {
    left: 11px;
    transform: rotate(-135deg);
}
.home-card-track {
    display: grid;
    gap: 20px;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 4);
    margin-top: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 28px;
    scroll-behavior: smooth;
    scroll-padding-left: 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.home-card-track::-webkit-scrollbar {
    display: none;
}
.home-dots {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 32px;
}
.home-dots span {
    background: rgba(0, 24, 113, 0.2);
    border-radius: 999px;
    height: 8px;
    width: 8px;
}
.home-dots span:first-child {
    background: var(--vls-blue);
}
.home-card-track--insights {
    grid-auto-columns: calc((100% - 40px) / 3);
}
.home-insight-card {
    display: block;
    text-decoration: none;
    background: var(--vls-white);
}
.home-insight-card__image {
    height: 290px;
    position: relative;
}
.home-insight-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: top;
}
.home-insight-card__image span {
    background: var(--vls-red);
    bottom: 12px;
    color: var(--vls-white);
    font-size: 9.5px;
    font-weight: 700;
    left: 12px;
    line-height: 21px;
    letter-spacing: 2px;
    padding: 0 10px;
    position: absolute;
    text-transform: uppercase;
}
.home-insight-card>div:last-child {
    min-height: 166px;
    padding: 20px;
    background: var(--vls-white);
}
.home-insight-card small {
    color: var(--vls-subtext-grey);
    display: block;
    font-size: 9.5px;
    letter-spacing: .5px;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 400;
}
.home-insight-card h3 {
    color: var(--vls-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 7px;
}
.home-insight-card p {
    color: var(--vls-subtext-grey);
    font-size: 12px;
    line-height: 20px;
    margin-top: 7px;
}
.home-updates {
    align-items: flex-start;
    border-top: 1px solid rgba(0, 24, 113, 0.09);
    display: flex;
    flex-direction: column;
    gap: 44px;
    min-height: 260px;
    padding: 74px 44px 70px;
}
.home-updates__head {
    max-width: 760px;
}
.home-updates h2 {
    color: var(--vls-blue);
    font-size: 36px;
    line-height: 38px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
}
.home-updates p {
    color: #202020;
    font-size: 13px;
    line-height: 20px;
    margin: 0;
}
.home-updates__form {
    align-items: stretch;
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(220px, 288px) minmax(220px, 288px) minmax(260px, 288px) minmax(220px, 288px);
    width: min(100%, 1170px);
}
.home-updates__form label {
    margin: 0;
    min-width: 0;
    position: relative;
}
.home-updates__form input,
.home-updates__form select {
    appearance: none;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    color: #202020;
    font-size: 13px;
    height: 44px;
    line-height: 18px;
    padding: 0 14px;
    width: 100%;
}
.home-updates__form select {
    background-image: linear-gradient(45deg, transparent 50%, #202020 50%), linear-gradient(135deg, #202020 50%, transparent 50%);
    background-position: calc(100% - 20px) 16px, calc(100% - 15px) 16px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    color: #9b9b9b;
    padding-right: 36px;
}
.home-updates__form .ts-wrapper {
    width: 100% !important;
}
.home-updates__form .ts-wrapper.single .ts-control {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    height: 44px;
    min-height: 44px;
    overflow: hidden;
    padding: 0 36px 0 14px;
    position: relative;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.home-updates__form .ts-wrapper.single .ts-control,
.home-updates__form .ts-wrapper.single .ts-control input {
    color: #202020;
    font-size: 13px;
    line-height: 44px;
}
.home-updates__form .ts-wrapper.single .ts-control > input {
    flex: 1 1 auto;
    height: 24px;
    line-height: 24px;
    min-width: 80px;
}
.home-updates__form .ts-wrapper.single .ts-control .item {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-updates__form .ts-wrapper.single.has-items .ts-control > input {
    flex: 0 0 2px;
    min-width: 2px;
    width: 2px;
}
.home-updates__form .ts-wrapper.single .ts-control input::placeholder {
    color: #9b9b9b;
}
.home-updates__form .ts-wrapper.single .ts-control::after {
    border-color: #202020 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    content: "";
    height: 0;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}
.home-updates__form .ts-wrapper.dropdown-active .ts-control::after {
    transform: translateY(-50%) rotate(180deg);
}
.home-updates__form .ts-wrapper.focus .ts-control {
    border-color: #2f7df6;
    box-shadow: 0 0 0 3px rgba(47, 125, 246, 0.14);
}
.home-updates__form .ts-dropdown {
    border: 1px solid #edf0f5;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 34px rgba(21, 31, 52, 0.12);
    color: #172036;
    font-size: 13px;
    margin-top: 4px;
    overflow: hidden;
}
.home-updates__form .ts-dropdown-content {
    max-height: 310px;
    padding: 8px;
}
.home-updates__form .ts-dropdown .option {
    border-radius: 6px;
    padding: 0;
}
.home-updates__form .ts-dropdown .option.active,
.home-updates__form .ts-dropdown .option:hover {
    background: #f7f9fd;
}
.home-updates__form .vls-tom-option,
.quote-flow__input-wrap .vls-tom-option {
    background: transparent;
    border: 0;
    color: #172036;
    display: block;
    padding: 9px 10px;
    text-align: left;
    width: 100%;
}
.home-updates__form .vls-tom-option strong,
.home-updates__form .vls-tom-option small,
.quote-flow__input-wrap .vls-tom-option strong,
.quote-flow__input-wrap .vls-tom-option small {
    display: block;
}
.home-updates__form .vls-tom-option small,
.quote-flow__input-wrap .vls-tom-option small {
    color: #667085;
    font-size: 11px;
    margin-top: 2px;
}
.home-updates__form input::placeholder {
    color: #a8a8a8;
}
.home-updates__email::before {
    content: url(/static/img/home/icon/email.svg);
    position: absolute;
    left: 14px;
    top: 11px;
}
.home-updates__form input[type="email"] {
    padding-left: 38px;
}
.home-updates__form button {
    background: var(--vls-red);
    border: 0;
    border-radius: 0;
    color: var(--vls-white);
    font-size: 12px;
    font-weight: 700;
    height: 44px;
    padding: 0 24px;
    white-space: nowrap;
}
.home-updates__thanks {
    align-items: flex-start;
    background: #f3f3f3;
    color: #111111;
    display: flex;
    gap: 14px;
    margin-top: 1px;
    padding: 33px 32px 31px;
    width: 100%;
}
.home-updates__thanks[hidden] {
    display: none;
}
.home-updates__thanks-icon {
    background: #2f7d34;
    border-radius: 50%;
    flex: 0 0 31px;
    height: 31px;
    margin-top: 1px;
    position: relative;
    width: 31px;
}
.home-updates__thanks-icon::after {
    border-bottom: 4px solid #ffffff;
    border-right: 4px solid #ffffff;
    content: "";
    height: 14px;
    left: 10px;
    position: absolute;
    top: 6px;
    transform: rotate(45deg);
    width: 8px;
}
.home-updates__thanks h3 {
    color: var(--vls-blue);
    font-size: 22px;
    font-weight: 700;
    line-height: 30.8px;
    margin: 0 0 17px;
letter-spacing: -0.3px;
}
.home-updates__thanks p {
    color: #111111;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
letter-spacing: 0%;
}
.home-final-cta {
    align-items: center;
    background: var(--vls-cyan);
    display: flex;
    justify-content: space-between;
    min-height: 328px;
    padding: 80px 44px;
}
.home-final-cta .home-eyebrow {
    font-size: 10px;
    color: #FFFFFF8C;
}
.home-final-cta>div:first-child {
    max-width: 792px;
}
.home-final-cta h2 {
    margin-top: 10px;
    max-width: 420px;
}
.home-final-cta p:not(.home-eyebrow) {
    color: #FFFFFFA6;
    font-size: 14px;
    line-height: 23px;
    margin-top: 12px;
    max-width: 748px;
}
.home-final-cta__actions {
    display: flex;
    gap: 10px;
}
.vls-fcl h1,
.vls-fcl h2,
.vls-fcl h3,
.vls-fcl p {
    margin: 0;
}
.fcl-section-eyebrow {
    color: var(--vls-cyan);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    line-height: 16px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
}
.fcl-section-eyebrow.red {
    color: var(--vls-red);
}
.vls-footer {
    background: var(--vls-footer-bg);
    color: var(--vls-footer-text);
    font-family: "Poppins", Arial, sans-serif;
    min-height: 325px;
    overflow: hidden;
}
.vls-footer__inner {
    margin: 0 44px;
}
.vls-footer__grid {
    column-gap: 10px;
    display: grid;
    grid-template-columns: 25% 15% 13% 15% 19% 13%;
    min-height: 219px;
    padding-top: 56px;
}
.vls-footer__logo {
    display: block;
}
.vls-footer__logo img {
    display: block;
    height: 41px;
    object-fit: cover;
    width: 104px;
}
.vls-footer__summary {
    color: #FFFFFF4D;
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
    margin: 15px 0 0;
    max-width: 210px;
}
.vls-footer__tagline {
    color: var(--vls-footer-text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 21px;
    margin: 17px 0 0;
    text-transform: uppercase;
}
.vls-footer__link {
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0%;
    margin-top: 16px;
}
.vls-footer__col {
    display: flex;
    flex-direction: column;
}
.vls-footer__col h2 {
    color: var(--vls-footer-heading);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2.2px;
    line-height: normal;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.vls-footer__col a {
    color: var(--vls-footer-link);
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 11px;
    text-decoration: none;
}
.vls-footer__col a:first-of-type {
    padding-top: 6px;
}
.vls-footer__col a:hover,
.vls-footer__col a:focus {
    color: var(--vls-footer-heading);
}
.vls-footer__base {
    border-top: 1px solid var(--vls-footer-rule);
    color: var(--vls-footer-base);
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    padding-top: 16px;
    padding-bottom: 15px;
}
.vls-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.vls-footer__links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vls-footer__links a {
    color: var(--vls-footer-link);
    font-size: 11px;
    font-weight: 400;
}
.vls-footer__links a:hover,
.vls-footer__links a:focus {
    color: var(--vls-footer-heading);
}
.vls-footer__link-separator {
    color: var(--vls-footer-base);
}
.vls-footer__copyright {
    color: var(--vls-footer-base);
    font-size: 11px;
    font-weight: 400;
}
@media (min-width: 992px) {
    .vls-nav__collapse.collapse:not(.show) {
        display: flex;
    }
}
.vls-cfs {
    background: var(--vls-white);
    color: var(--vls-blue);
    overflow: hidden;
}
.vls-cfs h1,
.vls-cfs h2,
.vls-cfs h3,
.vls-cfs h4,
.vls-cfs p {
    margin: 0;
}
.blue-card {
    background: var(--vls-blue);
    margin-right: 2px;
}
.blue-card p {
    color: rgba(255, 255, 255, 0.55);
}
.why-vanguard-cards .red-card {
    background: var(--vls-red);
    margin: 3px;
}
.red-card p,
.green-card p {
    color: #ffffff;
}
.white-card {
    background: #ffffff;
    display: flex;
    align-items: center;
    margin-right: 2px;
}
.white-card p {
    color: #777777;
}
.green-card {
    background: var(--vls-green);
    display: flex;
    align-items: center;
}
.trust-section {
    background: var(--vls-white);
    padding: 80px 44px 95px;
    font-family: "Poppins", sans-serif;
}
.trust-eyebrow {
    color: var(--vls-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 3px;
}
.trust-title {
    color: var(--vls-blue);
    font-weight: 900;
    font-size: 56px;
    line-height: 54.32px;
    letter-spacing: -2px;
}
.trust-title span {
    color: var(--vls-red);
}
.trust-text {
    max-width: 790px;
    color: #444444;
    font-weight: 400;
    font-size: 15px;
    line-height: 27.75px;
    letter-spacing: 0%;
}
.trust-list {
    max-width: 468px;
    margin-left: auto;
    margin-top: 85px;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #e1dfda;
}
.trust-item:first-child {
    padding-top: 0;
}
.trust-item:last-child {
    border-bottom: 0;
}
.trust-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: #f0eee9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.trust-content h4 {
    color: var(--vls-blue);
    margin: 4px 0 6px;
    font-weight: 700;
    font-size: 13.5px;
    line-height: 100%;
    letter-spacing: 0%;
}
.trust-content p {
    color: var(--vls-red);
    margin: 0;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0.5px;
}
.trust-section .trust-eyebrow {
    margin-bottom: 16px;
}
.trust-section .trust-title {
    margin-bottom: 43px;
}
.card-light {
    background: var(--vls-white);
    border: 2px solid var(--vls-blue);
    border-top-width: 4px;
}
.card-blue {
    background: var(--vls-blue);
    border-top: 4px solid var(--vls-cyan);
    color: var(--vls-white);
}
.card-cyan {
    background: var(--vls-cyan);
    border-top: 4px solid #99e6f2;
    color: var(--vls-white);
}
.card-light h3 {
    color: var(--vls-blue);
}
.card-light p {
    color: #3f3f3f;
    opacity: 1;
}
.shape-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0;
}
.people { animation: peopleIcon 6s infinite; }
.leaf { animation: leafIcon 6s infinite; }
.shield { animation: shieldIcon 6s infinite; }
.framework-card {
    min-height: 104px;
    border: 1px solid #dedede;
    background: var(--vls-white);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 28px;
}
.framework-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #e5f3df;
    display: flex;
    align-items: center;
    justify-content: center;
}
.framework-icon img {
    width: 21px;
    height: 21px;
    object-fit: contain;
}
.framework-card p {
    color: #4d4d4d;
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 19.8px;
    letter-spacing: 0%;
}
.operations-section {
    background: #000;
    padding: 82px 44px 84px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}
.operations-header {
    text-align: center;
    margin-bottom: 52px;
}
.operations-section .operations-eyebrow {
    color: var(--vls-green);
    margin: 0 0 18px;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.operations-title {
    color: #fff;
    margin: 0;
    font-weight: 900;
    font-size: 44px;
    line-height: 42.68px;
    letter-spacing: -1.5px;
}
.operations-title span {
    color: var(--vls-green);
}
.operations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.operations-card {
    min-height: 300px;
    padding: 42px 36px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.dark-card {
    background: #111111;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
}
.operations-green-card {
    background: #6ABF4B0F;
    border-color: rgba(101, 198, 76, 0.15);
    border-top: 3px solid var(--vls-green);
}
.operations-section .card-eyebrow {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 9.5px;
    line-height: 100%;
    letter-spacing: 2.5px;
}
.card-eyebrow.green {
    color: var(--vls-green);
}
.operations-card h3 {
    color: var(--vls-white);
    margin: 0 0 28px;
    max-width: 605px;
    font-weight: 900;
    font-size: 21px;
    line-height: 28.6px;
    letter-spacing: -0.5px;
}
.operations-section .card-text {
    color: rgba(255, 255, 255, 0.48);
    max-width: 682px;
    font-weight: 400;
    font-size: 13px;
    line-height: 22.75px;
    letter-spacing: 0%;
}
.operations-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.operations-card ul li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 12.5px;
    line-height: 20px;
    letter-spacing: 0%;
}
.operations-card ul li:last-child {
    margin-bottom: 0;
}
.operations-card ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 10px;
    left: 0;
}
.green-list li::before {
    background: var(--vls-green) !important;
}
.featured-leader {
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: end;
    background: transparent;
    margin-bottom: 88px;
}
.featured-image {
    align-items: flex-end;
    background: var(--vls-white);
    display: flex;
    height: 240px;
}
.featured-image img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    background: #4EC3E01F;
}
.featured-content {
    background: #f1f1f1;
    box-sizing: border-box;
    min-height: 240px;
    padding: 60px 28px 40px;
}
.featured-content h3 {
    color: var(--vls-blue);
    margin: 0 0 4px;
    font-weight: 900;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 0%;
}
.featured-content span {
    display: block;
    color: #4f4f4f;
    margin-bottom: 28px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
}
.featured-content p {
    color: #4f4f4f;
    margin: 0;
    max-width: 670px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
}
.regional-leadership {
    background: var(--vls-white);
    padding: 42px 40px 70px;
    font-family: "Poppins", sans-serif;
}
.regional-leadership .regional-title {
    color: var(--vls-blue);
    margin: 20px 0 26px;
    font-size: 42px;
    font-weight: 900;
    line-height: 48.3px;
    letter-spacing: -1.5px;
}
.regional-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}
.regional-card {
    border: 1px solid #9aa7db;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.regional-image {
    height: 215px;
    overflow: hidden;
}
.regional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.regional-content {
    background: #F4F4F2;
    flex: 1;
    padding: 18px 14px 20px;
    display: flex;
    flex-direction: column;
}
.regional-content h3 {
    color: var(--vls-blue);
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: 0%;
}
.regional-content p {
    color: #666;
    margin: 0 0 26px;
    font-size: 13.5px;
    line-height: 22.28px;
    font-weight: 400;
    letter-spacing: 0%;
}
.regional-content span {
    min-height: 22px;
    padding: 6px 10px;
    background: var(--vls-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 100%;
}
.media-contact-section {
    background: #F8F5F0;
    padding: 70px 44px 80px;
    font-family: "Poppins", sans-serif;
}
.media-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 590px;
    align-items: center;
}
.media-contact-section .media-contact-eyebrow {
    color: #56b84f;
    margin: 0 0 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 2.8px;
}
.media-contact-section .media-contact-title {
    color: var(--vls-blue);
    margin: 0 0 28px;
    font-size: 40px;
    font-weight: 900;
    line-height: 42px;
    letter-spacing: -0.5px;
}
.media-contact-section .media-contact-text {
    max-width: 620px;
    margin: 0 0 34px;
    color: #333;
    font-size: 14px;
    line-height: 23.1px;
    font-weight: 400;
    letter-spacing: 0%;
}
.media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.media-tag {
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 100%;
}
.media-tag.blue {
    background: #eef1ff;
    color: var(--vls-blue);
}
.media-tag.red {
    background: #fff0ee;
    color: var(--vls-red);
}
.media-tag.cyan {
    background: #ecfbff;
    color: #4ec3e0;
}
.media-contact-card {
    display: flex;
    align-items: center;
    min-height: 166px;
    border: 1px solid var(--vls-blue);
    background: transparent;
}
.media-contact-image {
    height: 296px;
}
.media-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #82a6ff14;
}
.media-contact-content {
    width: 100%;
    padding: 58px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: transparent;
}
.media-contact-message {
    color: #1c1c1c;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 22.8px;
    letter-spacing: 0%;
}
.media-contact-content h3 {
    color: var(--vls-blue);
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: 0%;
}
.media-email {
    background: #f3f2f1;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    margin-bottom: 32px;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.2px;
}
.media-contact-btn {
    width: 250px;
    height: 48px;
    background: var(--vls-red);
    color: #fff;
    flex: 0 0 auto;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0.3px;
}
.media-contact-btn img {
    width: 18px;
}
.underline {
    width: 33.666667%;
}
.why-vanguard-content {
    max-width: 700px;
}
.why-vanguard-text span {
    color: var(--vls-blue);
    font-weight: 600;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 0%;
}
.why-vanguard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-vanguard-list li {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding-left: 22px;
    border-bottom: 1px solid rgba(0, 24, 113, 0.08);
    color: #3f3f3f;
    font-weight: 700;
    font-size: 13.5px;
    line-height: 100%;
    letter-spacing: 0%;
}
.why-vanguard-list li:last-child {
    border-bottom: none;
}
.why-vanguard-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 23px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vls-red);
}
.blue-card-one {
    background: var(--vls-blue);
    margin: 3px;
}
.blue-card-one p {
    color: rgba(255, 255, 255, 0.7);
}
.blue-card-one h3 {
    color: #fff;
}
.red-card {
    background: var(--vls-red);
    margin: 3px;
}
.red-card p {
    color: rgba(255, 255, 255, 0.7);
}
.red-card h3 {
    color: #fff;
}
.light-card {
    background: #f1f1ef;
    margin: 3px;
}
.light-card p {
    color: rgba(0, 0, 0, 0.4);
}
.light-card h3 {
    color: var(--vls-blue);
}
.cyan-card {
    background: #56c1df;
    margin: 3px;
}
.cyan-card p {
    color: rgba(255, 255, 255, 0.7);
}
.cyan-card h3 {
    color: #fff;
}
.why-card-bottom-text {
    color: #4f4f4f;
    margin-top: 18px;
    max-width: 620px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    letter-spacing: 0%;
}
.current-openings {
    background: #f7f7f5;
    padding: 78px 44px 84px;
    font-family: "Poppins", sans-serif;
}
.current-openings .current-openings-eyebrow {
    color: var(--vls-red);
    margin: 0 0 18px;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.current-openings .current-openings-title {
    color: var(--vls-blue);
    margin: 0 0 42px;
    font-weight: 900;
    font-size: 44px;
    line-height: 42.68px;
    letter-spacing: -1.5px;
}
.openings-footer {
    margin-top: 26px;
    min-height: 72px;
    background: var(--vls-blue);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
}
.openings-footer p {
    margin: 0;
}
.openings-footer b {
    color: #4ec3e0;
}
.openings-footer a {
    margin-left: 18px;
    background: var(--vls-red);
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 13px;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.small-row {
    grid-template-columns: 1fr 280px;
}
.form-label-note {
    color: #7f8797;
    font-size: 0.86em;
    font-weight: 600;
    letter-spacing: 0.8px;
}
.form-row:nth-of-type(2) {
    grid-template-columns: 1fr 13% 1fr 1fr;
}
.form-row:first-of-type {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.phone-row {
    display: block;
    width: 100%;
}
.country-code {
    height: 44px;
    border: 0;
    background: #f3f2f1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    border-radius: 5px;
}
.country-code img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.country-code span {
    font-size: 16px;
}
.upload-box {
    height: 74px;
    border: 1px dashed #d8d8d8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 5px;
}
.upload-box strong {
    color: var(--vls-blue);
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
}
.upload-box span {
    color: #999;
    font-size: 10px;
    font-weight: 400;
    font-size: 9px;
    line-height: 100%;
    letter-spacing: 0%;
}
.upload-box .selected-file-name {
    display: none;
    max-width: calc(100% - 32px);
    color: var(--vls-cyan);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.upload-box.has-file .upload-help-text {
    display: none;
}
.upload-box.has-file .selected-file-name {
    display: block;
}
.submit-application {
    width: 100%;
    height: 48px;
    border: 0;
    background: var(--vls-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    line-height: 100%;
    letter-spacing: 0.4px;
    border-radius: 5px;
}
.submit-application img {
    width: 12px;
}
.global-locations {
    background: var(--vls-blue);
    padding: 78px 44px 92px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}
.global-location-content {
    max-width: 760px;
}
.global-locations .global-location-title {
    color: #fff;
    margin: 0 0 64px;
    font-weight: 900;
    font-size: 64px;
    line-height: 60.8px;
    letter-spacing: -2.5px;
}
.global-locations .global-location-text {
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 34px;
    max-width: 760px;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 0%;
}
.global-location-text.second {
    margin-bottom: 54px;
}
.global-location-btn {
    width: 252px;
    height: 54px;
    background: var(--vls-red);
    color: var(--vls-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    transition: all 0.3s ease;
    letter-spacing: 0%;
    border-radius: 5px;
}
.global-location-btn:hover {
    color: #fff;
    background: #ff523f;
}
.global-location-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.global-location-map {
    display: flex;
    justify-content: center;
    align-items: center;
}
.global-location-map img {
    width: 100%;
    max-width: 620px;
    display: block;
}
.popup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.popup-top h4 {
    color: var(--vls-blue);
    margin: 0;
    font-weight: 900;
    font-size: 16px;
}
.popup-top span {
    background: var(--vls-blue);
    color: #fff;
    padding: 5px 9px;
    font-weight: 700;
    font-size: 7px;
}
.gm-style .gm-style-iw-c {
    padding: 0 !important;
}
.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}
.gm-style .gm-style-iw-chr {
    height: 0;
    min-height: 0;
}
.gm-style .gm-style-iw-ch {
    padding: 0;
}
.gm-style .gm-ui-hover-effect,
.gm-style .gm-ui-hover-effect:focus,
.gm-style .gm-ui-hover-effect:focus-visible,
.gm-style .gm-ui-hover-effect:hover {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    right: 10px !important;
    top: 10px !important;
}
#losAngelesBtn.active-location {
    color: var(--vls-red);
    font-weight: 700;
}
.barcelona-popup {
    position: absolute;
    right: 220px;
    bottom: 160px;
    width: 310px;
    background: #fff;
    border: 2px solid var(--vls-blue);
    padding: 22px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    display: none;
}
.barcelona-popup.active {
    display: block;
}
.barcelona-popup h4 {
    color: var(--vls-blue);
    margin: 0 0 12px;
    font-weight: 900;
    font-size: 18px;
}
.barcelona-popup p {
    color: #7a7a7a;
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.7;
}
.barcelona-popup strong {
    color: #111;
    font-size: 15px;
    font-weight: 700;
}
.barcelona-popup {
    display: none;
}
.barcelona-popup.active {
    display: block;
}
.red-card {
    margin: 0;
}
.news-section {
    background: #fff;
    padding: 58px 24px 28px;
    font-family: "Poppins", sans-serif;
}
.news-section .news-eyebrow {
    position: relative;
    color: var(--vls-red);
    margin: 0 0 12px;
    padding-left: 28px;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.news-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 1px;
    background: var(--vls-red);
}
.news-section .news-title {
    color: var(--vls-blue);
    margin: 0 0 34px;
    font-weight: 900;
    font-size: 60px;
    line-height: 57px;
    letter-spacing: -2.5px;
}
.news-title span {
    color: #4ec3e0;
}
.news-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--vls-blue);
}
.news-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-feature-content {
    padding: 34px 36px;
}
.news-badge {
    display: inline-flex;
    align-items: center;
    background: var(--vls-red);
    color: #fff;
    padding: 5px 8px;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 9.5px;
    line-height: 100%;
    letter-spacing: 1px;
}
.news-feature-content h3 {
    color: #fff;
    margin: 0 0 24px;
    font-weight: 900;
    font-size: 28px;
    line-height: 32.2px;
    letter-spacing: -0.5px;
}
.news-feature-content p {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 0%;
}
.news-read-btn {
    width: 130px;
    height: 40px;
    background: var(--vls-red);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    border-radius: 5px;
}
.news-read-btn img {
    width: 12px;
    height: 12px;
}
.explore-section {
    background: var(--vls-blue);
    padding: 52px 30px 70px;
    font-family: "Poppins", sans-serif;
}
.explore-section .explore-eyebrow {
    color: var(--vls-cyan);
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 100%;
}
.explore-section .explore-title {
    color: var(--vls-white);
    margin: 0 0 40px;
    font-weight: 900;
    font-size: 40px;
    line-height: 38.8px;
    letter-spacing: -1.5px;
}
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.explore-card {
    background: var(--vls-white);
    padding: 34px 28px 30px;
    min-height: 238px;
}
.explore-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 24, 113, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.explore-icon img {
    width: 20px;
}
.explore-card h3 {
    color: var(--vls-blue);
    margin: 0 0 18px;
    font-weight: 800;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
}
.explore-tag {
    display: inline-block;
    background: #ffe9e5;
    color: var(--vls-red);
    padding: 6px 10px;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 9.5px;
    letter-spacing: 2.2px;
    line-height: 100%;
}
.explore-card p {
    color: #777;
    margin: 0 0 22px;
    font-size: 12px;
    line-height: 19.8px;
    letter-spacing: 0%;
    font-weight: 400;
}
.explore-card a {
    color: var(--vls-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 11.5px;
    line-height: 100%;
    letter-spacing: 0%;
}
.explore-card a img {
    width: 12px;
}
.year-select-field {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.year-select-field label {
    color: #001b70;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.year-select {
    min-width: 140px;
    height: 42px;
    padding: 0 44px 0 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    appearance: none;
    background: #fff;
    color: #001b70;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
.year-select:focus {
    border-color: var(--vls-red);
    box-shadow: 0 0 0 3px rgba(218, 48, 40, 0.14);
    outline: none;
}
.available-box {
    background: #fff0ee;
    border-color: #ffc9c2;
}
.unavailable-box {
    background: #f4f4f3;
}
.network {
    align-items: center;
    background: transparent;
    border-radius: 50%;
    display: flex;
    height: 20px;
    justify-content: center;
    margin-left: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    width: 20px;
}
.network img {
    cursor: pointer;
    filter: none;
    height: 14px;
    object-fit: contain;
    transition: transform 0.25s ease;
    width: 14px;
}
.map-info-card {
    position: absolute;
    left: 90px;
    bottom: 90px;
    width: 460px;
    background: #ffffff;
    padding: 34px 34px 30px;
}
.map-info-card p {
    color: #ff4d3d;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    line-height: 100%;
}
.map-info-card h3 {
    color: #001a78;
    font-size: 22px;
    font-weight: 700;
    line-height: 30.8px;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.map-info-card span {
    display: block;
    color: #4b4b4b;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0%;
}
.map-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #29bdf2;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
}
.map-info-card a img {
    width: 14px;
    height: 14px;
}
#careerFormMessage > * {
    color: #0f6b3f !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin: 18px 0 0 !important;
}
#careerFormMessage > .is-error {
    color: var(--vls-red) !important;
}
.vls-field-error {
    color: var(--vls-red, #e03c31);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 6px;
}
.ts-wrapper.is-vls-invalid {
    border-color: var(--vls-red, #e03c31) !important;
}
input.is-vls-invalid,
select.is-vls-invalid,
textarea.is-vls-invalid,
.ts-wrapper.is-vls-invalid .ts-control,
.select2-container.is-vls-invalid .select2-selection,
.choices.is-vls-invalid .choices__inner,
.selectize-control.is-vls-invalid .selectize-input,
.bootstrap-select.is-vls-invalid > .dropdown-toggle,
.upload-box.has-vls-error {
    border-color: var(--vls-red, #e03c31) !important;
    box-shadow: 0 0 0 3px rgba(224, 60, 49, 0.12) !important;
}
.ts-wrapper .ts-control {
    padding-right: 32px !important;
}
.ts-dropdown {
    border: 1px solid #edf0f5;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 34px rgba(21, 31, 52, 0.12);
    color: #172036;
    font-size: 13px;
    margin-top: 4px;
    overflow: hidden;
    z-index: 10050;
}
.ts-dropdown .ts-dropdown-content {
    max-height: 310px;
    padding: 8px;
}
.ts-dropdown .option {
    border-radius: 6px;
    padding: 0;
}
.ts-dropdown .option[data-value=""] {
    display: none;
}
.ts-dropdown .option.active,
.ts-dropdown .option:hover {
    background: #f7f9fd;
}
.ts-dropdown .vls-tom-option {
    background: transparent;
    border: 0;
    color: #172036;
    display: block;
    padding: 9px 10px;
    text-align: left;
    width: 100%;
}
.ts-dropdown .vls-tom-option strong,
.ts-dropdown .vls-tom-option small {
    display: block;
}
.ts-dropdown .vls-tom-option small {
    color: #667085;
    font-size: 11px;
    margin-top: 2px;
}
.vls-login-field.has-vls-error input,
.vls-signup-field.has-vls-error input {
    border-color: var(--vls-red, #e03c31) !important;
    box-shadow: 0 0 0 3px rgba(224, 60, 49, 0.12);
}
.vls-login-field.has-vls-error .vls-login-field__password input {
    border-color: var(--vls-red, #e03c31) !important;
}
.vls-phone-control {
    display: block;
    width: 100%;
}
.vls-phone-control .iti__country-container {
    bottom: 0;
    top: 0;
}
.vls-phone-control .iti__selected-country {
    align-items: center;
    background: transparent;
    border-radius: 5px 0 0 5px;
    display: flex;
    height: 44px;
    padding: 0 10px 0 0;
}
.vls-phone-control .iti__selected-country-primary {
    height: 100%;
    padding: 0 7px 0 14px;
}
.vls-phone-control .iti__selected-country:hover .iti__selected-country-primary,
.vls-phone-control .iti__selected-country:focus .iti__selected-country-primary {
    background: #f7f7f7;
}
.vls-phone-control .iti__selected-dial-code {
    color: var(--vls-blue);
    font-size: 14px;
    line-height: 1;
    margin-left: 8px;
}
.vls-phone-control .iti__tel-input::placeholder {
    color: #bcbcbc;
}
.vls-phone-control .iti__country-list{
    font-size: 12px;
    color: #333;
}
.vls-phone-control .iti__search-icon{
    display: none;
}
.vls-phone-control.vls-phone-dropdown-closed .iti__dropdown-content,
.vls-phone-control.vls-phone-dropdown-closed .iti__country-list,
.vls-phone-control .vls-phone-dropdown-closed {
    display: none !important;
}
.vls-login-field .vls-field-error,
.vls-signup-field .vls-field-error {
    margin-top: 7px;
}
.vls-validation-field {
    align-content: start;
    --vls-validation-error-min-height: 16px;
}
.vls-validation-field > .vls-field-error {
    display: block;
}
.vls-validation-field > .vls-field-error[aria-hidden="true"] {
    margin-top: 0;
    min-height: 0;
}
.vls-validation-row.has-vls-row-error > .vls-validation-field > .vls-field-error,
.vls-validation-field.has-vls-error > .vls-field-error {
    margin-top: 6px;
    min-height: var(--vls-validation-error-min-height);
}
.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #001a78;
    border-radius: 4px;
    position: relative;
}
.export-btn {
    width: 190px;
    height: 42px;
    border: 1px solid #f0cfc9;
    color: #ef3e32;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 100%;
    letter-spacing: 0%;
}
.black-text {
    color: #444444;
}
.gray {
    color: #999;
}
.gray {
    color: #999;
}
.customs-performance__card:nth-child(1) .resources-performance__icon::before {
    background: url(../img/resources/icon/search.svg);
}
.customs-performance__card:nth-child(2) .resources-performance__icon::before {
    background: url(../img/resources/icon/view.svg);
}
.customs-performance__card:nth-child(3) .resources-performance__icon::before {
    background: url(../img/resources/icon/access.svg);
}
.customs-performance__card:nth-child(4) .resources-performance__icon::before {
    background: url(../img/resources/icon/improve.svg);
}
.customs-performance__card:nth-child(5) .resources-performance__icon::before {
    background: url(../img/resources/icon/stay.svg);
}
.map-info-card {
    position: static;
    width: 100%;
    margin-top: 18px;
    padding: 26px 22px;
}
.vls-global-loader {
    align-items: center;
    background: rgb(255 255 255 / 55%);
    color: var(--vls-blue);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    position: fixed;
    text-align: center;
    z-index: 9999;
}
.vls-global-loader[hidden] {
    display: none;
}
.vls-global-loader img {
    display: block;
    height: clamp(84px, 12vw, 150px);
    object-fit: contain;
    width: clamp(84px, 12vw, 150px);
}
body.vls-global-loader-active {
    overflow: hidden;
}
.vls-public-modal[hidden] {
    display: none;
}
.vls-public-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 1100;
}
.vls-public-modal__backdrop {
    background: rgba(9, 22, 34, .66);
    border: 0;
    cursor: default;
    inset: 0;
    padding: 0;
    position: absolute;
    width: 100%;
}
.vls-public-modal__dialog {
    background: var(--vls-white);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(9, 22, 34, .3);
    max-height: calc(100vh - 48px);
    max-width: 680px;
    overflow: auto;
    position: relative;
    width: 100%;
}
.vls-public-modal__header {
    align-items: flex-start;
    border-bottom: 1px solid #e4e8eb;
    display: flex;
    justify-content: space-between;
    padding: 26px 30px 22px;
}
.vls-public-modal__header h2 {
    color: #152b3c;
    font-size: 28px;
    margin: 3px 0 0;
}
.vls-public-modal__eyebrow {
    color: var(--vls-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0;
    text-transform: uppercase;
}
.vls-public-modal__close {
    background: #f3f5f6;
    border: 0;
    border-radius: 50%;
    color: #152b3c;
    font-size: 26px;
    height: 40px;
    line-height: 36px;
    padding: 0;
    width: 40px;
}
.vls-public-modal__form {
    display: grid;
    gap: 20px;
    padding: 26px 30px 30px;
}
.vls-public-modal__field {
    display: grid;
    gap: 8px;
}
.vls-public-modal__field label {
    color: #152b3c;
    font-size: 15px;
    font-weight: 700;
}
.vls-public-modal__field label span,
.vls-public-modal__field small,
.vls-public-modal__label-row > span {
    color: #697985;
    font-size: 13px;
    font-weight: 400;
}
.vls-public-modal__field input,
.vls-public-modal__field textarea {
    background: var(--vls-white);
    border: 1px solid #ccd4da;
    border-radius: 8px;
    color: #152b3c;
    font: inherit;
    padding: 12px 14px;
    width: 100%;
}
.vls-public-modal__field input[readonly] {
    background: #f5f7f8;
}
.vls-public-modal__field input:focus,
.vls-public-modal__field textarea:focus {
    border-color: var(--vls-red);
    box-shadow: 0 0 0 3px rgba(211, 33, 43, .12);
    outline: 0;
}
.vls-public-modal__field textarea {
    min-height: 125px;
    resize: vertical;
}
.vls-public-modal__label-row,
.vls-public-modal__actions {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.vls-public-modal__message {
    color: #697985;
    margin: 0;
    min-height: 22px;
}
.vls-public-modal__message[data-tone="error"] {
    color: #b42318;
}
.vls-public-modal__message[data-tone="success"] {
    color: #087a55;
}
.vls-public-modal__actions {
    border-top: 1px solid #e4e8eb;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 22px;
}
.vls-public-modal__button {
    background: var(--vls-white);
    border: 1px solid #dddddd;
    color: #000;
    height: 38px;
    min-width: 96px;
    padding: 0 18px;
}
.vls-public-modal__button--primary {
    background: var(--vls-red);
    border-color: var(--vls-red);
    color: var(--vls-white);
}
body.vls-public-modal-open {
    overflow: hidden;
}
.map-info-card {
    position: static;
    width: 100%;
    margin-top: 18px;
    padding: 26px 22px;
}
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    border: 1px solid #f2d3cf;
    background: #fff;
    color: #ef3e32;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.download-btn:hover {
    background: #ef3e32;
    color: #fff;
}
.customer-advisory-section {
    background: #f6f1eb;
    padding: 70px 0 55px;
    font-family: "Poppins", sans-serif;
}
.customer-advisory-header h1 {
    color: #001f7a;
    font-size: 60px;
    font-weight: 900;
    line-height: 57px;
    margin-bottom: 16px;
    letter-spacing: -2.5px;
}
.customer-advisory-header h1 span {
    color: #4fc3dc;
}
.customer-advisory-header p {
    color: #1d1d1d;
    font-size: 15px;
    line-height: 27px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0%;
}
.customer-advisory-box {
    background: #fff;
    border: 1px solid #ddd;
    min-height: 265px;
    margin-top: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdf-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff2f20;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 100%;
}
.pdf-label img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}
@media (min-width: 1366px) {
    .environment-image,
    .social-image{
        max-height: 680px;
    }
}
.home-quote-chooser {
    background: #ebebeb;
    min-height: 536px;
    overflow: hidden;
    padding: 54px 44px 42px;
    position: relative;
}
.home-common-quote {
    position: relative;
}
.home-common-quote__close {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 24, 113, 0.16);
    border-radius: 50%;
    color: #001871;
    cursor: pointer;
    display: inline-flex;
    font-size: 24px;
    font-weight: 400;
    height: 34px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 34px;
    z-index: 5;
}
.home-common-quote__close:hover,
.home-common-quote__close:focus-visible {
    border-color: #e03c31;
    color: #e03c31;
    outline: none;
}
.home-track-shipment__lookup,
.home-shipment-dummy__card {
    overflow: hidden;
    position: relative;
}
.home-track-shipment__lookup--map {
    background: #EBEBEB url("/static/img/home/map.png") no-repeat right 18px top 58px / 270px auto;
    padding: 54px 44px 42px;
}
.home-track-shipment__lookup h3,
.home-track-shipment__lookup p,
.home-track-shipment__form,
.home-shipment-dummy__card > h3,
.home-shipment-dummy__card > p,
.manage-documents-grid {
    position: relative;
    z-index: 2;
}
.home-track-shipment__lookup h3 {
    color: #001871;
    font-size: 26px;
    font-weight: 900;
    line-height: 28.6px;
    margin: 0 0 33px;
    position: relative;
}
.home-track-shipment__lookup h3::after {
    background: #001871;
    bottom: -17px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 102px;
}
.home-track-shipment__lookup p {
    color: #202020;
    font-size: 13px;
    line-height: 21.45px;
    margin: 0 0 44px;
}
.home-track-shipment__form {
    gap: 10px;
}
.home-track-shipment__form input {
    border-radius: 4px;
    font-size: 13px;
    min-height: 42px;
    padding: 10px 15px;
}
.home-track-shipment__form button {
    font-size: 13px;
    min-height: 48px;
}
.home-quote-chooser__content {
    max-width: 588px;
    position: relative;
    z-index: 2;
}
.home-quote-chooser__content h3 {
    color: #001871;
    font-size: 26px;
    font-weight: 900;
    line-height: 28.6px;
    margin: 0 0 27px;
    letter-spacing: 0%;
    position: relative;
}
.home-quote-chooser__content h3::after {
    background: #001871;
    bottom: -17px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 102px;
}
.home-quote-chooser__content p {
    color: #202020;
    font-size: 13px;
    font-weight: 400;
    line-height: 21.45px;
    margin: 0 0 40px;
    max-width: 340px;
    letter-spacing: 0%;
}
.home-quote-chooser__options {
    display: grid;
    gap: 15px;
}
.home-quote-chooser__option {
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    color: #001871;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    gap: 18px;
    height: 75px;
    justify-content: space-between;
    line-height: 1.25;
    padding: 0 16px;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.home-quote-chooser__option:hover,
.home-quote-chooser__option:focus {
    box-shadow: 0 12px 28px rgba(0, 24, 113, 0.1);
    color: #001871;
    transform: translateY(-1px);
}
.home-quote-chooser__option span {
    align-items: center;
    display: inline-flex;
    gap: 14px;
    min-width: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}
.home-quote-chooser__option span img {
    flex: 0 0 20px;
    height: 20px;
    object-fit: contain;
    width: 20px;
}
.home-quote-chooser__option > img {
    flex: 0 0 13px;
    height: 13px;
    object-fit: contain;
    width: 13px;
}
.home-quote-chooser__map {
    height: 205px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 58px;
    width: 270px;
    z-index: 1;
}
.home-quote-chooser__map img {
    display: block;
    height: auto;
    width: 100%;
}
select:not([multiple]):not([size]) {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23202020' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 8px;
}
select::-ms-expand {
    display: none;
}
.cookie-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1040;
    width: 350px;
    padding: 20px 25px;
    background: #001871;
    box-shadow: 0 -4px 6px 0 #1b1b1b2e;
    box-sizing: border-box;
    pointer-events: none;
    transform: translate3d(0, calc(100% + 24px), 0);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    will-change: transform;
}
.cookie-banner[hidden] {
    display: none;
}
.cookie-banner.is-visible {
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
}
.cookie-banner__inner {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.cookie-banner__content {
    margin-bottom: 25px;
}
.cookie-banner__title {
    margin: 0 0 7px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.4;
}
.cookie-banner__text {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}
.cookie-banner__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 16px;
}
.cookie-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-height: 40px;
    border: 1px solid #e03c31;
    border-radius: 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.cookie-banner__button--secondary {
    background: #fff;
    color: #e03c31;
}
.cookie-banner__button--primary {
    background: #e03c31;
    color: #fff;
}
.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
    opacity: .9;
}
@supports (content-visibility: auto) {
    .vls-home section:not(.home-hero):not(.home-trust-strip),
    .home-lcl-feature,
    .home-network,
    .home-services,
    .home-insights,
    .home-updates,
    .home-final-cta {
        content-visibility: auto;
        contain-intrinsic-size: 1px 760px;
    }
}
.home-final-cta .fcl-cta-primary,
.home-final-cta .vls-home-btn--primary {
    background: var(--vls-white);
    color: var(--vls-cyan);
    border-radius: 5px;
}
.home-final-cta .fcl-cta-outline,
.home-final-cta .vls-home-btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.42);
    color: var(--vls-white);
    border-radius: 5px;
}
.fcl-final-cta .home-final-cta__actions .fcl-cta-outline {
    border-color: rgba(255, 255, 255, 0.42);
}
.home-eyebrow,
.home-section-head>p,
.home-section-row .home-eyebrow {
    color: var(--vls-subtext-grey);
    font-size: 11px;
    font-weight: 700;
    line-height: 23px;
    text-transform: uppercase;
    letter-spacing: 2.8px;
}
.home-lcl-feature__copy>p:not(.home-eyebrow) {
    color: var(--vls-subtext-grey);
    font-size: 13.5px;
    line-height: 22px;
    margin-top: 18px;
    font-weight: 400;
    max-width: 420px;
}
.home-network__copy p:not(.home-eyebrow) {
    color: #FFFFFF80;
    font-size: 14px;
    line-height: 24px;
    margin: 28px 0 36px;
    max-width: 400px;
    font-weight: 400;
    line-height: 22px;
}
.home-network .home-eyebrow {
    color: var(--vls-cyan);
    letter-spacing: 2.8;
    font-size: 11px;
}
a.vls-home-btn img,
a.fcl-cta-primary img,
a.fcl-cta-outline img {
    width: 20px;
    height: auto;
}
.vls-home-btn:hover,
.fcl-cta-primary:hover,
button:hover,
.vls-btn:hover
{
    opacity: .9;
}
.fcl-cta-primary,
.fcl-cta-outline {
    align-items: center;
    border-radius: 5px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    height: 48px;
    justify-content: center;
    min-width: 205px;
    padding: 0 28px;
    text-decoration: none;
}
.fcl-cta-primary {
    background: var(--vls-red);
    color: var(--vls-white);
}
.fcl-cta-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--vls-white);
}
.fcl-final-cta .home-eyebrow {
    font-size: 10px;
}
.cfs-value-added .home-eyebrow {
    color: var(--vls-red);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 18px;
}
.cfs-digital .home-eyebrow {
    color: var(--vls-cyan);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 18px;
}
.cfs-compliance .home-eyebrow {
    color: var(--vls-red);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 18px;
}
.cfs-solution .home-eyebrow {
    color: var(--vls-red);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 18px;
}
.ipi-final-cta p:not(.home-eyebrow) {
    color: #FFFFFFA6;
    font-size: 14px;
    line-height: 23px;
    margin-top: 12px;
    max-width: 533px;
}
.fcl-breadcrumb {
    background: var(--vls-wild-sand);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.fcl-breadcrumb__inner {
    align-items: center;
    color: #888;
    display: flex;
    font-size: 11px;
    gap: 8px;
    min-height: 43px;
    padding: 12px 44px;
}
.fcl-breadcrumb__inner a,
.fcl-breadcrumb__inner strong {
    color: inherit;
    text-decoration: none;
}
.fcl-breadcrumb__inner strong {
    color: var(--vls-blue);
    font-weight: 600;
}
.home-network__map {
    height: 464px;
    overflow: hidden;
    position: relative;
    width: 480px;
}
.hazardous-section {
    background: #210800;
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
.hazardous-eyebrow {
    font-family: "Font 1", sans-serif;
    color: #f5a400;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 2.8px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 0;
}
.hazardous-title {
    color: #ffffff;
    font-size: 36px;
    line-height: 37.8px;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.hazardous-text {
    font-family: "Font 1", sans-serif;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    max-width: 86%;
    display: block;
    padding: 0;
    font-weight: 400;
    line-height: 24.75px;
    letter-spacing: 0%;
}
.hazardous-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 640px;
    margin-left: auto;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.hazardous-card {
    height: 92px;
    padding: 21px 22px;
    border-right: 2px solid #210800;
}
.hazardous-card h3 {
    color: var(--vls-white);
    font-size: 34px;
    line-height: 34px;
    font-weight: 900;
    margin: -4px -8px 11px;
    letter-spacing: -1px;
}
.hazardous-card p {
    margin: -9px;
    font-size: 10px;
    width: 100%;
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    vertical-align: middle;
    text-transform: uppercase;
}
.hazardous-section .hazardous-eyebrow {
    margin-bottom: 12px;
}
.hazardous-section .hazardous-text {
    margin-top: 20px;
}
.home-final-cta h2 {
    color: var(--vls-white);
    font-size: 36px;
    font-weight: 900;
    line-height: 38px;
}
.home-section-row h2{
    font-size: 34px;
}
.home-services,
.home-insights {
    padding: 60px 44px;
}
.home-section-row {
    align-items: start;
    display: flex;
    justify-content: space-between;
}
.home-section-row h2 {
    margin-top: 8px;
}
.home-eyebrow,
.home-section-head>p,
.home-section-row .home-eyebrow {
    color: var(--vls-subtext-grey);
    font-size: 11px;
    font-weight: 700;
    line-height: 23px;
    text-transform: uppercase;
    letter-spacing: 2.8px;
}
.home-insights .home-section-row .home-eyebrow {
    color: var(--vls-red);
    font-size: 11px;
}
.home-section-row .home-eyebrow {
    color: var(--vls-red);
    font-size: 11px;
}
.why-vanguard {
    background: #f5f3ef;
    padding: 82px 44px 77px;
    font-family: "Poppins", sans-serif;
}
.why-eyebrow {
    color: var(--vls-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 3px;
}
.why-title {
    color: var(--vls-blue);
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -1.5px;
}
.why-subtitle {
    color: #4d4d4d;
    font-weight: 400;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 0%;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dedbd4;
}
.why-card {
    min-height: 285px;
    padding: 40px 32px 35px 0;
    border-right: 1px solid #dedbd4;
}
.why-card:not(:first-child) {
    padding-left: 32px;
}
.why-card:last-child {
    border-right: 0;
}
.why-number {
    display: block;
    color: var(--vls-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.why-icon {
    width: 48px;
    height: 48px;
    background: #061b78;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
}
.why-icon img {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.why-card h3 {
    color: var(--vls-blue);
    margin: 0 0 12px;
    font-weight: 800;
    font-size: 18px;
    line-height: 21.6px;
    letter-spacing: 0%;
    width: 103%;
}
.why-card p {
    color: #4f4f4f;
    margin: 0;
    max-width: 280px;
    font-weight: 400;
    font-size: 12.5px;
    line-height: 21.88px;
    letter-spacing: 0%;
    width: 100%;
}
.what-we-do .why-eyebrow {
    margin-bottom: 13px;
}
.what-we-do .why-title {
    margin-bottom: 20px;
}
.what-we-do .why-subtitle {
    margin-bottom: 50px;
}
.why-vanguard .why-eyebrow {
    margin-bottom: 10px;
}
.why-vanguard .why-title {
    margin-bottom: 18px;
}
.why-vanguard .why-subtitle {
    margin-bottom: 37px;
}
.why-vanguard {
    background: var(--vls-white);
    padding: 68px 44px 82px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}
.why-vanguard .why-vanguard-eyebrow {
    color: var(--vls-red);
    margin: 0 0 22px;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.why-vanguard .why-vanguard-title {
    color: var(--vls-blue);
    margin: 0 0 28px;
    font-weight: 900;
    font-size: 50px;
    line-height: 48.5px;
    letter-spacing: -1.5px;
}
.why-vanguard .why-vanguard-text {
    color: #4f4f4f;
    margin: 0 0 54px;
    max-width: 680px;
    font-weight: 400;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: 0%;
}
.why-vanguard .why-vanguard-cards {
    padding-left: 36px;
}
.why-card {
    min-height: 106px;
    padding: 28px 30px;
}
.why-number-blue {
    color: var(--vls-blue)
}

.why-number-green {
    color: var(--vls-green)
}

.why-icon-green {
    background-color: var(--vls-green)
}

.why-number-cyan {
    color: var(--vls-cyan)
}

.why-icon-cyan {
    background-color: var(--vls-cyan)
}

.why-card-red {
    color: var(--vls-red)
}

.why-icon-red {
    background-color: var(--vls-red)
}