html{ overflow-y: scroll;}

/* ===========================================================
   Design tokens (17502 redesign) — ported from the NewStyle
   line so colors live in one place. Only the values actually
   used by the redesigned parts are defined here.
   =========================================================== */
:root {
    --evo-blue: #2f55b8;
    --evo-blue-light: #5b8def;
    --evo-navy: #11213a;
    --evo-text: #44546a;
}

body {
    font-family: "BarlowSemiCondensed";
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

.c-text-dark {
    color: #075382;
}

.c-text {
    color: #2f55b8;
}

.c-background-dark {
    background-color: #075382;
}

.c-background {
    background-color: #2f55b8;
}

.c-background-grey {
    background-color: #f1f1f1;
}

.c-background-white {
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

/* Body copy: no letter-spacing, softer ink and a tighter leading — the
   typographic base of the NewStyle line. */
p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--evo-text);
    line-height: 1.8;
    letter-spacing: normal;
    font-weight: 400;
}

/* Headings: sentence case (no uppercase), navy ink, slightly tighter
   tracking and rhythm. */
h1 {
    font-weight: 700;
    font-size: 2em;
    color: var(--evo-navy);
}

h2 {
    font-weight: 700;
    text-transform: none;
    font-size: 34px;
    letter-spacing: -0.01em;
    margin-bottom: 26px;
    color: var(--evo-navy);
    margin-top: 40px;
}

h3 {
    font-size: 1.375rem;
    margin-top: 15px;
    color: var(--evo-navy);
    font-weight: 600;
}

@media (max-width: 991px) {
    h2 {
        font-size: 28px;
    }
}

img {
    width: 100%;
}

/* Solid call-to-action button, same shape as the hero primary button so the
   two read as one design language. */
.btn-evo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    background-color: var(--evo-blue);
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-evo:hover {
    background-color: #3a64d0;
    color: #ffffff;
    transform: translateY(-2px);
}

/** header */

.top-menu {
    font-size: 17px;
    padding-left: calc(100vw - 100%);
}

.container:not(.top-menu-container) {
    padding-left: calc(100vw - 100% + 12px);
}

.top-menu .contact {
    font-size: 15px;
    font-weight: 500;
}

.top-menu img {
    width: 220px;
}

@media(max-width: 1199px) {
    .top-menu img {
        width: 180px;
    }
}

.navbar-light .navbar-nav .nav-link {
    background: none;
    color: black;
    cursor: pointer;
    letter-spacing: unset;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link span {
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover span,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: #2f55b8;
}

.navbar-nav .nav-item a span::after {
    background-color: #2f55b8;
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    left: 50%;
    border-radius: 0px 5px 5px 0px;
    bottom: 5pt;
    transition: width 0.3s ease 0s, left 0.3s ease 0s, opacity 0.3s ease 0s;
    opacity: 0;
}

.navbar-nav .nav-item a:hover span::after,
.navbar-nav .nav-item a.active span::after {
    width: 100%;
    left: 0;
    opacity: 1;
}

/* ===========================================================
   Main menu: rounded highlight on the active item (NewStyle),
   kept airy — the pill carries its own padding and the items
   keep the generous spacing of this layout instead of the
   tighter NewStyle rhythm. Hover stays an underline.
   =========================================================== */
.top-menu .navbar-nav .nav-item {
    margin: 0 6px;
}

.top-menu .navbar-nav .nav-item a.nav-link {
    padding: 4px 0;
}

.top-menu .navbar-nav .nav-item a.nav-link span {
    display: inline-block;
    padding: 9px 20px !important;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Active item: marked by the underline only — no filled pill behind it. */
.top-menu .navbar-nav .nav-item a.nav-link.active span {
    color: var(--evo-blue);
}

/* Hover: a thin underline that grows out from the centre. It is absolutely
   positioned, so it never changes the item's height — no jumping menu. */
.top-menu .navbar-nav .nav-item a.nav-link span::after {
    height: 2px;
    border-radius: 2px;
    bottom: 5px;
}


@media (max-width: 991px) {
    /* vertical mobile menu: keep the pill, drop the wide side padding */
    .top-menu .navbar-nav .nav-item {
        margin: 2px 0;
    }

    .top-menu .navbar-nav .nav-item a.nav-link span {
        padding: 8px 16px !important;
    }

    /* no hover underline on touch — it otherwise sticks as a stray blue line */
    .top-menu .navbar-nav .nav-item a.nav-link span::after {
        display: none;
    }
}

/** topbar */
/* Same navy "blueprint" surface as the homepage hero, so the motif is
   shared across the site. Overrides the flat c-background-dark fill that
   the markup still carries. */
.topbar {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 78% 30%, #1d4070 0%, #102541 45%, #0a1626 100%);
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    /* the topbar is shallower than the hero, so the grid fades from its middle */
    -webkit-mask-image: radial-gradient(circle at 72% 45%, #000 0%, rgba(0, 0, 0, 0.25) 70%, transparent 100%);
    mask-image: radial-gradient(circle at 72% 45%, #000 0%, rgba(0, 0, 0, 0.25) 70%, transparent 100%);
}

.topbar .container {
    position: relative;
    z-index: 1;
}

.topbar h1 {
    text-align: center;
    font-size: 3em;
    font-weight: 500;
    color: white;
}

.topbar h1 span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
}

/** footer */

.footer {
    /*background-image: linear-gradient(70deg, #0f2d46, #0f2d46);*/
    background-color: #0f2d46;
    color: white;
}

.footer p,
.footer span,
.footer h1,
.footer h2,
.footer h3,
.footer h4 {
    color: white;
    font-size: 1.2em !important;
    line-height: normal;
    margin-top: 0;
}

.footer hr {
    width: 100%;
    height: 3px;
    background-color: white;
    opacity: 1;
}

.footer h3 {
    font-size: 1.8em !important;
}

.footer .logo-white {
    height: 40px;
    width: auto;
}
.footer .certificate {
    width: 50%;
}

/** CHAT */
body #clickNowContact {
    color: #ffffff;
    height: 75px;
    padding: 14px 20px;
    font-size: 28px;
    font-weight: 300;
    background: #075382;
    cursor: pointer;
    width: 75px;
    border-radius: 50%;
    position: fixed;
    z-index: 999;
    right: 25px;
    bottom: 25px;
}
body #clickNowContact i {
    transform: scaleX(-1);
    font-size: 35px;
    margin: 0;
    top: 0;
    left: -1px;
    color: white;
}
body .clickNow {
    position: fixed;
    width: 75px;
    height: 75px;
    bottom: -24px;
    right: -24px;
    transition: 0.5s;
    z-index: 1000;
    background: #f9f9f9;
    border: 1px solid lightgray;
    opacity: 0;
    z-index: 1000;
    border-radius: 100%;
    overflow: hidden;
}
body .clickNow[isHidden=false] {
    width: 344px;
    height: 400px;
    transition: 0.5s;
    cursor: default;
    border-radius: 5px;
    opacity: 1;
    z-index: 1000;
    bottom: 24px;
    right: 24px;
}
body .clickNow i {
    color: #ffffff;
    font-size: 21px;
    margin-left: 12px;
    transition: 0.3s;
    position: relative;
    top: 2px;
}
body .clickNow p {
    color: #000;
    float: left;
    width: 342px;
    height: 78px;
    text-align: left;
    padding: 20px;
    transition: 0.3S;
    line-height: 1.4;
    font-weight: 300;
    font-size: 14px;
}
body .clickNow span {
    margin-bottom: 0;
}
body .clickNow span.clickNowHeader {
    background: #075382;
    float: left;
    width: calc(100% + 2px);
    text-align: right;
    padding: 10px 15px;
    border-top-left-radius: 4px;
    border-top-right-radius: 5px;
    border: 1px solid #075382;
    margin: -1px;
}
body .clickNow span.clickNowHeader:hover {
    cursor: pointer;
}
body .clickNow span.cont {
    float: left;
    width: 100%;
    text-align: left;
    margin-top: 0;
    cursor: default;
    position: relative;
}
body .clickNow span.cont label {
    font-size: 14px;
    font-weight: 300;
    cursor: default;
    float: left;
    width: 50%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

#snippet-contactForm-contactForm button[name='send'] {
    margin-top: 5px;
}

body .clickNow span.cont label.phone {
    text-align: start;
    position: absolute;
    top: calc(-2.5rem - 1px);
}
body .clickNow span.cont label.email {
    text-align: start;
    position: absolute;
    top: calc(-1.25rem - 1px);
}
body .clickNow span.cont label a {
    color: black;
}
body .clickNow span.inputContact {
    float: left;
    width: 100%;
}
body .clickNow span.inputContact form {
    float: left;
    width: 100%;
    margin: 0;
    position: relative;
    padding: 0 20px;
}
body .clickNow span.inputContact form span#frm-contactForm-contactForm-contact_message {
    text-align: left;
    position: absolute;
    right: 40px;
    top: 47px;
    font-size: 14px;
    font-weight: 400;
    color: #c0392b !important;
}
body .clickNow span.inputContact form span#frm-contactForm-contactForm-reason_message {
    text-align: left;
    position: absolute;
    right: 40px;
    top: 0;
    font-size: 14px;
    font-weight: 400;
    color: #c0392b !important;
}
body .clickNow span.inputContact form select {
    float: left;
    width: 100%;
    padding: 10px;
    background: white;
    border: 1px solid lightgray;
    margin-bottom: 5px;
    outline: 0;
    font-size: 14px;
}
body .clickNow span.inputContact form input {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    height: 40px;
    outline: 0;
    border: 1px solid lightgray;
    background: white;
    margin-bottom: 5px;
}
body .clickNow span.inputContact button {
    float: right;
    width: 80px;
    height: 40px;
    outline: 0;
    border: none;
    background: #075382;
    text-align: center;
    cursor: pointer;
    margin-top: -1px;
}
body .clickNow span.inputContact button i {
    font-size: 18px;
    margin-left: 0;
}

.square-outer {
    position: relative;
    padding-top: 100%;
    height: 0%;
}

.square-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-vertical-center {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}


.CookieDeclaration {
    display: none;
}

.CybotCookiebotDialogContentWrapper {
    border: 1px solid #0f2d46 !important;
    border-radius: 7px !important;
}


#CybotCookiebotDialog {
    border-radius: 7px !important;
}

.cursorgrab {
    cursor: pointer;
}