@font-face {
    font-family: 'bpmenu';
    src: url('../fonts/bpmenu/bpmenu.eot');
    src: url('../fonts/bpmenu/bpmenu.eot?#iefix') format('embedded-opentype'),
        url('../fonts/bpmenu/bpmenu.woff') format('woff'),
        url('../fonts/bpmenu/bpmenu.ttf') format('truetype'),
        url('../fonts/bpmenu/bpmenu.svg#bpmenu') format('svg');
    font-weight: normal;
    font-style: normal;
}

.cr-mobile-menu {
    background-color: #121212;
}

/* Main menu wrapper */
.cbp-hsmenu-wrapper,
.cbp-hsmenu-wrapper-m {
    position: relative;
}

nav.cbp-hsmenu-wrapper {
    background: #9a9535;
    z-index: 7;
}

/* Common style for all lists */
.cbp-hsmenu-wrapper ul,
.cbp-hsmenu-wrapper-m ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

/* 100% width bar for menu */
.cbp-hsinner {
    position: relative;
    z-index: 100;
    border-radius: 6px 6px 0 0;
}

/* 100% width bar for menu */
.cbp-hsinner-m {
    background: #232323;
    position: relative;
    z-index: 100;
    border-radius: 6px 6px 0 0;
}

/* Main menu style */
.cbp-hsmenu-wrapper .cbp-hsmenu,
.cbp-hsmenu-wrapper-m .cbp-hsmenu-m {
    width: 98%;
    /* 	max-width: 69em; */
    margin: 0 auto;
    padding: 0 1.6em;
    text-align: center;
}

.cbp-hsmenu>li,
.cbp-hsmenu-m>li {
    margin-left: 1em;
    display: inline-block;
}

.cbp-hsmenu>li:first-child,
.cbp-hsmenu-m>li:first-child {
    margin-left: 0;
}

/* Main menu link style */
.cbp-hsmenu>li>a,
.cbp-hsmenu-m>li>a {
    color: #ffffff;
    font-size: 13px;
    line-height: 3em;
    display: inline-block;
    position: relative;
    z-index: 10000;
    outline: none;
    text-transform: uppercase;
    letter-spacing: -.01em;
    text-decoration: none;
    font-weight: 600;
    transition: all .45s cubic-bezier(.65, 0, .076, 1);
}

.no-touch .cbp-hsmenu>li>a:hover,
.no-touch .cbp-hsmenu>li>a:focus,
.cbp-hsmenu>li.cbp-hsitem-open>a,
.no-touch .cbp-hsmenu-m>li>a:hover,
.no-touch .cbp-hsmenu-m>li>a:focus,
.cbp-hsmenu-m>li.cbp-hsitem-open>a {
    color: #c6c001;
    text-decoration: none;
    transition: all .45s cubic-bezier(.65, 0, .076, 1);
}

/* Add an arrow to the main menu link if it has a submenu (not the only child) */
.cbp-hsmenu>li>a:not(:only-child):before,
.cbp-hsmenu-m>li>a:not(:only-child):before {
    display: inline-block;
    font-family: 'bpmenu';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    font-size: 80%;
    margin-right: 0.3em;
    /* 	opacity: 0.5; */
    vertical-align: middle;
    color: #c6c001;
}

.cbp-hsmenu>li.cbp-hsitem-open>a:not(:only-child):before,
.cbp-hsmenu-m>li.cbp-hsitem-open-m>a:not(:only-child):before {
    content: "\f106";
}

/* Add a triangle to currently open menu item link */
.cbp-hsmenu>li.cbp-hsitem-open>a:after,
.cbp-hsmenu-m>li.cbp-hsitem-open>a:after {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: #c6c001;
    border-width: 10px;
    left: 50%;
    margin-left: -10px;
}

/* Submenu style */
.cbp-hssubmenu,
.cbp-hssubmenu-m {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    z-index: 0;
    text-align: center;
    /* for aligning the sub items */
    visibility: hidden;
}

.cbp-hssubmenu:before,
.cbp-hssubmenu:after,
.cbp-hssubmenu-m:before,
.cbp-hssubmenu-m:after {
    content: " ";
    display: table;
}

.cbp-hssubmenu:after,
.cbp-hssubmenu-m:after {
    clear: both;
}

/* Let's allow 6 item in a row */
.cbp-hssubmenu>li,
.cbp-hssubmenu-m>li {
    width: 14.5%;
    display: inline-block;
    vertical-align: top;
    box-shadow: -28px 0 0 -27px #e7e7e7, 0 -28px 0 -27px #e7e7e7;
    opacity: 0;
    -webkit-transition: opacity 0.1s 0s;
    -moz-transition: opacity 0.1s 0s;
    transition: opacity 0.1s 0s;
}

/* First 6 items don't have upper box shadow */
.cbp-hssubmenu>li:nth-child(-n+6),
.cbp-hssubmenu-m>li:nth-child(-n+6) {
    box-shadow: -28px 0 0 -27px #e7e7e7;
}

/* Every 7th item does not have a left box shadow */
.cbp-hssubmenu>li:nth-child(6n+1),
.cbp-hssubmenu-m>li:nth-child(6n+1) {
    box-shadow: 0 -28px 0 -27px #e7e7e7;
}

/* The first one does not have any box shadow */
.cbp-hssubmenu>li:first-child,
.cbp-hssubmenu-m>li:first-child {
    box-shadow: none;
}

.cbp-hssubmenu>li a,
.cbp-hssubmenu-m>li a {
    display: block;
    text-align: center;
    color: #a2a2a2;
    outline: none;
    padding: 2em 1em 1em 1em;
    text-decoration: none;
}

.no-touch .cbp-hssubmenu>li a:hover,
.no-touch .cbp-hssubmenu>li a:focus,
.no-touch .cbp-hssubmenu-m>li a:hover,
.no-touch .cbp-hssubmenu-m>li a:focus {
    color: #343020;
}

ul#vehicles>li a img,
ul#vehicles>li a img {

    -webkit-transition: opacity 0s;
    -moz-transition: opacity 0s;
    transition: opacity 0s;
}

.no-touch ul#vehicles>li a:hover img,
.no-touch ul#vehicles>li a:hover img {
    opacity: 1;
}

.cbp-hssubmenu>li a img,
.cbp-hssubmenu-m>li a img {
    border: none;
    outline: none;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.no-touch .cbp-hssubmenu>li a:hover img,
.no-touch .cbp-hssubmenu-m>li a:hover img {
    opacity: 0.5;
}

.cbp-hssubmenu>li a span,
.cbp-hssubmenu-m>li a span {
    display: block;
    position: relative;
    min-height: 3em;
    text-transform: uppercase;
    margin-top: -25px;
    font-size: 12px;
    color: #343020;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cbp-hssubmenu>li a span:hover,
.cbp-hssubmenu>li a:hover span,
.cbp-hssubmenu-m>li a span:hover,
.cbp-hssubmenu-m>li a:hover span {
    color: #858333;
    z-index: 1;
}

.cbp-hssubmenu-title {
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.cbp-hsmenu>li.cbp-hsitem-open .cbp-hssubmenu,
.cbp-hsmenu-m>li.cbp-hsitem-open .cbp-hssubmenu-m {
    z-index: 1000;
    visibility: visible;
}

.cbp-hsmenu>li.cbp-hsitem-open .cbp-hssubmenu>li,
.cbp-hsmenu-m>li.cbp-hsitem-open .cbp-hssubmenu-m>li {
    opacity: 1;
    -webkit-transition: opacity 0.5s 0.1s;
    -moz-transition: opacity 0.5s 0.1s;
    transition: opacity 0.5s 0.1s;
}

/* Helper div for animating the background */
.cbp-hsmenubg,
.cbp-hsmenubg-m {
    background: #f7f7f7;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 2;
    height: 0px;
    border-radius: 0px 0px 6px 6px;
}

.no-touch .cbp-hsmenubg,
.no-touch .cbp-hsmenubg-m {
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}

@media screen and (max-width: 65em) {

    .cbp-hsmenu-wrapper,
    .cbp-hsmenu-wrapper-m {
        font-size: 80%;
    }
}

@media screen and (max-width: 51.4375em) {

    .cbp-hsmenu-wrapper,
    .cbp-hsmenu-wrapper-m {
        font-size: 100%;
    }

    .cbp-hsmenu-wrapper .cbp-hsmenu,
    .cbp-hsmenu-wrapper-m .cbp-hsmenu-m {
        padding: 0;
        max-width: none;
        width: 100%;
    }

    .cbp-hsmenu>li,
    .cbp-hsmenu-m>li {
        border-top: 1px solid #101010;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .cbp-hsmenu>li:first-child,
    .cbp-hsmenu-m>li:first-child {
        border-top: none;
    }

    .cbp-hsmenu>li>a,
    .cbp-hsmenu-m>li>a {
        display: block;
        padding-left: 30px;
        text-align: left;
    }

    .cbp-hsmenu>li>a:not(:only-child):before,
    .cbp-hsmenu-m>li>a:not(:only-child):before {
        line-height: 1.8;
        right: 0;
        position: absolute;
        font-size: 200%;
    }

    .cbp-hsmenubg,
    .cbp-hsmenubg-m {
        display: none;
    }

    .cbp-hssubmenu,
    .cbp-hssubmenu-m {
        background: #f7f7f7;
        position: relative;
        overflow: hidden;
        height: 0;
    }

    .cbp-hsmenu>li.cbp-hsitem-open .cbp-hssubmenu .cbp-hsmenu-m>li.cbp-hsitem-open .cbp-hssubmenu-m {
        height: auto;
    }

    /* Let's only allow 3 item in a row now */
    .cbp-hssubmenu>li,
    .cbp-hssubmenu-m>li {
        width: 30%;
    }

    /* Reset box shadows for the 6 items in row case */
    .cbp-hssubmenu>li:nth-child(-n+6),
    .cbp-hssubmenu>li:nth-child(6n+1),
    .cbp-hssubmenu-m>li:nth-child(-n+6),
    .cbp-hssubmenu-m>li:nth-child(6n+1) {
        box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd;
    }

    /* First 4 items don't have upper box shadow */
    .cbp-hssubmenu>li:nth-child(-n+3),
    .cbp-hssubmenu-m>li:nth-child(-n+3) {
        box-shadow: -28px 0 0 -27px #ddd;
    }

    /* Every 5th item does not have a left box shadow */
    .cbp-hssubmenu>li:nth-child(3n+1),
    .cbp-hssubmenu-m>li:nth-child(3n+1) {
        box-shadow: 0 -28px 0 -27px #ddd;
    }

}

@media screen and (max-width: 25em) {

    /* Let's only allow 1 item in a row now */
    .cbp-hssubmenu>li,
    .cbp-hssubmenu-m>li {
        width: 100%;
        display: block;
    }

    .cbp-hsmenu-wrapper .cbp-hssubmenu>li,
    .cbp-hsmenu-wrapper-m .cbp-hssubmenu-m>li {
        box-shadow: 0 1px #cecece;
        text-align: left;
    }

    .cbp-hssubmenu>li a,
    .cbp-hssubmenu-m>li a {
        text-align: left;
        line-height: 50px;
        padding: 0.4em 0.5em;
    }

    .cbp-hssubmenu>li a img,
    .cbp-hssubmenu-m>li a img {
        float: left;
        max-height: 50px;
    }

    .cbp-hssubmenu>li a span,
    .cbp-hssubmenu-m>li a span {
        min-height: 0;
        margin: 0;
    }
}

@media screen and (max-width: 51.4375em) {

    .cbp-hssubmenu,
    .cbp-hssubmenu-m {
        background: rgba(0, 0, 0, 0.7);
        /*position: relative;*/
        overflow: hidden;
        height: 0;
    }
}

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

    .cr-mobile-menu li[data-open="open"] .cbp-hssubmenu-m {
        height: auto;
        overflow: visible;
    }

    .cr-mobile-menu .container .row:nth-child(3) {
        overflow: scroll;
        max-height: calc(100vh - 185px);
        padding-bottom: 120px;
    }

    .cr-mobile-menu .cbp-hssubmenu-m {
        background: #f6f6f8;
    }

    .cbp-hssubmenu>li a span,
    .cbp-hssubmenu-m>li a span {
        min-height: 1.5em;
        margin-top: -25px;
        letter-spacing: -.01em;
        display: inline-flex;
    }

    .left-search .form-group.has-search input {
        width: 100%;
    }

}