@font-face {
    font-family: "ToyotaType-Light";
    src: url("/media/efun3e32/toyotatype-light.eot");
    src: url("/media/efun3e32/toyotatype-light.eot?#iefix") format("embedded-opentype"),
         url("/media/rnef0oau/toyotatype-light.woff") format("woff"),
         url("/media/fadogn2w/toyotatype-light.ttf") format("truetype"),
         url("https://cdn.bluegrasscoms.com/toyota-gb/fonts/ToyotaType-Light.svg#svgFontName") format("svg");
         font-weight: normal;
         font-style: normal;
}

@font-face {
    font-family: "ToyotaType-Book";
    src: url("/media/o2aeeyms/toyotatype-book.eot");
    src: url("/media/o2aeeyms/toyotatype-book.eot?#iefix") format("embedded-opentype"),
         url("/media/ncrfmv1y/toyotatype-book.woff") format("woff"),
         url("/media/arvbj3go/toyotatype-book.ttf") format("truetype"),
         url("https://cdn.bluegrasscoms.com/toyota-gb/fonts/ToyotaType-Book.svg#svgFontName") format("svg");
         font-weight: normal;
         font-style: normal;
}

body, a, button {
    font-family: "ToyotaType-Light", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "ToyotaType-Book", sans-serif;
    font-weight: 100;
}

p {
    font-size: var(--font-size-paragraph)
}

h1, h1 p {
    font-size: var(--font-size-big-header);
    font-family: "ToyotaType-Light", sans-serif;
}
h2 {
    font-size: var(--font-size-header);
}
:root {
    --darkgrey: #282828;
    --grey: #535359;
    --white: #ffffff;
    --red: #FF0022;
    --font-size-paragraph: clamp(14px, 1vw + 1em, 16px);
    --font-size-smalltitle: clamp(15px, 1.5vw + 1em, 17px);
    --font-size-title: clamp(17px, 2vw + 1em, 20px);
    --font-size-header: clamp(23px, 2vw + 1em, 28px);
    --font-size-big-header: clamp(32px, 2vw + 1em, 35px);
    --font-size-banner: clamp(45px, 2vw + 1em, 55px);
    --burger-menu-item-padding: 8px calc(1em + 20px);
    --burger-menu-item-border: 1px solid #6C7073;
}

ul {
    list-style-type: square;
}

li::marker {
    color: var(--red);
}

body{
    outline:0px;
    margin:0px;
    border:0px;
    padding:0px;
}

/*Header navigation*/
header#stickyHeader {
    position: sticky;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    top: 0;
    padding: 22px 2.5% 20px 2.5%;
    z-index: 100;
    color: #fff;
    position: relative;
}

.sticky-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 9px;
    background-color: var(--red)
}

.nav li.active > a {
    border-bottom: 3.5px solid var(--red);

}
.navbar-nav > li.active > a::after {
    height:0px;
}
.nav li.active > a:hover {
    border-bottom: 3px solid var(--red); /* Keeps the active border color */
}
        .flex-item {
    display: flex;
    justify-content: space-between;
    flex: 4 1 0;
}
nav.navbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

a.logo-link {

}
main {
    min-height: 400px;
}
.navbar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

    .navbar-nav li {
        display: inline-block;
    }

        .navbar-nav li a {
            display: block;
            padding: 0px 0px 10px 0px;
            color: var(--darkgrey);
            text-decoration: none;
        }

.navbar-toggle {
    display: none;
}
.navbar-collapse.collapse {
    margin-left: 3%;
}

@media only screen and (max-width: 1065px) {
    .navbar-collapse{
        margin-left:0 !important;
    }
    .flex-item {
        justify-content: end
    }
    .navbar-header {
        order: 2;
    }
    .navbar-nav li a {
        color: var(--white)
    }
    ul.nav.navbar-nav.navbar-right li.nav-item{ border-bottom: 0px; margin: 0px; padding-bottom: 0px;}
    .navbar-toggle {
        z-index: 9999;
        position: relative;
        display: block;
        cursor: pointer;
        margin-left: auto;
        background: none;
        border: 0px;
    }

        .navbar-toggle .icon-bar {
            display: block;
            width: 22px;
            height: 2px;
            margin-top: 9px;
            background-color: var(--darkgrey);
        }

        .navbar-toggle.collapsed .icon-bar {
            background-color: var(--white);
        }

    .navbar-collapse.collapsing {
        display: block;
    }

    .navbar-collapse.collapsed {
        display: none;
    }

    .navbar-collapse {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        background-color: #333;
        padding: 10px;
    }

    .navbar-nav li {
        display: block;
        margin-bottom: 10px;
    }
}
.navbar-header {
    display: none;
}
.navbar-right {
    margin-right: 0;
}

.navbar-nav > li > a {
    position: relative;
    margin: 9px 15px 0px 15px;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

    .navbar-nav > li > a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 100%;
        height: 3px;
        background-color: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
.navbar-nav > li.nav-item > a::after{
    display: none
}

.navbar-nav > li > a:hover::after {
    transform: scaleX(1);
}

.navbar-right .nav-item {
    display: inline-block;
}

li.nav-item.active a.nav-link {
    border-bottom: 0px;
}

.menu-container {
    display: flex;
    justify-content: flex-end;
}

button.burger-menu-btn {
    font-size: 28px;
    border: 0px;
    background: none;
    padding: 0px;
    cursor: pointer;
}

button.burger-menu-btn:focus {
    outline: none;
}

form#logoutForm button {
    border: 0px;
    background: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    border-bottom: 0px !important;
}

.burger-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #282828;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    text-wrap: nowrap;
    padding: 1em 0px;
}
    .burger-menu form#logoutForm {
        margin: 0;
    }

    .burger-menu a, form#logoutForm button {
        color: var(--white);
        text-decoration: none;
        padding: var(--burger-menu-item-padding);
        border-bottom: var(--burger-menu-item-border);
        width: 100%;
        box-sizing: border-box;
    }

    .burger-menu.active {
        display: flex;
    }

    .burger-menu .admin-panel-menu {
        display: flex;
        flex-direction: column;
        border-bottom: var(--burger-menu-item-border)
        
    }
        .burger-menu .admin-panel-menu p {
            margin: 0px;
            padding: var(--burger-menu-item-padding);
        }
        .burger-menu .admin-panel-menu a {
            font-size: 14px;
            font-weight: 300;
            border-color: transparent
        }

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

.dropdown:hover .dropdown-content {
    display: block;
}


@media screen and (max-width: 600px) {
    .burger-menu {
        display: flex;
    }
}
/*End of Header navigation*/

/*Homepage*/
.hero-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0px;
    height: 85vh;
    background: #282828;
}

.hero-title-container {
    flex-flow: column;
    display: flex;
    background-color: var(--darkgrey);
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
}

.hero-title, .hero-title-img {
    flex: 1 1 0;
    background-size: cover;
    padding: 0px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-title h1 p {
        font-weight: 100;
        color: var(--white);
        letter-spacing: 1.2px;
    }

.hero-item {
    height: -webkit-fill-available;
    background-size: cover;
    background-position: 50% 50%;
    padding: 20px;
    color: var(--white);
    transition: transform .4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

    .hero-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }
a#hero-2 .hero-item::before, a#hero-3 .hero-item::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

 div#hero-3 .hero-item::before {
    box-shadow: inset 100vw 100vh rgba(0, 0, 0, 0.4);
 }

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
#hero-1, #hero-2, #hero-3 {
    text-decoration: none;
    overflow: hidden;

}
    #hero-2 .hero-item, #hero-3 .hero-item {
        box-shadow: inset 0 -100px 28px rgba(0, 0, 0, 1);
        flex-flow: row wrap;
        align-content: flex-end;
        display: flex;
    }
    .hero-item:hover .hero-background {
        transform: scale(1.2);
    }
#hero-1 {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 4;
}
    #hero-1 .hero-text {
        max-width: 50%;
        margin-top: 35px;
    }
a#hero-1 .hero-text > h2 span,
a#hero-2 .hero-text > h2 span,
a#hero-3 .hero-text > h2 span {
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s ease-in-out;
}
.hero-text h2 {
    padding-bottom: 15px;
}
    a#hero-1:hover .hero-text > h2 span, a#hero-2:hover .hero-text > h2 span, a#hero-3:hover .hero-text > h2 span {
        border-bottom: 3px solid var(--red)
    }
.hero-text {
    position: relative;
    z-index: 2;
}
#hero-2 {
    grid-row-start: 1;
    grid-column-start: 4;
    grid-row-end: 2;
    grid-column-end: 5;
}

#hero-3 {
    grid-row-start: 2;
    grid-column-start: 4;
    grid-row-end: 3;
    grid-column-end: 5;
}

.cta-container {
    text-align: center;
}

a.white-cta {
    font-size: var(--font-size-paragraph);
    color: var(--darkgrey);
    background: var(--white);
    text-transform: none;
    text-decoration: none;
    padding: 5px 20px 8px 20px;
    border: 2px solid var(--white);
    display: inline-block;
    letter-spacing: 0px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
    a.white-cta:hover, a.grey-cta:hover {
        color: var(--white);
        background: var(--grey);
        border-color: var(--grey);
    }
a.grey-cta {
    font-size: var(--font-size-paragraph);
    color: var(--white);
    background: var(--darkgrey);
    text-transform: none;
    text-decoration: none;
    padding: 5px 20px 8px 20px;
    border: 2px solid var(--darkgrey);
    display: inline-block;
    letter-spacing: 0px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
a.white-cta:hover {
    color: var(--white);
    background: var(--grey);
    border-color: var(--grey);
}
.full-width-section {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 100px 80px;
}
    .full-width-section.locator {
        margin-top: 25px;
        justify-content: flex-start;
        background-position: 87% 100%;
        background-repeat: no-repeat;
        background-size: 430px;
        background-color: var(--darkgrey);
    }
        .full-width-section.locator p a {
            color: var(--white);
        }
        .full-width-section.locator .content-box {
            box-shadow: none;
            color: var(--white);
            background: none;
        }
        .content-box {
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            text-align: center;
            max-width: 35%;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
 /*End of Homepage*/
 /*Main content*/
.article-header {
    color: #fff;
    background-size: cover;
    min-height: 400px;
    background-position: center center;
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
}
.article-header-text {
    max-width: 20%;
    padding: 40px 50px;
    position: relative;
}
    .article-header-text h1{
        text-transform: uppercase;
        font-size: var(--font-size-banner)
    }
    .main-content {
        max-width: 95%;
        margin: 0 auto
    }

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top:50px;
    padding: 40px;
    justify-content: center;
    background: var(--darkgrey)
}

.flex-child {
    background-color: var(--white);
    overflow: hidden;
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
}

    .flex-child img {
        width: 100%;
        height: auto;
        max-height: 300px;
        min-height: 300px;
        object-fit: cover;
    }

.flex-content {
    padding: 20px;
}

    .flex-content h3 {
        margin-top: 0;
        font-size: var(--font-size-header);
    }

    .flex-content p {
        margin: 10px 0 0;
    }

.intro-container, .useful-links {
    text-align: center;
}
h2.intro-header {
    font-size: var(--font-size-header);
    font-weight: 100;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}
.intro-header::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background-color: #FF0022;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}

.useful-links-red-line {
    display: block;
    width: 120px;
    height: 3px;
    background-color: #FF0022;
    margin: 0 auto;
}

.useful-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.useful-links-title {
    color: black;
}

.useful-links-cards {
    width: 100%;
    max-width: 1400px;
    margin: 48px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 32px;
}

.useful-links-card {
    display: flex;
    height: 500px;
    flex-direction: column;
    background-color: #F0F2F1;
    max-width: 420px;
}

.useful-links-card-image {
    height: 215px;
    object-fit: cover;
}

.useful-links-card-content {
    position: relative;
    height: 100%;
    display: flex;
    padding: 16px 32px 32px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: start;
}

.useful-links-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 50%;
    background-color: var(--red);
}

.useful-links-card-title {
    font-size: var(--font-size-header);
    margin: 0;
}

.useful-links-card-title {
    margin: 0;
}

.useful-links-card-button {
    max-width: fit-content;
}

.umb-block-list.animate {
    opacity: 1;
    transform: translateY(0);
}
.umb-block-list {
    opacity: 0;
    transform: translateY(100px);
    transition: all .5s ease 0.25s;
}

/*Card Module*/
.umb-block-list {
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
}
.card-container {
    padding: 10px 10px 15px 10px;
    flex-flow: column wrap;
    display: flex;
    flex: 1 0 21%;
}

.card-item {
    flex-flow: column wrap;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    text-decoration: none;
    color: black;
    font-size: var(--font-size-paragraph);
    font-family: "ToyotaType-Book", sans-serif;

    .card-image {
        max-width: 100%;
        width: auto;
        object-fit: cover;
        height: 215px;
    }
    
    .card-text {
        margin-bottom: 10px;
        margin-top: 20px;
        max-width: 98%;
        font-size: var(--font-size-header);
    }
}



.card-module-section {
    margin-top: 20px
}

    .card-module-section .umb-block-list::after {
        width: 49.5%;
        content: "";
    }

    .card-module-section p, .accordion-section p {
        font-size: var(--font-size-paragraph)
    }

/*TCM*/
.page-header {
    color: #fff;
    padding: 20px 0;
}

    .page-header h1 {
        font-size: 34px;
        line-height: 42px;
        margin: 0;
    }

.rz-button.white-cta,
.rz-button.grey-cta,
.rz-button.red-cta {
    font-size: var(--font-size-paragraph);
    text-transform: none;
    text-decoration: none;
    padding: 5px 20px 8px 20px;
    border: 2px solid var(--darkgrey);
    display: inline-block;
    letter-spacing: 0px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border-radius: 0px;
    font-weight: unset;
}
    .rz-button.white-cta:hover,
    .rz-button.grey-cta:hover,
    .rz-button.red-cta:hover {
        color: var(--white) !important;
        background: var(--grey) !important;
        border-color: var(--grey) !important;
    }

.rz-button.white-cta {
    color: var(--darkgrey) !important;
    background: var(--white) !important;
}

.rz-button.grey-cta {
    color: var(--white) !important;
    background: var(--darkgrey) !important;
}

.rz-button.red-cta {
    color: var(--white) !important;
    background: var(--red) !important;
    border: 2px solid var(--red) !important;
}

/*TCM Radzen date filter value fix*/
.rz-cell-filter-label > span {
    display: flex;
}

    .rz-cell-filter-label > span .rz-current-filter {
        color: var(--rz-input-value-color);
    }

/*End of main content*/
/*Footer*/
.footer {
    padding-top: 70px !important;
    padding: 20px;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 20%;
        height: 5px;
        background-color: var(--red);
    }

.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 75%;
}

.footer-logo, .footer-powered {
    padding-left: 18px;
    margin: 0 auto;
    max-width: 75%;
}
    .footer-powered p {
        text-transform: uppercase;
        font-size: 12px;
    }
        .footer-powered p a img {
            max-height: 10px;
            margin-left: 8px;
        }

.footer-column {
    min-width: 150px;
    margin: 10px;
}

    .footer-column h3 {
        font-size: var(--font-size-title);
        margin-bottom: 10px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin-bottom: 5px;
        }

            .footer-column ul li a {
                text-decoration: none;
                color: var(--darkgrey);
                font-size: var(--font-size-paragraph)
            }

                .footer-column ul li a:hover {
                    text-decoration: underline;
                }

/* Mobile-friendly footer styles */
@media only screen and (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px 20px !important;
        background-position: center bottom !important;
        background-size: 50% !important;
    }

    .footer::before {
        width: 100%;
        height: 3px;
    }

    .footer-logo {
        text-align: center;
        padding-left: 0;
        margin: 0 0 30px 0;
        max-width: 100%;
    }

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

    .footer-container {
        flex-direction: column;
        max-width: 100%;
        margin: 0;
        gap: 0;
    }

    .footer-column {
        min-width: auto;
        margin: 0 0 25px 0;
        text-align: left;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: var(--darkgrey);
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column ul li a {
        font-size: 16px;
        line-height: 1.4;
        display: block;
        padding: 5px 0;
    }

    .footer-powered {
        text-align: center;
        padding-left: 0;
        margin: 30px 0 0 0;
        max-width: 100%;
    }

    .footer-powered p {
        font-size: 14px;
        margin: 0;
    }
}

@media only screen and (max-width: 480px) {
    .footer {
        padding: 30px 15px 15px 15px !important;
    }

    .footer-logo svg {
        max-width: 180px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

    .footer-powered p {
        font-size: 12px;
    }

    .footer-powered p a img {
        max-height: 8px;
        margin-left: 6px;
    }
}

/* Tablet layout - 1200px breakpoint */
@media only screen and (max-width: 1200px) {
    .footer {
        padding: 50px 30px 30px 30px !important;
        background-position: 95% 50% !important;
        background-size: 30% !important;
    }

    .footer::before {
        width: 50%;
    }

    .footer-container {
        max-width: 85%;
        gap: 20px;
    }

    .footer-column {
        min-width: 140px;
        margin: 15px 5px;
    }

    .footer-column h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .footer-column ul li a {
        font-size: 15px;
        line-height: 1.3;
    }

    .footer-logo {
        padding-left: 10px;
        max-width: 85%;
    }

    .footer-powered {
        padding-left: 10px;
        max-width: 85%;
    }

    /* Adjust card layouts for tablets */
    .card-container {
        flex: 1 0 45%;
    }

    /* Improve hero section for tablets */
    .hero-grid {
        height: 75vh;
    }

    #hero-1 .hero-text {
        max-width: 60%;
        margin-top: 25px;
    }

    .hero-item {
        padding: 15px;
    }

    /* Content adjustments */
    .main-content {
        max-width: 90%;
    }

    .flex-container {
        gap: 30px;
        padding: 30px;
    }

    .flex-child {
        width: calc(50% - 15px);
    }

    .flex-child img {
        max-height: 250px;
        min-height: 250px;
    }

    /* Navigation adjustments */
    .navbar-nav > li > a {
        margin: 9px 10px 0px 10px;
    }

    /* Article header adjustments */
    .article-header-text {
        max-width: 30%;
        padding: 30px 40px;
    }

    .full-width-section {
        padding: 80px 60px;
    }

    .content-box {
        max-width: 45%;
    }
}

@media only screen and (max-width:1400px) {
    .footer{
        background-position: 118% 50% !important;
    }
}                
@media only screen and (max-width:1660px) {
    .footer{
        background-position: 110% 50%;
    }
}
@media only screen and (max-width:75em) {
    .card-container {
        flex: 1 0 47%;
    }
}
@media only screen and (max-width:1155px) {
    .footer{
        background-size: 25%;
        background-position: 111% 100% !important;
    }
}
@media only screen and (max-width:1065px) {
    .footer{background-size:35%}
    .flex-child {
        width: 100%;
    }
        .flex-child img{
            max-height: 200px;
            min-height: 200px;
        }
   .nav li.active > a {
        border-bottom: 3px solid transparent;
        color: var(--red)
    }

    .article-header.landing {
        min-height: auto;
        background-image: none !important;
    }
    .article-header-text {
        text-align: center;
        color: #282828;
        max-width: 100%;
        padding: 0px 50px;
    }

    .navbar-header {
        display: block;
    }
    button.navbar-toggle.open {
        margin-top: 5px;
    }
    .navbar-toggle.open .icon-bar:nth-child(1) {
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        background: var(--white);
        left: 0%;
        width: 100%;
    }

    .navbar-toggle.open .icon-bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.open .icon-bar:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
        top: 50%;
        left: 0%;
        width: 100%;
        background: var(--white);
    }
    .navbar-nav > li > a {
        margin: 10px;
    }
    .navbar-nav li {
        border-bottom: 1px solid #6C7073
    }
    .navbar-right {
        margin-right: 8px;
    }
    .navbar-collapse.collapse.active {
        height: 100vh;
        top: 0px;
        position: absolute;
        z-index: 10;
        display: block;
        padding: 65px 0px 10px 0px;
    }
        .navbar-collapse.collapse.active .navbar-nav{
            display:block
        }
    .navbar-nav > li > a {
         color: var(--white);
         padding:0px 6px 0px 6px
    }
        .navbar-nav > li > a::after{
            display:none
        }
}
@media only screen and (max-width:865px) {
    .sticky-header::before {
        height: 7px;
        width: 40%
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .hero-title-container, #hero-1, #hero-2, #hero-3 {
        grid-column-start: auto;
        grid-row-start: auto;
        grid-column-end: auto;
        grid-row-end: auto;
        width: 100%;
    }

    .hero-title-container {
        order: 1;
    }

    #hero-1 {
        order: 2;
    }

    #hero-2 {
        order: 3;
    }

    #hero-3 {
        order: 4;
    }

    .hero-item {
        min-height: 250px;
        height: auto;
    }

    #hero-1:hover .hero-item, #hero-2:hover .hero-item, #hero-3:hover .hero-item {
        background-size: cover;
    }

    .hero-title, .hero-title-img {
        text-align: center;
    }

    #hero-1 .hero-text {
        max-width: 100%;
    }

    .hero-title-img {
        box-shadow: inset 0 108px 75px 0 rgba(0,0,0,0.5);
        min-height: 340px;
        position: absolute;
        z-index: -1;
        width: 100%;
    }

    .content-box {
        background: none;
        box-shadow: none;
        max-width: 75%;
        margin: 0 auto;
        color: var(--white);
    }

    .card-item {
        flex-flow: row nowrap;
        align-items: center;
        
        .card-image {
            max-width: 110px;
            max-height: 110px;
            object-fit: cover;
        }

        .card-text {
            margin-left: 7%;
            margin-top: 10px;
        }
    }

    .full-width-section {
        box-shadow: inset 0 8px 425px 0 rgba(0,0,0,1);
        padding: 40px 40px
    }

        .full-width-section.locator {
            background-size: 220px;
            background-position: 50% 100%;
            box-shadow: none;
        }

            .full-width-section.locator .content-box {
                padding-top: 0px;
                margin-bottom: 185px;
            }

                .full-width-section.locator .content-box h2.intro-header {
                    margin-top: 0px
                }

    .card-container:last-child {
        max-width: 100% !important;
    }
}
@media (max-width: 768px) {
    .card-module-section {
        margin-top: 30px;
    }
    .footer-container {
        flex-direction: column nowrap;
        align-items: stretch;
    }
    .card-container{ padding: 0px}
    .footer::before {
        width: 35%
    }
    .footer-column {
        margin-bottom: 20px;
    }
}
@media (max-width: 740px) {
    .footer {
        background-position: 131% 50% !important;
        background-size: 42%;
    }
}

.shopping-cart-counter {
    position: absolute;
    bottom: 0px;
    right: -0.75em;
    width: 1.5em;
    height: 1.5em;
    background: rgb(229, 57, 53);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}