@font-face {
    font-family: 'Toyota Type';
    src: url('/fonts/hilux-v1/ToyotaType-Light.eot');
    src: url('/fonts/hilux-v1/ToyotaType-Light.eot?#iefix') format('embedded-opentype'),
        url('/fonts/hilux-v1/ToyotaType-Light.woff2') format('woff2'),
        url('/fonts/hilux-v1/ToyotaType-Light.woff') format('woff'),
        url('/fonts/hilux-v1/ToyotaType-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Toyota Type';
    src: url('/fonts/hilux-v1/ToyotaType-BoldIt.eot');
    src: url('/fonts/hilux-v1/ToyotaType-BoldIt.eot?#iefix') format('embedded-opentype'),
        url('/fonts/hilux-v1/ToyotaType-BoldIt.woff2') format('woff2'),
        url('/fonts/hilux-v1/ToyotaType-BoldIt.woff') format('woff'),
        url('/fonts/hilux-v1/ToyotaType-BoldIt.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Toyota Type';
    src: url('/fonts/hilux-v1/ToyotaType-LightIt.eot');
    src: url('/fonts/hilux-v1/ToyotaType-LightIt.eot?#iefix') format('embedded-opentype'),
        url('/fonts/hilux-v1/ToyotaType-LightIt.woff2') format('woff2'),
        url('/fonts/hilux-v1/ToyotaType-LightIt.woff') format('woff'),
        url('/fonts/hilux-v1/ToyotaType-LightIt.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* ============================================= */
/* TOKENS                                         */
/* ============================================= */
:root {
    --hilux-black: #141414;
    --hilux-black-2: #1e1e1e;
    --hilux-red: #EB0A1E;
    --hilux-yellow: #FFB400;
    --hilux-cream: #F7F5F0;
    --hilux-grey: #6b6b6b;
    --hilux-grey-light: #e2e2e2;

    /*colors*/
    --bg: #0a0a0b;
    --panel: rgba(20, 20, 22, 0.72);
    --panel-border: rgba(255, 255, 255, 0.08);
    --ink: #F3F1EC;
    --muted: #9B9B9F;

    --accent: #D98A2B;
    /* gold / amber spotlight accent */
    --accent-2: #C43A2B;
    /* active-swatch red, matches reference */
    --gold: #E0A94E;

    --ease-premium: cubic-bezier(0.65, 0, 0.35, 1);
}

body {
    color: #222;
    background: #fff;
    margin: 0;
}

.custom-container {
    margin: 0 auto;
    float: none;
}

.overlay-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

/* .overlay-play-btn img {
    max-width: 30px;
    max-height: 30px;
} */

/* ============================================= */
/* STICKY SECTION NAVIGATION                      */
/* ============================================= */

section.nav-wrap {
    position: sticky;
    top: 70px;
    z-index: 999;
    width: 100%;
}

.section-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 1000;
    background: var(--hilux-black);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
    display: none;
}

.section-nav-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 0 28px;
    min-width: 100%;
}

.section-nav .nav-link {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9a9a9a;
    text-decoration: none;
    padding: 20px 0 16px;
    position: relative;
    flex: none;
}

.section-nav .nav-link:hover {
    color: #fff;
    text-decoration: none;
}

.section-nav .nav-link.active {
    color: #fff;
}

.section-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--hilux-red);
}

.hilux-mobile-nav {
    position: sticky;
    top: 70px;
    z-index: 1000;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hilux-mobile-nav-toggle {
    position: relative;
    width: 100%;
    height: 56px;
    padding: 0 45px 0 20px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.hilux-mobile-nav-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
    background: url("/images/showroom/hilux-v1/ico-accordion-arrow.webp") center center no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    transition: transform .4s ease;
}

.hilux-mobile-nav.open .hilux-mobile-nav-toggle::after {
    transform: rotate(360deg);
}

.hilux-mobile-nav-toggle {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.hilux-mobile-nav-toggle i {
    font-size: 26px;
    transition: .3s;
}

.hilux-mobile-nav.open .hilux-mobile-nav-toggle i {
    transform: rotate(180deg);
}

.hilux-mobile-nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 15px 0;
    background: #000;
}

.hilux-mobile-nav.open .hilux-mobile-nav-menu {
    display: block;
}

.hilux-mobile-nav-title {
    color: #ffb400;
    font-size: 1.1rem;
}

.hilux-mobile-nav-menu li {
    margin: 0;
}

.hilux-mobile-nav-menu a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
}

.hilux-mobile-nav-menu a.active {
    color: var(--hilux-red);
}

@media(min-width:768px) {
    .hilux-mobile-nav {
        display: none;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    margin: 0;
    letter-spacing: .5px;
}

.hilux-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    /* min-height: 50vh; */
}

/* ============================================= */
/* common card template                         */
/* ============================================= */
.card.tile-yellow-band-card {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.card.tile-yellow-band-card .line-horizontal {
    margin: 0 0 -5px;
    width: 40%;
}

.card.tile-yellow-band-card .card-body {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: .7rem;
    background: #FFB400;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card.tile-yellow-band-card .card-title {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    text-transform: uppercase;
}


.card.tile-yellow-band-card .card-img-top {
    padding: 0 0 50px;
}

.card.tile-yellow-band-card .card-body p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: all .5s ease-in-out;
    text-align: left;
}

.card.tile-yellow-band-card:hover .card-body p {
    max-height: 200px;
}

.swiper-pagination {
    position: static;
    margin-top: 1rem;
}

.swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #8E8E93;
    margin: 0 .3rem !important;
}

.swiper-pagination-bullet-active {
    background: #FFB400;
}

/* Tablet View */
/* @media (min-width:768px) and (max-width:1024px) {

    .interior-section .row {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .interior-section .col-sm-6 {
        display: flex;
        margin-bottom: 30px;
    }

    .card.tile-yellow-band-card {
        width: 100%;
        margin-bottom: 0;
    }

    .card.tile-yellow-band-card .card-img-top {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

    .card.tile-yellow-band-card .card-title {
        min-height: 50px;
        height: auto;
    }
} */

/* ============================================= */
/* EYEBROW / SECTION TITLES                      */
/* ============================================= */
.content-wrap {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.content-wrap.text-white h1,
.content-wrap.text-white h2 {
    color: #fff;
}

.content-wrap.text-white .mini-title {
    color: #FFB400;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: .8rem;
}

.content-wrap .mini-title::before {
    content: '';
    display: inline-block;
    height: 22px;
    width: 100px;
    background: #FFB400;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.content-wrap.text-white .bold-font,
.content-wrap.text-white .thin-font {
    color: #fff;
}

.content-wrap.text-white .content-text p {
    color: #fff;
}

.content-wrap h1,
.content-wrap h2 {
    text-transform: uppercase;
    letter-spacing: normal;
    margin: 0;
    font-style: italic;
    line-height: .9;
}

.block-span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inline-span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
}

.bold-font {
    font-family: 'Toyota Type';
    font-weight: bold;
    font-style: italic;
    font-size: 8.3rem;
}

.thin-font {
    font-family: 'Toyota Type';
    font-weight: 300;
    font-style: italic;
    font-size: 8.3rem;
}

.bold-font,
.thin-font {
    /* padding-right: 3px; */
}

.thin-font.fs-2 {
    font-size: 3rem;
}

.mini-title {
    font-size: 2rem;
    text-transform: uppercase;
    font-family: ToyotaType-Semibold;
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: .7rem;
}

.content-text {
    margin-top: 2rem;
}

.content-text p {
    font-size: 1.6rem;
}

.reveal-item {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
}

.reveal-line-horizontal::before {
    transform: scaleX(0);
    transform-origin: left;
}

.reveal-line-vertical::before {
    transform: scaleY(0);
    transform-origin: top;
}

.line-vertical {
    display: inline-flex;
    /* or inline-block */
    flex-shrink: 0;
    width: 10px;
    height: 85px;
    margin-right: 10px;
    background: #f2b202;
    clip-path: polygon(10% 16%, 100% 0, 100% 100%, 10% 100%);

    transform-origin: top center;
}

.line-horizontal {
    display: inline-block;
    width: 100px;
    height: 22px;
    margin-bottom: 1.5rem;
    background: #FFB400;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

/* ============================================= */
/* BUTTONS                                        */
/* ============================================= */
.btn-hilux-yellow {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding: 15px 30px;
    border: none;
    text-transform: uppercase;
    max-width: 420px;
    display: inline-block;
    width: 100%;
    background: var(--hilux-yellow);
    color: #000;
}

.btn-hilux-yellow:hover {
    background: #f2b202;
    color: #000;
}

.bg-img-video,
.section-inner {
    width: 100%;
    float: left;
    position: relative;
}


/* ============================================= */
/* SECTION 1 : HERO                               */
/* ============================================= */
.hilux-hero-section {
    height: 100%;
    margin-top: 70px;
    display: flex;
    overflow: hidden;
    background: #000;
    position: relative;
}

.hilux-hero-video {
    flex: 1;
}

.hilux-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hilux-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 2;
}


/* ============================================= */
/* SECTION 2 : Cyber Sumo                        */
/* ============================================= */

/* .cyber-sumo-content .bold-font::before{
    content:'';
    display:inline-block;
    width:10px;
    height:85px;
    margin-right:10px;
    background:#f2b202;
    clip-path:polygon(10% 16%,100% 0,100% 100%,10% 100%);

    transform:scaleY(var(--lineScaleY,0));
    transform-origin:top center;
} */

.cyber-sumo-section .line-horizontal {
    margin: 0;
}

.cyber-sume-info {
    padding: 5rem 0;
}

/* .cyber-sume-info .content-text::before{
    content:'';
    display:inline-block;
    width:100px;
    height:22px;
    margin-bottom:1.5rem;
    background:#FFB400;
    clip-path:polygon(0 0,90% 0,100% 100%,0 100%);

    transform:scaleX(var(--lineScaleX,0));
    transform-origin:left center;
} */



/* ============================================= */
/* SECTION 3 : Global Chief Engineer                       */
/* ============================================= */

.global-chief-engineer-section .custom-container {
    margin: 4.5rem auto;
}

.global-chief-engineer-section .custom-container .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.global-chief-engineer-section .content-text {
    margin: 0;
}

/* ============================================= */
/* SECTION 4 : Performance                       */
/* ============================================= */
.hilux-section.performance-section {
    padding: 70px 0;
    background: #ffffff;
}

.performance-section .section-inner {
    position: relative;
    z-index: 1;
}

.performance-section .bg-img-video {
    position: relative;
    z-index: 0;
    margin-top: -17%;
}

.performance-section .bg-img-video::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 47%);
    height: 20%;
    top: -2px;
    left: 0;
    width: 100%;
    opacity: 0;
}

.performance-section .bg-img-video::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    height: 20%;
    bottom: 0;
    left: 0;
    width: 100%;
}

.performance-carousel-wrap {
    margin-top: -250px;
    width: 100%;
    float: left;
}

.performance-carousel-wrap h3.card-title {
    font-size: 1.3rem;
}

.performance-swiper .card {
    text-align: center;
    width: 100%;
    padding: 2rem 3rem;
    background: #FFB400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 260px;
}

.performance-swiper .card img {
    max-height: 120px;
}

.iConnectImg {
    padding-top: 30px;
}

.iConnectImg img {
    margin: 0 auto;
}

/* ============================================= */
/* SECTION 4 : Legacy                       */
/* ============================================= */
.legacy-section .section-inner {
    position: relative;
    z-index: 1;
}

.legacy-section .bg-img-video {
    position: relative;
    z-index: 0;
    margin-top: -15%;
}

.legacy-section .legacy-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.legacy-section span.dry-tree-branch {
    position: absolute;
    bottom: -10%;
    right: -30%;
    display: block;
    max-width: 75%;
    will-change: transform;
}

.legacy-section .bg-img-video::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(15, 25, 33, 1) 100%);
    height: 20%;
    top: 0;
    left: 0;
    width: 100%;
}

.legacy-section .bg-img-video::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, 1) 100%);
    height: 20%;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hilux-section.legacy-section {
    padding: 100px 0 0;
    background: #0f1921;
}

.hilux-section.legacy-section::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    height: 70px;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}


/* ============================================= */
/* SECTION 6 : Exterior                        */
/* ============================================= */

.exterior-section {
    background: #000;
    padding-top: 0 !important;
}

.exterior-section .bg-img-video {
    position: relative;
    margin-bottom: -20%;
}

.exterior-section .bg-img-video::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    height: 20%;
    top: 0;
    left: 0;
    width: 100%;
}

.exterior-section .bg-img-video::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    height: 60%;
    bottom: 0;
    left: 0;
    width: 100%;
}

.exterior-section .section-inner {
    /* margin-top: -30%; */
    margin-bottom: 3rem;
}

.exterior-carousel-wrap {
    width: 100%;
    float: left;
}

.tree-branch {
    left: -10%;
    position: absolute;
    display: block;
    max-width: 45%;
    top: 0%;
    will-change: transform;
}

/* ============================================= */
/* SECTION 7 : Interior                        */
/* ============================================= */

.interior-section {
    background: #000;
}

.interior-section .bg-img-video {
    position: relative;
    margin-top: -15%;
    margin-bottom: -15%;
    z-index: 0;
}

.interior-section .section-inner {
    position: relative;
    z-index: 1;
}

.interior-section .bg-img-video::before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    height: 35%;
    top: 0;
    left: 0;
    width: 100%;
}

.interior-section .bg-img-video::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    height: 60%;
    bottom: 0;
    left: 0;
    width: 100%;
}

.interior-section .card.tile-yellow-band-card {
    margin-bottom: 30px;
    width: 100%;
    float: left;
}

.interior-features-cards {
    /* margin-top: -25%; */
}

.interior-custom-title h3 {
    font-size: 7.5rem;
    text-align: right;
    color: #ffb400;
    font-style: italic;
}

.interior-custom-title {
    display: flex;
    align-items: baseline;
}

.interior-custom-title .line.line-horizontal {
    flex-grow: 1;
    margin: 0;
}

.interior-features-cards .hilux-tabs-wrap {
    margin: 0;
    padding: 0;
}

.interior-features-cards .hilux-tabs-btns {
    text-align: center;
    margin: 0 0 30px;
    padding: 0;
    width: 100%;
    float: left;
}

.interior-features-cards .hilux-tabs {
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #ffffff;
}

.interior-features-cards .hilux-tabs>li {
    float: none;
    margin: 0;
}

.interior-features-cards .hilux-tabs>li>a {
    display: block;
    margin: 0;
    padding: 10px 22px;
    background: #fff;
    color: #000;
    border: none !important;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
}

.interior-features-cards .hilux-tabs>li+li>a {
    margin-left: -1px;
}

.interior-features-cards .hilux-tabs>li>a:hover {
    background: #f4b400;
    color: #000;
}

.interior-features-cards .hilux-tabs>li.active>a,
.interior-features-cards .hilux-tabs>li.active>a:hover,
.interior-features-cards .hilux-tabs>li.active>a:focus {
    background: #f4b400;
    color: #000;
    border: none;
}

/* Remove Bootstrap defaults */

.interior-features-cards .nav-tabs {
    border-bottom: 0;
}

.interior-features-cards .nav-tabs>li {
    margin-bottom: 0;
}

.interior-features-cards .tab-content {
    margin-top: 20px;
    padding: 0;
}

.interior-features-cards .tab-pane {
    padding: 0;
}


/* ============================================= */
/* SECTION 7 : 4x4                        */
/* ============================================= */

.four-by-four-section {
    padding-top: 0 !important;
}

.four-by-four-section .bg-img-video {
    margin-bottom: -10%;
}

.four-by-four-features-cards>.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.four-by-four-features-cards {
    position: relative;
    z-index: 2;
    display: table;
}

.four-by-four-section .parallax-bg-img {
    margin-top: -20%;
    /* overflow: hidden; */
    position: relative;
}

.four-by-four-section span.moving-rocks {
    position: absolute;
    bottom: -7%;
    right: -20%;
    display: block;
    max-width: 45%;
    will-change: transform;
}

.hilux-4x4-feature-card {
    position: relative;
    text-align: center;
    padding: 0;
    min-height: 230px;
}

.hilux-4x4-feature-card:after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: -15px;
    width: 1px;
    height: 130px;
    background: #d9d9d9;
}

.col-md-2:last-child .hilux-4x4-feature-card:after {
    display: none;
}

.hilux-4x4-feature-icon {
    height: 70px;
    margin-bottom: 20px;
}

.hilux-4x4-feature-icon img {
    max-height: 58px;
    width: auto;
    margin: 0 auto;
}

.hilux-4x4-feature-title {
    margin: 0 0 12px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.hilux-4x4-feature-description {
    max-width: 170px;
    margin: 0 auto;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width:991px) {

    .hilux-4x4-feature-card {
        min-height: 250px;
        margin-bottom: 35px;
    }

    .hilux-4x4-feature-card:after {
        display: none;
    }

}

/* ============================================= */
/* SECTION 8 : Safety                        */
/* ============================================= */
.hilux-section.safety-section {
    padding: 70px 0;
    background: #ffffff;
}

.safety-section .section-inner {
    position: relative;
    z-index: 1;
}

.safety-section .bg-img-video {
    position: relative;
    z-index: 0;
    margin-top: -17%;
    margin-bottom: -16%;
}

.safety-section .bg-img-video::after {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 13%, rgba(0, 0, 0, 0) 100%);
    height: 20%;
    bottom: 0;
    left: 0;
    width: 100%;
}

.safety-carousel-wrap {
    width: 100%;
    float: left;
}

/* ============================================= */
/* SECTION 9 : Accessories                        */
/* ============================================= */

.accessories-section {
    background: #000;
}

.download-brochure-btn {
    text-align: center;
    margin-top: 2rem;
}

.accessories-content {
    padding: 0 0 3rem;
}

.accessories-section {
    background: #000;
    padding: 60px 0;
}

.row-gap {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    float: left;
    margin: 0 0 50px;
}

.grid-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: #111;
}

.grid-card img {
    width: 100%;
    display: block;
    transition: .5s;
}

.grid-card:hover img {
    transform: scale(1.08);
}

.grid-card:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, 0));
}

.grid-card span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    line-height: 1.2;
}

.quote-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.quote-content {
    /* position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%); */

    display: flex;
    flex-direction: column;
    align-items: baseline;
}

/* .quote-content.left{
    left:20px;
    transform:translateY(-50%);
}

.quote-content.right{
    right:20px;
    left:auto;
    transform:translateY(-50%);
} */

.yellow-line {
    width: 35px;
    height: 6px;
    background: #f6b500;
    display: block;
    margin-bottom: 15px;
}

.quote-content h2 {
    color: #f6b500;
    font-size: 2.5rem;
    font-family: 'Toyota Type';
    font-weight: bold;
    font-style: italic;
    margin: 0;
}

@media (max-width:1400px) {
    .quote-content h2 {
        font-size: 1.7rem;
    }
}

@media (max-width:1200px) {

    .quote-box {
        height: 70px;
        margin-bottom: 20px;
    }

    .grid-card {
        margin-bottom: 20px;
    }

    .quote-content h2 {
        font-size: 34px;
    }

}

/* ============================================= */
/* SECTION 11 : Colors                        */
/* ============================================= */
.colors-section {
    padding: 3rem 0 0;
    background: #000;
}

.configurator {
    /* min-height: 100vh; */
    width: 100%;
    background: var(--bg);
    overflow: hidden;
}

.configurator__stagecol {
    padding: 0;
}

.stage {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.stage::before {
    content: "";
    width: 100%;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.stage__scenery {
    position: relative;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-select: none;
    user-select: none;
    z-index: 0;
}

.stage__vignette {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(120% 90% at 50% 35%, rgba(0, 0, 0, 0) 45%, rgba(6, 6, 7, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ---------- HEADER: centered eyebrow + two-line headline ---------- */
.stage__header {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 6vh 6% 0;
}

.eyebrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin: 0 0 18px;
}

.eyebrow__rule {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--accent);
}

.headline {
    margin: 0;
    text-transform: uppercase;
    line-height: 1.08;
}

.headline__line {
    display: block;
    color: var(--ink);
}

.headline__line--thin {
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.04em;
}

.headline__line--bold {
    font-weight: 700;
    font-size: 46px;
    letter-spacing: 0.01em;
}

/* ---------- CAR ---------- */
.car-wrap {
    position: absolute;
    z-index: 3;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: min(60%, 1100px);
    margin: 0 auto;
    align-self: center;
    aspect-ratio: 1349 / 759;
    top: 30%;
    left: 22%;
    transform: translate(10px, 10px);
}

.car-img {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    user-select: none;
    -webkit-transform-origin: 50% 65%;
    transform-origin: 50% 65%;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.6));
}

.car-img--current {
    z-index: 3;
}

.car-img--incoming {
    z-index: 2;
}

/* Shine sweep: soft diagonal light band riding the reveal line */
.car-shine {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.55) 49%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0.55) 51%,
            rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: screen;
    -webkit-transform: translateX(-60%);
    transform: translateX(-60%);
}

.control-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(0, 0, 0, .5);
    max-width: fit-content;
    padding: 0;
    border-radius: 100px;
    margin: 0 auto;
}

.readout-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 360px;
    height: 80px;
    padding: 16px 26px;
    border-radius: 60px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.readout-pill__swatch-wrap {
    position: relative;
    flex: none;
}

.readout-pill__swatch {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, .08);
    background: #fff;
}

.readout-pill__check {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: url(/images/showroom/hilux-v1/colors/ico-color-tick.webp) transparent center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    box-shadow: 0 8px 16px rgba(235, 0, 27, .35);
}

.readout-pill__text {
    display: flex;
    flex-direction: column;
}

.readout-pill__names {
    position: relative;
    min-height: 28px;
    font-size: 1rem;
    font-weight: 700;
    color: #161616;
}

.colour-name {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.readout-pill__sub {
    margin-top: 4px;
    font-size: 15px;
    color: #8B8B8B;
    display: none;
}

.palette {
    display: flex;
    align-items: center;
    gap: 22px;
}

.swatch {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    transition: .35s;
}

.swatch:hover {
    transform: scale(1.08);
}

.swatch__fill {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    transition: .35s;
    box-shadow: none;
}

.swatch__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: .35s;
}

.swatch.is-active {
    transform: scale(1.08);
}

.swatch.is-active .swatch__ring {
    border-color: #EB001B;
}

.swatch__label {
    display: none;
}

.configurator.is-animating .palette {
    pointer-events: none;
}


/* Laptop */
@media (max-width: 1199px) {
    .headline__line--thin {
        font-size: 25px;
    }

    .headline__line--bold {
        font-size: 38px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .stage__header {
        padding: 5vh 6% 0;
    }

    .car-wrap {
        width: min(60%, 700px);
        top: 24%;
        left: 18%;
    }

    .control-bar {
        gap: 18px;
        bottom: 10px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .headline__line--thin {
        font-size: 19px;
        letter-spacing: 0.02em;
    }

    .headline__line--bold {
        font-size: 27px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.24em;
        margin-bottom: 12px;
    }

    /* .car-wrap { width: 92%; max-height: 36vh; } */
    .palette {
        gap: 12px;
    }

    .swatch {
        width: 30px;
        height: 30px;
    }

    .swatch.is-active {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 380px) {
    .headline__line--bold {
        font-size: 23px;
    }

    .readout-pill__swatch {
        width: 28px;
        height: 28px;
    }
}

/* ============================================= */
/* SECTION 14 : Specifications         */
/* ============================================= */

.specification-section {
    background: #f4b400;
    padding-bottom: 0 !important;
}

.specification-section .content-wrap {
    text-align: left;
    margin-bottom: 3rem;
}

.specification-section .block-span {
    align-items: flex-start;
}

.specification-section .content-wrap .mini-title {
    justify-content: flex-start;
}

.hilux-spec-highlights {
    padding: 0px 0 30px;
    width: 100%;
    float: left;
}

.hilux-spec-highlight {
    display: flex;
    align-items: flex-end;
    color: #111;
    margin-bottom: 25px;
}

.hilux-spec-value {
    font-size: 64px;
    font-family: ToyotaType-Bold;
    font-weight: 400;
    line-height: 1;
}

.hilux-spec-unit {
    margin-left: 8px;
    font-size: 22px;
    font-family: ToyotaType-Bold;
    font-weight: 400;
    color: #ffffff;
}

.hilux-spec-label {
    margin-left: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: ToyotaType-Regular;
    font-weight: 400;
}

.hilux-specifications-section .disclaimer-spcs {
    width: 100%;
    float: left;
    padding: 20px 0;
}

.download-brochure-btn {
    width: 100%;
    float: left;
}

.hilux-specifications-section .disclaimer-spcs h4 {
    font-family: ToyotaType-Bold;
    font-weight: 400;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: .7rem;
}

.hilux-specifications-section .disclaimer-spcs p {
    color: #ffffff;
    font-size: .8rem;
}

.hilux-specification-wrapper {
    background: #1d1d1d;
    padding: 70px 0;
}

.hilux-spec-panel {
    background: none;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.hilux-spec-panel-heading {
    padding: 0;
}

.hilux-spec-panel.panel-default>.panel-heading {
    color: #F0C040;
    background-color: transparent;
    border-color: transparent;
    padding: 0;
}

.hilux-spec-panel.panel-default>.panel-heading a {
    display: block;
    padding: 10px 15px 15px;
    position: relative;
}

.hilux-spec-panel.panel-default>.panel-heading a::after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(/images/showroom/hilux-v1/ico-accordion-arrow.webp) transparent center center;
    display: block;
    position: absolute;
    top: 12px;
    right: 15px;
    transform: rotate(180deg);
    transition: all .5s ease-in-out;
}

.hilux-spec-panel.panel-default>.panel-heading a[aria-expanded="true"]::after {
    transform: rotate(360deg);
}

.hilux-spec-panel-heading a {
    display: block;
    padding: 18px 0;
    color: #f4b400;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.hilux-spec-line {
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #f4b400;
    margin-right: 12px;
    vertical-align: middle;
    display: none;
}

.hilux-spec-table {
    color: #fff;
    margin: 0;
}

.hilux-spec-table th {
    color: #f4b400;
    border-color: #444 !important;
    /* font-size:12px; */
}

.hilux-spec-table td {
    border-color: #333 !important;
    color: #bbb;
    padding: 16px 10px;
}

.hilux-spec-download-btn {
    margin-top: 50px;
    background: #f4b400;
    color: #111;
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
}

.hilux-spec-download-btn:hover {
    background: #ffc52f;
    color: #111;
}

.video-animeted-section {
    padding: 0 !important;
    margin-bottom: -2px;
    background: #1d1d1d;
}

/* ============================================= */
/* SECTION 14 : Test Drive         */
/* ============================================= */

.testdrive-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: #000000;
}

.testdrive-section .content-wrap {
    text-align: left;
}

.testdrive-section .content-wrap.text-white .mini-title {
    justify-content: flex-start;
}

.testdrive-section .block-span {
    align-items: flex-start;
}

.textdrive-from-container {
    padding: 3rem 0;
}

.testdrive-section .section-inner {
    position: relative;
    z-index: 1;
    margin-top: -25%;
}

.testdrive-section .bg-img-video::after {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 85%);
}

/* Remove every bootstrap style */
.testdrive-section .toyota-form label {
    color: rgba(255, 255, 255, .3);
    font-weight: 100;
}

.testdrive-section .toyota-form label span {
    color: rgba(255, 255, 255, 1);
    font-weight: 100;
}

.testdrive-section .toyota-form .form-control,
.testdrive-section .toyota-form .form-control:hover,
.testdrive-section .toyota-form .form-control:focus,
.testdrive-section .toyota-form .form-control:active {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 16px;
    margin: 0;

    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #444 !important;
    border-radius: 0 !important;

    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;

    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: border-color .3s ease;
}

.testdrive-section .toyota-form .form-control:focus {
    border-bottom-color: #fff !important;
}

.testdrive-section .toyota-form .form-control::-webkit-input-placeholder {
    color: #555;
    text-transform: none;
}

.testdrive-section .toyota-form .form-control::-moz-placeholder {
    color: #555;
    text-transform: none;
}

.testdrive-section .toyota-form .form-control:-ms-input-placeholder {
    color: #555;
    text-transform: none;
}

.testdrive-section .toyota-form .form-control::placeholder {
    color: #555;
    text-transform: none;
}

.testdrive-section .toyota-form textarea {
    resize: none;
}

/* Remove IE dropdown arrow */
.testdrive-section .toyota-form select::-ms-expand {
    display: none;
}

/* Remove autofill styles */
.testdrive-section .toyota-form input:-webkit-autofill,
.testdrive-section .toyota-form input:-webkit-autofill:hover,
.testdrive-section .toyota-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #111 inset;
    transition: background-color 9999s ease-in-out 0s;
}

/* Remove bootstrap spacing */
.testdrive-section .toyota-form .form-group {
    margin-bottom: 40px;
}

.testdrive-section .toyota-form .btn-wrapper-form {
    margin-top: 2rem;
}

/* Select */
.testdrive-section .toyota-form select.form-control {
    cursor: pointer;
}

.testdrive-section .toyota-form select option {
    background: #111;
    color: #fff;
}

/* Date */
.testdrive-section .toyota-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* ============================================= */
/* SECTION 15 : EMI CALCULATOR                    */
/* ============================================= */

.emi-section-wrap .content-wrap {
    text-align: left;
    margin-bottom: 3rem;
}

.emi-section-wrap .block-span {
    align-items: flex-start;
}

.emi-section-wrap .content-wrap .mini-title {
    color: #fff;
    justify-content: flex-start;
}

.emi-section-wrap .content-wrap .mini-title::before {
    background: #ffffff;
}

.emi-section-wrap {
    padding: 70px 0 0;
    background: #000;
}

.emi-section-wrap .bg-img-video {
    margin-top: -20%;
}

.emi-section-wrap .bg-img-video::before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    height: 35%;
    top: 0;
    left: 0;
    width: 100%;
}

.emi-section-wrap .bg-img-video::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    height: 20%;
    bottom: 0;
    left: 0;
    width: 100%;
}

.emi-section {
    background: var(--hilux-yellow);
    padding: 60px 90px;
    position: relative;
    z-index: 1;
}

.emi-heading {
    font-style: italic;
    font-weight: 700;
    font-size: 62px;
    color: var(--hilux-black);
    text-transform: uppercase;
    letter-spacing: -.5px;
    margin: 6px 0 55px;
}

.emi-row {
    align-items: flex-start;
    width: 100%;
    float: left;
    margin: 0;
}

.emi-field {
    margin-bottom: 40px;
}

.emi-field:last-child {
    margin-bottom: 0;
}

.emi-field-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.emi-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, .55);
    margin: 0 0 12px;
}

.emi-field-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--hilux-black);
}

/* variant "select" styled as plain underlined text */
.emi-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    padding: 4px 0 14px;
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--hilux-black);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    cursor: pointer;
}

.emi-select:focus {
    outline: none;
    border-bottom-color: var(--hilux-black);
}

/* thin-line slider with red dot thumb */
.emi-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 1px;
    background: rgba(0, 0, 0, .35);
    outline: none;
    margin: 0;
}

.emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--hilux-red);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(235, 10, 30, .15);
}

.emi-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--hilux-red);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(235, 10, 30, .15);
}

.emi-slider::-moz-range-track {
    height: 1px;
    background: rgba(0, 0, 0, .35);
}

.emi-result-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: right;
    padding-top: 4px;
    justify-content: center;
}

.emi-result-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, .55);
}

.emi-result-note {
    font-size: 1rem;
    color: rgba(0, 0, 0, .4);
    margin-top: 4px;
    margin-bottom: 10px;
    text-align: center;
    display: block;
    width: 100%;
}

.emi-pill {
    background: var(--hilux-black);
    border-radius: 60px;
    padding: 32px 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.emi-pill-value {
    font-weight: 700;
    font-size: 44px;
    color: var(--hilux-yellow);
    line-height: 1;
}

.emi-pill-note {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(242, 195, 20, .75);
    margin-top: 8px;
}

/* Modal */
.hilux-popup-modal {
    z-index: 99999;
}

.hilux-popup-modal .modal-content {
    /* width: 95%; */
    margin: 0 auto;
    display: table;
}

.no-padding {
    padding: 0;
}

.hilux-popup-content {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.hilux-popup-modal .modal-title {
    font-style: italic;
}

.hilux-popup-modal .close {
    font-size: 40px;
}


body.modal-open .hilux-popup-modal .modal-dialog {
    display: table;
    margin: 30px auto !important;
}

.hilux-popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 100;
    opacity: 1;
    font-size: 28px;
    font-weight: 300;
}

.hilux-popup-row {
    margin: 0;
}

.hilux-popup-image {
    padding: 0;
}

.hilux-popup-form {
    padding: 0;
}

.hilux-popup-form .modal-body {
    padding: 25px;
}

.hilux-popup-title {
    margin: 0 0 20px;
    font-size: 34px;
    font-style: italic;
}

.hilux-popup-control {
    border-radius: 0;
    box-shadow: none;
}

.hilux-popup-control:focus {
    box-shadow: none;
}

.hilux-popup-btn {
    border-radius: 0;
    font-weight: 600;
}

/* ============================================= */
/* RESPONSIVE  EMII                              */
/* ============================================= */

@media (max-width: 1750px) {
    .hilux-section {
        padding: 50px 0;
    }

    .mini-title {
        font-size: 1rem;
    }

    .content-wrap.text-white .mini-title::before {
        height: 12px;
        width: 60px;
    }

    .bold-font,
    .thin-font {
        font-size: 5.3rem;
    }

    .thin-font.fs-2 {
        font-size: 3.5rem;
    }

    .content-text p {
        font-size: 1.2rem;
    }

    .card.tile-yellow-band-card .card-title {
        font-size: 1.2rem;
    }

    .interior-custom-title h3 {
        font-size: 5.5rem;
    }

    .car-wrap {
        top: 26%;
        left: 20%;
    }

    .readout-pill {
        height: 70px;
    }

    .readout-pill__names {
        font-size: 1rem;
    }
}

@media (max-width: 1350px) {
    .hilux-section {
        padding: 50px 0;
    }

    .mini-title {
        font-size: 1rem;
    }

    .content-wrap.text-white .mini-title::before {
        height: 12px;
        width: 60px;
    }

    .bold-font,
    .thin-font {
        font-size: 4.3rem;
    }

    .thin-font.fs-2 {
        font-size: 2rem;
    }

    .content-text p {
        font-size: 1.2rem;
    }

    .card.tile-yellow-band-card .card-title {
        font-size: 1.2rem;
    }

    .interior-custom-title h3 {
        font-size: 3.5rem;
    }

    .performance-swiper .card {
        padding: 2rem 2rem;
    }

    .performance-carousel-wrap h3.card-title {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .performance-carousel-wrap .swiper-wrapper {
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .performance-section .bg-img-video::before {
        content: "";
        opacity: 1;
    }

    .performance-section .bg-img-video {
        margin-top: 0%;
    }

    .content-wrap.text-white.performance-content .bold-font,
    .content-wrap.text-white.performance-content .thin-font {
        color: #000000;
    }

    .performance-section .content-wrap.text-white.performance-content .content-text p {
        color: #000000;
    }
}

@media (max-width: 990px) {
    .emi-section {
        padding: 30px 40px;
    }

    .bold-font,
    .thin-font {
        font-size: 3.1rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .emi-result-col {
        padding-top: 2.5rem;
    }

    .performance-carousel-wrap {
        margin-top: 0;
    }

    .content-wrap-left {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 26px;
    }

    .made-for-title {
        font-size: 30px;
        flex-direction: column;
    }

    .emi-heading {
        font-size: 40px;
        margin-bottom: 36px;
    }

    .emi-result-col {
        align-items: flex-start;
        text-align: left;
        margin-top: 36px;
    }

    .emi-pill {
        padding: 26px 40px;
    }

    .emi-pill-value {
        font-size: 34px;
    }

    section.nav-wrap {
        position: fixed;
        top: 60px;
    }

    .hilux-hero-section {
        margin-top: 41px;
    }


    .hilux-section {
        padding: 30px 0;
    }

    .inline-span {
        flex-direction: column;
    }

    .mini-title {
        font-size: 1rem;
    }

    .content-wrap .content-text p br {
        display: none;
    }

    .content-wrap.text-white .mini-title::before {
        height: 12px;
        width: 60px;
    }

    .bold-font,
    .thin-font {
        font-size: 3rem;
    }

    .thin-font.fs-2 {
        font-size: 1.5rem;
    }

    .content-text p {
        font-size: 1rem;
    }

    .card.tile-yellow-band-card .card-title {
        font-size: 1.1rem;
    }

    .bold-font,
    .thin-font {
        font-size: 2rem;
    }

    .exterior-section .bg-img-video {
        margin-bottom: -18%;
    }

    .interior-section .bg-img-video {
        margin-top: 0;
        margin-bottom: 0;
    }

    .hilux-section.safety-section {
        padding: 0px 0;
    }

    .cyber-sume-info {
        padding: 2rem 0;
    }

    .global-chief-engineer-section .custom-container {
        margin: 2rem auto;
    }

    .global-chief-engineer-section .image {
        border: 2px solid #FFB400;
    }

    .hilux-section.performance-section {
        padding: 30px 0;
    }

    .global-chief-engineer-section .image {
        margin-top: 2rem;
    }

    .overlay-play-btn {
        width: 55px;
        height: 55px;
    }

    .hilux-spec-label {
        width: 100%;
    }

    .hilux-spec-value {
        font-size: 50px;
    }

    .hilux-spec-highlight {
        flex-wrap: wrap;
    }

    .control-bar {
        position: relative;
        background: transparent;
        flex-direction: column;
        padding-bottom: 30px;
    }

    .readout-pill {
        height: 70px;
    }
}

.tbpopup-body {
    background-color: #fff;
}

.graph-hideshow>div {
    margin-top: 18px;
}

#txtRequiredLoanAmount {
    border: none;
    border-bottom: 1px solid;
    background: none;
}

.thank-u p,
.thank-u span,
.thank-u a {
    color: #fff;
}

#popThankYou {
    text-align: center;
}

#popThankYou img {
    width: 15%;
}

.thank-u div {
    color: #000;
}

.pop-thank-u p,
.pop-thank-u div,
.pop-thank-u span,
.pop-thank-u a {
    color: #000000;
    padding-bottom: 7px;
}

@media (min-width: 991px) {
    #enquiryModal .modal-body {
        overflow-y: auto;
        max-height: 448px;
    }
}

.popupEnqForm {
    -ms-overflow-style: scrollbar;
}

.popupEnqForm::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

.popupEnqForm::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
}

.popupEnqForm::-webkit-scrollbar-thumb {
    background-color: #e80000;
}

.form-group {
    margin-bottom: 8px;
}

.font-size-12 {
    font-size: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    #cboEnqPopupCity_chosen .chosen-single span {
        font-size: 14px !important;
    }

    #cboEnqPopupDealer {
        padding-left: 0px !important;
    }

    #cboCity_chosen .chosen-single {
        height: 36px !important;
        line-height: 36px !important;
        display: flex;
        align-items: center;
    }

    #cboCity_chosen .chosen-single span {
        font-size: 14px !important;
    }
}

@media only screen and (min-width: 768px) {
    #cboCity_chosen .chosen-single {
        height: 35px;
        border: none !important;
        background-color: transparent !important;
        border-bottom: 1px solid #444 !important;
    }

    #cboEnqPopupCity_chosen .chosen-single {
        background: transparent;
        border: none;
        border-bottom: 1px solid black;
        padding: 0;
    }

    #cboEnqPopupCity_chosen .chosen-single div b {
        display: none;
    }

    #cboEnqPopupCity_chosen .chosen-single span {
        color: #808285;
        font-family: inherit;
        font-size: 14px;
        text-transform: capitalize;
    }

    #cboCity_chosen .chosen-single span {
        font-size: 1.3rem;
        /* padding-left: 8px; */
        text-transform: capitalize;
        color: #ffffff;
        font-family: inherit;
    }

    .chosen-drop {
        border: 1px solid #000 !important;
    }

    #cboCity_chosen .chosen-single div b {
        display: none;
    }

    #cboEnqPopupCity_chosen .chosen-results li {
        font-family: "Toyota Type" !important;
        font-size: 16px !important;
        color: #808285;
        text-transform: capitalize !important;
    }

    .chosen-results .highlighted {
        background-color: #1967d2 !important;
        color: #fff !important;
    }

    .chosen-container-active.chosen-with-drop .chosen-single div {
        display: none;
    }

    #cboCity_chosen.chosen-single div {
        display: none;
    }
}

/* EMI section css ENDS */

@media only screen and (min-width: 768px) {

    /* search  */
    .chosen-container-active.chosen-with-drop .chosen-single {
        border: none;
        border-bottom: 1px solid #bababa;
    }

    .chosen-container-single .chosen-single {
        border: none !important;
        height: 40px;
        border: 1px solid #ccc !important;
        background-color: #ffffff;
        color: #999999;
        padding: 0 0 0px 12px;
    }

    .chosen-container-single .chosen-single span {
        display: block;
        overflow: hidden;
        margin-right: 26px;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-transform: uppercase;
        font-family: "ToyotaType-Semibold";
        color: #999999;
        font-size: 15px;
    }

    #cboEnqPopupCity_chosen .chosen-single,
    #cboEnqPopupDealer_chosen .chosen-single,
    #cboEnqPopupSalutation_chosen .chosen-single {
        border-bottom: 1px solid #6d6e6e;
    }

    #cboEnqPopupSalutation_chosen .chosen-single span {
        font-family: "ToyotaType-Regular" !important;
        text-transform: capitalize;
        font-size: 14px !important;
        color: #6d6e6e;
    }

    #cboEnqPopupCity_chosen.chosen-container-single .chosen-single span,
    #cboEnqPopupDealer_chosen.chosen-container-single .chosen-single span,
    #cboEnqPopupSalutation_chosen .chosen-container-single .chosen-single span {
        font-family: "ToyotaType-Regular" !important;
        color: #6d6e6e !important;
        font-size: 14px !important;
        text-transform: capitalize;
    }

    #cboEnqPopupDealer_chosen .chosen-search,
    #cboEnqPopupSalutation_chosen .chosen-search {
        display: none;
    }

    #cboEnqPopupDealer_chosen .chosen-drop,
    #cboEnqPopupSalutation_chosen .chosen-container .chosen-drop {
        padding-top: 5px;
    }

    #cboCity_chosen .chosen-drop {
        background-color: #000;
    }

    #cboCity_chosen .chosen-results li {
        color: #fff;
    }

    #cboEMIState_chosen .chosen-single,
    #cboEMICity_chosen .chosen-single {
        border: none !important;
        background: transparent;
        color: #000000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3) !important;
    }

    #cboEMIState_chosen .chosen-single span,
    #cboEMICity_chosen .chosen-single span {
        color: var(--hilux-black);
        text-transform: capitalize;
    }

    #cboEMIState_chosen .chosen-drop,
    #cboEMICity_chosen .chosen-drop {
        background: var(--hilux-black);
        color: var(--hilux-yellow);
    }

    #cboEMIState_chosen .chosen-single div b,
    #cboEMICity_chosen .chosen-single div b {
        background: transparent;
        width: 0;
        height: 0;
        margin: 0;
        transition: none;
        display: inline;
    }

    #cboEMIState_chosen .chosen-single div b::before,
    #cboEMICity_chosen .chosen-single div b::before {
        font-family: FontAwesome;
        display: inline-block;
        padding-right: 0px;
        vertical-align: middle;
        content: "\f107";
        font-weight: 550;
        color: #fff;
        font-size: 15px;
        position: absolute;
        right: 3px;
        top: 2px;
    }

    #cboEMIState_chosen .chosen-drop .chosen-results .no-results,
    #cboEMICity_chosen .chosen-drop .chosen-results .no-results {
        color: #222;
    }

    #cboEMIState_chosen .chosen-drop .chosen-results .highlighted,
    #cboEMICity_chosen .chosen-drop .chosen-results .highlighted {
        background: #00b0ff !important;
        color: #ffffff;
    }

    #cboEMIState_chosen .chosen-drop .chosen-search,
    #cboEMICity_chosen .chosen-drop .chosen-search {
        color: #222;
    }

    #cboEMIState_chosen .chosen-drop,
    #cboEMICity_chosen .chosen-drop {
        font-family: "ToyotaType-Bold";
    }

    #cboEMIState_chosen .chosen-results li,
    #cboEMICity_chosen .chosen-results li {
        color: #fff;
    }

    #cboEMIState_chosen .chosen-container .chosen-results li.no-results {
        color: #777;
    }

    .chosen-results li {
        text-transform: capitalize !important;
    }

    #cboSalutation_chosen .chosen-single span {
        text-transform: capitalize;
    }

    #cboDealer_chosen .chosen-search {
        display: none !important;
    }
}

/* search part */
@media only screen and (min-width: 768px) {
    .chosen-container-single .chosen-single {
        height: 34px;
        line-height: 1.42857143;
        padding: 6px 12px;
        font-size: 14px;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
    }

    .chosen-container-single .chosen-single span {
        font-family: inherit;
        color: #555;
        font-size: 14px;
        text-transform: capitalize;
    }

    #cboPopCity_chosen .chosen-single {
        background-color: transparent;
        border: none;
        /* border: 1px solid #ccc !important; */
    }

    #cboPopCity_chosen .chosen-single span {
        text-transform: capitalize;
        color: #555;
        font-family: inherit;
        font-size: 14px;
    }

    #cboPopCity_chosen:focus {
        outline: 1px solid #eee;
    }

    .chosen-container-active.chosen-with-drop .chosen-single {
        border: 1px solid #ccc !important;
    }

    .chosen-results li {
        text-transform: capitalize !important;
    }

    #cboPopCity_chosen .chosen-results li {
        font-size: 14px;
    }

    .chosen-results .highlighted {
        background-color: #1967d2 !important;
        color: #fff !important;
    }

    #cboCity_chosen .chosen-single div b,
    #cboDealer_chosen .chosen-single div b,
    #cboPopCity_chosen .chosen-single div b {
        background: transparent;
        width: 0;
        height: 0;
        margin: 0;
        transition: none;
        display: inline;
    }

    #cboPopCity_chosen .chosen-single div b::before {
        color: #ffffff !important;
    }

    #cboCity_chosen .chosen-single div b::before,
    #cboDealer_chosen .chosen-single div b::before,
    #cboPopCity_chosen .chosen-single div b::before {
        font-family: FontAwesome;
        display: inline-block;
        padding-right: 0px;
        vertical-align: middle;
        content: "\f107";
        font-weight: 600;
        color: #6d6e6e;
        font-size: 16px;
        position: absolute;
        right: 4px;
        top: 2px;
    }

    #cboEMIState_chosen .chosen-single {
        background-color: transparent !important;
        border: 0;
        border-bottom: 1px solid #fff;
        color: #efefef;
        border-radius: 0;
        font-family: "ToyotaType-Bold";
    }

    #cboEMIState_chosen .chosen-single span {
        color: #fff;
    }
}

@media only screen and (min-width: 768px) {

    #cboEMIState_chosen .chosen-single,
    #cboEMICity_chosen .chosen-single {
        background: transparent;
        color: #efefef;
        border-bottom: 1px solid #fff;
        font-family: "ToyotaType-Bold";
    }

    #cboEMIState_chosen .chosen-single span,
    #cboEMICity_chosen .chosen-single span {
        color: var(--hilux-black);
        text-transform: capitalize;
    }

    #cboEMIState_chosen .chosen-drop,
    #cboEMICity_chosen .chosen-drop {
        background: #555;
        color: #fff;
    }

    #cboEMIState_chosen .chosen-single div b,
    #cboEMICity_chosen .chosen-single div b {
        background: transparent;
        width: 0;
        height: 0;
        margin: 0;
        transition: none;
        display: inline;
    }

    #cboEMIState_chosen .chosen-single div b::before,
    #cboEMICity_chosen .chosen-single div b::before {
        font-family: FontAwesome;
        display: inline-block;
        padding-right: 0px;
        vertical-align: middle;
        content: "\f107";
        font-weight: 550;
        color: #fff;
        font-size: 15px;
        position: absolute;
        right: 3px;
        top: 2px;
    }

    /* .chosen-with-drop .chosen-single div b{
              width: 0;
              height: 0;
              display: inline;
              transition: none;
            } */
    #cboEMIState_chosen .chosen-drop .chosen-results .no-results,
    #cboEMICity_chosen .chosen-drop .chosen-results .no-results {
        color: #222;
    }

    #cboEMIState_chosen .chosen-drop .chosen-results .highlighted,
    #cboEMICity_chosen .chosen-drop .chosen-results .highlighted {
        background: #00b0ff !important;
        color: #ffffff;
    }

    #cboEMIState_chosen .chosen-drop .chosen-search,
    #cboEMICity_chosen .chosen-drop .chosen-search {
        color: #222;
    }

    #cboEMIState_chosen .chosen-drop,
    #cboEMICity_chosen .chosen-drop {
        font-family: "ToyotaType-Bold";
    }

    #cboEMIState_chosen .chosen-results li,
    #cboEMICity_chosen .chosen-results li {
        color: #fff;
    }

    #cboEMIState_chosen .chosen-container .chosen-results li.no-results {
        color: #777;
    }

    .chosen-results li {
        text-transform: capitalize !important;
    }

    #cboSalutation_chosen .chosen-single span {
        text-transform: capitalize;
    }

    #cboDealer_chosen .chosen-search {
        display: none !important;
    }

    #cboEMIState_chosen .chosen-single:focus,
    #cboEMICity_chosen .chosen-single:focus {
        outline: none !important;
        border: none;
        border-bottom: 1px solid #fff !important;
    }
}

.chosen-single {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.fancybox__backdrop {
    background: transparent !important;
}

.fancybox__container {
    z-index: 9999;
}

.performance-section .mini-title::before,
.emi-section-wrap .content-wrap .mini-title::before {
    background: #000 !important;
}

.color-black {
    color: #000 !important;
}

.font-size-12px {
    font-size: 12px;
}

.font-size-8px {
    font-size: 8px;
}

.add-mrgtop {
    margin: 0;
}