/*------------------------------*\
    Main stylesheet
    ver: 2024-08-19
    brief: common to all pages 
\*------------------------------*/

/*------------------------------*\
    FOMTS
\*------------------------------*/
/* Thin */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-Thin.ttf) format('truetype');
    font-style: normal;
    font-weight: 100;
}

/* Extra Light */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-ExtraLight.ttf) format('truetype');
    font-style: normal;
    font-weight: 200;
}

/* Light */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-Light.ttf) format('truetype');
    font-style: normal;
    font-weight: 300;
}

/* Normal */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-Regular.ttf) format('truetype');
    font-style: normal;    
    font-weight: 400;
}

/* Medium */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-Medium.ttf) format('truetype');
    font-style: normal;
    font-weight: 500;
}

/* Semi Bold */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-SemiBold.ttf) format('truetype');
    font-style: normal;    
    font-weight: 600;
}

/* Bold */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-Bold.ttf) format('truetype');
    font-style: normal;    
    font-weight: 700;
}

/* Black */
@font-face {
    font-family: 'NotoSansHebrew';
    src: url(../fonts/NotoSansHebrew-Black.ttf) format('truetype');
    font-style: normal;
    font-weight: 900;
}

/*------------------------------*\
    CONSTANTS
\*------------------------------*/
:root {
    --text-light: #e4e4e4;
    --model-header: #1e2a32;
    --white: #f8f8f8;
    --gray-light: #f5f5f5;
    --gray-mid: #cccccc;
    --gray-dark: #6c7073;
    --gray-black: #282830;
    --blue: #0072f0;
    --blue-light: #F5F9FF;
    --red: #d40605;

    /* top bar and menu bar fixed height : 30 + 70 = 100px */
    --top-bar-height: 30px;
    --nav-bar-height: 70px;
    --content-top: 100px;
    --inner-width: 1200px;
}

/*------------------------------*\
    INITIALIZE
\*------------------------------*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section {
    display: block;
}
h1 {
    margin: 0.67em 0;
    font-size: 1.8rem;
    font-weight:400;
    text-align:center;
}
figure {
    margin: 1em 40px;
}
hr {
    box-sizing: content-box;
    height: 0;
}
code,kbd,pre,samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,strong {
    font-weight: bolder;
}
dfn {
    font-style: italic;
}
mark {
    background-color: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
img {
    border-style: none;
}
svg:not(:root) {
    overflow: hidden;
}
button,input,optgroup,select,textarea {
    font-family: 'NotoSansHebrew', Arial, sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,select {
    text-transform: none;
}
button,hr,input {
    overflow: visible;
}
[type="reset"],[type="submit"],button,html [type="button"] {
    -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring {
    outline: ButtonText dotted 1px;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}
textarea {
    overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
.centerContent, .listTtl {
    font-weight: 700;
}
summary {
    display: list-item;
}
.hiddenH2,[hidden],template {
    display: none;
}
audio,canvas,progress,video {
    display: inline-block;
}
progress,sub,sup {
    vertical-align: baseline;
}
* {
    margin: 0;
    font-family: 'NotoSansHebrew', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
*,[type="checkbox"],[type="radio"],legend {
    padding: 0;
    box-sizing: border-box;
}
*, body {
    margin: 0;
    font-size: 1em;
}
a,a:active,a:hover,a:visited {
    color: #fff;
    text-decoration: none;
}
.centerContent,.flash,.hiddenH2,.sideBarWrapper {
    text-align: center;
}
.carClasPrice,.carClassName {
    direction: rtl;
}
#menu,a img,footer *,footer ul li {
    outline: 0;
}
/* Fix header block positioning above the nav */
#leadock_pixel{
    position: absolute;
}

/*------------------------------------------------------*\

    NAVIGATION BAR

\*------------------------------------------------------*/
.nav{
    position:fixed;
    width:100%;
    background-color: white;
    z-index: 100;
}

/* NAVIGATION DOWNLOAD BAR */
.nav .top-bar-container{
    height: var(--top-bar-height);
    background-color: var(--gray-light);
}
.nav .menu-bar-container{
    height: var(--nav-bar-height);
    background-color: inherit;
}
.nav .top-menu{
    display: flex;
    align-items: center;
    width: var(--inner-width);
    max-width: 100%;
    margin: 0 auto;
    /* padding:5px 0; */
    text-align:left;
}
.nav .top-menu a{
    margin: 7px auto 0 5px;
    color: var(--gray-black);
    font-size:.8rem;
}

/* NAVIGATION MENU BAR */
.nav .main-menu{
    display: flex;
    align-items: center;
    width: var(--inner-width);
    max-width: 100%;
    margin: 0 auto;
}
.nav .main-menu a{
    cursor: pointer;
}
.nav .main-menu .agency-logo{
    /* width:130px; */
    height:var(--nav-bar-height);
    /* margin-left:40px; */
}
.nav .main-menu .agency-logo img{
    width:auto;
    max-width:170px;
    height:100%;
    max-height:100%;
}
.nav .main-menu .menu-item{
    padding: 0 20px;
    color: var(--gray-black);
    line-height: 68px;/*70 - 2 border*/
    font-size: 0.9rem;
    border-bottom:2px solid transparent;
    overflow: hidden;
    
}
.nav .main-menu .menu-item:hover, 
.nav .main-menu .menu-item:focus {
    outline: 0;
    border-bottom:2px solid var(--red);
}
.nav .main-menu .toyota-logo{
    width:50px;
    margin-right: auto;
    margin-left:5px;
}
.nav .main-menu .toyota-logo img{
    width:100%;
    height:auto;
}

.nav .main-menu .burger-menu{
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    border: none;
    font-size: 1.3rem;
    background: 0 0;
    overflow: hidden;
    color: #1e2a32;
}

/* NAVIGATION MOBILE MENU */
.nav .main-menu .burger-menu span{
    font-size:.8rem;
}
.nav .mobile-menu{
    display:none;
    width: 100%;
    padding-bottom: 100px;
}
.nav .mobile-menu ul {
    list-style: none;
    width: 100% !important;
    margin: 0;
    font-size: 0.8em;
}
.nav .mobile-menu ul.topics > li {
    padding: 16px 10px;
    border-bottom: 1px solid #3a444b;
    position: relative;
    overflow: auto;
    font-size:1rem;
}
.nav .mobile-menu ul li:hover {
    cursor: pointer;
}
.nav .mobile-menu ul li .collapse {
    display: none;
    margin-top: 20px;
}
.nav .mobile-menu ul li .collapse ul li {
    padding: 10px 20px;
    font-size: 1em;
}
.nav .mobile-menu ul li > span {
    background-color: #2e3840;
    color: #a9abad !important;
    width: 66px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    padding: 16px;
}
.nav .mobile-menu ul li > span .fa {
    transition-duration: 0.3s;
}
.nav .mobile-menu #toolsTitle {
    padding: 16px 10px;
    display: block;
}
.nav .mobile-menu .redbtn {
    width: 97%;
    margin: 5px auto;
    display: block;
    color: var(--gray-black);
    background-color: var(--white);
    text-align: center;
    /* border-radius: 3px; */
}

/* NAVIGATION BREADCRUMBS */
.nav .breadCrumbs {
    font-size: 0.8em;
    position: static;
    color: var(--gray-black);
    max-width: 370px;
    overflow: hidden;
    white-space: nowrap;
}
.nav .breadCrumbs ol {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin-right: 20px;
    padding: 10px 0;
}
.nav .breadCrumbs ol li {
    margin-right:5px;
}
.nav .breadCrumbs ol li a {
    color: var(--gray-black);
    text-decoration: none;
}
.nav .breadCrumbs ol li:last-child a span{
    width: 250px;
    max-width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*------------------------------*\
    OVERLAY ITEMS
\*------------------------------*/
.overlay {
    position: fixed;
    top: var(--content-top);
    left: 0;
    height: 100%;
    width: 100%;
    /* background: #27323a; */
    overflow: scroll;
}
.overlay:not(.fa) {
    font-size: 1em;
    color: #fff;
}
.overlay .pageContainer {
    margin-top: 70px;
    overflow: hidden;
    padding-bottom: 70px;
    position: relative;
}
.overlay.new_menu {
    background: #f0f0f0;
}
.overlay.new_menu .listsWrapper {
    width: 95%;
    background-color: #fff;
    color:black;
}
.overlay.new_menu .listsWrapper li,
.overlay.new_menu .listsWrapper ul {
    background-color: #fff;
    color:black;
}
.overlay.new_menu .listsWrapper li a {
    color:black
}
.overlay.new_menu .listsWrapper li a:hover {
    text-decoration: none;
    color:#d90022;
}
.overlay.new_menu .menuRow>.listsWrapper>li, .overlay.new_menu .menuRow>ul>li>ul {
    margin-bottom: 0px;
}

.listsWrapper:nth-child(2) > li:nth-child(n + 4), .overlay, nav .mobileNav {
    display: none;
}

.agencyLogo {
    width: 15%;
    height: 100%;
    float: right;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.agencyLogo a {
    width: 100%;
    height: 100%;
}

.slideDown1,
.slideDown2 {
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.slideDown1 {
    animation-name: slideDown1;
    -webkit-animation-name: slideDown1;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}
.slideDown2,
.slideDown3 {
    animation-duration: 0.5s;
    visibility: visible !important;
}
@keyframes slideDown1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-55px);
    }
}
@-webkit-keyframes slideDown1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-55px);
    }
}
.slideDown2 {
    animation-name: slideDown2;
    -webkit-animation-name: slideDown2;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-out;
}
.slideDown3,
.slideup1 {
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes slideDown2 {
    0% {
        transform: translateY(-55px);
    }
    100% {
        transform: translateY(-100px);
    }
}
@-webkit-keyframes slideDown2 {
    0% {
        transform: translateY(-55px);
    }
    100% {
        transform: translateY(-100px);
    }
}
.slideDown3 {
    animation-name: slideDown3;
    -webkit-animation-name: slideDown3;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-out;
}
.slideup1,
.slideup2 {
    animation-duration: 0.5s;
}
@keyframes slideDown3 {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(-155px);
    }
}
@-webkit-keyframes slideDown3 {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(-155px);
    }
}
.slideup1 {
    animation-name: slideup1;
    -webkit-animation-name: slideup1;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}
.slideup2,
.slideup3 {
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    visibility: visible !important;
}
@keyframes slideup1 {
    0% {
        transform: translateY(-155px);
    }
    100% {
        transform: translateY(-100px);
    }
}
@-webkit-keyframes slideup1 {
    0% {
        transform: translateY(-155px);
    }
    100% {
        transform: translateY(-100px);
    }
}
.slideup2 {
    animation-name: slideup2;
    -webkit-animation-name: slideup2;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-out;
}
@keyframes slideup2 {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(-55px);
    }
}
@-webkit-keyframes slideup2 {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(-55px);
    }
}
.slideup3 {
    animation-name: slideup3;
    -webkit-animation-name: slideup3;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-out;
}
@keyframes slideup3 {
    0% {
        transform: translateY(-55px);
    }
    100% {
        transform: translateY(0);
    }
}
@-webkit-keyframes slideup3 {
    0% {
        transform: translateY(-55px);
    }
    100% {
        transform: translateY(0);
    }
}
.fastSlide {
    animation-name: slideup3;
    -webkit-animation-name: slideup3;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}
@keyframes fastSlide {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-155px);
    }
}
@-webkit-keyframes fastSlide {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-155px);
    }
}
.elementFadeIn {
    -webkit-animation: fadein 1s linear forwards;
    animation: fadein 1s linear forwards;
}
@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1 !important;
    }
}
@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1 !important;
    }
}
@keyframes slideIn {
    0% {
        width: 10px;
        padding: 0 10px;
    }
    100% {
        padding: 0 10px;
        width: 220px;
        opacity: 1;
    }
}
@-webkit-keyframes slideIn {
    0% {
        width: 10px;
        padding: 0 10px;
    }
    100% {
        padding: 0 10px;
        width: 220px;
        opacity: 1;
    }
}

.menuRow {
    width: 50%;
    float: right;
    overflow: hidden;
}
.menuRow .listsWrapper {
    width: 49%;
    float: right;
}

.menuModelRange .carwrapper {
    border-bottom: 1px solid #2b373e;
    font-weight: 400;
    width: 30%;
    margin: 0 1%;
    float: right;
    text-align: center;
}
.carClassName, .greyBtn i, .menuRow .listsWrapper:nth-child(2) li:first-child ul li:first-child {
    font-weight: 700;
}
.listsWrapper {
    float: right;
    width: 24%;
}
ul.listsWrapper:nth-child(2) {
    float: left;
}
.menuRow > .listsWrapper > li {
    padding: 10px;
}
.menuRow > .listsWrapper > li,
.menuRow > ul > li > ul {
    list-style-type: none;
    background-color: #1e2a32;
    margin-bottom: 10px;
}
.menuRow > .listsWrapper > li > ul > li {
    text-decoration: none;
    margin-bottom: 5px;
}
.menuRow > .listsWrapper > li > ul > li a {
    text-decoration: none;
}
.menuRow > .listsWrapper > li > ul > li:not(:first-child):hover,
.modelRangeSpan a strong,
.modelRangeSpan a strong:hover,
span.credit a {
    text-decoration: underline;
}
ul.listsWrapper:nth-child(2) > li:nth-child(1),
ul.listsWrapper:nth-child(2) > li:nth-child(1) > * {
    background-color: #c50101;
}
ul.listsWrapper:nth-child(1) > li:nth-child(3) {
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-top: 10px;
}
ul.listsWrapper:nth-child(1) > .menuSocialLinks > ul > li,
ul.listsWrapper:nth-child(1) > li.menuSocialLinks {
    float: right;
    background-color: transparent;
}
ul.listsWrapper:nth-child(1) > .menuSocialLinks > ul > li {
    margin: 0 5px;
}

/*------------------------------*\
    SIDE BAR
\*------------------------------*/
.sideBarWrapper {
    position: fixed;
    left: 0;
    z-index: 1061;
    top: 35%;
}
.sideBarWrapper a,
.sideBarWrapper > div {
    background-color: #1e2a32;
    opacity: 0.9;
    margin-bottom: 1px;
    display: block;
    width: 54px;
    height: 56px;
    line-height: 56px;
    color: #fff;
    z-index: 10;
    font-size: 1.5em;
    position: relative;
}
.sideBarWrapper a span,
.sideBarWrapper > div.sideIcon > div.accessibility {
    border-radius: 0 3px 3px 0;
    position: absolute;
    display: none;
    width: 220px;
    padding: 0 15px;
    overflow: hidden;
    height: 56px;
    background-color: #d2001e;
    font-size: 0.6em;
    left: 53px;
    top: 0;
    text-align: right;
}
.accessibility > h3,
.carClassContainer,
.modelRangeTtls {
    text-align: center;
}
.sideBarWrapper a i,
.sideBarWrapper > div.sideIcon > i {
    line-height: 53px;
}
.sideBarWrapper .sideIcon:last-child {
    border-bottom-right-radius: 10px;
}
.sideBarWrapper .sideIcon:first-child {
    border-top-right-radius: 10px;
}
.sideBarWrapper .sideIcon:last-child:hover {
    border-bottom-right-radius: 0;
}
.sideBarWrapper .sideIcon:first-child:hover {
    border-top-right-radius: 0;
}
.sideBarWrapper .sideIcon:first-child:hover ~ .sideIcon:last-child {
    border-radius: 0;
}
.acc-title {
    display: block;
    font-size: 18px;
    height: 30px;
}
.sideBarWrapper > div.sideIcon > div.accessibility {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    height: 284px;
    text-align: center;
}
.sideBarWrapper a.sideIcon.mtm {
    display: none !important;
}
div.sideIcon > div.accessibility button,
div.sideIcon > div.accessibility h3 {
    color: #fff;
}
.accessibility > h3 {
    display: block;
    width: 100%;
    color: #000;
    max-height: 25px;
}
.accessibility button.accessibilityBtn {
    border: none;
    outline: 0;
    background: 0 0;
    width: 30%;
    font-size: 1em;
}
.accessibility button.accessibilityBtn.btnAdjust {
    width: 45% !important;
}
.accessibility button.accessibilityBtn:hover {
    cursor: pointer;
    text-decoration: underline;
}
.accessibility a {
    background-color: transparent;
    width: 50%;
    font-size: 15px;
    margin: auto;
}
.sideBarWrapper span#accTtl {
    display: none;
    float: right;
    padding: 0 10px;
    color: #fff;
    line-height: 55px;
}

/*------------------------------*\
    MESSAGE BOX
\*------------------------------*/
.messageBox {
    z-index: 999;
    display: none;
    padding: 50px 50px 70px 50px;
    width: 500px;
    max-height: 500px;
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.messageBox h2 {
    text-align: center;
    color: #c60024;
    font-size: 35px;
    margin-bottom: 30px;
    overflow: hidden;
    max-height: 163px;
}
.messageBox .content {
    direction: rtl;
    text-align: center;
    overflow: hidden;
    max-height: 310px;
}
.messageBox input,
.messageBox label {
    position: absolute;
    bottom: 20px;
}
.messageBox label {
    left: 50px;
}
.messageBox input[type="checkbox"] {
    left: 205px;
    transform: translateY(-25%);
}
.messageBox label {
    left: 50px;
}
.messageBox input[type="button"] {
    border: none;
    background-color: #384349;
    border-radius: 5px;
    padding: 7px 15px;
    color: #fff;
    font-size: 14px;
}

/*------------------------------*\
    MODEL RANGE
\*------------------------------*/
.modelRange {
    width: 100%;
    padding-bottom: 35px;
    padding-top: 75px;
}
.modelRangeContainer {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    text-decoration: none;
}
.modelRangeTtls {
    margin-top: 10px;
    margin-bottom: 20px;
}
.modelRangeTtls h3 {
    font-size: 1.8em;
    font-weight: 400;
}
.modelRangeTtls span {
    font-size: 1.5em;
}
.noHover:hover {
    background-color: transparent;
    cursor: auto;
}
.carwrapper {
    float: right;
    width: 16.66%;
    height: 135px;
}
.carwrapper:hover {
    background-color: #bab5b5;
    cursor: pointer;
}
.carwrapper a {
    display: inline-block;
    height: auto;
    position: relative;
    width: 100%;
}
.modelRangeContainer.pageContainer .carwrapper > a > span {
    color: #000;
}
.carwrapper a .carClassImg {
    float: right;
    display: block;
    max-width: 80%;
    margin: 0 10%;
    max-height: 66px;
}
.carwrapper a .hybrid {
    border-radius: 2px;
    border: 1px solid rgba(33, 98, 101, 0.2);
    font-size: 0.6em;
    color: #fff;
    background-color: #00a0f0;
    font-weight: 700;
    padding: 1px 3px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.greyBtnContainer, .greyLine, .sectionWraper, .socialLinksRow ul, .upArrow::before {
    position: relative;
}
.carwrapper span {
    display: block;
}
.carClassName {
    font-family: 'NotoSansHebrew', Arial, sans-serif;
}
.modelRangeSpan a strong {
    color: #000;
}
.modelRangeSpan a strong:hover {
    cursor: pointer;
    color: red;
}
.modelRange .greyBar {
    padding: 0 !important;
}
.modelRangeContainer .carClassContainer .carwrapper a span.carClasPrice {
    color: #000;
}
.modelRangeContainer .carClassContainer .carwrapper a span.carClassName {
    color: #000;
}

/*--------------------------------------------------------------------*\
    PAGE ELEMENTS
\*--------------------------------------------------------------------*/
.container {
    width: 100%;
}
.pageContainer {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}
/* replace the above */
.page-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}
/* push down content underneath fixed nav bar */
.content-top{
    padding-top:var(--content-top);
}
.centerContent {
    font-size: 16px;
}
.sectionWraper {
    background-color: #1e2a32;
}
.sectionWraper::after {
    clear: both;
    float: none;
    content: "";
    height: 80px;
    display: block;
}
.flash {
    display: block;
}
.flash-error {
    color: red;
}
span.credit a {
    display: block;
    color: #000;
    float: left;
    padding: 5px 10px 20px;
    font-size: 15px;
}

.noScroll {
    position: fixed;
    overflow: hidden;
}

.redbtn {
    background-color: var(--gray-black);
    background-image:unset;
    background-repeat: repeat-x;
    border: none;
    color: white;
    /* border-radius: 20px; */
    margin-top: 5px;
    font-size: 1em;
    padding: 15px 30px;
}
.redbtn a {
    padding: 20px 0;
}
.redbtn:hover {
    text-decoration: none!important;
    background-image: unset;
    background-color: var(--gray-black);
    opacity: .9;
}
.greyBtnContainer {
    width: 170px;
    height: 47px;
    margin: 20px auto;
    z-index: 2;
}
.greyBtn {
    min-width: 160px;
    min-height: 45px;
    color: #6c7073;
    background-color: #e8e9ea;
    border: 0;
    margin: 0 auto;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(30, 42, 50, 0.5);
    font-size: 1em;
}
.greyBtn:hover {
    cursor: pointer;
    text-decoration: underline;
    background-color: #ababab;
}
.greyBtn i {
    margin-right: 5px;
    margin-top: 2px;
}
.greyLine {
    width: 100%;
    border-bottom: 1px solid #c9cdd1;
    bottom: 42px;
    z-index: 1;
}
.greyBar {
    width: 100%;
    background-color: #e8e9ea;
    margin-top: 20px;
    border: 1px solid #ddd;
    max-height: 320px;
    overflow: hidden;
}
div.linkedDiv {
    width: 23%;
    height: 263px;
    float: right;
    overflow: hidden;
    margin: 5% 1% 0;
    border-radius: 5px;
}
div.linkedDiv a div {
    position: relative;
    background-color: rgba(30, 42, 50, 0.84);
    height: 100px;
    bottom: 100px;
    padding: 6px;
}
div.linkedDiv a div h3 {
    font-weight: 100;
    padding-top: 15px;
}
div.linkedDiv a div p {
    font-size: 15px;
}
.blackWindow {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 111;
    position: fixed;
    display: none;
}

/*--------------------------------------------------------------------*\
    AGENCY INFO SECTION
\*--------------------------------------------------------------------*/
.agency-container{
    margin-top:40px;
}
.agency-container .agency-info{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom:40px;
}
.agency-container .agency-info .store{
    width:580px;
}
.agency-container .agency-info .store .agency-contact h3{
    margin-bottom:10px;
    font-size: 1.2rem;
    font-weight:500;
}
.agency-container .agency-info .store .agency-contact h3 a{
    color: var(--gray-black);
}
.agency-container .agency-info .store .social-links{
    display:flex;
    margin-top:20px;
}
.agency-container .agency-info .store .social-links a{
    margin-left:5px;
}
.agency-container .agency-info .store .agency-hours{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.agency-container .agency-info .store .agency-hours ul{
    width: 280px;
    margin-top: 135px;
    margin-left: 10px;
    list-style-type: none;
}
.agency-container .agency-info .store .agency-hours ul li{
    line-height: 1.6rem;
}
.agency-container .agency-info .store .agency-hours ul li.hours-head{
    margin-bottom:10px;
    font-size: 1.2rem;
}
.agency-container .agency-info .store .agency-hours ul li.hours-head span{
    margin-right:5px;
}
.agency-container .agency-info .store .agency-hours ul li.hours-item{
    display: flex;
    font-size: 1rem;
}
.agency-container .agency-info .store .agency-hours ul li.hours-item span{
    width:116px;
}
.agency-container .agency-info .store .btn-container{
    margin-top:30px;
    text-align:center;
}
.agency-container .agency-info .store .btn-container{
    margin-top:60px;
}
.agency-container .agency-info .location{
    display:flex;
    flex-direction: column;
    align-items: flex-end;
}
.agency-container .agency-info .location img.store-img{
    width:100%;
    max-width:530px;
}
.agency-container .agency-info .location .agency-map img{
    width:100%;
    max-width:530px;
}
.agency-container .agency-info .location h3{
    padding: 5px 0;
    font-size: 1.2rem;
    font-weight:500;
    text-align: center;
}

/* OPENING HOURS TABLE ---to deprecate------------*/
.contactTabels table tr:nth-child(2n+1),
.openingHours .table tbody tr:nth-child(2n+1) {
    background-color: #ebeced
}
.contactTabels h2,
.openingHours h2 {
    margin-top: 50px;
    /* border-top: 1px solid #c9cdd1; */
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #c9cdd1;
    font-size: 1.8em;
    font-weight: 400;
}
.openingHours .tableResposive {
    width: 100%;
    /* height: 235px; */
    /* table-layout: fixed; */
    /* overflow: scroll */
}
.openingHours table {
    border-spacing: 0;
    border-collapse: collapse;
    margin-right: 3px;
    font-size: 1em
}
.openingHours .table>* {
    text-align: right
}
.openingHours .table thead th {
    display: table-cell;
    width: 203px;
    height: 54px;
    text-align: center;
    padding: 0 50px
}
.openingHours .table tbody>* {
    font-size: 1em;
    color: #1E2A32;
    width: 203px;
    height: 54px
}
.openingHours .table tbody tr td {
    border-left: 1px solid #ebeced;
    border-bottom: 1px solid #ebeced;
    text-align: center
}

.contactTabels {
    width: 99%;
    margin: 0 auto
}
/* .contactTabels div {
    margin-bottom: 20px
} */
.contactTabels h3 {
    font-size: 1.1rem;
    margin-top: 20px
}
.contactTabels table tbody {
    font-size: 1em;
    color: #1E2A32
}
.contactTabels table {
    margin-top: 1em;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    font-size: 1em;
    border-spacing: 0 0;
    border-collapse: collapse
}
.contactTabels table tr td {
    width: 30% !important;
    height: 44px;
    border-top: 1px solid #c9cdd1;
    padding-right: 10px
}
.contactTabels table tr td a {
    color: #000
}
/* END OPENING HOURS TABLE ---to deprecate------------*/

/*------------------------------*\
    CONTENT PAGE TEMPLATE
\*------------------------------*/
#headerImg,
.subPageContainer * {
    max-width: 100%;
}
/* body {
    min-height: 100vh;
} */
.subPageContainer {
    min-height: 90vh;
}
.subPageContainer a {
    color: #27323a !important;
}
#headerImg {
    width: 100%;
    height: auto;
}
#gallery {
    max-width: 80% !important;
    margin-right: 10% !important;
}
.ug-lightbox .ug-lightbox-overlay {
    background-color: rgba(39, 50, 58, 0.4) !important;
}
.ug-lightbox .ug-lightbox-top-panel {
    background: #3a444b !important;
}

@media (max-width: 1200px) {
    iframe,
    img:not(#headerImg):not(nav),
    video {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/*------------------------------*\
    FOOTER
\*------------------------------*/
footer {
    width: 100%;
    min-height: 100px;
    padding-bottom:10px;
    background-color: #fff;
    box-shadow: inset 0 0 150px rgba(108, 112, 115, 0.3);
    font-size: 0.9em;
}
footer li a:hover, footer li span:hover {
    text-decoration: underline;
    color: #404345;
}
footer ul, footer ul li {
    display: inline-block;
    text-decoration: none;
}
footer ul {
    list-style-type: none;
    margin-top: 20px;
}
footer ul li {
    color: #29292a;
}
footer li a, footer li a:focus, footer li a:visited, footer li span {
    /* line-height: 40px; */
    vertical-align: middle;
    text-decoration: none;
    color: #6c7073
}
footer li span:hover {
    cursor: pointer;
}
footer ul li .fa {
    transition-duration: 0.45s;
}
.socialLinksRow {
    min-height: 47px;
    max-width: 221px;
}
.footer-disclaimers{
    margin:20px;
}
.footer-disclaimers ul{
    display:flex;
    flex-direction: column;
    list-style-type: disc;
    list-style-position: outside;
}
.footer-disclaimers ul li{
    margin-top:5px;
    font-size: .8rem;
    line-height:1.4rem;
}
footer .siteMap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
}
footer .siteMap ul {
    max-width: 200px;
    margin: 20px;
}
footer .siteMap ul li {
    display: block;
    padding-bottom: 20px;
    text-decoration: none;
    color: #6c7073;
}
footer .siteMap ul li:not(.listTtl):hover {
    text-decoration: underline;
    color: #404345;
    cursor: pointer;
}
.bottom-call-btn {
    display: none;
}
.upArrow {
    height: 20px;
}
.upArrow::before {
    content: " ";
    width: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #e8e9ea;
    top: 5px;
}
.leftSide {
    float: left;
}
.rightSide {
    float: right;
}

.footer-nav{
    display: flex;
    justify-content: space-between;
}
.footer-nav ul li{
    font-size: .8rem;
    font-weight: 600;
}
.footer-nav .links li{
    margin-left: 10px;
}
.footer-nav .credits li{
    margin-right: 10px;
}


/*------------------------------*\
    BREAKPOINT 1200
\*------------------------------*/
@media (max-width: 1200px) {
    .pageContainer {
        width: 970px;
        margin: 0 auto;
    }
    .nav .breadCrumbs{
        display: none;
    }
}
@media (max-width: 980px) {
    .pageContainer {
        max-width: 720px;
    }
    .sideBarWrapper {
        top: 12vh;
    }
    .sideBarWrapper .sideIcon:first-child {
        z-index: 1000;
        transition-duration: 0.3s;
    }
    .sideBarWrapper .sideIcon.openAccesibility {
        width: 220px;
        border-bottom-right-radius: 0 !important;
    }
    .sideBarWrapper .sideIcon .accessibility {
        top: 54px !important;
        left: 0 !important;
        border-radius: 0 !important;
    }
    .sideBarWrapper .sideIcon:first-child:hover {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    .sideBarWrapper .sideIcon:not(:first-child) {
        display: none !important;
    }
    .carwrapper {
        width: 25%;
    }
    .menuModelRange .carwrapper {
        width: 20%;
        margin: 10px 2.5%;
    }

    .agencyLogo {
        width: 20%;
    }
    .linkedDiv {
        width: 43% !important;
        margin-left: 1.5%;
        margin-right: 1.5%;
    }
    .linkedDiv:nth-child(2n) {
        float: left;
    }
    .upArrow {
        display: none;
    }
    .sideBarWrapper a.sideIcon.mtm {
        display: block !important;
    }
    .sideBarWrapper .sideIcon.mtm.wtsp {
        border-bottom-right-radius: 10px !important;
        opacity: 0.9 !important;
    }
    #mtm-whatsapp {
        margin-top: 13px;
        width: 28px;
        height: auto;
    }
    .bottom-call-btn {
        background-color: #1e2a32;
        opacity: 0.9;
        position: fixed;
        display: block;
        width: 100%;
        bottom: 0;
        height: 60px;
        text-align: center;
    }
    .bottom-btn-text {
        font-size: 24px;
        margin-top: 17px;
    }
}

/*------------------------------*\
    BREAKPOINT 768
\*------------------------------*/
@media (max-width: 768px) {
    .nav .main-menu .burger-menu{
        display: flex;
    }
    .nav .mobile-menu{
        display: block;
    }
    /* .nav .breadCrumbs{
        display: none;
    } */
    .menu-item{
        display: none;
    }
    
    .messageBox {
        width: 93%;
        padding: 20px;
    }
    
    #desktopLogo {
        display: none;
    }
    .agencyLogo {
        width: 40%;
    }
    
    .sideBarWrapper.inNav {
        z-index: 1000;
        display: block;
        width: 100%;
        height: 57px;
        border-bottom: 1px solid #3a444b;
        position: initial;
    }
    .sideBarWrapper .sideIcon.inNav {
        position: absolute;
        border-radius: 0 !important;
        width: 65px;
        left: 0;
        background-color: #2e3840;
    }
    .sideBarWrapper .accessibility.inNav {
        left: 66px !important;
        top: 0 !important;
        height: 280px !important;
        border-bottom-right-radius: 10px !important;
        border-top-right-radius: 10px !important;
    }
    .carwrapper {
        position: relative;
        width: 48% !important;
        margin: 1% !important;
        padding: 10px 0;
        font-size: 0.9em;
        max-height: none !important;
    }
    .carwrapper img {
        margin: 0 10% !important;
    }

    .overlay {
        top: var(--content-top);
    }
    .pageContainer {
        width:100%;
    }
    .overlay .pageContainer.menuContainer .menuRow .listsWrapper, nav {
        width: 100%;
    }
    .overlay .pageContainer.menuContainer .menuRow .listsWrapper > li:not(.menuSocialLinks) {
        border-top: 1px solid rgba(255, 255, 255, 0.42);
        border-bottom: 1px solid rgba(10, 10, 10, 0.25);
        margin: 0;
    }
    .overlay .pageContainer.menuContainer .menuRow .listsWrapper:first-child > li:first-child {
        border-top: none;
    }
    .overlay .pageContainer.menuContainer .menuRow .listsWrapper:last-child > li:last-child {
        border-bottom: none;
    }
    .overlay .pageContainer.menuContainer .menuRow .listsWrapper > li.menuSocialLinks {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .agency-container{
        padding-top:0;
    }
    .agency-info{
        padding:0 5px;
    }
    .agency-info .store, .agency-info .location{
        width:100%;
    }
    .agency-container .agency-info .location{
        margin: 30px auto 0;
        align-items: center;
    }
    .agency-container header h1{
        font-size:1.4rem;
        padding-top:20px;
    }
    .agency-container .agency-info .store .agency-contact{
        text-align: center;
    }
    .agency-container .agency-info .store .social-links{
        justify-content: space-evenly;
    }
    .agency-container .agency-info .store .social-links a{
        margin:0;
    }
    .agency-container .agency-info .store .agency-hours ul {
        width: 230px;
        margin: 30px auto 0 auto;
    }

    .agency-info .store-img{
        width:100%;
    }
    .footer-disclaimers{
        width:85%;
        margin: 20px auto 0;
        padding:0 20px 10px 0;
    }
    .footer-nav{
        display: block;
    }
    .footer-nav ul{
        width:100%;
        text-align: center;
    }
    .footer-nav ul li{
        margin: 0 10px;
    }
    footer .siteMap{
        max-width: 380px;
        margin: 0 auto;
    }
    footer .siteMap ul li{
        max-width: 150px;
    }
    footer .siteMap ul li p{
        max-width: 100px;
    }
}

/*------------------------------*\
    BREAKPOINT 550
\*------------------------------*/
@media (max-width:550px) {
    .article-preview-item {
        width: 100%
    }
    .overlay{
        background: #27323a;
    }
    .footer-nav .credits li{
        padding-bottom:20px;
    }
}

/*------------------------------*\
    BREAKPOINT 320
\*------------------------------*/
@media (max-width: 320px) {
    nav .menuModelRange .carwrapper {
        font-size: 0.6em;
    }
}