.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit {
    overflow: hidden;
    *overflow: visible;
    padding: 0 10px;
    *zoom: 1;
}

.unit { /* unit - Base class which divides a line into sections (columns). */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding: 0;
    /* box-sizing:border-box; creates a box-model where
       padding and border are NOT added onto the width - they are included in the width,
       so a 200px wide element with 20px padding will be 200px, NOT 240px wide */
}

.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
    float: right;
}

/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space.
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
    float: none;
}

.size1of2 {
    width: 50%;
}

.size1of3 {
    width: 33.33333%;
}

.size2of3 {
    width: 66.66666%;
}

.size1of4 {
    width: 25%;
}

.size3of4 {
    width: 75%;
}

.size1of5 {
    width: 20%;
}

.size2of5 {
    width: 40%;
}

.size3of5 {
    width: 60%;
}

.size4of5 {
    width: 80%;
}

.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
    _left: -3px;
    _margin-right: -3px;
    _position: relative;
    /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters.
       meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
    float: none;
    width: auto;
}

/* MAIN LAYOUT */
body {
    background: #3385d6;
    margin: 0;
    min-width: 240px;
    -webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}

.ie7 body,
.ie8 body {
    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
}

.main {
    background: #fff;
    min-height: 300px;
}

.inner {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 30px;
}

.ie6 .inner {
    width: 960px;
}

.no-sidebar .content-container {
    float: left;
    width: 100%; /* makes content container full width when there is no sidebar */
}

.sidebar { /* this is the sidebar element */
    margin-top: 12px;
}

.no-sidebar .sidebar {
    display: none;
}

.no-sidebar .main .inner {
    grid-template-columns: auto;
}

/* HEADER */
.header-top {
    background-color: #f6f6f6;
    padding: 7px 0;
    z-index: 1021;
}

.header {
    background: #ffffff;
    border-bottom: 5px solid var(--primary-color);
    box-shadow: 0 5px 5px var(--black-transparent);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.header .inner {
    display: grid;
    grid-template-columns: 250px auto;
    min-height: 72px;
    padding: 8px 0;
    position: relative;
}

/* Brand */
header .brand,
header .brand:hover {
    color: #000;
    display: inline-block;
    float: left;
}

.header .brand .logo {
    max-width: 250px;
}

.language-switch {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.language-switch ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.language-switch li.current a {
    border-color: var(--secondary-color);
}

.language-switch li a {
    border: 2px solid #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    border-radius: 4px;
    overflow: hidden;
}

.language-switch li a:hover {
    border-color: var(--secondary-color);
}

.language-switch li a img {
    filter: grayscale(0.25);
}

.language-switch li a:hover img {
    filter: grayscale(0);
}

.language-switch .link {

}

.brand h1 {
    color: #fff;
    font-family: "HelveticaNeueLTPro-Bd", "Helvetica Neue LT Pro Bold", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue LT Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-stretch: normal; /* default value. No font stretching */
    font-weight: 600;
    line-height: 1em;
    margin: 0;
    padding: 0;
}

.brand p {
    color: #888;
    margin-bottom: 22px;
}

/* Search form */

.search-bar {
    position: absolute;
    right: 13px;
    top: 12px;
}

.search-bar .field {
    margin: 0;
    padding: 0;
}

.search-bar form input.text {
    background: #fff;
    border: none;
    border-radius: 14px;
    color: #888;
    margin: 0;
    padding: 5px 34px 5px 15px;
    width: 155px;
}

.search-bar form input.action { /* positions the search button icon over the top of the search input */
    background: none;
    border: none;
    border-radius: 0;
    color: #848484;
    cursor: pointer;
    font-family: 'WebSymbolsRegular';
    font-size: 14px;
    margin: 0;
    padding: 5px;
    position: absolute;
    right: 5px;
    top: 0;
}

.search-bar form input.active,
.search-bar form input.action:hover {
    color: #000;
}

.search-bar form input:focus,
.header textarea:focus {
    outline: none; /* removes default browser outlining on focus */
}

.search-dropdown-icon {
    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
}


/* NAVIGATION */

/* Primary navigation */
.header .inner .unit {
    position: relative; /* used to position the main navigation */
}

.header .primary {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.header .primary ul {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.header .primary li {
    margin: 0 3px;
    white-space: nowrap; /* forces text to never wrap onto a second line */
}

.header .primary li a {
    color: #111111;
    display: block;
    font-size: 18px;
    padding: 6px 8px;
}

.header .primary li a.current,
.header .primary li a.section {
    color: var(--primary-color);
}

.header .primary li a.current ~ .secondary,
.header .primary li a.section ~ .secondary {
    display: flex;
}

.header .primary .secondary {
    background: var(--white);
    bottom: -8px;
    display: none;
    position: absolute;
    right: 0;
    width: 100%;
}

.header .primary .secondary li {
    padding-bottom: 0;
    position: relative;
}

.header .primary .secondary li a {
    color: #666666;
    font-size: 16px;
}

.header .tertiary li {
    display: flex;
    margin: 0;
    padding-bottom: 0;
    width: 100%;
}

.header .primary .secondary .tertiary li.current a,
.header .primary .secondary .tertiary li a:hover {
    background: var(--black-transparent);
}

.header .primary li:hover .secondary {
    display: flex;
    z-index: 9996;
}

.header .primary .secondary .tertiary {
    align-items: flex-start;
    background: linear-gradient(#0052a3, #3385d6);
    display: none;
    flex-direction: column;
    left: 0;
    padding-top: 5px;
    position: absolute;
    top: 100%;
    z-index: 9997;
}

.header .primary .secondary li:last-child .tertiary {
    left: unset;
    right: 0;
}

.header .primary .secondary .tertiary li a {
    color: var(--white);
    font-size: 14px;
    width: 100%;
}

.header .primary li .secondary li:hover .tertiary {
    display: flex;
}

.header .primary li:hover > a {
    color: var(--primary-color);
}
.header .primary li:hover > a.no-action {
    color: #000;
}

.header .secondary li:hover > a {
    background-color: var(--primary-color);
    color: var(--white);
}

.header .primary li.section a,
.header .primary li.current a {
    background-color: var(--primary-color);
    color: #ffffff;
}

.header .primary li.section ul a,
.header .primary li.current ul a {
    background-color: transparent;
}

.header .primary li.section:hover > a,
.header .primary li.current:hover > a {
    background-color: #0052a3;
}

/* Tablet Navigation */
/* When navigation and logo overlap tablet-nav is initialized */
.tablet-nav .brand p {
    margin-bottom: 0;
}

.tablet-nav .header .inner {
    padding-top: 20px;
}

.tablet-nav .header .primary ul {
    clear: both;
    float: left;
    margin: 20px 0 0 -13px;
    position: relative;
    right: auto; /* resets the right property value that is set for the desktop site */
    white-space: nowrap;
}

.tablet-nav .header .primary ul li {
    white-space: nowrap;
}

.tablet-nav .header .primary ul li a { /* there is no hover on touch devices so no transition on hover is necessary */
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
}

.tablet-nav .footer .right {
    float: left;
    width: 100%;
}

.main .inner {

}

.main > .inner,
.main > .content-container > .inner {
    padding-top: 40px;
    padding-bottom: 40px;
    /*min-height: 600px;*/
}

.content-image {
    float: right;
    margin-left: 20px;
}

.product-images {
    padding: 40px 0;
}

/* Secondary navigation */
.main .secondary h3 {
    color: #AAA;
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 8px 0;
}

.main .secondary {
    background-color: #f6f6f6;
}

.main .secondary ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.main .secondary li {
    list-style-type: none;
    margin-bottom: 0;
    position: relative;
}

.main .secondary li a {
    border-bottom: none;
    color: #333;
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 17px;
    padding: 10px;
    text-transform: uppercase;
}

.main .secondary li a:hover {
    background-color: #dddddd;
    color: #111111;
}

.main .secondary li .text {
    display: block;
    padding-left: 28px;
}

.main .secondary li.current a.current {
    background-color: var(--primary-color);
    color: #ffffff;
}

.main .secondary li.section,
.main .secondary li.current {
    background-color: #F3F3F3;
}

.main .secondary li.section a,
.main .secondary li.current a {
    color: #000;
}


/* Secondary navigation 2-5 levels deep */
.main .secondary ul ul {
    display: none;
}

.secondary ul li.current ul,
.secondary ul li.section ul {
    border: 3px solid #EDEDED;
    display: block;
}

.main .secondary li.section ul a,
.main .secondary li.current ul a {
    padding-left: 20px;
}

.secondary li.current ul ul {
    display: none;
}

.main .secondary ul ul li a {
    padding-left: 10px;
}

/* Indent all sidebar navigation levels*/
.main .secondary ul ul li a .arrow {
    left: 12px;
}

.main .secondary ul ul li a:hover .arrow {
    left: 16px;
}

.main .secondary ul ul ul li a {
    padding-left: 20px;
}

.main .secondary ul ul ul li a .arrow {
    left: 22px;
}

.main .secondary ul ul ul li a:hover .arrow {
    left: 26px;
}

.main .secondary ul ul ul ul li a {
    padding-left: 30px;
}

.main .secondary ul ul ul ul li a .arrow {
    left: 32px;
}

.main .secondary ul ul ul ul li a:hover .arrow {
    left: 36px;
}

.main .secondary ul ul ul ul ul li a {
    padding-left: 40px;
}

.main .secondary ul ul ul ul ul li a .arrow {
    left: 32px;
}

.main .secondary ul ul ul ul ul li a:hover .arrow {
    left: 36px;
}

.main .secondary li a:hover,
.main .secondary li.section a:hover,
.main .secondary li.current a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}


/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer a.brand {
    color: #333;
    margin-left: 0;
}

.footer a.brand:hover {
    color: #B80000;
}

body h1 span.amp {
    font-family: Baskerville, "Goudy Old Style", "Palatino", "Book Antiqua", Georgia;
    font-style: italic;
}


/* FOOTER */
.footer {
    background: linear-gradient(#0052a3, #3385d6);
    border-top: 5px solid var(--secondary-color);
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    padding: 20px 0;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.footer a {
    color: #ffffff;
    line-height: 1.4;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer .left {
    color: #000;
    display: block;
    float: left;
    margin-bottom: 10px;
}

.footer .right {
    display: block;
    float: right;
    margin-bottom: 10px;
}

.footer span {
    color: #bbb;
    padding: 0 3px;
}

.footer .primary {

}

.footer .primary ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.footer .primary li {
    display: inline;
}

.ie6 .footer .primary li,
.ie7 .footer .primary li { /* this is a bugfix for ie6/7 */
    display: inline;
    margin-right: 10px;
    zoom: 1;
}

.footer .primary li:last-child:after {
    content: ''; /* makes sure last nav item doesn't have a '/' following it */
}

.footer .primary .nav-open-button {
    display: none; /* the footer includes the primary nav include - this makes sure the nav open close button doesn't show up */
}

.footer-extended {
}

.footer-extended a {
    margin-right: 10px;
}

/* PAGE SPECIFIC LAYOUT */

/* Homepage */
/* currently no Hompage specific styles - feel free to add your own */

/* Search Results */
.typography .searchResults h1 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.searchResults p.searchQuery {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}

.searchResults ul#SearchResults {
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
    padding: 0;
}

.searchResults ul#SearchResults li {
    border-top: 1px solid #e5e5e5;
    list-style-type: none;
    padding: 20px 0;
}

.searchResults ul#SearchResults p {
    margin-bottom: 10px;
}

.searchResults #PageNumbers a {
    padding: 0 5px;
}

.searchResults #PageNumbers .pagination {
    border-bottom: 1px solid #e5e5e5;
    display: table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
    padding: 20px 0;
    width: 100%;
}

.searchResults #PageNumbers .pagination span {
    display: table-cell; /* each element in the pagination div displays as a table cell */
}

.searchResults #PageNumbers p {
    padding: 20px 0;
    text-align: center;
}

.searchResults #PageNumbers .next,
.searchResults #PageNumbers .prev {
    border-bottom: 0 !important;
    display: table-cell; /* each element in the pagination div displays as a table cell */
    padding: 0 20px;
    vertical-align: middle;
}

.searchResults #PageNumbers .next {
    margin-left: 15px;
}

.searchResults #PageNumbers .prev {
    margin-right: 15px;
}

.col33-66 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 2fr;
}

.col66-33 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 2fr 1fr;
}

.col50-50 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.col33-33-33 {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.secondary-content,
.video-area,
.tertiary-content {
    padding: 40px 0;
}

/*.secondary-content {
    background-color: var(--primary-color);
    color: #ffffff;
}*/

.gray-background {
    background-color: #f6f6f6;
    border-radius: 4px;
}

iframe {
    border-radius: 4px;
}

.contact-block {
    font-size: 16px;
    padding: 40px 0;
}

.contact-block a {
    color: var(--primary-color);
}
.button {
    transition: all 0.1s linear 0.1s;
}

.button:hover {
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    transform: scale(105%);
}

.subpage .button:hover {
    box-shadow: none;
    transform: scale(100%);
}

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

.contact-block-title {
    font-size: 30px;
    margin-bottom: 20px;
}

.banner-container {
    position: relative;
}

.banner-container:before {
    /*content: '';*/
    background: linear-gradient(transparent 75%, #f6f6f6);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.contact-wrapper {
    background: none;
    box-shadow: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.composite.hidden {
    display: none;
}

.contact-sidebar {
    margin: -6px 0 20px;
    padding: 20px 40px;
}

.contact-form {
    padding: 0;
}

form {
    margin: 0 auto;
    max-width: none;
    width: auto;
}

form input.text, form textarea, form .textajaxuniquetext, form select {
    border-radius: 4px;
    padding: 10px 7px;
}

input:invalid,
textarea:invalid {
    border-radius: 4px;
    box-shadow: none;
    /*border-left: 5px solid red !important; */
}

input,
textarea {
    transition: all 0.1s linear 0.1s;
}

.action {
    display: flex !important;
    float: none !important;
    align-items: center;
    justify-content: space-evenly;
    background-color: #0066cc !important;
    border-radius: 20px;
    color: #ffffff !important;
    min-width: 100px;
    padding: 10px 20px !important;
    transition: all 0.1s linear 0.1s !important;
}

.action:hover {
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    transform: translateX(5px);
}

.banners {

}

.banner-item {

}

.banner-image .mobile {
    display: none;
}

.banner-image .desktop,
.banner-image .mobile {
    width: 100%;
    height: auto;
}

.banner-text {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 60px;
    position: absolute;
    top: 30%;
    left: 20%;
    max-width: 25%;
    width: 20%;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 102, 204, 0.5);
}

.banner-background {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner-foreground {
    z-index: 1;
}

.banner-headline {
    font-weight: bold;
    font-size: 42px;
    text-transform: uppercase;
}

.banner-caption {
    font-size: 24px;
}

.video-preview {
    aspect-ratio: 16/9;
    border: 5px solid #0066cc;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/*.video-preview .video-play {
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview .video-play:hover {
    background-color: transparent;
}

.video-preview .video-play:hover .video-play-button {
    box-shadow: 5px 5px 5px var(--black-transparent);
}

.video-preview .video-play .video-play-button {
    background-color: red;
    box-shadow: 3px 3px 5px var(--black-transparent);
    border-radius: 20%;
    color: var(--primary-color);
    display: block;
    font-size: 24px;
    text-align: center;
    margin: 0;
    height: 50px;
    width: 70px;
}*/

.video-preview iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.catch-block {
    align-items: center;
    background-color: #f6f6f6;
    color: #555555;
    display: flex;
    justify-content: center;
    font-style: italic;
    padding: 30px 0;
    position: relative;
    line-height: 25px;
}

.catch-block p {
    font-size: 24px;
    margin-bottom: 0;
}

.breadcrumbs {
    background-color: #f6f6f6;
    font-size: 14px;
    padding: 20px 0;
}

.subpages {
    padding: 40px 0;
}

.subpages-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding-bottom: 20px;
}

.subpage {
    background-color: #f6f6f6;
    border-radius: 4px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 140px auto;
    padding: 10px;
    border-left: 5px solid transparent;
    transition: all 0.1s linear 0.1s;
}

.subpage:hover {
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    transform: translateX(5px);
}

.subpage a {
    font-size: 20px;
    color: var(--primary-color);
    display: flex;
    margin-bottom: 10px;
}

.subpage p {
    color: #000000;
    font-size: 14px;
}

.subpage .content {
    display: grid;
    grid-template-areas: "header header" "main main" "empty button";
    grid-template-columns: 40% 60%;
    grid-template-rows: auto auto 56px;
}

.subpage .content h4 {
    grid-area: header;
}

.subpage .content p {
    grid-area: main;
}

.subpage .content button {
    grid-area: button;
}

.contact-box {
    background-color: #f6f6f6;
    border-radius: 4px;
    padding: 10px;
    margin: 30px 30px 30px 0;
    border-left: 5px solid var(--primary-color);
}
.contact-box p {
    margin: 0;
}

.parallax {
    /* The image used */
    background-image: url('../images/banner2.jpg');

    /* Set a specific height */
    min-height: 400px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.downloads {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.download-item {
}

.download-item a {
    align-items: center;
    background-color: #f6f6f6;
    border-radius: 4px;
    border-left: 5px solid transparent;
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    height: calc(100% - 30px);
    transition: all 0.1s linear 0.1s;
}

.download-item a:hover {
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    transform: translateX(5px);
}

.download-item-icon .fa-file-pdf {
    color: red;
    height: 40px;
    width: 40px;
}

.download-item-content {
    display: flex;
    flex-direction: column;
}

.download-item-title {
    font-size: 18px !important;
    line-height: 22px !important;
    margin-bottom: 0 !important;
}

.download-item-description {
    color: #000000;
}

.job-offers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-offers-item a {
    align-items: center;
    background-color: #f6f6f6;
    border-left: 5px solid transparent;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    transition: all 0.1s linear 0.1s;
    padding: 15px 20px;
}

.job-offers-item a:hover {
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    transform: translateX(5px);
}

.job-offers-item a h3 {
    margin: 0;
}

.job-offers-item a svg {
    height: 20px;
    width: 20px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    bottom: 20px;
    z-index: 2;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.slick-dots li button:before {
    color: var(--primary-color);
    font-size: 16px;
}

#open-button {
    display: none;
}

.mm-wrapper {
    overflow-x: unset;
}

.mm-navbar {
    display: flex;
    align-items: center;
}

.mm-menu--theme-light {
    -webkit-tap-highlight-color: var(--primary-color);
}

:root {
    --black: #111111;
    --white: #ffffff;
    --primary-color: #0066cc;
    --secondary-color: #fbb900;
    --black-transparent: rgba(17, 17, 17, 0.25);
    --white-transparent: rgba(255, 255, 255, 0.25);
    --primary-transparent-color: rgba(0, 102, 204, 0.5);
    --secondary-transparent-color: rgba(251, 185, 0, 0.5);
}

/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}

#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries)
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}

a.no-action {
    cursor: default;
}


@media only screen and (max-width: 1200px) {
    .header .primary li a {
        font-size: 16px;
    }
    .footer {

    }

    #content article img {
        max-width: 100%;
        height: auto;
    }

    .header .brand .logo {
        max-width: 200px;
    }
}
@media only screen and (max-width: 1100px) {
    .header .primary li a {
        font-size: 15px;
    }
    .header .primary .secondary li a {
        font-size: 14px;
    }

    .header .inner {
        padding: 0 20px;
    }

    footer .inner {
        padding: 0 20px;
        font-size: 15px;
    }
}
/* BREAKPOINT 960px */

@media only screen and (max-width: 960px) {
    .contact-form .field {
        width: 83%;
    }

    #open-button {
        background-color: transparent;
        color: #0f0f0f;
        display: block;
        font-size: 30px;
        margin: 0;
    }

    .header nav.primary ul {
        display: none;
    }

    .content img {
        height: auto;
        max-width: 97%;
    }

    .header .primary ul {
        margin-left: -12px;
        -webkit-padding-start: 0px; /* removes default webkit padding on ul items */
    }

    .contact-wrapper {
        background: none;
        box-shadow: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
    }

    .tablet-nav .header .primary ul {
        display: none; /* initially hiding the navigation */
        float: left;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 97px;
        white-space: normal;
        width: 100%;
        z-index: 10;
    }

    .tablet-nav .header .primary ul li {
        background: none;
        float: none; /* displays list items vertically */
        margin: 0;
        padding: 0;
        position: relative;
        text-shadow: 0 1px #fff;
        width: 100%;
    }

    .tablet-nav .header .primary ul li:after { /* creates the arrow for the primary nav links */
        color: #999;
        content: '\003e';
        display: block;
        font-family: 'WebSymbolsRegular';
        font-size: 14px;
        line-height: 38px;
        position: absolute;
        right: 20px;
        text-align: center;
        top: 0px;
        vertical-align: middle;
    }

    .tablet-nav .header .primary ul li a,
    .tablet-nav .header .primary ul li.current a,
    .tablet-nav .header .primary ul li.section a { /* styling the  top level nav links */
        background: #e7e7e7;
        border-bottom: 1px solid #bbb;
        padding: 10px 0 10px 22px;
    }

    .tablet-nav .header .primary ul li.current a,
    .tablet-nav .header .primary ul li.section a {
        background: #CCCCCC; /* makes background on current top level page slightly darker */
    }

    .tablet-nav .header .primary ul li a:hover {
        color: inherit;
    }

    .subpages-inner {
        display: block;
    }

    .subpages-inner .subpage {
        margin-bottom: 20px;
    }

    .footer  {
        flex-wrap: wrap;
        padding: 20px;
        gap: 20px;
    }

    .footer .inner {
        flex: 0 0 45%;
        margin: 0;
        padding: 0;
    }
}

/* BREAKPOINT 640px */

/* when changing the breakpoint below, change it ito the same value in the script.js file as well */
@media only screen and (max-width: 640px) {
    body {
        max-width: 640px;
    }

    #media-query-trigger {
        visibility: visible;
    }

    /* Navigation*/
    .tablet-nav .header .brand {
        display: flex;
        float: none;
        align-items: center;
        justify-content: flex-start;
    }

    .brand h1 {
        font-size: 40px;
    }

    .brand h1 {
        padding-right: 100px; /* padding stops .brand text from overlapping the search and nav buttons */
    }

    .tablet-nav .header {
        padding: 0px;
    }

    .tablet-nav .header .inner {
        min-height: 0;
        padding: 20px 15px 20px 30px;
        grid-template-columns: auto 100px;
        position: relative;
    }

    .tablet-nav .secondary {
        display: none !important;
    }

    .tablet-nav .header .primary .nav-open-button { /* styling and positioning of the nav toggle button */
        color: #ededed;
        cursor: pointer;
        display: block;
        font-family: 'WebSymbolsRegular';
        font-size: 25px;
        height: 25px;
        position: absolute;
        right: 40px;
        top: 30px;
        width: 20px;
        z-index: 100;
    }

    .tablet-nav .header .primary li.section:after,
    .tablet-nav .header .primary li.current:after {
        display: none; /* hides the link arrow on current top level page */
    }

    .tablet-nav .tablet-nav .header nav.primary ul li {
        padding: 0;
    }

    .tablet-nav .subpages-inner {
        grid-template-columns: 1fr;
    }

    /* Search Form */
    .search-bar { /* adds new styling to mobile search bar */
        background-color: #E7E7E7;
        display: none; /* hides searchbar initially */
        margin: 0;
        padding: 20px 0;
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
    }

    .search-dropdown-icon { /* styling for search toggle button */
        color: #ededed;
        cursor: pointer;
        display: block;
        font-family: 'WebSymbolsRegular';
        font-size: 20px;
        height: 20px;
        line-height: 20px;
        position: absolute;
        right: 60px;
        text-align: center;
        top: 34px;
        width: 20px;
    }

    .search-bar form {
        margin: 0;
        width: 100%;
    }

    .search-bar form fieldset {
        left: 0;
        padding: 0 18px;
        position: relative;
        right: 0;
    }

    .search-bar div.field {
        margin-bottom: 0;
    }

    .search-bar form input.text {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 20px; /* increase border radius due to increased padding */
        display: block;
        font-size: 17px;
        left: 0;
        max-width: 89%;
        padding: 8px 10% 8px 1%;
        position: relative;
        right: 0;
        text-indent: 15px;
        width: 89%; /* makes search input full width - allowing for space either side */
    }

    .search-bar form input.action {
        font-size: 18px;
        right: 5%;
        top: 2px;
    }

    /* Main Content */
    .main {

    }

    .content-container,
    .sidebar {
        width: 100%; /* sidenav is now shown above the page content */
    }

    .typography h1 { /* decrease size of page heading due to smaller screen */
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .typography p {
        font-size: 14px;
        line-height: 23px;
    }

    p.intro {
        font-size: 19px;
        line-height: 27px;
    }

    /* Secondry Nav */
    .secondary li a {
        line-height: 24px;
    }

    .secondary li .arrow {
        line-height: 26px;
    }

    /* Footer */
    .footer .right {
        float: left;
        width: 100%;
    }

    .downloads {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .header .brand .logo {
        max-width: 150px;
    }

    .parallax {
        min-height: 150px;
    }

    .col66-33,
    .col33-66,
    .col-33-33-33,
    .col50-50 {
        grid-template-columns: 1fr;
    }

    .content-image {
        float: none;
        margin: 0 0 20px;
    }

    .banner-image .mobile {
        display: block;
        width: 100%;
        height: auto;
    }

    .banner-image .desktop {
        display: none;
    }

    .contact-form input,
    .contact-form textarea {
        width: calc(100% - 70px);
    }

    .footer .inner {
        flex: 1 1 100%;
        margin: 0;
        padding: 0;
    }

}

@media only screen and (max-width: 520px) {

    .subpages-inner .subpage {
        display: flex;
        flex-direction: column;
    }
}

/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: black !important;
        -ms-filter: none !important;
        filter: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    thead {
        display: table-header-group
    }

    tr,
    img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Simple theme custom print styles */
    .header,
    .footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
        display: none;
    }
}

.col {
    flex: 0 0 auto;
    width: 33.3333333333%;
    max-width: 100%;
    padding-right: calc(1.5rem * 0.5);
    padding-left: calc(1.5rem * 0.5);
    margin-top: 1.5rem;
}


.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-border-width: 1px;
    --bs-card-border-color: rgba(0,0,0,0.1);
    --bs-card-border-radius: 0.375rem;
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius: calc(0.375rem - 1px);
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}
.card > hr {
    margin-right: 0;
    margin-left: 0;
}
.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}
.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: #fff;
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
    margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-left: var(--bs-card-spacer-x);
}

.card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: #fff;
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid #ff0303;
}
.card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: #ff00e4;
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid #ff0303;
}
.card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
    border-bottom: 0;
}
.card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--bs-card-img-overlay-padding);
    border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
    margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }
    .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-img-top,
    .card-group > .card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-img-bottom,
    .card-group > .card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-img-top,
    .card-group > .card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-img-bottom,
    .card-group > .card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}


.pop {
    cursor: pointer;
}
.pop:before {
    background-color: rgba(0, 0, 0, 0.25);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.2s ease-in-out;
}
.pop:hover:before,
.pop:hover .fa-search-plus {
    opacity: 1;
}
.pop .fa-search-plus {
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

#ContactInquiryForm_ContactInquiryForm_FirstName_Holder label:after,
#ContactInquiryForm_ContactInquiryForm_LastName_Holder label:after,
#ContactInquiryForm_ContactInquiryForm_Email_Holder label:after,
#ContactInquiryForm_ContactInquiryForm_Description_Holder label:after {
    color: #B94A48;
    content: "*";
    font-size: 14px;
    font-weight: normal;
    padding-left: 3px;
}


span.required-field {
    display: inline-block;
    margin-right: 0.5em;
    color: #B94A48;
    font-size: 14px;
    font-weight: normal;
    padding-left: 3px;
}

.typography p.blog-post-meta {
    font-size: 1em;
    margin: -2em 0 2.5em 0;
    color: #666;
}


.employees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.employees .employee {
    display: flex;
    border: 1px solid #f3f3f3;
}
.employees .employee img {
    flex: 0 0 260px;
}
.employees .employee > div {
    padding: 20px;
}
.employees .employee > div h2 {
    font-size: 1.4em;
    line-height: 150%;
}
.employees .employee > div h2 small {
    display: block;
    font-size: 0.8em;
    line-height: 120%;
}
.employees .employee > div .read-more {
    margin-top: 4em;
}
.employees .employee > div .read-more p {
    display: none;
}
.employees .employee > div .read-more.active button {
    display: none;
}
.employees .employee > div .read-more.active p {
    display: block;
}
