
body, p, li {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1rem, calc(1rem + ((1vw - 0.36rem) * 0.1488)), 1.125rem);
    font-weight: 300;
    line-height: 1.5;
    color: #000000;
}


/*
-----------------------------------------
Base
-----------------------------------------
*/


a {
    text-decoration: none;
    color: var(--link-primary);
}

a:hover,
button:hover {
    color: var(--hover-primary);
}

.text-dark {
    color: #000;
}

.text-white {
    color: #fff;
}

.h-dark {
    color: #000;
}

.h-light {
    color: #fff;
}

.yellow-border {
    border-left: 4px solid #FFDE14;
    padding-left: 1rem;
}


.border-white {
    border-color: #fff;
}

.product:hover .yellow-border {
    border-color: #6D7578;
}

.bg-grey {
    background: #F8F8F8;
}

.bg-dark-blue {
    background: #192847;
}

.split-block .bg-dark-blue p,
.split-block .bg-dark-blue h2,
.split-block .bg-dark-blue h3,
.split-block .bg-dark-blue li,
.split-block .bg-dark-blue a {
    color: #fff;
}

.split-block .bg-dark-blue h2,
.split-block .bg-dark-blue h3 {
    color: #FFDE14;
}

/* ------ Typography ------ */

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    line-height: 1.1;
    margin-bottom: 0.25em;
    color: #000000;
}

h1 {
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.36rem) * 0.8929)), 2.75rem);
    font-weight: 800;
    color: #000000;
}

h2 {
    font-size: clamp(1.75rem, calc(1.75rem + ((1vw - 0.36rem) * 0.4464)), 2.125rem);
    font-weight: 700;
    color: #000000;
}

h3 {
    font-size: clamp(1.5rem, calc(1.5rem + ((1vw - 0.36rem) * 0.1488)), 1.625rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p, li {
    font-size: clamp(1rem, calc(1rem + ((1vw - 0.36rem) * 0.1488)), 1.125rem);
    line-height: 1.5;
}


bold, strong {
    font-weight: 700;
}

p.ingress {
    font-size: clamp(1.25rem, calc(1.25rem + ((1vw - 0.36rem) * 0.1488)), 1.375rem);
    font-weight: 400;
}

ol, ul {
    padding-left: 1rem;
}

/* ------ END Typography ------ */


a {
    color: #204CA2;

}

    a:hover {
        text-decoration: none;
    }



/*
-----------------------------------------
Components
-----------------------------------------
*/

/* 
--------------------------------------------------------------------------------------------------------------------------------------------------
SCROLL-TO
--------------------------------------------------------------------------------------------------------------------------------------------------
*/

.scroll-to {
    display: block;
    position: relative;
    top: -90px;
    visibility: hidden;
}

@media screen and (min-width: 992px) {


    .scroll-to {
        top: -130px;
    }
}


/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    font-size: 0.875rem;
    background-color: #fff;
    padding: 1rem 1.5rem;
    color: #000 !important;
    font-weight: 600;
    transition: all ease 0.2s;
    border: 2px solid #fff;
    width: fit-content;
    border-radius: 0;
    text-transform: uppercase;
    line-height: 1;
}



    .btn:hover,
    .btn:active,
    .btn:first-child:active {
        background-color: #FFDE14;
        color: #000;
    }



.btn.btn-transparent {
    background-color: transparent;
    border-color: #000;
    color: #000;
}



    .btn.btn-transparent:hover {
        background-color: #FFDE14;
        border-color: #FFDE14;
        color: #000;
    }

    .btn.btn-yellow {
        background-color: #FFDE14;
        border-color: #FFDE14;
        color: #000;
    }


.hero .btn {
    color: #fff !important;
    border-color: #fff;
    background: transparent;
}

    .hero .btn:hover {
        color: #000 !important;
        border-color: #FFDE14;
        background: #FFDE14;
    }


/* ---------- Backgrounds ---------- */

.bg-primary {
    background-color: #f8f8f8;
}

.bg-white {
    background-color: #fff;
}

.bg-transparent {
    background-color: transparent;
}



/* ------ Spacing utilities ------ */
.container-x {
    padding-left: 1rem;
    padding-right: 1rem;
}

.container-y {
    padding-top: clamp(2.5rem, calc(2.5rem + ((1vw - 0.36rem) * 4.6875)), 5rem);
    padding-bottom: clamp(2.5rem, calc(2.5rem + ((1vw - 0.36rem) * 4.6875)), 5rem);
}

@media (min-width: 576px) {
    .container-x {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 992px) {
    .container-x {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (min-width: 1700px) {
    .container-x {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}
/* ------ END Spacing utilities ------ */

/* ---------- Padding x/y space ---------- */

.padding-x-space {
    padding-left: var(--spacing-default);
    padding-right: var(--spacing-default);
    transition: .5s;
}

.padding-y-space {
    padding-top: var(--spacing-default);
    padding-bottom: var(--spacing-default);
    transition: .5s;
}

@media (min-width: 768px) {
    .padding-x {
        padding-left: var(--spacing-medium);
        padding-right: var(--spacing-medium);
    }

    .padding-y {
        padding-top: var(--spacing-medium);
        padding-bottom: var(--spacing-medium);
    }
}

@media (min-width: 1200px) {
    .padding-x {
        padding-left: var(--spacing-large);
        padding-right: var(--spacing-large);
    }

    .padding-y {
        padding-top: var(--spacing-large);
        padding-bottom: var(--spacing-large);
    }
}

@media (min-width: 1400px) {
    .padding-x-space {
        padding-left: var(--spacing-xl);
        padding-right: var(--spacing-xl);
    }

    .padding-y-space {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
    }
}

@media (min-width: 1700px) {
    .padding-x-space {
        padding-left: var(--spacing-xxl);
        padding-right: var(--spacing-xxl);
    }

    .padding-y-space {
        padding-top: var(--spacing-xxl);
        padding-bottom: var(--spacing-xxl);
    }
}

/* ---------- Overlays ---------- */

.overlay-container {
    position: relative;
}

.content-on-dark-overlay,
.content-on-light-overlay {
    position: relative;
    z-index: 3;
}

    .content-on-dark-overlay h1,
    .content-on-dark-overlay h2,
    .content-on-dark-overlay h3,
    .content-on-dark-overlay h4,
    .content-on-dark-overlay p {
        color: #fff;
    }

    .content-on-light-overlay h1,
    .content-on-light-overlay h2,
    .content-on-light-overlay h3,
    .content-on-light-overlay h4,
    .content-on-light-overlay p {
        color: var(--text-dark);
    }

.overlay-primary {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-primary);
    z-index: 2;
}

.overlay-dark {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark);
    z-index: 2;
}

.overlay-light {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-light);
    z-index: 2;
}

/* ---------- Filters ---------- */
/*
    Filters generated using this codepen: https://codepen.io/sosuke/pen/Pjoqqp
*/

.filter-img-to-dark {
    filter: brightness(0) saturate(100%) invert(19%) sepia(64%) saturate(2822%) hue-rotate(177deg) brightness(88%) contrast(101%);
}

.filter-img-to-light {
    filter: brightness(0) saturate(100%) invert(100%) sepia(28%) saturate(0%) hue-rotate(20deg) brightness(111%) contrast(100%);
}

/* ---------- Forms ---------- */

input[type="checkbox"],
input[type="radio"],
input[type="range"],
progress {
    accent-color: var(--accent-color);
}

/* ---------- Split-blocks ---------- */

.split-block {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    max-width: 1920px;
    margin: 0 auto;
}

    .split-block .split-block-img {
        flex-basis: 100%;
        width: 100%;
        max-height: 500px;
    }

        .split-block .split-block-img img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            aspect-ratio: 3/2;
        }

.header-blocks .split-block .split-block-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    background: #F2F3F4;
}

.split-block .split-block-content {
    flex-basis: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (min-width: 1200px) {
    .split-block .split-block-img {
        flex-basis: 50%;
        width: 50%;
        max-height: 100%;
    }


    .split-block .split-block-content {
        flex-basis: 50%;
    }
}

/* Split-block variations */

.split-block.lg-img .split-block-img {
    flex-basis: 60%;
}

.split-block.lg-img .split-block-content {
    flex-basis: 40%;
}

.alternating .split-block .split-block-img {
    order: 1;
}

.alternating .split-block .split-block-content {
    order: 2;
}

@media screen and (min-width: 1200px) {

    .alternating .split-block:nth-child(even) .split-block-img {
        order: 1 !important;
    }

    .alternating .split-block:nth-child(even) .split-block-content {
        order: 2 !important;
    }

    .alternating .split-block:nth-child(odd) .split-block-img {
        order: 2 !important;
    }

    .alternating .split-block:nth-child(odd) .split-block-content {
        order: 1 !important;
    }
}

.split-block-img {
    position: relative;
}

    .split-block-img video {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

/*
-----------------------------------------
HEADER
-----------------------------------------
*/

.header .subheadline {
    max-width: 800px;
}

/*
-----------------------------------------
FOOTER
-----------------------------------------
*/

footer {
    background-color: #192847;
    background-image: url(/media/4xcp3sxl/footer.svg);
    background-size: cover;
    background-repeat: no-repeat;
}


footer h3 {
    color: #FFDE14;
    font-size: 1.25rem;
    font-weight: 600;
    border-top: 1px solid rgba(171, 182, 186, 0.50);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

    footer .policy-link {
        color: #000;
        width: 100%;
        border-top: 1px solid rgba(171, 182, 186, 0.50);
        padding-top: 1rem;
        display: block;
    }

    footer p,
    footer svg,
    footer li,
    footer a {
        color: #fff;
    }

    footer a {
        transition: all ease 0.3s;
    }

    footer a:hover {
        opacity: 0.8;
    }

    footer ul {
        padding: 0;
    }

    footer li {
        list-style: none;
    }

    .sm-icons a svg {
        width: auto;
        height: 35px;
    }

    .footer-logo {
        width: 200px;
        height: auto;
    }

/*
-----------------------------------------
NAVBAR
-----------------------------------------
*/

nav.navbar {
    justify-content: center
}

.navbar {
    justify-content: space-between;
    align-items: initial;
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    transition: all ease 0.4s;
    height: 72px;
    z-index: 1200;
}

.nav-spacer {
    margin-top: 72px;
}

.navbar-light {
    background-color: #192847;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.navbar-show {
    transform: none;
}


@media screen and (min-width: 992px) {
    .navbar {
        height: 90px;
    }

    .nav-spacer {
        margin-top: 90px;
    }
}


/* ---------- Logo ---------- */

.navbar-brand {
    display: flex;
}

    .navbar-brand img {
        width: 160px;
        transition: 0.15s;
        transition: filter ease-in-out .3s;
    }

        .navbar-brand img:hover {
            filter: none;
        }

@media screen and (min-width: 992px) {
    .navbar .navbar-brand img {
        width: 200px;
    }
}

.navbar-dark .logo-dark {
    display: block;
    opacity: 1;
}

.navbar-dark .logo-light {
    display: none;
    opacity: 0;
}

.navbar-light .logo-light {
    display: block;
    opacity: 1;
}

.navbar-light .logo-dark {
    display: none;
    opacity: 0;
}


/* ---------- Mobile menu button ---------- */

.navbar-toggler:focus {
    outline: none;
}

.navbar .navbar-toggler {
    width: 35px;
    height: 28px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    border: none;
    z-index: 1032;
}

.navbar-toggler {
    position: relative;
    width: 30px;
    height: 22px;
    border: none;
}

    .navbar-toggler svg {
        height: 1.5em;
    }

/*.navbar-toggler span {
        display: block;
        position: absolute;
        height: 2px;
        width: 30px;
        background: #000000;
        opacity: 1;
        left: 0;
    }*/

.navbar-dark .navbar-toggler svg {
    color: #fff;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 10px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

@media screen and (min-width: 992px) {

    .navbar-toggler {
        display: none;
    }
}

/* ----- Offcanvas mobile menu ----- */

.offcanvas-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow-y: auto;
    transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 1032;
    overflow-x: hidden;
}

    .offcanvas-collapse.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
    }

#mob-nav {
    padding: 0;
}

@media screen and (min-width: 400px) {

    .offcanvas-collapse {
        width: 380px;
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

        .offcanvas-collapse.open {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
}

#mobileMenu .nav-item {
    border-bottom: 1px solid #D4D4D6;
}

#mobileMenu .nav-link {
    color: #000;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

#mobileMenu .nav-link:hover {
    color: #999;
}

/* Mobile menu close button */

.close-button {
    cursor: pointer;
    font-size: 32px;
    padding: 0 0.25rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    height: 30px;
    width: 30px;
    margin-right: 0.75rem;
}

.main-menu-mobile .top-nav-item {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .main-menu-mobile .top-nav-item svg {
        color: #000;
    }

    .main-menu-mobile .top-nav-item span:nth-child(1) {
        top: 15px;
        transform: rotate(45deg);
    }

    .main-menu-mobile .top-nav-item span:nth-child(2) {
        top: 15px;
        transform: rotate(-45deg);
    }

#mobileMenu #language-menu .nav-link {
    font-weight: 400;
    opacity: 0.8;
    padding: 1rem;
}

/* Mobile submenu */

.main-menu-mobile .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 100%;
    overflow-y: auto;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10;
    padding: 0;
    opacity: 0;
    max-width: 100%;
    background-color: #fff;
}

    .main-menu-mobile .offcanvas-submenu-collapse.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    .main-menu-mobile .offcanvas-submenu-collapse .top-nav-item {
        justify-content: space-between;
    }

.main-menu-mobile .back-button {
    justify-content: flex-start;
    font-size: 30px;
    margin-left: 1rem;
    color: #000000;
}

.navbar-toggler svg{
    color: #fff;
}

.main-menu-mobile svg {
    color: #000;
}
.main-menu-mobile .submenu {
    list-style: none;
    padding-left: 0;
}

.main-menu-mobile .offcanvas-submenu-collapse .submenu:first-child .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

#mobileMenu .main-menu-mobile .submenu-submenu .nav-item .nav-link {
    white-space: normal;
    font-weight: 400;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu > .nav-item:last-child {
    border-bottom: 1px solid #A1B7B6;
}

.main-menu-mobile .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

.main-menu-mobile .submenu-item .nav-link {
    text-transform: none;
}


.submenu-submenu.level-3 .nav-link {
    padding-left: 2rem !important;

}
.submenu-submenu .item-2 {
    font-weight: 500 !important;
    border-bottom: 1px solid #D4D4D6;
}
/* ---------- Desktop menu ---------- */
#desktopMenu {
    display: none;
}

@media screen and (min-width: 992px) {

    #desktopMenu {
        display: flex;
    }
}

#main-menu {
    flex-direction: row;
    align-items: center;
}

/*    #main-menu .nav-item {
        position: relative;
    }*/

    #main-menu .nav-link {
        font-weight: 500;
        color: #fff;
        padding: 0.5rem 0 0.5rem 1rem;
        transition: all ease 0.15s;
        font-size: 1rem;
    }

#top-nav .nav-link {
    font-weight: 500;
    color: var(--link-primary);
    padding: 0.5rem 0;
    transition: all ease 0.15s;
    text-transform: uppercase;
    font-size: .875rem;
}

#main-menu > .nav-item > .nav-link {
    margin-right: .5rem;
}


#main-menu > .nav-item:last-child > .nav-link {
    margin-right: 0;
    padding-right: 0;
}

.navbar-dark #main-menu .nav-link,
.navbar-dark #top-nav .nav-link {
    color: #fff;
}


@media screen and (min-width: 1700px) {


    #main-menu > .nav-item > .nav-link {
        margin-right: 1rem;
    }
}

#language-menu .nav-link img{
    height: 16px;
    width: 16px;
    margin-right: 0.25rem;
}

/* Desktop dropdown menus */


#main-menu .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
    position: absolute;
}
#main-menu .nav-item:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}
#main-menu .dropdown-toggle::after,
#language-menu .dropdown-toggle::after {
    display: none;
}

#main-menu .dropdown:hover .dropdown-menu,
#language-menu .dropdown:hover .dropdown-menu {
    display: block;
}

#main-menu .dropdown-menu,
#language-menu .dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 0;
    position: absolute;
    top: calc(100% - 2px);
    padding: 0;
    width: 240px;
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
    margin-top: 2px;
}

.navbar-dark #main-menu .dropdown-menu {
    background-color: var(--overlay-primary);
    box-shadow: none;
}

    .navbar-dark #main-menu .dropdown-menu .nav-link {
        color: #fff
    }

#main-menu .dropdown-menu .nav-link,
#language-menu .dropdown-menu .nav-link {
    color: #000;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 1rem;
    border-bottom: 1px solid var(--lightgrey-color);
    line-height: 1;
}

#main-menu .dropdown-menu .nav-link:hover,
#language-menu .dropdown-menu .nav-link:hover {
    font-weight: 500;
}

#main-menu .dropdown-menu .nav-item:last-child .nav-link,
#language-menu .dropdown-menu .nav-item:last-child .nav-link {
    border-bottom: none;
}


#main-menu .mega-menu {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    border: none;
    background: #F8F8F8;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    list-style: none;
    margin: 0;
    border-radius: 0;
    border: none;
    padding-bottom: 2rem;
    min-height: 384px;
    padding-top: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-align-last: left;
}

#main-menu li:hover .mega-menu {
    display: block; /* Show the mega menu on hover of the list item */
}


    #main-menu .mega-menu.show .columns-holder {
        column-count: 4;
        column-gap: 2rem;
    }

#main-menu .collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

#main-menu .dropdown-col {
    flex-grow: 0;
    flex-shrink: 0;
    padding-bottom: 1.5rem;
    break-inside: avoid-column;
    overflow: hidden;
}

#main-menu .mega-menu .nav-link {
    text-transform: none;
    padding: 0.5rem 0;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
    width: 100%;
    text-align: left;
    color: #000;
}

.dropdown-submenu .nav-link {
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

#main-menu .mega-menu h3 a {
    margin-bottom: 0.25rem;
    color: #000;
}

#main-menu .mega-menu .user-manual {
    width: fit-content;
    height: auto;
}

#main-menu .mega-menu .user-manual-holder h3 {
    font-weight: 600;
    font-size: 1.125rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid #000;
    padding: 0.5rem 0;
    color: #000;
}

    #main-menu .mega-menu .user-manual-holder h3:hover {
        color: #999;
        border-top: 1px solid #999;
    }

#main-menu .mega-menu .user-manual-link {
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    color: #000;
    font-weight: 500;
}

#main-menu .mega-menu h3 .nav-link {
    font-weight: 600;
    font-size: 1.125rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid #000;
    text-align: left;
}

#main-menu .mega-menu .h3 {
    font-weight: 600 !important;
    font-size: 1.125rem;
    padding-bottom: 0.75rem !important;
    border-top: 1px solid #000;
    text-align: left;
    text-transform: none;
    padding: 0.5rem 0;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
    width: 100%;
    text-align: left;
    margin-bottom: 0.25rem;
    color: #000;
}

#main-menu .mega-menu .nav-link:hover, 
#main-menu .nav-link:hover,
#language-menu .nav-link:hover {
        color: #999;
}

#main-menu .mega-menu a:focus-visible {
    border: 1px solid #000;
}

#main-menu .dropdown-submenu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.menu-text p{
    font-weight: 400;
    line-height: 1.5;
    font-size: 1rem;
    color: #000;
}


@media screen and (min-width: 1400px) {

    #main-menu .nav-link,
    #language-menu .nav-link {
        padding: 0.5rem 1rem;
    }
}

@media screen and (min-width: 1700px) {

    #main-menu .mega-menu {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }


    #main-menu .nav-link,
    #language-menu .nav-link {
        font-size: 1.125rem;
        padding: 0.875rem 1.25rem;
    }
}

/* Desktop language menu */


#desktopMenu #language-menu {
    flex-direction: row;
}

#language-menu .nav-link {
    font-weight: 400;
    font-size: 0.875rem;
    color: #fff;
    padding: 0.5rem 1.5rem 0.5rem 0;
    transition: all ease 0.15s;
}

#mobileMenu #language-menu .nav-link {
    color: #000;
}

    #desktopMenu #language-menu .nav-item:last-child .nav-link {
        padding-right: 0;
    }

.navbar-dark #desktopMenu #language-menu .nav-link {
    color: #fff;
}

@media screen and (min-width: 1700px) {

    #desktopMenu #language-menu .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1.875rem 0.5rem 0;
    }
}

/* ----- Breadcrumb ----- */

.breadcrumb {
    padding: 0.75rem 1rem;
}

    .breadcrumb li {
        font-size: .875rem;
        font-weight: 500;
    }

        .breadcrumb li a {
            color: #999999;
            text-decoration: none;
            font-weight: 500;
        }

            .breadcrumb li a:hover {
                color: #0F244D;
            }

        .breadcrumb li .divider {
            margin: 0 .25rem;
        }

        .breadcrumb li.active {
            color: #0F244D;
        }


/*

/* 
-----------------------------------------
HOMEPAGE
-----------------------------------------
*/

/* Hero */

.hero {
    height: calc(100vh - 72px);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .hero video {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        z-index: -1;
        filter: brightness(70%);
    }

.hero-inner {
    display: flex;
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.hero-content {
    width: 100%;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
}

@media screen and (min-width: 768px) {
    .hero-content {
        width: 60%;
    }
}

@media screen and (min-width: 992px) {
    .hero {
        height: calc(100vh - 90px);
    }

}

@media screen and (min-width: 1200px) {
    .hero-content {
        width: 50%;
    }
}

.hero.dark h1 {
    color: #fff;
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.36rem) * 1.1905)), 3rem);
    text-shadow: 5px 5px 10px #00000033;
}

.hero.dark p,
.hero.dark p.ingress {
    color: #fff;
    text-shadow: 5px 5px 10px #00000033;
}

.hero.light h1 {
    color: var(--headline-dark)
}

.hero.light p,
.hero.light p.ingress {
    color: var(--headline-dark);
}


/*
-----------------------------------------
CONTACT PAGE
-----------------------------------------
*/

.contact-page .contact-image {
    aspect-ratio: 1/1;
}

    .contact-page .contact-image img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        max-width: 400px;
        max-height: 400px;
    }

.contact-persons .contact-person {
    flex-basis: 100%;
    width: 100%;
}

    .contact-persons .contact-person .person-image {
        aspect-ratio: 1/1;
    }

        .contact-persons .contact-person .person-image img {
            max-width: 100%;
            width: auto;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 1/1;
            border-radius: 1000px;
            filter: grayscale();
        }

@media screen and (min-width: 768px) {
    .contact-persons .contact-person {
        flex-basis: 50%;
        width: 50%;
    }
}

@media screen and (min-width: 1200px) {
    .contact-persons .contact-person {
        flex-basis: 33%;
        width: 33%;
    }
}
/*
-----------------------------------------
Products
-----------------------------------------
*/

.product-category-item {
 /*   flex-basis: 100%;*/
    margin-bottom: 1rem;
}


.product {
    background: #fff;
    padding: 1rem;
    height: 100%;
    display: block;
    transition: all ease 0.2s;
    box-shadow: rgba(60, 64, 67, 0.2) 0px 1px 2px 0px, rgba(60, 64, 67, 0.10) 0px 1px 3px 1px;
    border-radius: 4px;
}

    .product h3 {
        font-size: clamp(1.125rem, 1rem + 0.4167vw, 1.5rem);
    }



products-section .product-text {
    padding-top: 1.5rem;
    border-top: 1px solid #CCC;
}

.products-section .product-text h3:after {
    background-color: #FFDE14;
    content: "";
    display: flex;
    height: 4px;
    margin: 1rem auto;
    width: 4rem;
    transition: all ease 0.2s;
}

.product:hover .product-text h3:after {
    background: #6D7578;
}



.products-section .product-text h3 {
    text-align: center;
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product .product-img {
    aspect-ratio: 1/1;
}

@media screen and (min-width: 568px) {
    .product-category-item {
    /*    flex-basis: calc(50% - 1rem);*/
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 992px) {

    .home-products-text {
        padding-top: 1rem;
    }

}

/*@media screen and (min-width: 1200px) {


    .product-category-item {
        flex-basis: calc(20% - 1rem);
    }
}*/

.products-slider .product {
    margin-right: 1rem;
}

/*
-----------------------------------------
Slick slider 
-----------------------------------------
*/

.products-slider .slick-list {
    padding: 1rem 20% 1rem 0 !important;
    box-shadow: -4px 0px 1px 0px #0000000F inset;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

    .slick-prev img,
    .slick-next img {
        height: 1.5rem;
        width: auto;
    }

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        color: transparent;
        outline: none;
        background: transparent;
    }

        .slick-prev:hover:before,
        .slick-prev:focus:before,
        .slick-next:hover:before,
        .slick-next:focus:before {
            opacity: 1;
        }

    .slick-prev.slick-disabled:before,
    .slick-next.slick-disabled:before {
        opacity: .25;
    }

    .slick-prev:before,
    .slick-next:before {
        font-family: 'slick';
        font-size: 20px;
        line-height: 1;
        opacity: .75;
        color: white;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

.slick-prev {
    left: -40px;
}

[dir='rtl'] .slick-prev {
    right: -40px;
    left: auto;
}


.slick-next {
    right: -40px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -40px;
}


/* Dots */
/*.slick-slider {
    margin-bottom: 30px;
}*/

.slick-dots {
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 20px;
            height: 20px;
            padding: 5px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            background: transparent;
        }

            .slick-dots li button:hover,
            .slick-dots li button:focus {
                outline: none;
            }

                .slick-dots li button:hover:before,
                .slick-dots li button:focus:before {
                    opacity: 1;
                }

            .slick-dots li button:before {
                font-family: 'slick';
                font-size: 6px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                content: '•';
                text-align: center;
                opacity: .25;
                color: black;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

        .slick-dots li.slick-active button:before {
            opacity: .75;
            color: black;
        }

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0 0 1rem 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}


.intro-section p {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
}

@media screen and (min-width: 992px) {
    .intro-section {
        max-width: 60%;
        margin: 0 auto;
    }
}

.service .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.service {
    display: block;
    height: 100%;
    box-shadow: 0px 0px 8px 1px #00000033;
    background: #fff;
}

    .service .service-text {
        padding: 1rem;
        text-align: center;
    }

    .service .service-text {
        padding: 1rem;
    }


/* ---------- Header section ---------- */

.section-header {
    margin-bottom: 1.5rem;
    max-width: 90%;
    margin: 0 auto 1rem;
}

    .section-header.container {
        max-width: 600px;
    }



@media screen and (min-width: 992px) {

    .section-header {
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 1200px) {

    .section-header {
        margin-bottom: 2.25rem;
    }
}

/* ---------- Logos section ---------- */

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-auto-rows: auto;
    gap: 0;
}

@media (min-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.logo-img {
    border: 1px solid #CCC;
    height: 100%;
}

    .logo-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: .5s;
    }

.logos-text p,
.logos-text li {
    font-size: 1.25rem;
}

/* ---------- Banner section ---------- */

.banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
}

.banner-text {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(8px);
}


@media (min-width: 992px) {

    .banner-text {
        padding: 2rem;
    }
}

/* ---------- News section ---------- */


.news-section h3 {
    margin-top: 0;
}

.date {
    font-size: 0.875rem;
}

.more-link-item {
    text-align: end;
}


    .more-link-item .more-link {
        text-transform: uppercase;
        color: #242728;
    }

/* 
-----------------------------------------
Regional Contact Banner
-----------------------------------------
*/
.regional-contact-banner > div {
    min-width: 60%;
}

.contact-intro-item .dropdown {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #CCC;
}

.regional-contact-banner .contact-info {
    height: 100%;
    width: fit-content;
}

.regional-contact-banner .contact-image img {
    object-fit: cover;
    object-position: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.regional-contact-banner .dropdown-toggle {
    background: #FFDE14;
    border: 0;
    padding: .5rem 1rem;
    font-weight: 500;
}

    .regional-contact-banner .dropdown-toggle:hover {
        background-color: #575D60;
        color: #fff;
    }

.regional-contact-banner .dropdown-menu {
    border-radius: 0;
}

@media (max-width: 991px) {
    .regional-contact-banner .contact-info {
        width: 100%;
    }
}

.contact-person p {
    margin-bottom: 0;
}

.contact-person .contact-name {
    font-weight: 700;
}

/* ---------- Umbraco forms ---------- */

.regional-contact-banner .umbraco-forms-form textarea,
.subpage .umbraco-forms-form textarea {
    height: 120px;
}

.regional-contact-banner .umbraco-forms-form fieldset,
.subpage .umbraco-forms-form fieldset {
    margin: 0 !important;
    padding: 0 !important;
}

.regional-contact-banner .umbraco-forms-form legend,
.subpage .umbraco-forms-form legend {
    font-family: var(--font-family-headers);
    font-size: clamp(1.5rem, 1.3333rem + 0.5556vw, 2rem);
    color: var(--headline-dark);
    font-weight: 800;
}

.regional-contact-banner .umbraco-forms-form,
.subpage .umbraco-forms-form {
    width: 100%;
}

    .regional-contact-banner .umbraco-forms-form input.text,
    .regional-contact-banner .umbraco-forms-form input.title,
    .regional-contact-banner .umbraco-forms-form select,
    .regional-contact-banner .umbraco-forms-form textarea,
    .subpage .umbraco-forms-form input.text,
    .subpage .umbraco-forms-form input.title,
    .subpage .umbraco-forms-form select,
    .subpage .umbraco-forms-form textarea {
        margin: 0.75em 0;
        border: 0;
        background: #f2f3f4;
        width: 100%;
        max-width: 100% !important;
    }


.regional-contact-banner input::placeholder,
.regional-contact-banner textarea::placeholder,
.subpage input::placeholder,
.subpage textarea::placeholder {
    font-size: 1rem;
}
/* 
-----------------------------------------
Subpage
-----------------------------------------
*/

.margin-top {
    margin-top: 72px;
}

@media screen and (min-width: 992px) {
    .margin-top {
        margin-top: 90px;
    }
}

.subpage header {
    background: #F2F3F4;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    aspect-ratio: 4 / 1;
    min-height: 240px;
    width: 100%;
}

.subpage h1 {
    font-weight: 800;
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.36rem) * 0.8929)), 2.75rem);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.header-text p{
    color: #000;
}

.subpage-header-text {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

    .subpage-header-text .subpage-header-row {
        padding: min(3vw, 2.5rem);
        border-radius: 4px;
        box-shadow: rgba(60, 64, 67, 0.2) 0px 1px 2px 0px, rgba(60, 64, 67, 0.10) 0px 1px 3px 1px;
        margin-top: -4rem;
    }

.subpage .bg:nth-child(even) {
    background: #fff;
}

.subpage .bg:nth-child(odd) {
    background: #f8f8f8;
}
/* ----- Products category page----- */


.subpage-header .header-headline {
    padding: 1rem;
}


.subpage-header .header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media screen and (min-width: 992px) {
    .subpage-header .header-headline {
        padding: 3rem 4rem;
    }
}

.subpage .slide-product .product-item {
    margin: 0.5rem;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    background: #fff;
    padding: 1rem;
    height: 100%;
    display: block;
}



.subpage .slide-product h3 {
    font-size: clamp(1.125rem, 1rem + 0.4167vw, 1.5rem);
}

.subpage .slide-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.subpage .slide-product .product-img {
    aspect-ratio: 1/1;
    padding: 1rem;
    border-radius: 4px;
}

.subpage .single-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 350px;
}

.subpage .product-text {
    padding: 1rem 0 0 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.subpage .board-page .product,
.subpage .contact-page .product {
    margin-right: 0;
}


.subpage .board-page .product-text,
.subpage .contact-page .product-text {
    padding: 1rem 0 0 0;
}

.subpage .board-page .product:hover .yellow-border,
.subpage .contact-page .product:hover .yellow-border {
    border-color: #FFDE14;
}

.subpage .board-page .product-img,
.subpage .contact-page .product-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .subpage .board-page .product-img img,
    .subpage .contact-page .product-img img {
        width: 75%;
        height: 75%;
        object-fit: cover;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }


/* ----- Products page----- */
.products-page .split-block .split-block-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
}

/* ----- Product page----- */

.product-nav {
    width: 100%;
}

    .product-nav .nav-item {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.20);
        width: 100%;
    }

    .product-nav .nav-link {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 1rem;
        width: 100%;
        color: #242728;
        padding: 0;
    }

    .product-nav .nav-link svg {
        transition: 0.5s;
        padding-right: 0.25rem;
    }

    .product-nav .nav-link:hover svg {
        transform: rotate(90deg);
    }

    .product-box {
        height: 100%;
        padding: 1rem;
    }


@media screen and (min-width: 992px) {

    .product-box {
        padding: 2rem;
    }
}

.accordion#technicalAccordion,
.reference-page .accordion,
.tech-accordion {
    background-color: #fff;
    --bs-accordion-border-color: transparent !important;
}

.tech-accordion .accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    margin-bottom: 1rem;
    background: #fff;
}

    #technicalAccordion .accordion-button,
    .reference-page .accordion-button,
    .tech-accordion .accordion-button {
        border: 0;
        background-color: #fff;
        outline: 0;
        box-shadow: none;
    }


    .tech-accordion .accordion-button:after {
        content: none;
    }

.content {
    position: relative;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(87,93,96,0) 0%, rgba(255,255,255,1) 100%);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

    .gradient-overlay.d-none {
        opacity: 0;
    }

.content {
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 1;
}

    .content.expanded {
        max-height: 2000px; /* Set a large value */
        opacity: 1;
    }


.expand-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    margin-bottom: 1rem;
    background: #fff;
}

    .expand-btn:hover {
        color: #242728 !important;
    }

    .expand-btn svg {
        transition: transform 0.3s ease-in-out;
        font-size: 1.5rem;
    }




.reference-page .accordion-button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 0 !important;
    padding-left: 0;
}


.reference-page .accordion-item {
    border: 0;
    background-color: #fff;
}


.content table {
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.documents {
    list-style-type: none;
}

    .documents li {
        padding: 0.5rem 0 0.5rem 1rem;
        margin-bottom: 1rem;
    }

        .documents li a {
            color: #242728
        }

            .documents li a svg {
                padding-right: 0.5rem;
            }

.carousel-item {
    position: relative;
    aspect-ratio: 4/3;
}



.carousel-caption {
    position: absolute;
    top: 50%;
    left: 1rem;
    bottom: unset;
    right: unset;
    text-align: left;
    transform: translateY(-50%);
    background: #FFFFFF99;
    padding: 1rem;
    gap: 24px;
    border-radius: 16px;
    width: 50%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-caption h1 .txt-red {
    font-weight: 700;
    font-size: clamp(2rem, -0.25rem + 5vw, 5.75rem);
}

.carousel-caption h1 .txt-blue {
    font-weight: 500;
    font-size: clamp(1.25rem, 0.25rem + 3.3333vw, 4.25rem);
}



@media screen and (min-width: 992px) {
    .carousel-caption {
        top: 50%;
        left: 3rem;
        bottom: unset;
        right: unset;
        text-align: left;
        transform: translateY(-50%);
        background: #FFFFFF99;
        padding: 3rem;
        gap: 24px;
        border-radius: 16px;
        width: 50%;
    }
}

@media screen and (min-width: 1200px) {

    .carousel-caption {
        left: 5rem;
    }
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #D9D9D9;
}


.carousel-control-next-icon {
    background-image: url(/media/3kxf4spb/next.svg);
}

.carousel-control-prev-icon {
    background-image: url(/media/14wj44jm/previous.svg);
}

.carousel-indicators .active {
    background: #D9D9D9;
    border: 1px solid #D9D9D9;
}

.application {
    border-radius: 4px;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.20);
    height: 100%;
}

.application-txt {
    border-bottom: 1px solid #0000004D;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

    .application .application-img {
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .application .application-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            max-width: 132px;
        }

    .application .application-text {
        padding: 1rem;
    }

@media screen and (min-width: 992px) {

    .application .application-text {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }
}



/*
-----------------------------------------
NEWS PAGE
-----------------------------------------
*/


.selected-news-item {
    margin-bottom: 2rem;
}

    .selected-news-item figure {
        margin-bottom: 1rem;
    }

    .selected-news-item .date {
        font-size: 0.875rem;
        font-weight: 400;
        margin-bottom: 0.25rem;
    }

    .selected-news-item h1 {
        margin-bottom: 1rem;
    }

    .selected-news-item figure img {
        width: 100%;
    }

@media screen and (min-width: 768px) {

    .selected-news-item {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1700px) {

    .selected-news-item {
        padding-right: 5rem;
    }
}

.news-list-posts h2 {
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

@media screen and (min-width: 1700px) {

    .news-list-posts h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.news-list-posts .news-list-post {
    margin-bottom: 2rem;
}

.news-post {
    border-radius: 4px;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.20);
    height: 100%;
}

.news-list-post.news-post .news-text {
    padding: 1rem;
}

.news-section .news-text {
    height: 100%
}

.news-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-img img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.news-list-post figure {
    margin-bottom: 0;
}

    .news-list-post figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 3/2;
    }



.news-list-post .date {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.news-list-post h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

p.news-list-preview {
    margin-bottom: 0;
}

@media screen and (min-width: 1992px) {

    .news-text {
        padding: 1.5rem 1.5rem 3rem 1.5rem;
    }
}

@media screen and (min-width: 1700px) {

    .news-list-post h3 {
        font-size: 1.375rem;
    }

    p.news-list-preview {
        font-size: 1rem;
    }
}

.news-page a.tag-link {
    margin: 1rem 1rem 1rem 0;
    display: inline-block;
    color: #242728 !important;
    font-weight: 600;
    font-size: 1.25rem;
}

    .news-page a.tag-link.active {
        border-bottom: 2px solid #FFDE14;
    }

.pagination {
    margin-bottom: 0;
}

    .pagination .page-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pagination .page-link {
        background-color: transparent;
        border: none;
        border-radius: 0;
        color: #999999;
        font-weight: 600;
        padding: 0 0.625rem;
        font-size: 1.125rem;
    }

        .pagination .page-link:focus,
        .pagination .page-link:active {
            box-shadow: none;
            border: none;
            outline: none;
        }

    .pagination .page-link-arrow {
        color: #34434B;
        font-size: 0.875rem;
        padding: 0 0.25rem;
    }

    .pagination .page-link-hide {
        visibility: hidden;
    }

    .pagination .page-item.active .page-link {
        background-color: transparent;
        color: #34434B;
    }


/*
-----------------------------------------
Timeline PAGE
-----------------------------------------
*/


.flex-page {
    display: flex;
    justify-content: center;
}

.hl-content {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



.scroll-page h3,
.scroll-page h2,
.scroll-page p,
p.source {
    color: #242728;
}

.scroll-page p {
    color: #2D2D2D;
}

    .scroll-page p.img-caption {
        margin-top: 0.5rem;
        font-size: 1rem;
    }


@media (max-width: 575.98px) {
    .scroll-page em {
        margin-top: 20px;
    }

    .scroll-page h2 {
        font-size: 1.4em;
        margin-bottom: 5px
    }

    .scroll-container {
        margin-top: 0px;
        z-index: 0
    }

    .scroll-page {
        padding-top: 0;
        align-items: baseline;
        height: auto;
        width: 100%;
    }

    .scroll-container {
        overflow-y: hidden;
        height: auto;
    }

    .decades {
        margin-bottom: 20px;
    }
}


.timeline-nav {
    list-style: none;
    top: 33%
}

    .timeline-nav li {
        list-style: none
    }

    .timeline-nav a {
        display: block;
        text-align: right;
        padding-bottom: 10px;
        color: #2D2D2D;
        text-decoration: none;
        position: relative;
        transition: padding 150ms linear
    }

        .timeline-nav a::after {
            position: absolute;
            right: 0;
            opacity: 0;
            transition: opacity 150ms linear
        }

        .timeline-nav a.active {
            padding-right: 20px
        }

            .timeline-nav a.active::after {
                content: "●";
                color: #cae0e4;
                opacity: 1
            }

        .timeline-nav a.to-left {
            text-align: left;
            padding-left: 50px
        }

.navbar-toggler-my-icon {
    background-image: none !important;
    outline: 0;
    content: none !important
}

.navbar-toggler {
    border: 0;
    padding: 0;
    outline: 0 !important
}

    .navbar-toggler:hover {
        opacity: .8
    }

nav, .scroll-container {
    display: block;
    margin: 0 auto;
    text-align: center
}

.scroll-container {
    width: 100%;
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth
}

.slides h1 {
    color: #2D2D2D !important;
    width: 100%;
    margin: 30px auto;
    text-align: center;
    font-size: 2.35rem;
    font-weight: 600
}

.scroll-page {
    display: flex;
    font-size: 1em;
    text-align: left;
}

    .scroll-page img {
        z-index: 999;
        position: relative;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .scroll-page h2 {
        text-align: left;
        margin-bottom: 20px
    }



    .scroll-page .right-border {
        border-right: 4px solid #FFDE14;
    }

        .scroll-page .right-border em {
            font-weight: 400;
            font-size: .75rem;
            margin-top: 7px
        }

    .scroll-page .slide-column-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
        position: relative;
    }

    .scroll-page .marign-20-r {
        margin-right: 2rem;
    }

    .scroll-page .ex-20-margin {
        margin-left: 2rem;
    }

    .scroll-page .item-line {
        position: absolute;
        top: 15px;
        border-bottom: 4px solid #FFDE14;
        right: 0;
        z-index: 0;
        width: 25%;
    }

    .scroll-page .item-line-text {
        position: absolute;
        top: 45px;
        border-bottom: 4px solid #FFDE14;
        height: 2px;
        left: 0;
        z-index: 0;
        width: 50%;
    }

@media (min-width: 992px) {
    .scroll-page .item-line-text {
        width: 75%;
    }

    .scroll-page .item-line {
        width: 75%;
    }
}

.scroll-page .infografik-text {
    z-index: 999;
    position: relative;
    right: 0;
    left: 0;
    background: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
}



.anchor-decades {
    display: block;
    width: 100%;
    height: 0;
    margin-top: -20px;
    margin-bottom: 20px;
}


.scroll-page .marign-20-r canvas .infografik-text h3,
.scroll-page .marign-20-r canvas .infografik-text p {
    text-align: right;
}


@media (max-width: 991px) {

    .quiz-page #quiz-header-wrapper h1 {
        hyphens: auto;
    }


    .timeline-page .row {
        margin: 0;
    }

    .timeline-page .right-border.slide-column-padding {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

        .timeline-page .right-border.slide-column-padding.no-image {
            padding-top: 0;
            padding-bottom: 0;
        }

    .scroll-page .right-border,
    .slide-column-padding {
        border-left: 4px solid #FFDE14;
        border-right: none;
    }

    .scroll-page .marign-20-r {
        margin-left: 1rem;
        margin-right: 0;
        padding-left: 15px;
    }

        .scroll-page .marign-20-r .infografik-text h3,
        .scroll-page .marign-20-r .infografik-text h4 {
            text-align: left;
        }

    .hl-content {
        flex-grow: 1;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

        .hl-content .decades {
            border-left: 1px solid #2D2D2D;
        }

    .scroll-page .item-line {
        left: 0;
    }

    .scroll-page .ex-20-margin {
        margin-left: 2rem;
    }
}


@media (min-width: 992px) {


    .scroll-page .marign-20-r .infografik-text h3,
    .scroll-page .marign-20-r .infografik-text h4 {
        text-align: right;
    }
}

.image-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

img.tagline {
    height: 48px;
    margin-top: 0.5rem
}

.contact-button {
    position: fixed;
    bottom: 3rem;
    right: 0.5rem;
    z-index: 1000;
}

@media (min-width: 576px) {
    .contact-button {
        right: 1.5rem;
    }
}

@media (min-width: 992px) {
    .contact-button {
        right: 3rem;
    }
}

.sticky-contact {
    position: fixed;
    bottom: 3rem;
    right: 0.5rem;
    z-index: 1000;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}



@media (min-width: 576px) {
    .sticky-contact {
        right: 1.5rem;
    }
}

@media (min-width: 992px) {
    .sticky-contact {
        right: 3rem;
    }
}

.sticky-contact:hover .shake {
    animation: shake 0.9s both;
}

.sticky-contact .txt {
    display: flex;
    padding: 0.25rem 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    background-color: #FFDE14;
    border-radius: 30px;
    text-align: center;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #242728;
    margin-bottom: 0;
}

.sticky-contact img {
    width: 72px;
    height: auto;
}

@keyframes shake {
    0% {
        transform: translateY(-8px);
        animation-timing-function: ease-in;
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    40% {
        transform: translateY(-12px);
        animation-timing-function: ease-in;
    }

    65% {
        transform: translateY(-6px);
        animation-timing-function: ease-in;
    }

    82% {
        transform: translateY(-3px);
        animation-timing-function: ease-in;
    }

    93% {
        transform: translateY(-2px);
        animation-timing-function: ease-in;
    }

    25%, 55%, 75%, 87% {
        transform: translateY(0px);
        animation-timing-function: ease-in;
    }

    100% {
        transform: translateY(0px);
        animation-timing-function: ease-in;
        opacity: 1;
    }
}

.grid-container-anchor-link {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.anchor-link {
    background: #F8F8F8;
    padding: 1rem;
}

.anchor-link p{
    color: #000;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
}

.anchor-link p:after {
    background-color: #FFDE14;
    content: "";
    display: flex;
    height: 4px;
    margin: 1rem auto 0;
    width: 4rem;
    transition: all ease 0.2s;
}

.anchor-link:hover p:after {
    background: #6D7578;
}


@media (min-width: 992px) {
    .anchor-link p {
        font-size: 1.25rem;
    }
}

/*
-----------------------------------------
Contact PAGE
-----------------------------------------
*/

/*
Umbraco forms
*/

.contact-form .umbraco-forms-form input.text, 
.contact-form .umbraco-forms-form textarea {
    width: 100%;
    max-width: 100% !important;
}

.contact-form .umbraco-forms-form input.text,
.contact-form .umbraco-forms-form input.title,
.contact-form .umbraco-forms-form select,
.contact-form .umbraco-forms-form textarea {
    margin: .5em 0;
    border: 1px solid #bbb;
    padding: 0.75rem 1.25rem;
}
    .contact-form .umbraco-forms-form input.text:focus-visible,
    .contact-form .umbraco-forms-form input.title:focus-visible,
    .contact-form .umbraco-forms-form select:focus-visible,
    .contact-form .umbraco-forms-form textarea:focus-visible {
        border-radius: 0;
    }

/*
-----------------------------------------
Support & services PAGE
-----------------------------------------
*/

/*
Accordion
*/

.accordion-item.download-category {
    border: 0;
    margin-bottom: 1rem;
    border-radius: 0;
}

.accordion-headline:first-child {
    margin-top: 0;
}

.accordion-headline {
    margin-top: 1.5rem;
}

.download-category.accordion-item h3 {
    font-size: 1.125rem;
}

@media screen and (min-width: 768px) {
    .download-category.accordion-item h3 {
        font-size: 1.25rem;
    }
}

.download-category.accordion-item .accordion-button {
    border-radius: 0 !important;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid #CCC;
    padding-left: 0;
}

.download-category.accordion-item.faq-item .accordion-button,
.download-category.accordion-item.faq-item .accordion-button h3 {
    color: #000;
}

    .download-category.accordion-item.faq-item .accordion-button h3 {
        padding-right: 2rem;
    }

.download-category.accordion-item .accordion-button:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.download-category.accordion-item .accordion-button h3 {
    color: #fff;
    font-weight: 700;
}

.accordion button svg.fa-plus,
.accordion button svg.fa-minus {
    font-size: 1.25rem;
}

.accordion button:not(.collapsed) svg.fa-plus {
    display: none;
}

.accordion button.collapsed svg.fa-minus {
    display: none;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
    content: none;
}

.accordion .download-item {
    background: #F6F5F1;
    margin-bottom: 0.5rem;
}

    .accordion .download-item:last-child {
        margin-bottom: 0;
    }

    .accordion .download-item .download-text {
        padding: 0.5rem;
    }

    .accordion .download-item h4 {
        color: #000;
    }

.accordion .accordion-body {
    padding: 1rem 0 0 1rem;
}

#collection-accordion button {
    background: #2B2B2B;
}

.case-item img {
    width: 100%;
    height:100%;
    object-fit:cover;
}

.cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items:center;
}

    .cta-section .cta-text {
        background: rgba(255, 255, 255, 0.60);
        backdrop-filter: blur(4px);
        text-align: center;
        max-width: 720px;
        margin: 0 auto;
    }

@media screen and (min-width: 768px) {

    .cta-section .cta-text {
        background: rgba(255, 255, 255, 0.60);
        backdrop-filter: blur(4px);

    }
}
ul.job-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.job-list li {
        padding: 14px 20px;
        transition: background-color 0.3s ease;
    }

        ul.job-list li:nth-child(even) {
            background-color: #ffffff; 
        }

        ul.job-list li:nth-child(odd) {
            background-color: #F8F8F8;
        }

    ul.job-list a {
        display: block;
        color: #192847;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 0.2px;
        transition: color 0.3s ease, transform 0.2s ease;
    }

        ul.job-list a:hover {
            text-decoration: underline;
        }
