.has-primary-color{ color: var(--primary); }
.has-secondary-color{ color: var(--secondary); }
.has-text-color{ color: var(--text); }
.has-accent-color{ color: var(--accent); }
.has-white-color{ color: var(--white); }
.has-yellow-color{ color: var(--yellow); }
.has-green-color{ color: var(--green); }

.has-primary-color a{ color: var(--primary); }
.has-secondary-color a{ color: var(--secondary); }
.has-text-color a{ color: var(--text); }
.has-accent-color a{ color: var(--accent); }
.has-white-color a{ color: var(--white); }
.has-yellow-color a{ color: var(--yellow); }
.has-green-color a{ color: var(--green); }

.has-primary-background-color{ background-color: var(--primary); }
.has-secondary-background-color{ background-color: var(--secondary); }
.has-text-background-color{ background-color: var(--text); }
.has-accent-background-color{ background-color: var(--accent); }
.has-white-background-color{ background-color: var(--white); }
.has-yellow-background-color{ background-color: var(--yellow); }
.has-green-background-color{ background-color: var(--green); }

html, body {
    overflow-x: hidden;
}
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:16px;
    line-height: 1.7em;
    color: var(--text);
    word-wrap: break-word;
}
.body-no-scroll {
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    font-weight: 700;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 26px;
}
a, a:active, button, button:active {
    outline: none;
    text-decoration: none;
}
button, button:active {
    color: var(--white);
}
a {
    color: var(--secondary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: 0.3s;
}
a:active, a:hover {
    color: inherit;
}
a:hover {
    text-decoration: underline;
}
a:-webkit-any-link:focus-visible {
    outline-offset: 1px !important;
}
:focus-visible {
    outline: #000 auto 1px !important;
}
button:focus {
    outline: 5px auto #000;
}
img {
    max-width: 100%;
    height: auto;
}
header ul, header ol, footer ul, footer ol {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}
ol, ul {
    padding-left: 18px;
}
blockquote mark {
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
blockquote mark:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary);
}
.wp-block-list li::marker {
    color: var(--secondary);
    font-weight: bold;
}
.heading-font {
    font-family: "Teko", sans-serif;
    font-weight: 400;
}
.pt-6,
.py-6 {
    padding-top: 6rem;
}
.pb-6,
.py-6 {
    padding-bottom: 6rem;
}
.vertical-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.body-font {
    font-family: "Roboto", sans-serif;
}
button.go-top {
    position: fixed;
    bottom: 0;
    right: 3.5%;
    height: 40px;
    width: 50px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: var(--primary);
    border: 0;
    z-index: 999;
}
button.go-top:hover {
    background: var(--secondary);
}
span.arrow-up {
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    position: absolute;
    left: calc(50% - 7px);
    top: calc(50% - 3px);
}

/* HEADER */
header {
    position: relative;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: 0.3s;
}
header.sticky {
    padding: 10px 0;
    box-shadow: 0 8px 28px rgb(0 0 0 / 30%);
}
.top-header {
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}
.top-header {
    position: relative;
    display: flex;
    align-items: center;
}
.top-header a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    gap: 5px;
    line-height: 1.4em;
}
.top-header a:hover {
    opacity: .8;
}
.header-address a {
    max-width: 250px;
}
.header-links a i {
    color: var(--secondary);
    font-size: 24px;
}
.bot-header {
    background: var(--white);
    /*border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;*/
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px var(--gray);
}
header p {
    margin: 0;
}
.header-links {
    display: flex;
    gap: 60px;
    align-items: center;
}
.social-holder {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    font-weight: 400;
}
.platforms {
    display: flex;
    gap: 10px;
}
.platforms a {
    font-size: 20px;
    color: var(--primary);
    background: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo a {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
.logo a:hover {
    color: inherit;
}
.desktop-logo a {
    max-width: 130px;
}
header .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .menu li a {
    color: var(--text);
    font-size: 18px;
}
header .menu li.current-menu-item a {
    color: var(--secondary);
}
header ul.wp-block-social-links {
    gap: 10px;
}
#menu-header-menu a {
    padding: 5px 0px;
    text-decoration: none;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    position: relative;
    display: inline-block;
}
#menu-header-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transition: .3s;
    transition-timing-function: cubic-bezier(.58,.3,.005,1);
    background: var(--text);
    opacity: 0;
}
#menu-header-menu a:hover::after, #menu-header-menu .current-menu-item a::after {
    opacity: 1;
}
#menu-header-menu .current-menu-item a::after {
    background: var(--secondary);
}
#menu-header-menu .menu-btn a:after {
    content: none;
}
#menu-header-menu .menu-btn a {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
    padding: 5px 15px;
}
#menu-header-menu .menu-btn a:hover {
    opacity: .8;
}
.search-form-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .8);
}
button.open-menu .fa-times {
    display: none;
}
button.open-menu.menu-active .fa-times {
    display: block;
}
button.open-menu.menu-active .fa-bars {
    display: none;
}

/* FOOTER */
footer {
    background: var(--primary);
    color: var(--white);
    position: relative;
    line-height: 1.4;
}
footer.footer-overlay {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.overlay-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, .8);
}
/*footer.footer-overlay .top-footer {
    background: rgba(49, 72, 157, .9);
}*/
footer .platforms a {
    background: var(--secondary);
    color: var(--white);
}
/*footer.footer-overlay .bottom-footer {
    background: rgba(249, 249, 249, .2);
}*/
.footer-name {
    font-size: 28px;
}
footer .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 15px;
    font-size: 18px;
}
.top-footer {
    position: relative;
    padding: 60px 0;
}
.top-footer:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc((100% - 1200px) / 2 + 500px);
    height: 100%;
    background: rgba(34, 34, 34, .6);
}
.top-footer .row {
    row-gap: 40px;
}
footer a {
    color: var(--white);
    position: relative;
    padding-bottom: 5px;
}
.social-holder a:hover {
    text-decoration: none;
    opacity: .8;
}
footer .menu a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--white);
    transition: all 0.4s ease;
}
footer .menu a:hover::before {
    width: 100%;
}
footer ul.wp-block-social-links {
    gap: 35px;
}
.footer-logo {
    max-width: 200px;
}
.sales-hours ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bottom-footer {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    font-size: 14px;
    line-height: 1;
}
.bottom-footer p, .bottom-footer :where(.wp-block-columns) {
    margin-bottom: 0;
}
footer .social-holder {
    justify-content: flex-start;
}
.footer-title {
    font-family: "Roboto", sans-serif;
}
.footer-menu a:hover {
    color: inherit;
    text-decoration: none;
}
.footer-contact a:hover {
    color: inherit;
}
.footer-menu, .footer-contact {
    gap: 30px;
    display: flex;
    flex-direction: column;
}
.footer-contact a {
    padding-left: 30px;
    display: inline-block;
    line-height: 1.4;
    padding-bottom: 0;
}
.footer-contact a i, .sales-hours i {
    position: absolute;
    left: 0;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
}
.sales-hours {
    padding-left: 30px;
    position: relative;
}
.footer-copyright {
    display: flex;
    align-items: center;
    gap: 5px;
}
.bottom-footer a:hover {
    color: inherit;
}
.footer-title {
    position: relative;
    padding-bottom: 10px;
}
.footer-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    max-width: 100%;
    height: 2px;
    background: var(--secondary);
}

/* Page With Banner */

.banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.entry-header {
    position: relative;
    min-height: 340px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
.entry-header:before {
/*    content: '';*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.entry-header:after {
/*    content: '';*/
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--white);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
.entry-header h1 {
    color: var(--white);
    margin-bottom: 0;
}
.page-content h1 {
    color: var(--white);
}
.banner-button {
    text-align: center;
    margin-top: 30px;
}
.banner-button a {
    color: var(--white);
    background: var(--secondary);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
}
.banner-button a:hover {
    background: rgba(237, 28, 36, .8);
}

/* CUSTOM BLOCKS */
:where(.wp-block-columns) {
    margin-bottom: 0 !important;
    justify-content: center;
}
:where(.wp-block-columns.has-background) {
    padding-right: 0;
    padding-left: 0;
}

.top-rounded {
    padding-top: 30px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    margin-top: -30px;
}
.bottom-line:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    width: 100px;
    height: 3px;
    background: var(--secondary);
}
.red-shadow img {
    box-shadow: 7px 2px 50px 11px rgba(236.99999999999994, 27.999999999999968, 36, 0.26);
    border: 2px solid var(--primary);
    border-radius: 10px;
}
.bottom-line {
    position: relative;
    padding-bottom: 10px;
}
/*.wp-block-button__link {
    text-decoration: none !important;
    background: var(--primary);
    border: 2px solid var(--primary);
    font-weight: bold;
}*/
.wp-block-button__link:hover {
    opacity: .8;
    text-decoration: none;
}

/* GRAVITY FORMS */
.gform-theme--foundation .gform_fields {
    row-gap: 20px;
}
.gform-theme--framework .gfield--type-section {
    border-bottom: 0;
    margin-top: 20px;
}
h3.gsection_title {
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px 7px 25px;
    font-size: 34px;
    font-family: "Roboto", sans-serif;
}
.gfield_label.gform-field-label {
    font-weight: bold;
}
.gfield_required {
    font-style: italic;
}
.gform_button {
    font-weight: bold !important;
    padding: 15px 25px !important;
    font-size: 16px !important;
    opacity: 1 !important;
}
.gform_button:hover {
    opacity: .8 !important;
}
.image-box-shadow img {
    box-shadow: 1px 1px 18px 1px #103C89;
}

/* Contact Box */
.contact-box {
    border: 1px solid #686e77;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
h3.contact-box-title {
    padding: 10px 20px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    font-weight: bold;
    font-size: 26px;
}
.contact-box div {
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
}
.contact-box-icon i {
    font-size: 30px;
    color: var(--accent);
}
.contact-box-sales-hours ul {
    padding: 0;
    list-style: none;
    line-height: 1.2em;
    gap: 10px;
    display: flex
;
    flex-direction: column;
}
.mark, mark {
    padding: 0;
}
.wp-block-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp-block-list.large-list {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.large-list li::marker {
    font-size: 30px;
    font-family: "Poppins", sans-serif;
}

/* VEHICLE SLIDER */

.slider-wrap {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}
.vehicle-slider {
/*    border-radius: 7px;*/
}
.vehicle-slider button.slick-arrow {
    position: absolute;
    top: calc(50% - 20px);
    background: none;
    border: 0;
    color: var(--secondary);
    font-size: 38px;
}
.vehicle-slider button.slick-prev.slick-arrow {
    left: -40px;
}
.vehicle-slider button.slick-next.slick-arrow {
    right: -40px;
}
.slide-container {
    margin: 20px;
    border: 1px solid #e8e8e8;
}
.vehicle-slide-img {
    height: 160px;
    width: 100%;
}
.vehicle-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vehicle-slide-title {
    position: relative;
    padding: 10px 10px 0;
    text-align: center;
}
.vehicle-slide-title h4 {
    margin-bottom: 0;
    line-height: 1em;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}
.vehicle-slide-text {
    position: relative;
    padding: 10px;
    text-align: center;
}
.vehicle-slide-text p {
    font-weight: bold;
    font-size: 18px;
    color: var(--secondary);
}
.vehicle-slide-info {
    position: relative;
    padding: 0 10px;
}
.vehicle-slide-info ul {
    list-style: none;
    padding: 0 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    border-bottom: 1px solid #e8e8e8;
}
.vehicle-slide-info ul li {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    gap: 5px;
}
.vehicle-slide-info img {
    max-width: 32px;
}
.vehicle-slide-btn {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}
.vehicle-slide-btn .shop-now-btn {
    display: inline-block;
    margin: 0 auto;
    background: var(--secondary);
    color: var(--white);
    line-height: 1em;
    padding: 15px 25px;
    font-weight: bold;
    text-decoration: none;
}
.vehicle-slide-btn .shop-now-btn:hover {
    opacity: .8;
}
.vehicle-slider ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}
.vehicle-slider ul.slick-dots button {
    padding: 0;
    border: none;
    font-size: 0;
    background: #e8e8e8;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.vehicle-slider ul.slick-dots li.slick-active button {
    background: var(--primary);
}
.divider-triangles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-left: 100vw solid transparent;
    border-top: 60px solid #fff;
    z-index: 2;
}

.divider-triangles:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-right: 100vw solid transparent;
    border-bottom: 60px solid #fff;
    z-index: 2;
}


/* SINGLE VEHICLE */

/*#lightbox {
    position: fixed;
    top: 50% !important;
    transform: translateY(-50%);
}*/
.vehicle-info {
    margin: 30px 0;
}
.vehicle-image {
    padding-bottom: 20px;
}
/*.vehicle-image img {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.83);
}*/
.vehicle-gallery .slick-track {
    display: flex !important;
}

.vehicle-gallery .slick-slide {
    height: inherit !important;
    margin-right: 10px;
}
.gallery-slide {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.vehicle-gallery button.slick-arrow {
    position: absolute;
    top: calc(50% - 20px);
    background: none;
    border: 0;
    color: var(--white);
    font-size: 38px;
    z-index: 5;
}
.vehicle-gallery button.slick-prev.slick-arrow {
    left: 0px;
}
.vehicle-gallery button.slick-next.slick-arrow {
    right: 10px;
}
.vehicle-gallery.slick-initialized.slick-slider {
    width: calc(100% + 10px);
}
.gallery-slide a {
    display: inline-block;
    width: 100%;
    height: 100%;
/*    border-radius: 10px;*/
    overflow: hidden;
}
.gallery-slide img {
    width: 100%;
    height: 115px;
    object-fit: cover;
}
.vehicle-text-call {
    text-align: center;
}
.vehicle-text-call h4 {
    margin-bottom: 0;
    font-size: 28px;
}
.stock-vin ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    columns: 2;
    column-gap: 20px;
}
.stock-vin ul li {
    text-align: center;
}
.vehicle-info-icons {
    margin: 30px 0;
}
.vehicle-info-icons ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.vehicle-info-icons ul li {
    width: 33.3334%;
    line-height: 1;
    text-align: center;
    font-size: 14px;
    padding: 10px;
}
.vehicle-info-icons ul li div {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.vehicle-description, .vehicle-features {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.vehicle-title h1, .vehicle-description h3, .vehicle-features h3 {
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    margin-bottom: 20px;
}
.vehicle-title h1 {
    font-size: 24px;
    text-align: center;
}
.vehicle-description h3, .vehicle-features h3 {
    font-size: 32px;
    font-family: "Roboto", sans-serif;
}
.wp-block-button__link {
    border-radius: 0 !important;
}
.features-list {
    margin: 10px 0;
    columns: 2;
    column-gap: 20px;
}
.features-list li {
    break-inside: avoid;
    margin-bottom: 15px;
    line-height: 1;
}
.test-drive {
    position: relative;
    overflow: hidden;
    background: #f1f1f1;
    padding: 60px 0;
}
.test-drive h3 {
    line-height: 1;
    font-size: 32px;
}
.test-drive-left ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.test-drive-left ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.test-drive-left ul li i {
    color: var(--primary);
    font-size: 32px;
}
.test-drive-right h3 {
    text-align: center;
}
.test-drive-right .flip-boxes-container {
    margin-top: 40px;
}
.test-drive-right .flip-boxes-container .flip-box {
    height: 200px;
}
.test-drive-right .flip-boxes-container .flip-box-front, .test-drive-right .flip-boxes-container .flip-box-back {
/*    border-radius: 20px;*/
}
.test-drive-right .flip-boxes-container .flip-box .flip-box-button {
/*    background-color: var(--primary);*/
}

.related-vehicles {
    position: relative;
    margin: 60px 0;
}

/* FLIP BOX */
.flip-boxes-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
}
.flip-box {
    width: 280px;
    height: 240px;
    perspective: 1000px;
}
.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.flip-box:hover .flip-box-inner {
    transform: rotateX(180deg);
}
.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #31489d;
}
.flip-box-back {
    transform: rotateX(180deg);
}
.flip-box-front {
    z-index: 2;
    gap: 40px;
}
.flip-box-front h3, .flip-box-back h3 {
    font-size: 30px;
}
.flip-box-back h3 {
    color: var(--primary);
}
.flip-box-front i {
    font-size: 50px;
}
.flip-box-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--secondary);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
.flip-box-button:hover {
    opacity: .8;
    color: #fff;
    text-decoration: none;
}

/* SEARCH RESULTS */
.search-query {
    margin: 30px 0;
}
.post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin: 60px 0;
}
.part-post {
    border: 1px solid #e8e8e8;
}
.post-grid .part-title {
    position: relative;
    padding: 10px 10px 4px;
    background: rgba(255, 255, 255, .8);
    text-align: center;
    margin-top: -36px;
    display: block;
    line-height: 1;
    text-decoration: none;
}
.post-grid .part-title h4 {
    margin-bottom: 0;
    line-height: 1;
}
p.part-excerpt {
    font-size: 15px;
    line-height: 1.4em;
    padding: 10px;
    margin-bottom: 0;
}
.wp-block-aab-accordion-item.aagb__accordion_active .aagb__accordion_head {
    background: #dd3d53 !important;
}
.wp-block-aab-accordion-item.aagb__accordion_active .aagb__accordion_head h4.aagb__accordion_title {
    color: #fff !important;
}


/* RESPONSIVE */
@media all and (max-width: 1499px) {
}
@media all and (min-width: 992px) and (max-width: 1499px) {
}
@media all and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    .top-header {
        padding: 0 15px;
    }
}
@media all and (max-width: 1199px) {
}
@media all and (min-width: 992px) and (max-width: 1199px) {
    .post-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .desktop-logo a {
        max-width: 100px;
    }
    #menu-header-menu a {
        font-size: 15px;
    }
}
@media all and (min-width: 992px) {
    .mobile-logo, .header-buttons, .mobile-menu, .desk-hide {
        display: none;
    }
}
@media all and (max-width: 991px) {
    .reasons-to-buy {
        text-align: center;
    }
    .reasons-to-buy figure {
        margin: 0 auto !important;
        float: none !important;
    }
    /*.divider-triangles:before, .divider-triangles:after {
        display: none;
    }*/
    .mob-hide {
        display: none;
    }
    .col-lg-4.footer-widgets {
         text-align: center; 
    }
    footer .social-holder {
        justify-content: center;
    }
    .top-footer:before {
        content: none;
    }
    .post-grid {
        grid-template-columns: 1fr 1fr;
    }
    .vehicle-title {
        margin-top: 30px;
    }
    .test-drive-left h3 {
        text-align: center;
    }
    .flip-boxes-container {
        flex-wrap: wrap;
    }
    h3.gsection_title, .vehicle-title h1, .vehicle-description h3, .vehicle-features h3 {
        font-size: 28px;
    }
    .entry-header {
        display: none !important;
    }
    .mobile-menu {
        background: var(--white);
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        max-height: 0;
        transition: max-height 0.25s ease-out;
        box-shadow: 0 3px 5px var(--gray);
        overflow: hidden;
        z-index: 99999;
    }
    .mobile-menu.active {
        max-height: 500px;
    }
    #menu-header-menu a {
        padding: 5px;
    }
    .top-header {
        padding: 0 10px;
    }
    .mobile-logo a {
        display: flex;
        justify-content: center;
    }
    .mobile-logo a img {
        max-height: 50px;
        width: auto;
    }
    .top-header:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        background: url(/wp-content/uploads/2024/11/black-background-scaled-1.jpg);
        background-position: center right;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .top-header a {
        font-size: 24px;
    }
    .header-buttons button {
        background: none;
        outline: none;
        border: none;
        font-size: 24px;
        width: 33px;
    }
    .header-buttons button {
        color: var(--secondary);
    }
    .header-links {
        gap: 30px;
        width: 35%;
    }
    .mobile-logo {
        width: 30%;
        max-width: 150px;
    }
    .header-buttons {
        display: flex;
        align-items: center;
        gap: 30px;
        width: 35%;
        justify-content: flex-end;
    }
    .header-social, .bot-header {
        display: none;
    }
    .contact-holder {
        display: flex;
        gap: 30px;
        justify-content: space-between;
    }
    .contact-holder a span {
        display: none;
    }
    header .menu {
        flex-direction: column;
        align-items: center;
    }
    header .menu li {
        width: 100%;
        text-align: center;
    }
    header .menu li a {
        display: block;
        text-decoration: none;
        padding: 15px;
        font-size: 16px;
        line-height: 1;
    }
    header .menu li.menu-item.current-menu-item a {
        background: var(--gray);
        color: var(--text);
    }
    .pb-6, .py-6 {
        padding-bottom: 3rem;
    }
    .pt-6, .py-6 {
        padding-top: 3rem;
    }
}
@media all and (min-width: 768px) and (max-width: 991px) {
    .vehicle-slider ul.slick-dots {
        gap: 7px;
    }
    .vehicle-slider ul.slick-dots button {
        width: 10px;
        height: 10px;
    }
    .top-header {
        height: 82px;
    }
    .mobile-menu {
        top: 82px;
    }
}
@media all and (max-width: 767px) {
    .reasons-to-buy figure img {
        max-width: 80px;
    }
    .top-footer {
        padding-bottom: 0;
    }
    .col-lg-5.pl-lg-5.col-md-6.footer-widgets {
        padding: 30px;
        background: var(--primary);
    }
    .footer-copyright {
        font-size: 12px;
    }
    .vehicle-slider ul.slick-dots {
        gap: 5px;
    }
    .vehicle-slider ul.slick-dots button {
        width: 7px;
        height: 7px;
    }
    .stock-vin ul {
        columns: 1;
    }
    .post-grid {
        grid-template-columns: 1fr;
    }
    .part-post {
        max-width: 300px;
        margin: 0 auto;
    }
    .vehicle-info-icons ul li {
        width: 50%;
    }
    .features-list {
        column-count: 1;
    }
    .features-list li {
        margin-bottom: 10px;
    }
    .contact-box {
        display: none;
    }
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 34px;
    }
    h3 {
        font-size: 28px;
    }
    .has-large-font-size {
        font-size: 24px !important;
    }
    .top-header {
        height: 82px;
    }
    .mobile-menu {
        top: 82px;
    }
    .mobile-logo img {
        max-width: 83px;
    }
    .footer-widgets {
        text-align: center;
    }
    .footer-menu, .footer-contact {
        gap: 20px;
    }
    footer .social-holder {
        justify-content: center;
    }
    .footer-title:before {
        left: calc(50% - 35px);
    }
    footer .menu {
        gap: 10px;
    }
    .footer-contact a, .sales-hours {
        padding-left: 0;
        padding-top: 40px;
    }
    .footer-contact a i, .sales-hours i {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-copyright {
        justify-content: center;
        margin-top: 20px;
        order: 2;
    }
    .footer-privacy p {
        text-align: center;
    }
}
@media all and (max-width: 575px) {
    footer .menu {
        justify-content: space-between;
    }
    header .menu li a {
        font-size: 16px;
    }
    footer .menu li a {
        font-size: 16px;
    }
}
@media all and (min-width: 375px) and (max-width: 575px) {
}
@media all and (max-width: 374px) {
}