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

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

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

:root {
    --white_clr: #fff;
    --black_clr: #000;
    --heading_clr: #141414;
    --text_clr: #141414;
    --text_clr_light: #888888;
    --primary_clr: #00368f;
    --secondary_clr: #de0039;
    --light_clr: #f9f9f9;
    --bdr_clr: #D9D9D9;
    --primary_font_family: "Roboto", Arial, sans-serif;
    --secondary_font_family: "SuzukiPRO", Arial, sans-serif;
}

/*color: var(--white_clr);*/
/*==================================:: WOW CSS Start ::==================================*/
.animated {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
        transform: translate3d(10%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
        transform: translate3d(10%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
        transform: translate3d(10%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
        transform: translate3d(10%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0) rotate(-120deg);
        transform: translate3d(-10%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0) rotate(-120deg);
        transform: translate3d(-10%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0) rotate(120deg);
        transform: translate3d(10%, 0, 0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0) rotate(120deg);
        transform: translate3d(10%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

/*==================================:: WOW CSS End ::==================================*/
.trans {
    -moz-transition: all 1.5s ease 0s;
    -webkit-transition: all 1.5s ease 0s;
    transition: all 1.5s ease 0s;
}

/*Slick Slider Css Start*/
.slick-slider {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    min-width: 100%;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    min-width: 100%;
    display: flex;
    display: -webkit-flex;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    min-height: 1px;
    flex-grow: 1;
    flex: inherit;
}

.slick-slide>div {
    height: 100%;
}

.slick-initialized .slick-slide {
    display: block;
    list-style: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    z-index: 2;
    padding: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 0;
    background: none;
    border: 1px solid var(--text_clr);
    color: var(--primary_clr);
    cursor: pointer;
    opacity: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.slick-arrow:before {
    display: block;
    content: "";
    width: 11px;
    height: 10px;
    background: url('../images/slider_arrow.svg') no-repeat center;
    background-size: 100% auto !important;
}

.slick-arrow.slick-prev:before {
    transform: scaleX(-1)
}

.slick-arrow.slick-prev {
    left: 10px;
}

.slick-arrow.slick-next {
    right: 10px;
}

.slick-arrow:hover {
    background: var(--text_clr);
    border-color: var(--text_clr);
    color: var(--white_clr);
}

.slick-arrow:hover:before {
    filter: brightness(0) invert(1);
}

.slick-arrow.slick-disabled {
    color: var(--primary_clr);
    cursor: inherit;
}

.slick-dots {
    display: flex;
    display: -webkit-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    bottom: -15px;
    text-align: center;
}

.slick-dots li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.slick-dots li button {
    display: block;
    width: 16px;
    height: 2px;
    font-size: 0;
    padding: 0;
    background: #b2c0ce;
    border: none;
    cursor: pointer;
    position: relative;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border-radius: 10px;
}

.slick-dots li.slick-active button {
    width: 40px;
}

.slick-arrow.slick-disabled,
.slider-controls .arrow-btn[disabled] {
    opacity: 0.3;
    pointer-events: none;
}

/* ===== RESET ================================================== */
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
blockquote,
big,
body,
button,
center,
canvas,
caption,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
dl,
div,
dt,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
section,
small,
source,
strike,
sub,
sup,
table,
tbody,
tfoot,
thead,
th,
tr,
tdvideo,
tt,
var {
    background: transparent;
    border: 0 none;
    margin: 0;
    padding: 0;
    line-height: normal;
    vertical-align: baseline;
    outline: none;
    font-size: 100%;
    font-family: inherit;
    font-weight: 400;
    font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
q:before {
    content: '';
    content: none;
}

blockquote:after,
q:after {
    content: '';
    content: none;
}

ins {
    text-decoration: none;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
    margin: 0;
}

ol,
ul,
li {
    list-style: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/* ===== GLOBAL ================================================== */
body {
    margin: 0;
    padding: 0;
    background: var(--white_clr);
    font-family: var(--primary_font_family);
    font-size: 16px;
    color: #111;
    line-height: 24px;
    font-weight: 400;
    overflow-x: hidden;
}

:focus,
button:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: var(--text_clr);
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

a:hover {
    text-decoration: none;
    color: var(--secondary_clr);
}

::-webkit-input-placeholder {
    color: var(--text_clr_light);
    opacity: 1;
}

:-moz-placeholder {
    color: var(--text_clr_light);
    opacity: 1;
}

/* Firefox 18- */
::-moz-placeholder {
    color: var(--text_clr_light);
    opacity: 1;
}

/* Firefox 19+ */
:-ms-input-placeholder {
    color: var(--text_clr_light);
    opacity: 1;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: var(--white_clr);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary_clr);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: var(--white_clr);
}

.clear {
    width: 100%;
    clear: both;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
}

b,
strong {
    font-weight: 700;
}

/* Ul Li & Ol Li CSS */
ul,
ol {
    margin: 0 0 20px;
    padding: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
    margin-top: 15px;
}

ul li,
ol li {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text_clr);
    font-weight: 400;
    letter-spacing: 0;
}

.entry-content ul {
    padding: 0;
    margin: 0 0 20px;
}

.entry-content ol {
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
    counter-reset: my-awesome-counter;
}

.entry-content ul li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 15px;
}

.entry-content ul li:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--text_clr);
    outline-offset: 3px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.entry-content ul li li {
    list-style: disc;
}

.entry-content ol li {
    counter-increment: my-awesome-counter;
    margin: 0 0 8px;
}

.entry-content ol li:before {
    content: counter(my-awesome-counter) ". ";
    font-weight: 400;
}

/* Heading CSS */
h1,
.h1,
h2,
.h2,
h3,
h4,
h5,
h6 {
    color: var(--heading_clr);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
    font-family: var(--secondary_font_family);
    margin: 0 0 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--heading_clr);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--primary_clr);
}

h1,
.h1 {
    font-size: 4.583vw;
    line-height: 1.1;
    margin: 0 0 30px;
}

h2,
.h2 {
    font-size: 56px;
    line-height: 1.0;
    margin: 0 0 20px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 24px;
}

/* Paragraph CSS */
p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text_clr);
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0 18px;
}

hr {
    border: none;
    margin: 30px 0;
    background: var(--bdr_clr);
    height: 1px;
    width: 100%;
    clear: both;
    opacity: 1;
}

body .wp-block-separator {
    border: 0;
}

blockquote {
    border-left: 5px solid #eee;
    font-size: 16px;
    margin: 0 0 20px;
    padding: 10px 20px;
}

/*table structure*/
table,
.entry-content table {
    border-right: 1px solid #eee;
    border-top: 1px solid #eee;
}

table th,
table td,
.entry-content th,
.entry-content table th,
.entry-content td,
.entry-content table td {
    background: var(--white_clr);
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    padding: 12px 20px;
    vertical-align: middle;
}

table th {
    color: #111;
    font-weight: 400;
    background: #d4d5d6;
}

.table-striped th,
.table-striped td {
    position: relative;
}

.table-striped tbody tr:nth-of-type(even) td {
    background: #d4d5d6;
}

/*Form Input Field*/
input,
textarea,
select {
    background: var(--white_clr);
    border: 1px solid var(--bdr_clr);
    width: 100%;
    padding: 2px 20px;
    margin: 0;
    font-size: 16px;
    color: var(--text_clr);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    font-family: var(--primary_font_family);
    height: 50px;
    outline: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

input[type="button"],
input[type="submit"] {
    cursor: pointer;
    width: auto;
    height: auto;
}

input[type="checkbox"],
input[type="radio"] {
    border: none;
    width: auto;
    height: auto;
}

textarea {
    display: block;
    height: 120px;
    padding: 15px 20px;
    min-height: 120px;
    resize: none;
}

input[type="button"],
input[type="submit"],
input[type="image"],
input[type="file"],
input[type="search"] {
    -webkit-appearance: none;
}

input#addressSubmit {
    -webkit-appearance: none !important;
}

input[type="radio"],
input[type="checkbox"] {
    -webkit-appearance: normal;
}

.checkbox,
.radiobox {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    line-height: 18px;
    color: #676767;
}

.checkbox input,
.radiobox input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.checkbox .checkmark {
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid var(--text_clr);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 3px;
}

.checkmark:before {
    display: block;
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
    text-align: center;
    font-size: 10px;
    color: var(--white_clr);
    line-height: 10px;
    padding-left: 1px;
    opacity: 0;
}

.checkbox input:checked~.checkmark {
    background: var(--text_clr);
    border-color: var(--text_clr);
}

.checkbox input:checked~.checkmark:before {
    opacity: 1;
}

.radiobox .checkmark {
    display: block;
    width: 16px;
    height: 16px;
    background: var(--white_clr);
    border: 1px solid #111;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1px;
}

.radiobox .checkmark:before {
    display: none;
}

.radiobox .checkmark:after {
    display: block;
    content: "";
    background: #111;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    opacity: 0;
}

.radiobox input:checked~.checkmark:after {
    opacity: 1;
}

.selectbox {
    position: relative;
    background: var(--white_clr);
    border: 1px solid var(--bdr_clr);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.selectbox .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.selectbox select {
    background: none;
    border: 0;
    font-family: var(--primary_font_family);
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text_clr_light);
    padding: 0 40px 0 20px;
    width: 100%;
    height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    text-overflow: ellipsis;
    outline: none;
}

.selectbox select option {
    font-family: var(--primary_font_family);
    font-size: 16px;
    font-weight: 500;
    color: var(--text_clr_light);
    background: #ffffff;
}

.selectbox:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 20px;
    color: var(--text_clr_light);
    z-index: 0;
    width: 40px;
    height: 48px;
    line-height: 1.2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    pointer-events: none;
}

.selectbox.reversed:after {
    content: "\f0ec";
    transform: rotate(90deg);
    font-size: 14px;
}

/* Button styling */
.button,
.btn {
    padding: 9px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--text_clr);
    color: var(--text_clr);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0;
    text-align: center;
    font-family: var(--secondary_font_family);
    position: relative;
    min-width: 150px;
    line-height: 20px;
    gap: 10px;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    overflow: hidden;
}

.btn span {
    display: inline-flex;
    position: relative;
    z-index: 2;
}

.btn:before {
    display: block;
    content: "";
    background: var(--white_clr);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.btn:after {
    display: block;
    content: "";
    background: var(--text_clr);
    position: absolute;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    margin: auto;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    transform: scale(0);
    transform-origin: center bottom;
}

.btn:hover:after {
    transform: scale(1);
    -moz-transition: all 0.6s ease 0s;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.btn.bdr-0 {
    color: var(--primary_clr);
    background: transparent;
    border-color: transparent;
}
/*
.button:hover,
.btn:hover,
.button:focus,
.btn:focus {
    border-color: var(--text_clr);
    color: var(--white_clr);
}*/

.primary {
    border-color: var(--text_clr);
    color: var(--white_clr);
}

.primary:hover,
.primary:focus {
    background: var(--primary_clr);
    border-color: var(--primary_clr);
    color: var(--white_clr);
}

.primary.btn:before {
    background: var(--text_clr);
}

.primary.btn:after {
    background: var(--primary_clr);
}

.secondary {
    border-color: var(--secondary_clr);
    color: var(--white_clr);
}

.secondary:hover,
.secondary:focus {
    background: var(--black_clr);
    border-color: var(--black_clr);
    color: var(--white_clr);
}

.secondary.btn:before {
    background: var(--secondary_clr);
}

.secondary.btn:after {
    background: var(--text_clr);
}

.white-btn {
    border-color: var(--white_clr);
    color: var(--primary_clr);
}

.white-bdr {
    background: none;
    border-color: var(--white_clr);
    color: var(--white_clr);
}

.white-hover:hover {
    border-color: var(--white_clr);
    color: var(--text_clr);
}

.white-bdr.btn:before {
    background: none;
}

.white-bdr.btn:after {
    background: var(--white_clr);
}

.btn.small {
    padding: 8px 20px;
    font-size: 16px;
}

.main-wrapper {
    overflow: hidden;
    transform: translateY(0) !important;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 92.71vw;
    padding: 0 20px;
}

.container.relative {
    z-index: 2;
}

.max-container {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
}

section {
    position: relative;
}

section *:last-child {
    margin-bottom: 0;
}

.row {
    displayʚ: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row>div {
    padding-left: 15px;
    padding-right: 15px;
}

.row-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-10>div {
    padding-left: 5px;
    padding-right: 5px;
}

.row-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-20>div {
    padding-left: 10px;
    padding-right: 10px;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.hide {
    display: none;
}

.d-flex {
    displayʚ: flex;
    display: -webkit-flex;
}

.v-center {
    align-items: center;
}

.v-bottom {
    align-items: flex-end;
}

.j-center {
    flex-direction: column;
    justify-content: center;
}

.mt-auto {
    margin-top: auto !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.ptb-100 {
    padding: 100px 0;
}

.ptb-90 {
    padding: 90px 0;
}

.ptb-80 {
    padding: 80px 0;
}

.ptb-70 {
    padding: 70px 0;
}

.ptb-60 {
    padding: 60px 0;
}

.ptb-40 {
    padding: 40px 0;
}

.ptb-30 {
    padding: 30px 0;
}

.ptb-20 {
    padding: 20px 0;
}

.ptb-10 {
    padding: 10px 0;
}

.bg1 {
    background: var(--primary_clr);
}

.bg2 {
    background: var(--secondary_clr);
}

.bg3 {
    background: #111111;
}

.bg4 {
    background: #FAFAFA;
}

.bg-white {
    background: var(--white_clr);
}

.relative {
    position: relative;
}

.text-white {
    color: var(--white_clr);
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

section.bg-white {
    z-index: 1;
}

/*============= GLOBAL CSS END ================*/
/*Header & Banner Section*/
.header {
    background: var(--white_clr);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
}

/*Sticy header*/
.navbar_fixed.header {
    background: var(--white_clr);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.header-inner {
    padding: 0;
    height: 100px;
    align-items: center;
    position: relative;
    z-index: 4;
}

.header-blank {
    width: 100%;
    height: 100px;
}

.site-logo {
    width: 298px;
    position: relative;
    z-index: 4;
    margin: 0;
}

.site-logo a {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
}

.site-logo img {
    display: block;
    margin: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.head-btnbox {
    margin-left: 20px;
}

.head-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
}

.head-icon-link img {
    display: block;
    margin: auto;
}

.selected-language {
    padding: 0 10px;
    display: inline-flex;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text_clr);
}

.mobile-head-btns {
    flex-wrap: wrap;
    gap: 10px;
}

.mobile-head-btns .head-icon-link {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

/*Nav Css*/
.header-right {
    padding: 15px 0;
}

.nav-main {
    padding: 0 2px;
    text-align: left;
    position: relative;
    z-index: 4;
}

.nav-main ul {
    margin: 0;
    padding: 0;
    display: flex;
    display: -webkit-flex;
}

.nav-main nav ul>li {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    color: var(--text_clr);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.nav-main nav ul>li a {
    display: block;
    color: var(--text_clr);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--secondary_font_family);
    text-transform: none;
    letter-spacing: 0;
    padding: 4px 15px;
    position: relative;
    z-index: 2;
}

.nav-main nav ul>li.current_page_item>a,
.nav-main nav ul>li:hover>a,
.nav-main nav ul>li a:hover,
.nav-main nav ul>li a:focus {
    color: var(--secondary_clr);
}

.nav-main .sub-menu {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    background: var(--white_clr);
    min-width: 240px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: scaleY(0);
    transform-origin: top;
    box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.nav-main nav ul>li:hover>.sub-menu {
    display: block;
    opacity: 1;
    transform: scaleY(1);
}

.nav-main nav ul>li:last-child .sub-menu {
    left: auto;
    right: 0;
}

.nav-main .sub-menu li {
    display: block;
    text-align: left;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-main .sub-menu li+li {
    border-top: 1px solid #dce0e0;
}

.nav-main .sub-menu li:before {
    display: none;
}

.nav-main .sub-menu li a {
    display: block;
    text-transform: none;
    font-size: 16px;
    color: var(--text_clr) !important;
    line-height: normal;
    font-weight: 400;
    padding: 12px 20px;
}

.nav-main .sub-menu li a:hover,
.nav-main .sub-menu li a:focus,
.nav-main .sub-menu li.current_page_item a,
.nav-main .sub-menu li a[aria-current="page"] {
    color: var(--secondary_clr) !important;
    background: none !important;
}

.nav-main .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.nav-main .sub-menu li:hover .sub-menu {
    display: block;
}

/*Mobile Menu Css Start*/
.mobi-iconbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    font-size: 14px;
    line-height: 1.2;
    color: var(--text_clr);
    font-weight: 400;
    gap: 10px;
    cursor: pointer;
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    margin: 0 30px 0 0;
    z-index: 40;
    transition: all 0.4s ease;
}

.mobi-iconbox:after {
    display: inline-block;
    content: "Menu";
}

.menuicon {
    display: block;
    width: 26px;
    height: 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto auto auto 0;
}

.icon-bar {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    min-width: 100%;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.icon-bar:before,
.icon-bar:after {
    display: block;
    content: "";
    width: 80%;
    height: 2px;
    background: var(--text_clr);
    position: absolute;
    left: 0;
    top: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.icon-bar:after {
    top: auto;
    bottom: 0;
    width: 50%
}

.icon-bar .line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text_clr);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.icon-bar.active .line {
    width: 1px;
    opacity: 0;
}

.icon-bar.active:before {
    background: var(--secondary_clr);
    transform: rotate(45deg);
    top: 8px;
    width: 100%;
}

.icon-bar.active:after {
    background: var(--secondary_clr);
    transform: rotate(-45deg);
    bottom: 8px;
    width: 100%
}

/*Mobile Menu Css End*/
/*=========== Mega Menu STYLE Start ========*/
body.m-menu-open {
    overflow: hidden;
    height: 100vh !important;
}

.menu-open-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 100%;
    background: var(--black_clr);
    opacity: 0.2;
}

.m-menu-open .menu-open-overlay {
    display: block;
}

.m-menu-block {
    padding: 30px;
    border-top: 1px solid var(--bdr_clr);
    background: var(--white_clr);
    color: var(--black_clr);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: -4;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.m-menu-open .m-menu-block {
    z-index: 20;
    opacity: 1;
    visibility: visible;
}

.m-menu-open .fadeInUp~.menu-open-overlay,
.m-menu-open .fadeInUp .m-menu-block {
    display: none;
}

.hitarea {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 42px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
}

.hitarea:before {
    display: block;
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: 400;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    z-index: 3;
    margin: 0 auto;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.collapsable-hitarea.hitarea:before {
    transform: rotate(-180deg);
}

.mobile-nav .collapsable-hitarea+a {
    color: var(--primary_clr);
}

/*Header Sidebar Links*/
.m-scroll {
    overflow: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 160px);
}

.head-sidebar {
    flex-direction: column;
    min-width: 17.188vw;
    max-width: 17.188vw;
    border-right: 1px solid var(--bdr_clr);
}

.head-sidebar-menu {
    margin: 0;
    padding: 0;
}

.head-sidebar-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.head-sidebar-menu li a {
    padding: 5px 0;
    display: inline-flex;
    font-size: 32px;
    line-height: 42px;
    color: var(--text_clr);
    font-weight: 800;
    font-family: var(--secondary_font_family);
}

.head-sidebar-menu li.active a,
.head-sidebar-menu li:hover a {
    color: var(--secondary_clr);
}

.head-menu-right {
    width: 100%;
}

.mega-menu-modals {
    padding: 0 0 0 30px;
    overflow: hidden;
}

.mega-prod-tabs {
    margin: 0 0 10px;
}

.mega-prod-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.mega-prod-tabs .tab-item {
    padding: 6px 20px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bdr_clr);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--secondary_font_family);
    color: var(--text_clr_light);
    background-color: var(--white_clr);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
    height: 30px;
    min-width: 120px;
    border-radius: 60px;
}

.mega-prod-tabs .tab-item:hover {
    border-color: var(--text_clr_light);
    color: var(--text_clr);
}

.mega-prod-tabs .tab-item.active {
    background-color: var(--text_clr_light);
    border-color: var(--text_clr_light);
    color: var(--white_clr);
}

.mega-prod-tab-content {
    flex-wrap: wrap;
    margin: 0 -14px;
}

.menu-product-items {
    width: 16.66%;
    padding: 14px;
}

.menu-product-card {
    position: relative;
}

.menu-product-imgbox {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /*height: 164px;*/
    aspect-ratio: 1.8 / 1;
}

.menu-product-imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.menu-product-card:hover .hover_img {
    opacity: 1;
}

.menu-product-card:hover .hover_img+.default_img {
    opacity: 0;
}

.menu-product-card .textbox {
    padding: 12px 0;
    border-top: 1px solid var(--bdr_clr);
}

.menu-product-card:hover .textbox {
    border-color: transparent;
}

.menu-product-card h5 {
    font-size: 28px;
    line-height: 32px;
    margin: 0 0 3px;
}

.menu-product-card .prod-price {
    font-size: 12px;
}

.menu-product-card .prod-price .price {
    font-size: 16px;
}

.menu-list-right {
    padding: 5px 3vw;
}

.m-tl {
    display: inline-block;
    font-size: 24px;
    color: var(--text_clr_light);
    font-weight: 700;
    font-family: var(--secondary_font_family);
    margin: 0 0 20px;
}

.menu-right-list ul {
    margin: 0;
    padding: 0;
}

.menu-right-list ul li {
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
    font-size: 24px;
    color: var(--text_clr);
    font-weight: 700;
    font-family: var(--secondary_font_family);
}

.menu-right-list ul li a {
    color: var(--text_clr);
}

.menu-right-list ul li a:hover {
    color: var(--secondary_clr);
}

.menu-right-list .btn {
    color: var(--primary_clr);
    border-color: var(--primary_clr);
    background: none;
    min-width: 320px;
}

.menu-right-list .btn:before {
    display: none;
}

.menu-right-list .btn:after {
    background: var(--primary_clr);
}

.menu-right-list .btn:hover,
.menu-right-list .btn:focus {
    color: var(--white_clr);
    border-color: var(--primary_clr);
}

.card-mm {
    flex-direction: column;
}

.card-mm .imgbox {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 0 14px;
}

.card-mm .imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 1/1.4;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.card-mm h5 {
    margin: 0;
}

.card-mm:hover .imgbox img {
    transform: scale(1.05);
}

.card-mm:hover h5 {
    color: var(--secondary_clr);
}

/*========== Mega Menu STYLE End==============*/

/*chat_icon_block*/
.chat_icon_block {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.chat_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #DE0039;
    border-radius: 50%;
}

.chat_btn svg {
    display: block;
    width: 100%;
    max-width: 28px;
}

.sticky_menu_block {
    padding: 5px 18px;
    position: absolute;
    right: -15px;
    bottom: 100%;
    background: var(--white_clr);
    border-radius: 20px;
    min-width: 200px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

.sticky_menu_block:after {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    top: 100%;
    right: 34px;
    border: solid transparent;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: var(--white_clr);
    border-width: 6px;
}

.sticky-links {
    margin: 0;
    padding: 0;
}

.sticky-links li {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.sticky-links li+li:before {
    display: block;
    content: "";
    background: var(--bdr_clr);
    height: 1px;
    position: absolute;
    left: 34px;
    right: 0;
    top: 0;
}

.sticky-links li a {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: var(--text_clr);
    font-weight: 500;
    gap: 10px;
}

.sticky-links li a:hover {
    color: var(--secondary_clr);
}

.sticky-links .iconbox {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    max-width: 24px;
    height: 24px;
}

.chat_icon_block:hover .sticky_menu_block {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*Home page Banner Css*/
.home-banner {
    position: sticky;
    top: -20vh;
    z-index: 1;
    overflow: hidden;
    background: var(--text_clr);
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.home-banner .items {
    padding: 0;
    height: 100vh;
    min-height: 100%;
    max-height: 950px;
    position: relative;
}

.hero-slider {
    overflow: hidden;
}

.hero-slider>.items {
    display: none;
}

.hero-slider>.items:first-child {
    display: block;
}

.hero-bgimg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bgimg img,
.hero-bgimg video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-inner {
    padding: 140px 0 5%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.hero-caption {
    min-width: 640px;
    max-width: 640px;
    position: absolute;
    left: 4.48vw;
    bottom: 16vh;
    z-index: 12;
}

.hero-caption .h1 {
    font-size: 4.5833vw;
    line-height: 1;
    color: var(--white_clr);
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 30px;
    position: relative;
}

.hero-caption p {
    font-size: 1.2500vw;
    line-height: 1.4;
    color: var(--white_clr);
    letter-spacing: 0;
    font-weight: 400;
    position: relative;
}

.hero-caption .btnbox {
    gap: 10px;
    flex-wrap: wrap;
}

.hero-caption .btnbox .btn.bdr-0 {
    color: var(--white_clr);
}

.hero-caption .btnbox .btn.bdr-0:hover {
    color: var(--text_clr);
}

.hero-slider>.items {
    display: none;
}

.hero-slider>.items:nth-child(1) {
    display: block;
}

.hero-slider .slick-dots {
    bottom: 40px;
    gap: 10px;
}

.hero-slider .slick-dots li button {
    width: 2px;
    height: 24px;
    background: rgba(217, 217, 217, 0.5);
    border-radius: 0;
}

.hero-slider .slick-dots li.slick-active button {
    background: var(--white_clr);
}

/*Footer Start*/
.footer {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    background: var(--white_clr);
    overflow: hidden;
}

.footer hr {
    background: #EFEFEF;
    margin: 0;
}

.footer-inner {
    margin: 0 -10px;
}

.f-col-items {
    padding: 0 10px;
    width: 15%;
}

.f-col-items.f_col_1 {
    width: 30%;
    padding-right: 40px;
}

.f-col-items.f_col_2 {
    width: 19%;
}

.f-col-items.f_col_3 {
    width: 18%;
}

.f-col-items.f_col_4 {
    width: 19%;
}

.f-col-items.f_col_5 {
    width: 14%;
}

.f-logo {
    max-width: 298px;
    margin: 0;
}

.f_col_1 .social-media {
    margin-top: 50px;
}

.social-media {
    gap: 10px;
}

.social-media .s-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border: 1px solid var(--bdr_clr);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.social-media .s-icon i {
    display: block;
    width: 100%;
    height: 100%;
    background-size: auto !important;
    opacity: 0.5;
}

.social-media .s-icon:hover {
    border-color: var(--text_clr);
}

.social-media .s-icon:hover i {
    opacity: 1;
}

.icon_facebook {
    background: url('../images/icon_facebook.svg') no-repeat center;
}

.icon_instagram {
    background: url('../images/icon_instagram.svg') no-repeat center;
}

.icon_twitter {
    background: url('../images/icon_twitter.svg') no-repeat center;
}

.icon_youtube {
    background: url('../images/icon_youtube.svg') no-repeat center;
}

.footer p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text_clr_light);
    font-weight: 700;
    font-family: var(--secondary_font_family);
}

.footer p a {
    color: var(--text_clr_light);
}

.footer p a:hover {
    color: var(--white_clr);
}

.f-links h5 {
    font-size: 16px;
    line-height: 20px;
    color: var(--text_clr_light);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--secondary_font_family);
    letter-spacing: 0;
    margin: 0 0 20px;
}

.f-links ul {
    margin: 0;
    padding: 0;
}

.f-links ul li {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 20px;
    color: var(--text_clr);
    font-weight: 700;
    font-family: var(--secondary_font_family);
}

.f-links ul li a,
.footer .f_col_6 p a {
    display: inline-block;
    color: var(--text_clr);
}

.f-links ul li a:hover,
.f-cont .link:hover,
.footer .f_col_6 p a:hover {
    color: var(--secondary_clr);
}

.f-links+.f-links,
.f-links .widget_nav_menu+.widget_nav_menu {
    margin-top: 30px;
}

.footer .f_col_6 p {
    font-size: 16px;
    line-height: 20px;
    color: var(--text_clr);
    font-weight: 700;
    font-family: var(--secondary_font_family);
}

.fb-links ul {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px 25px;
}

.fb-links ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text_clr_light);
    font-weight: 700;
    font-family: var(--secondary_font_family);
}

.fb-links ul li a {
    color: var(--text_clr_light);
}

.fb-links ul li a:hover {
    color: var(--secondary_clr);
}

.copyright-text p {
    margin: 0;
}

.suzuki-icon-logo {
    padding: 0 0 10px;
    margin: -90px 0 0;
}

.suzuki-icon-logo img {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
}

.scrollup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    margin: 0 auto;
    z-index: 4;
    border: 1px solid var(--text_clr);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.scrollup.active {
    opacity: 1;
    bottom: 30px;
}

.arrow-up {
    display: inline-block;
    width: 11px;
    height: 10px;
    background: url('../images/arrow_up.svg') no-repeat center;
}

body .wpcf7-not-valid-tip {
    font-size: 14px;
    position: absolute;
}

.footer .wpcf7 form .wpcf7-response-output {
    font-size: 12px;
}

/*sticky-button-block*/
.sticky-button-block {
    padding: 5px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 15px;
    z-index: 99;
    background: #f5f5f5;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    border-radius: 80px;
}

.button-block-inn {
    gap: 5px;
    justify-content: space-between;
}

.sticky-button-block .btn.primary {
    padding: 4px 15px;
    font-size: 14px;
    min-width: 150px;
    background: var(--primary_clr);
    border-color: var(--primary_clr);
    color: var(--white_clr);
}

.sticky-button-block .btn.primary:hover {
    background: var(--secondary_clr);
    border-color: var(--secondary_clr);
    color: var(--white_clr);
}

.sticky-button-block .more-link {
    padding: 4px 15px;
    font-size: 14px;
    color: var(--secondary_clr);
}

.sticky-button-block .more-link:hover {
    color: var(--primary_clr);
}

/*Footer End*/

/*Midlle Section css*/
.middle-section {
    position: relative;
}

img.alignleft {
    float: left;
    margin: 0 20px 20px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

img.alignright {
    float: right;
    margin: 0 0 20px 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

img.alignnone {
    margin: 0 0 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

iframe.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

iframe.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

iframe.iframe-embed.alignright {
    max-width: 500px;
    height: 315px !important;
}

.bg-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover !important;
}

.bg-img:before {
    display: block;
    content: "";
    background: var(--text_clr);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.5;
}

.bg-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-img.before-none:before {
    display: none;
}

.bg-img.fixed {
    background-attachment: fixed !important;
}

.bg-img.bg-auto {
    background-size: auto !important;
}

.no-img.d-flex {
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: normal;
    color: #999;
    background: #ddd;
}

.bg-img video,
.bg-img iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.btnbox {
    padding: 20px 0 0;
    gap: 10px 20px;
}

.btnbox.d-flex.text-center {
    justify-content: center;
    flex-wrap: wrap;
}

.block-title {
    position: relative;
    margin: 0 0 20px;
}

.block-title.text-white * {
    color: var(--white_clr);
}

.block-title p {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--text_clr_light);
}

.more-link {
    font-size: 16px;
    color: var(--primary_clr);
    font-weight: 700;
    font-family: var(--secondary_font_family);
}

.more-link i {
    margin-left: 5px;
    font-size: 18px;
}

.more-link:hover {
    opacity: 1;
    color: var(--secondary_clr);
}

.card-link {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
}

.bottom-btnbox {
    gap: 20px;
    flex-wrap: wrap;
}

.video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-box video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    max-height: 700px;
}

.pause-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    width: 70px;
    height: 70px;
    background: rgba(217, 217, 217, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    color: var(--white_clr);
    font-weight: 700;
    font-family: var(--secondary_font_family);
    position: absolute;
    /*left: 0; right: 0; top: 0; bottom: 0; z-index: 2; margin: auto !important;*/
    z-index: 10;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, color 0.3s ease;
}

.pause-btn:hover {
    background: rgba(217, 217, 217, 0.5);
}

.video-box:hover .pause-btn,
.hero-video:hover .pause-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

    .video-box .pause-btn,
    .hero-video .pause-btn,
    .card-link .hover-btn {
        display: none;
    }

    .hero-video {
        cursor: auto;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn span {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 16px solid #fff;
    }

}

.right-text-block {
    max-width: 440px;
}

.prod-tabs-container {
    margin: 0 0 40px;
}

.prod-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.prod-tabs .tab-item {
    padding: 6px 20px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bdr_clr);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--secondary_font_family);
    color: var(--text_clr_light);
    background-color: var(--white_clr);
    cursor: pointer;
    user-select: none;
    height: 30px;
    min-width: 120px;
    border-radius: 60px;
    -moz-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.prod-tabs .tab-item:hover {
    border-color: var(--text_clr_light);
    color: var(--text_clr);
}

.prod-tabs .tab-item.active {
    background-color: var(--text_clr_light);
    border-color: var(--text_clr_light);
    color: var(--white_clr);
}

.prod-tab-content {
    position: relative;
}

.product-slide {
    outline: none;
    -moz-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.product-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.product-info {
    flex: 0 0 25%;
    max-width: 25%;
}

.product-visual {
    flex: 0 0 65%;
    max-width: 65%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-brand-logo {
    max-width: 220px;
    margin-bottom: 30px;
}

.car-brand-logo img {
    display: block;
}

.car-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.car-specs li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text_clr);
    font-weight: 400;
}

.car-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.controls-inn {
    gap: 20px;
}

.slider-controls .arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 0;
    background: none;
    border: 1px solid var(--text_clr);
    color: var(--primary_clr);
    cursor: pointer;
    opacity: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.slider-controls .arrow-btn:before {
    display: block;
    content: "";
    width: 11px;
    height: 10px;
    background: url('../images/slider_arrow.svg') no-repeat center;
    background-size: 100% auto !important;
}

.slider-controls .arrow-btn.prev-arrow:before {
    transform: scaleX(-1)
}

.slider-controls .arrow-btn:hover {
    background: var(--text_clr);
    border-color: var(--text_clr);
    color: var(--white_clr);
}

.slider-controls .arrow-btn:hover:before {
    filter: brightness(0) invert(1);
}

.slider-controls .arrow-btn.slick-disabled {
    color: var(--primary_clr);
    cursor: inherit;
}

.car-img img {
    display: block;
    width: 100%;
    height: auto;
}

.product-slider.slick-initialized {
    display: block;
}

/*Offer Section*/
.offer-left-block {
    max-width: 460px;
    padding-right: 40px;
}

.offer-ul-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 378px;
}

.offer-ul-list ul li {
    padding: 14px 0;
    margin: 0;
    list-style: none;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--text_clr);
    border-bottom: 1px solid var(--bdr_clr);
}

.offer-ul-list ul li:last-child {
    border-bottom: 0;
}

.offer-left-block p small {
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    color: var(--text_clr_light);
}

.offer-right-block {
    width: 100%;
    max-width: 70%;
}

.offer-right-block .sub-items {
    padding: 0 1.5px;
    width: 30.5281%;
    margin-top: 125px;
}

.offer-right-block .sub-items:first-child {
    width: 37.1287%;
    margin-top: 0;
}

.offer-right-block .sub-items:nth-child(2) {
    margin-top: 190px;
}

.offer-right-block .sub-items img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/*Cards Section*/
.cards-inn {
    margin: 0 -1.5px;
}

.cards-inn .items {
    padding: 1.5px;
    width: 15%;
    -moz-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.cards-inn .items.active {
    width: 55%;
}

.cards-inn .items:last-child {
    margin-left: auto;
}

.card-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 600px;
    max-height: 70vh;
    -moz-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.card-box h4 {
    font-size: 40px;
    line-height: 1.0;
    color: var(--white_clr);
    margin-bottom: 10px;
}

.card-box p {
    font-size: 20px;
    line-height: 30px;
    color: var(--white_clr);
}

.card-textbox {
    padding: 50px;
    min-width: 440px;
    max-width: 440px;
    opacity: 0;
    position: absolute;
    left: 20%;
    top: 0;
    z-index: 1;
    -moz-transition: all 0.9s ease 0s;
    -webkit-transition: all 0.9s ease 0s;
    transition: all 0.9s ease 0s;
}

.cards-inn .items.active .card-textbox {
    left: 0;
    opacity: 1;
}

.card-imgbox {
    height: 100%;
}

.card-imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: 62% center;
    /*aspect-ratio: 2 / 0.9;*/
    -moz-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.cards-inn .items.active .card-imgbox img {
    object-position: 50% center;
}

.hover-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    width: 70px;
    height: 70px;
    background: rgba(217, 217, 217, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    color: var(--white_clr);
    font-weight: 700;
    font-family: var(--secondary_font_family);
    position: absolute;
    /*left: 0; right: 0; top: 0; bottom: 0; z-index: 2; margin: auto !important;*/
    z-index: 10;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, color 0.3s ease;
}

.hover-btn:hover {
    background: rgba(217, 217, 217, 0.5);
}

.card-link:hover .hover-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/*location-inn*/
.location-inn {
    margin: 0 -5px;
}

.location-inn .items {
    padding: 5px;
    width: 15%;
}

.location-inn .items.locate-item {
    width: 55%;
}

.dark-bg {
    background: #05060A;
    border-radius: 20px;
}

.locate-img-card {
    position: relative;
    overflow: hidden;
}

.locate-img-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.locate-block {
    padding: 40px 60px;
}

.contact-infobox {
    gap: 20px;
    margin-bottom: 30px;
}

.contact-infobox .info_icon {
    align-items: center;
    justify-content: center;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
}

.contact-infobox .info_icon img {
    display: block;
    width: 100%;
    height: auto;
}

.addres-info-box p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--white_clr);
}

.addres-info-box p a {
    color: var(--white_clr);
}

.addres-info-box p a:hover {
    color: var(--secondary_clr);
}

.addres-info-box .btnbox {
    padding: 40px 0 0;
    opacity: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: translate(0, 20px);
    -moz-transform: translate(0, 20px);
    transform: translate(0, 20px);
}

.addres-info-box .btnbox.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
}

.addres-info-box .more-link {
    color: var(--white_clr);
}

.filterbox {
    max-width: 820px;
}

.filterbox .form-inner {
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 0 -5px;
}

.filterbox .form-inner .input-field {
    padding: 0 5px;
    min-width: 50%;
    max-width: 50%;
}

.filterbox .selectbox {
    background: #363636;
    border-color: #363636;
    color: var(--white_clr);
    border-radius: 5px;
}

.filterbox .selectbox select {
    padding: 0 60px 0 20px;
    font-size: 20px;
    line-height: normal;
    color: var(--white_clr);
    font-weight: 500;
    height: 60px;
}

.filterbox .selectbox:after {
    height: 60px;
    width: 60px;
    color: var(--white_clr);
}

.filterbox .selectbox select option {
    font-size: 16px;
    background: #363636;
    color: var(--white_clr);
    padding: 10px;
}

.filterbox .selectbox select option:checked {
    background-color: var(--primary_clr);
    color: #fff;
}

.addres-info-box h4 {
    padding-bottom: 10px;
}

/*Why Choose Section*/
.whychoose-section {
    overflow: hidden;
}

.whychoose-list .items {
    padding: 0 1.5px;
    width: 53vw;
    margin: 0 auto;
}

.card-whychoose {
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.card-whychoose .imgbox {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 2 / 1.3;
    max-height: 60vh;
}

.card-whychoose .imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.card-whychoose:hover .imgbox img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.card-whychoose .textbox {
    padding: 20px 0 0;
    max-width: 480px;
}

.card-whychoose h4 {
    font-size: 40px;
    line-height: 42px;
}

.card-whychoose p {
    font-size: 20px;
    line-height: 30px;
    color: var(--text_clr_light);
}

.whychoose-slider .slick-list {
    overflow: visible;
}

/*Feed Section*/
.feed-section {
    overflow: hidden;
}

.post-feed-list {
    margin: 0 -1.5px;
}

.post-feed-items {
    padding: 1.5px;
    width: 364px;
}

.post-feed-items img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.post-feed-slider .slick-list {
    overflow: visible;
}

/*internal-banner*/
.internal-banner {
    overflow: hidden;
    position: sticky;
    top: -20vh;
}

.internal-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12vh;
    z-index: 2;
}

.internal-caption-inn {
    max-width: 46.875vw;
}

.internal-banner p {
    font-size: 1.25vw;
    color: var(--white_clr);
}

.abt-imgbox {
    position: relative;
    z-index: 1;
}

.abt-imgbox img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 180px;
    border-radius: 20px;
}

.text-container {
    max-width: 74vw;
    margin-left: auto;
    margin-right: auto;
}

.split-textarea p {
    font-size: 40px;
    line-height: 60px;
    letter-spacing: -3%;
    color: var(--text_clr_light);
    font-weight: 300;
}

.split-textarea p span {
    opacity: 0.5;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.split-textarea p span.active {
    opacity: 1;
}

/*Journey Section*/
.card-journey {
    position: relative;
    flex-direction: column;
}

.card-journey .imgbox {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.card-journey .imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.card-journey .textbox {
    padding: 50px 2.0vw 0;
}

.card-journey h4 {
    font-size: 40px;
    line-height: 1.2;
}

.card-journey p {
    font-size: 24px;
    line-height: 34px;
    color: var(--heading_clr);
}

.abt-imgbox+.values-block {
    padding-top: 70px;
    margin-top: -40px;
}

.values-block {
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #F6F6F6;
    border-radius: 20px;
}

.card-values {
    padding: 50px 34px;
    background: var(--white_clr);
    height: 100%;
    border-radius: 20px;
}

.card-values h4 {
    font-size: 40px;
    line-height: 42px;
    margin: 0 0 35px;
}

.card-values p {
    font-size: 20px;
    line-height: 30px;
}

/*two-column-block*/
.column-section {
    overflow: hidden;
}

.column-section .max-container,
.column-section .container {
    padding: 0;
}

.two-column-block+.two-column-block {
    padding-top: 0;
}

.column-left-block {
    width: 45%;
    padding: 0 4.4vw;
    position: relative;
}

.column-right-block {
    width: 55%;
    padding: 0;
    position: relative;
}

.column-right-block>img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;
}

.column-content-box {
    max-width: 30vw;
}

.two-column-block.reversed,
.two-column-block:nth-child(even) {
    flex-direction: row-reverse;
}

.two-column-block.reversed .column-right-block>img,
.two-column-block:nth-child(even) .column-right-block>img {
    border-radius: 0 20px 20px 0;
}

.overlay-imgbox {
    position: absolute;
    left: -13vw;
    right: 1.927vw;
    bottom: 20px;
    z-index: 2;
}

/*Why Coose Column Section*/
.whychoose-column-block .left-imgbox {
    width: 100%;
}

.whychoose-column-block .left-imgbox>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.whychoose-column-block .right-textbox {
    min-width: 28.75vw;
    max-width: 28.75vw;
    padding-left: 30px;
}

.whychoose-column-block .right-textbox p {
    font-size: 20px;
    line-height: 30px;
}

.top-bdr-block {
    position: relative;
    padding: 60px 0 0;
    border-top: 3px solid var(--bdr_clr);
    border-radius: 3px;
}

.top-bdr-block:before {
    display: block;
    content: "";
    width: 11.667vw;
    height: 3px;
    background: var(--primary_clr);
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: -3px;
}

.fits-list .card-values {
    display: flex;
    flex-direction: column;
    position: relative;
}

.fits-list .card-values .imgbox {
    padding: 60px 0 0;
    margin: auto -34px -50px 0 !important;
}

.fits-list .card-values .imgbox img {
    margin-left: auto;
}

.fade-img-full-section .block-title {
    z-index: 2;
}

.mt-180 {
    margin-top: -140px;
}

.fade-img-full-imgbox img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 240px;
}

/*dark-section*/
.dark-section {
    overflow: hidden;
}

.imgbox-left-cover {
    min-width: calc(50% - 120px);
    max-width: calc(50% - 120px);
}

.imgbox-left-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dark-content-block {
    flex-direction: column;
    padding: 60px 6.25vw;
}

.dark-content-block h4 {
    position: relative;
    color: var(--text_clr_light);
    margin: 0;
    position: relative;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.dark-content-block h4:before {
    display: block;
    content: "";
    width: 25px;
    height: 21px;
    background: url('../images/list_arrow.svg') no-repeat center;
    background-size: 100% auto;
    position: absolute;
    left: -60px;
    top: 10px;
}

.dark-content-block p {
    color: var(--white_clr);
}

.acc-arrow-list .textarea {
    padding: 15px 0 0;
}

.dark-content-block .active h4 {
    color: var(--white_clr);
}

.acc-arrow-list .sub-items {
    padding: 30px 0;
    padding-left: 60px;
    position: relative;
    cursor: pointer;
}

.acc-arrow-list .sub-items:before {
    display: block;
    content: "";
    height: 1px;
    border-bottom: 1px dashed var(--text_clr_light);
    position: absolute;
    left: 60px;
    right: 0;
    bottom: 0;
}

.acc-arrow-list .sub-items:last-child:before {
    display: none;
}

.acc-arrow-list {
    max-width: 30vw;
}

/*Product Card Section*/
.sticky-sc {
    position: sticky;
    top: 0;
}

.pin-spacer {
    border-radius: 20px;
}

.product-card-list {
    gap: 30px 0;
}

.card-product {
    flex-direction: column;
    height: 100%;
    position: relative;
    background: var(--white_clr);
    border: 1px solid #F6F6F6;
    border-radius: 20px;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.card-product:hover {
    border-color: var(--bdr_clr);
}

.card-product .imgbox {
    background: #F6F6F6;
    position: relative;
    overflow: hidden;
    width: 100%;
    /*height: 300px;*/
    aspect-ratio: 1.8 / 1;
    border-radius: 20px;
}

.card-product .imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.hover_img {
    opacity: 0;
}

.card-product:hover .hover_img {
    opacity: 1;
}

.card-product:hover .hover_img+.default_img {
    opacity: 0;
}

.card-product .textbox {
    padding: 30px;
}

.card-product h4 {
    font-size: 40px;
}

.small-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}

.small-list ul li {
    margin: 0;
    padding: 0 20px;
    list-style: none;
    width: 50%;
    position: relative;
}

.small-list ul li:before {
    display: block;
    content: "";
    width: 11px;
    height: 9px;
    background: url('../images/list_arrow.svg') no-repeat center;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 8px;
}

.card-product .bottom-textbox {
    padding: 25px 30px;
    border-top: 1px solid #F6F6F6;
}

.prod-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--text_clr_light);
    gap: 10px;
}

.prod-price .price {
    display: inline-block;
    font-size: 20px;
    line-height: 1.2;
    color: var(--text_clr);
    font-weight: 700;
    font-family: var(--secondary_font_family);
}

.video-box-block {
    overflow: hidden;
    border-radius: 20px;
    min-height: 60vh;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.icon-list-block {
    gap: 50px 0;
}

.small-icon-card {
    flex-direction: column;
    gap: 30px 0;
}

.small-icon-card .iconbox {
    min-width: 70px;
    max-width: 70px;
    height: 60px;
}

.small-icon-card p {
    font-size: 20px;
    line-height: 30px;
}

/*Contact Page*/
.contact-imgbox {
    margin-right: -25px;
}

.contact-imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.contact-box-space {
    padding: 0 40px;
}

.form-inner {
    flex-wrap: wrap;
    gap: 25px 0;
    margin: 0 -15px;
}

.input-field {
    padding: 0 15px;
    min-width: 50%;
    max-width: 50%;
}

.input-field.full-width {
    min-width: 100%;
    max-width: 100%;
}

.input-field .label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text_clr_light);
    margin-bottom: 5px;
}

.form-checkbox {
    margin-bottom: 15px;
}

.form-checkbox .checkbox {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text_clr_light);
    font-weight: 400;
}

.form-checkbox .wpcf7-list-item {
    padding: 0;
    margin: 0;
}

.form-checkbox .wpcf7-list-item label {
    display: flex;
    gap: 10px;
}

.form-checkbox .wpcf7-list-item .checkbox {
    padding: 0;
    width: 16px;
    min-width: 16px;
    height: 16px;
    border: 1px solid var(--text_clr);
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
}

.form-checkbox .wpcf7-list-item .checkbox:before {
    display: block;
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
    text-align: center;
    font-size: 10px;
    color: var(--white_clr);
    line-height: 10px;
    padding-left: 1px;
    opacity: 0;
}

.form-checkbox .wpcf7-list-item .checkbox:checked:before {
    opacity: 1;
}

.form-checkbox .wpcf7-list-item .checkbox:checked {
    background: var(--text_clr);
    border-color: var(--text_clr);
}

.msg-box {
    padding: 25px 30px 22px;
    background: #BDF5AC;
    border-radius: 20px;
    margin: 40px 0 0 !important;
}

.msg-box p {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.success_icon {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    background: url('../images/success_icon.svg') no-repeat center;
}

.contact-info-items {
    padding: 50px 0;
    border-bottom: 1px solid var(--bdr_clr);
}

.contact-info-items:last-child {
    border-bottom: 0;
}

.contact-info-items p {
    font-size: 20px;
    line-height: 30px;
}

.contact-info-items .left-block p {
    color: var(--text_clr_light);
}

.contact-info-items .right-block {
    padding-left: 6.771vw;
}

.c_info_btnbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 0 0;
}

.c_info_btnbox .btn {
    min-width: 180px;
}

/*Offer Page*/
.offer-items+.offer-items {
    margin-top: 80px;
}

.offer-items {
    position: relative;
    background: #F6F6F6;
    overflow: hidden;
    border-radius: 20px;
}

.offer-items .col-right-block {
    width: 65.26vw;
}

.offer-items .col-right-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.offer-items .col-left-block {
    padding: 2.600vw;
    flex-direction: column;
    width: 34.682vw;
}

.offer-items h2 {
    margin-bottom: 12px;
}

.offer-items .prod-price {
    font-size: 16px;
}

.offer-items .prod-price .price {
    font-size: 24px;
}

.offer-items ul {
    margin: 0;
    padding: 0;
}

.offer-items ul li {
    display: block;
    margin: 0 0 18px;
    padding: 0 0 0 20px;
    list-style: none;
    position: relative;
    font-size: 20px;
    line-height: 30px;
}

.offer-items ul li:before {
    display: block;
    content: "";
    width: 11px;
    height: 9px;
    background: url('../images/list_arrow2.svg') no-repeat center;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 11px;
}

.offer-items .btnbox {
    flex-wrap: wrap;
    gap: 20px;
}

.prod-tabs-selectbox.selectbox select {
    font-size: 14px;
    padding: 0 40px 0 15px;
    height: 38px;
}

.prod-tabs-selectbox.selectbox:after {
    height: 38px;
}


/*Inner Page css*/
/*Genuine Parts Page*/
.support-section .offer-ul-list ul li {
    padding: 20px 0;
}

.model-list {
    gap: 20px 0;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.model-list .model-items {
    width: 16.66%;
    padding: 0 15px;
}

.model-card {
    position: relative;
    text-align: center;
    cursor: pointer;
}

.model-imgbox {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1.8 / 1;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 2px solid transparent;
}

.model-imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.model-card .textbox {
    padding: 12px 0;
    border-top: 1px solid var(--bdr_clr);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.model-card:hover .hover_img,
.model-card.active .hover_img {
    opacity: 1;
}

.model-card:hover .default_img,
.model-card.active .default_img {
    opacity: 0;
}

.model-card.active .model-imgbox,
.model-card:hover .model-imgbox {
    border-color: #00368F;
}

.model-card:hover .textbox,
.model-card.active .textbox {
    border-top-color: transparent;
}

.selected-model p {
    font-family: var(--primary_font_family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text_clr_light);
    margin-bottom: 5px;
}

/*Model Form*/
.model-form-block+.model-form-block {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--bdr_clr);
}

.model-form-block .form-inner textarea {
    height: 80px;
    min-height: 80px;
}

.model-form-block p {
    color: var(--text_clr_light);
}

.model-form-block .msg-box p {
    color: var(--text_clr) !important;
}

/* FAQ Section */
.faq-heading {
    max-width: 400px;
}

.faq-card {
    border-top: 1px solid var(--bdr_clr);
    padding-top: 20px;
}

.acc_title {
    position: relative;
    margin: 0;
    padding: 0 28px 15px 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.acc_title:before {
    display: block;
    content: "";
    background: url('../images/top-arrow.svg') no-repeat center;
    position: absolute;
    right: 0;
    top: 10px;
    width: 15px;
    height: 15px;
    transform: rotate(-180deg);
    -webkit-transition:all 0.3s ease 0s;-o-transition:all 0.3s ease 0s;transition:all 0.3s ease 0s;
}

.acc_title.active:before {
    transform: rotate(-0deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
}

.content-box {
    padding: 0 0 30px;
}

.content-box p {
    color: var(--text_clr_light);
}

.content-box p:last-child {
    margin-bottom: 0;
}

/*Form Css*/
.upload-box {
    background: var(--white_clr);
    border: 1px solid var(--bdr_clr);
    width: 100%;
    padding: 2px 20px;
    margin: 0;
    font-size: 16px;
    color: var(--text_clr);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    font-family: var(--primary_font_family);
    height: 80px;
    outline: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border-width: 2px;
    border-style: dashed;
}

.upload-box input {
    width: 100%;
    height: 50px;
}

.upload-box .upload-label {
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--text_clr_light);
}

.model-form-btn {
    margin-top: 25px;
}

.model-form-btn button {
    background: var(--black_clr);
    color: var(--white_clr);
}

/*service-plans*/
.service-plans-list {
    max-width: 1340px;
    margin: 0 auto;
}

.plan-card-box {
    flex-direction: column;
}

.plan-card-box .title {
    font-weight: 600;
    font-size: 20px;
    color: var(--text_clr_light);
}

.plan-card {
    background: #FBFBFB;
    border-radius: 18px;
    padding: 32px 40px 42px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card.active {
    background: #F4F8FF;
}

.plan-card .price {
    font-size: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 18px;
}

.plan-card p {
    color: var(--text_clr_light);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
}

.option-box p {
    font-weight: 400;
    font-size: 20px !important;
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--heading_clr);
    margin: 0;
}

.option-list {
    margin-bottom: 30px;
    gap: 10px 0;
}

.option-list .option-items {
    padding: 0 10px;
}

.option-box {
    background: var(--white_clr);
    border-radius: 12px;
    padding: 20px 30px 30px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 22px 0;
    font-size: 18px;
    line-height: 30px;
    color: var(--heading_clr);
}

.feature-list li+li {
    border-top: 1px solid var(--bdr_clr);
}

.note {
    font-style: Italic;
    font-size: 14px;
    line-height: 24px;
    color: var(--text_clr_light);
}

/*Value Added Services page*/
.mw_197{
    min-width: 197px;
}
.mw_250{
    min-width: 250px;
}
.radio-group {
    gap: 30px;
    align-items: center;
}
.radio-group .checkbox,
.radio-group .radiobox {
    padding-left: 34px;
    font-size: 16px;
    line-height: 100%;
}

.radio-group .label {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--text_clr_light);
    margin-bottom: 0;
}

.radiobox-block {
    flex-wrap: wrap;
    gap: 18px 0;
}

.radio-group .radiobox .checkmark {
    width: 24px;
    height: 24px;
    top: -4px;
    border: 3px solid var(--black_clr);
}

.radio-group .radiobox .checkmark:after {
    left: 3px;
    right: 3px;
    top: 3px;
    bottom: 3px;
}

.damage-select {
    position: relative;
    width: 100%;
}

.radiobox-form-inn {
    gap: 30px 0;
}

.select-box {
    min-height: 50px;
    border-radius: 6px;
    padding: 8px 45px 8px 12px;
    display: flex;
    align-items: center;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.selected-items .placeholder {
    color: #888;
    line-height: 34px;
}

.damage-select.active .arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-tag {
    font-family: var(--primary_clr);
    font-weight: 500;
    background: #F6F6F6;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text_clr_light);
}

.select-tag .remove {
    cursor: pointer;
    font-weight: bold;
    color: #000;
    font-size: 20px;
}

.damage-select .dropdown {
    position: absolute;
    top: calc(100% - 0px);
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    padding: 15px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.damage-select.active .select-box {
    border-radius: 6px 6px 0 0;
    border-bottom-color: transparent;
}

.damage-select.active .dropdown {
    display: block;
}

.damage-select .dropdown label {
    display: block;
    margin-bottom: 12px;
}

/*Service FAQs*/
.service-faq-internal .internal-caption-inn {
    max-width: 52.875vw;
}

.service-faqs {
    position: relative;
}

.service-faqs-block .faqs-list+.faqs-list {
    padding-top: 100px;
}

.service-faqs-block .faqs-list {
    scroll-margin-top: 180px;
}

.service-faqs .faqs-tabs-container {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white_clr);
    transition: all .3s ease;
    margin-bottom: 40px;
}

.faqs-tabs-container.fadeInDown {
    animation: fadeInDown .4s ease forwards;
    top: 100px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Offer detail Page */
.about-offer-page .block-title {
    align-items: flex-end;
}

.about-offer-page .block-title .text-container p {
    font-size: 24px;
    line-height: 34px;
    color: var(--heading_clr);
}

.right-block-btnbox p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: right;
}

.right-block-btnbox .bottom-btnbox {
    justify-content: flex-end;
}

.offer-detail-inn .left-block {
    padding-right: 34px;
}

.offer-detail-inn .right-block {
    padding-left: 34px;
}

.offer-detail-block {
    padding: 64px 68px;
    background: #F4F8FF;
    border-radius: 20px;
    flex-direction: column;
    height: 100%;
}

.offer-detail-block .offer-ul-list ul {
    max-width: 100%;
}

.offer-detail-block .offer-ul-list ul li {
    padding: 20px 0;
    font-size: 20px;
}

.offer-note p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--text_clr_light);
}

.offer-detail-form .msg-box p {
    color: var(--text_clr) !important;
    line-height: 1.5;
}

.perior-notice {
    max-width: 977px;
    margin: 0 auto;
    background: #F6F6F6;
    border-radius: 20px;
    padding: 20px;
    margin-top: 80px;
}

.perior-notice p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text_clr_light);
    font-family: var(--primary_font_family);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.exclamation_icon {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    margin-right: 20px;
    background: url('../images/exclamation_icon.svg') no-repeat center;
}

.offer-faqs .faqs-list .left-block {
    padding-right: 34px;
}

.offer-faqs .faqs-list .right-block {
    padding-left: 34px;
}

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 9998;
}

/* Popup open scroll lock */
html.popup-open,
body.popup-open {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}

/* Popup */
.testdrivepopup-header {
    justify-content: space-between;
    margin-bottom: 44px;
}

.testdrivepopup-header h2 {
    margin: 0;
}

.testdrivepopup-content {
    padding: 32px 65px 80px 65px;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    display: block;
}

.close_icon {
    display: inline-block;
    min-width: 20px;
    height: 20px;
    margin-left: 40px;
    background: url('../images/close_icon.svg') no-repeat center;
    cursor: pointer;
}

.testdrivepopup {
    position: fixed;
    top: 0;
    right: 0;
    width: 960px;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 99999;
    display: block;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform .45s ease;
    box-sizing: border-box;
}

/* Active */
.testdrivepopup.active {
    transform: translateX(0);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Left */
.popup-left {
    width: 45%;
    position: relative;
}

.popup-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.popup-text {
    position: absolute;
    left: 35px;
    bottom: 40px;
    color: #fff;
    z-index: 2;
}

/* Right */
.popup-right {
    width: 55%;
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 34px;
    cursor: pointer;
    border: none;
    background: none;
}

/* Book a test drive page */
.selcted-msg-box {
    margin: 45px 0 55px;
    gap: 50px 0;
    flex-wrap: wrap;
}

.selcted-msg-box .selected-msg {
    width: 33.33%;
}

.selcted-msg-box .selected-msg span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.selcted-msg-box .selected-msg strong {
    font-size: 16px;
    font-weight: 500;
}

.showroom-info p {
    display: block;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
}

.explore-models-section .model-card {
    text-align: left;
}

/* Location Page */
.filter-row {
    padding: 45px 0;
    border-top: 1px solid var(--bdr_clr);
    border-bottom: 1px solid var(--bdr_clr);
}

.filter-row-second {
    border-top: 0;
}

.custom-tabs .tab-btn {
    font-size: 18px;
    line-height: 100%;
    padding: 12px 20px;
    height: 45px;
    min-width: 110px;
}

.location-card {
    margin-top: 66px;
    display: none;
    background: #F6F6F6;
    border-radius: 20px;
    overflow: hidden;
}

.location-card.active-card {
    display: block;
}

.location-content {
    background: var(--light_clr);
    height: 100%;
    padding: 52px 44px 45px;
    min-width: 600px;
    margin-right: auto;
}

.location-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.location-content ul li {
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--text_clr);
    line-height: 1.5;
}

.location-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.map-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/*==========================================
   REGISTER YOUR SUZUKI PAGE STYLES
============================================*/
.registration-tabs-container {
    padding: 48px 0 52px;
    border-top: 1px solid var(--bdr_clr);
    border-bottom: 1px solid var(--bdr_clr);
    margin: 44px 0 52px;
}

.service-appointment-msg {
    color: #676767;
    font-size: 16px;
    font-weight: 500;
}

.service-appointment-msg a {
    display: block !important;
    min-width: 120px;
    text-align: right;
}

.accepted-formats {
    margin-top: 42px;
}

.accepted-formats p {
    color: var(--heading_clr);
    font-size: 14px;
}

.registration-tabs-bottom {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.registrationtabs-pane {
    display: none;
}

.registrationtabs-pane.active {
    display: block;
}

/* Which Details Need Updating - Radio Button Pills */
.update-details-radio-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.update-details-radio-group .wpcf7-form-control-wrap {
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.update-details-radio-group .wpcf7-radio {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.update-details-radio-group input[type="radio"] {
    display: none !important;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Outer Pill item */
.update-details-radio-group .tab-item,
.update-details-radio-group:not(:has(.tab-item)) .wpcf7-list-item {
    padding: 6px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--bdr_clr) !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    font-family: var(--secondary_font_family) !important;
    color: var(--text_clr_light) !important;
    background-color: var(--white_clr) !important;
    cursor: pointer !important;
    user-select: none !important;
    height: 30px !important;
    min-width: 120px !important;
    border-radius: 60px !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Prevent double borders if .tab-item wraps CF7 elements */
.update-details-radio-group .tab-item .wpcf7-form-control-wrap,
.update-details-radio-group .tab-item .wpcf7-radio,
.update-details-radio-group .tab-item .wpcf7-list-item {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow: none !important;
}

.update-details-radio-group .tab-item .wpcf7-list-item-label,
.update-details-radio-group .wpcf7-list-item .wpcf7-list-item-label {
    color: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: var(--secondary_font_family) !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: color 0.3s ease !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.update-details-radio-group .tab-item:hover,
.update-details-radio-group:not(:has(.tab-item)) .wpcf7-list-item:hover {
    border-color: var(--text_clr_light) !important;
    color: var(--text_clr) !important;
}

.update-details-radio-group .tab-item.active,
.update-details-radio-group:not(:has(.tab-item)) .wpcf7-list-item.active,
.update-details-radio-group .tab-item:has(input:checked),
.update-details-radio-group:not(:has(.tab-item)) .wpcf7-list-item:has(input:checked) {
    background-color: var(--text_clr_light) !important;
    border-color: var(--text_clr_light) !important;
    color: var(--white_clr) !important;
}

.update-details-radio-group .tab-item.active .wpcf7-list-item-label,
.update-details-radio-group .wpcf7-list-item.active .wpcf7-list-item-label,
.update-details-radio-group .tab-item:has(input:checked) .wpcf7-list-item-label,
.update-details-radio-group .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label {
    color: var(--white_clr) !important;
}

/* Models Page */
.models-section-page .offer-list .offer-items h3 {
    font-size: 20px;
    font-family: var(--secondary_font_family);
    font-weight: 400;
    color: var(--text_clr_light);
    margin-bottom: 20px;
}

.models-section-page .offer-list .offer-items ul {
    column-count: 2;
}

.car-video {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.car-video video {
    width: 100%;
    min-height: 650px;
    display: block;
    cursor: pointer;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    opacity: 0;
    -webkit-transition:all 0.3s ease 0s;-o-transition:all 0.3s ease 0s;transition:all 0.3s ease 0s;
}
.car-video:hover .play-btn{
    opacity: 1;
}

.play-btn:hover {
    background: rgba(0, 0, 0, .75);
}

.play-btn span {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #fff;
    margin-left: 5px;
}

/*Privacy and policy*/
.middle-section .textbox h3 {
    margin: 50px 0 30px;
}

.middle-section .textbox>h3:first-child {
    margin-top: 0 !important;
}

/* News Page */
.news-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 38px;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #F5F5F5;
    height: max-content;
}

.year-btn {
    padding: 9px 20px;
    border: none;
    cursor: pointer;
    font-size: 26px;
    line-height: 42px;
    font-weight: 700;
    font-family: var(--secondary_font_family);
    text-align: left;
}

.year-btn.active {
    background: #00368f;
    color: #fff;
}

.year-content {
    display: none;
}

.year-content.active {
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
}

.news-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.news-card h3 {
    margin: 20px 0 10px;
}

.news-card span {
    color: #777;
    font-size: 18px;
}

.hidden-news {
    display: none;
}

.load-more-wrap {
    text-align: center;
}

/* New Detail */
.back-btn {
    margin-bottom: 14px;
}

.back-btn a {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--secondary_font_family);
    color: var(--primary_clr);
}

.news-single-section .block-title h1 {
    margin-bottom: 10px;
}

.news-meta {
    display: flex;
    gap: 15px;
    color: var(--text_clr_light);
    margin-bottom: 35px;
    font-size: 18px;
}

.news-featured-image {
    margin-bottom: 50px;
}

.news-featured-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.related-news {
    margin-top: 90px;
}

.related-news h2 {
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.related-info {
    padding-top: 20px;
}

.related-img {
    display: block;
    width: 100%;
}

.related-img img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.related-info h3 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 12px;
    font-family: var(--secondary_font_family);
}

.related-info span {
    color: var(--text_clr_light);
    font-size: 18px;
}

/*Trade In From*/
.trade-form-block .model-form-block {
    border-top: 1px solid var(--bdr_clr);
    margin-top: 50px;
    padding-top: 50px;
}

.full-width-radio {
    width: 100%;
    gap: 28px 0;
}

.full-width-radio .radiobox {
    width: 100% !important;
}

.overall-Condition-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text_clr_light);
    margin-bottom: 25px;
}

.trade-form-block .form-btnbox {
    margin-top: 35px;
}

.finance-radio-group .label {
    width: 18%;
}

.finance-radio-group .radiobox-block {
    width: 82%;
}

.form-inner.radiobox-trade-in {
    gap: 40px 0;
}

.form-inner.radiobox-trade-in .radio-group .label {
    width: auto;
}

.form-inner.radiobox-trade-in .radio-group .radiobox-block {
    width: auto;
    gap: 30px;
}

.form-inner.radiobox-trade-in .radio-group .radiobox-block .radiobox {
    width: auto;
}

/*Across Model Page*/
.across-form-banner .hero-caption {
    min-width: 980px;
    max-width: 980px;
    bottom: 10vh;
}

.across-form-banner .car-brand-logo {
    filter: brightness(0) invert(1);
}

.banner-video-btn {
    position: relative;
    z-index: 10;
}

.book-fab {
    position: absolute;
    right: 40px;
    bottom: 130px;
    z-index: 9;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #D9D9D933;
    border: 1px solid #D9D9D933;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: .2s ease;
    animation: pulse 2.4s infinite;
}

.book-fab:hover {
    background: var(--white_clr);
    color: var(--primary_clr);
    transform: scale(1.06);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .35);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.across-form-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.price-tag {
    display: inline-block;
    background: #FAFAFA;
    color: var(--text_clr_light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--secondary_font_family);
    margin-bottom: 20px;
}

.price-tag b {
    color: var(--black_clr);
}

.about-across .block-title p {
    font-size: 14px;
}

.spec-row {
    justify-content: space-between;
    border-bottom: 1px solid var(--bdr_clr);
    margin: 0 -15px;
    padding: 60px 15px;
}

.spec-row .spec-col {
    padding: 0 15px;
}

.spec-col .label {
    font-size: 20px;
    color: var(--heading_clr);
    margin-bottom: 10px;
}

/*Car Section*/
.variant {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.variant button {
    border: none;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--secondary_font_family);
    transition: .3s;
    border: 1px solid var(--bdr_clr);
}

.variant button.active {
    background: var(--text_clr_light);
    color: var(--white_clr);
    border-color: var(--text_clr_light);
}

/* Tab */
.cartab-content {
    display: none;
}

.cartab-content.active {
    display: block;
}

/* Hide Radio Inputs */
.cartab-content input[type=radio] {
    display: none;
}

/* Color Buttons */
.car-colors {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.car-color {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.car-colors .car-color.active {
    border-color: #00368F;
}

/* Car Images */
.car-images {
    padding-top: 90px;
}

.car-images img {
    display: none;
    width: 100%;
}

.car-images img.active,
.car-images .car-image.active {
    display: block !important;
}

.car-bottom-btn {
    justify-content: center;
    gap: 20px;
}

/*lifestyle-Section*/
.comfort-section .block-title {
    padding-left: 60px;
}

.top-row {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 65px;
    align-items: center;
    margin-bottom: 54px;
}

.top-image {
    width: 100%;
    height: 100%;
}

.top-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 52px;
}

.lifestyle-card {
    display: flex;
    flex-direction: column;
}

.card-image,
.large .card-image {
    width: 100%;
    height: 100%;
}

.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.large .card-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.card-content {
    margin-top: 30px;
}

.card-content p,
.comfort-content p {
    font-size: 20px;
    color: var(--text_clr_light);
    line-height: 30px;
}

.comfort-row {
    align-items: flex-start;
}

.comfort-content h4 {
    color: var(--text_clr_light);
    margin: 0;
    position: relative;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.comfort-content h4:before {
    display: block;
    content: "";
    width: 25px;
    height: 21px;
    background: url('../images/list_arrow.svg') no-repeat center;
    background-size: 100% auto;
    position: absolute;
    left: -60px;
    top: 10px;
}

.comfort-content .active h4 {
    color: var(--black_clr);
}

.across-video-block .video-box video {
    max-height: 800px;
    border-radius: 20px;
}

.across-video-content {
    width: 510px;
    position: absolute;
    top: 60px;
    left: 64px;
    z-index: 2;
}

.across-video-content ul li {
    display: block;
    font-size: 32px;
    color: var(--white_clr);
    font-weight: 800;
    font-family: var(--secondary_font_family);
    padding: 30px 0;
    border-bottom: 1px dashed var(--white_clr);
}

/*Every Angle Gallery*/
.every-angle-gallery {
    display: block;
}

.gallery-group {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 3px;
}

.gallery-group .every-angle-item {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    display: block;
}

.gallery-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-group .every-angle-item:nth-child(1) {
    flex: 0 0 calc(55% - 2px);
    aspect-ratio: 16 / 9;
}

.gallery-group .every-angle-item:nth-child(2) {
    flex: 0 0 calc(45% - 2px);
    aspect-ratio: 16 / 9;
}

.gallery-group .every-angle-item:nth-child(3) {
    flex: 2.9;
    aspect-ratio: 4 / 3;
}

.gallery-group .every-angle-item:nth-child(4) {
    flex: 3;
    aspect-ratio: 4 / 3;
}

.gallery-group .every-angle-item:nth-child(5) {
    flex: 4.1;
    aspect-ratio: 4 / 3;
}

.gallery-group.hidden {
    display: none;
}

.gallery-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* ==========================================================================
   EMI Calculator Scoped Styles
   ========================================================================== */
.calculator-inn {
    justify-content: flex-end;
}

.calculator-inn .left-block {
    padding-right: 64px;
}

.calculator-inn .bottom-right-block .perior-notice {
    max-width: 100%;
    margin: 27px auto 0;
}

.emi-calc-page .model-card .badge-pill {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary_clr);
    color: var(--white_clr);
    font-size: 13px;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-family: var(--secondary_font_family);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.calculator-inn .left-block .plan-card {
    border: 1px solid #D9D9D9;
    background: inherit;
}

.calculator-inn .right-block .plan-card {
    height: auto;
}

.emi-calc-page .model-card.active .model-imgbox .default_img {
    opacity: 0;
}

.emi-calc-page .calc-field-group {
    margin-bottom: 34px;
}

.emi-calc-page .calc-field-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.emi-calc-page .calc-field-header .label {
    font-family: var(--primary_font_family);
    font-weight: 700;
    font-size: 24px;
    color: var(--text_clr_light);
    margin-bottom: 0;
}

.emi-calc-page .calc-price-row {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 22px;
}

.emi-calc-page .calc-price-row .price-tag {
    margin: 0;
}

.emi-calc-page .calc-price-row p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.emi-calc-page .price-pill {
    background: #F1F1F1;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: var(--primary_font_family);
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.emi-calc-page .price-pill strong {
    color: var(--heading_clr);
    margin: 0 4px;
    font-weight: 800;
    font-family: var(--secondary_font_family);
}

.emi-calc-page .price-info {
    font-size: 12px;
    font-style: italic;
    color: var(--text_clr_light);
    line-height: 1.4;
}

.emi-calc-page .dp-input-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--bdr_clr);
    border-radius: 5px;
    background: var(--white_clr);
    padding: 0 12px;
    height: 40px;
    box-sizing: border-box;
}

.emi-calc-page .dp-input-box input {
    border: none !important;
    padding: 0 !important;
    height: 100% !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: var(--primary_font_family) !important;
}

.emi-calc-page #calc-down-payment-aed {
    width: 65px !important;
    text-align: right !important;
}

.emi-calc-page #calc-down-payment-pct {
    width: 25px !important;
    text-align: right !important;
    margin-right: 2px !important;
}

.emi-calc-page .dp-input-box .vertical-line {
    width: 1px;
    height: 40px;
    background: var(--bdr_clr);
    margin: 0 10px;
}

.emi-calc-page .dp-input-box .unit,
.emi-calc-page .interest-input-box .unit {
    font-size: 14px;
    color: var(--text_clr_light);
    font-weight: 700;
    margin-left: -1px;
}

.emi-calc-page .interest-input-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--bdr_clr);
    border-radius: 5px;
    background: var(--white_clr);
    padding: 0 12px;
    height: 40px;
    box-sizing: border-box;
}

.emi-calc-page .interest-input-box input {
    border: none !important;
    padding: 0 !important;
    height: 100% !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    width: 45px !important;
    text-align: right !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: var(--primary_font_family) !important;
    margin-right: 5px !important;
}

.emi-calc-page .slider-container {
    position: relative;
    padding: 5px 0;
}

.emi-calc-page .slider-container input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 1.5px;
    background: #E5E5E5;
    outline: none;
    margin: 10px 0;
    border: none;
    padding: 0;
}

.emi-calc-page .slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #002E7A;
    cursor: pointer;
    border: 3px solid #D91C5C;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition: transform 0.1s ease;
}

.emi-calc-page .slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.emi-calc-page .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text_clr_light);
    font-family: var(--primary_font_family);
    font-weight: 500;
}

.emi-calc-page .period-radio-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.emi-calc-page .period-radio-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--bdr_clr);
    background: var(--white_clr);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text_clr);
    transition: all 0.3s ease;
    font-family: var(--primary_font_family);
}

.emi-calc-page .period-radio-btn input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.emi-calc-page .period-radio-btn.active {
    background: var(--primary_clr);
    border-color: var(--primary_clr);
    color: var(--white_clr);
}

.emi-calc-page .period-radio-btn:hover:not(.active) {
    background: var(--light_clr);
    border-color: var(--text_clr_light);
}

.emi-calc-page .summary-header {
    text-align: center;
    margin-bottom: 55px;
}

.form-readonly-input {
    background: #F1F1F1 !important;
    border-color: var(--bdr_clr) !important;
    pointer-events: none;
    color: var(--text_clr_light) !important;
}

.form-readonly-select {
    background: #F1F1F1 !important;
    pointer-events: none;
}

.form-readonly-select select {
    color: var(--text_clr_light) !important;
}

.form-readonly-select:after {
    color: #CCC !important;
}

.emi-calc-page .hidden-box {
    display: none !important;
}

.emi-calc-page .fade-in {
    animation: emiFadeInAnimation 0.6s ease forwards;
}

@keyframes emiFadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Layout Typography & Helper Classes */
.emi-calc-page .feature-list li span.label-name {
    font-size: 20px;
    font-family: var(--secondary_font_family);
    font-weight: 600;
    color: var(--text_clr_light);
}

.emi-calc-page .feature-list li span.value-name {
    font-weight: 500;
    font-size: 20px;
}

.emi-calc-page .feature-list li.total-cost-row {
    border-top: 2px solid var(--bdr_clr);
    margin-top: 10px;
    gap: 20px;
}

.emi-calc-page .feature-list li.total-cost-row span.total-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--text_clr_light);
}

.emi-calc-page .feature-list li.total-cost-row span.total-val {
    font-weight: bold;
    font-size: 20px;
    color: var(--heading_clr);
    min-width: 140px;
    text-align: right;
}

/* Hide HTML5 Up/Down Spinners */
.emi-calc-page input[type="number"]::-webkit-outer-spin-button,
.emi-calc-page input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.emi-calc-page input[type="number"] {
    -moz-appearance: textfield;
}

/* ==========================================================================
   Comparison Page Styling
   ========================================================================== */
.compare-section .block-title p {
    color: var(--heading_clr);
}

.compare-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
}

.compare-header-row .slick-track {
    justify-content: flex-end;
}

.compare-header-row,
.compare-bottom-row {
    display: flex;
    margin-bottom: 35px;
    justify-content: flex-end;
}

.compare-col-label {
    width: 25%;
    min-width: 180px;
    flex-shrink: 0;
}

.compare-col-item {
    width: 25%;
    min-width: 220px;
    padding: 0 15px;
}

/* Custom Selectbox */
.compare-selectbox {
    position: relative;
    background: var(--white_clr);
    border: 1px solid var(--bdr_clr);
    border-radius: 4px;
    margin-bottom: 20px;
}

.compare-selectbox select {
    background: none;
    border: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text_clr);
    padding: 0 40px 0 20px;
    width: 100%;
    height: 48px;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font-family: var(--primary_font_family);
}

.compare-selectbox:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 20px;
    color: var(--text_clr_light);
    z-index: 0;
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Compare Model Card */
.compare-model-card {
    text-align: left;
}

.compare-model-card h3 {
    font-family: var(--secondary_font_family);
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 5px;
    color: var(--heading_clr);
}

.compare-model-card .price-from {
    font-family: var(--primary_font_family);
    font-size: 14px;
    color: var(--text_clr_light);
}

.compare-model-card .price-from strong {
    color: var(--heading_clr);
    font-weight: 700;
}

.compare-model-card .model-image {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    background: #F5F5F5;
    border-radius: 20px;
    overflow: hidden;
}

.compare-model-card .model-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.compare-model-card .model-actions {
    gap: 10px;
    justify-content: flex-start;
}

.compare-model-card .model-actions .btn-black,
.compare-model-card .model-actions .btn-outline {
    flex: 1;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
    border-radius: 20px;
    white-space: nowrap;
}

/* Placeholder Card */
.compare-placeholder-card {
    text-align: center;
}

.compare-placeholder-card .placeholder-spacer {
    height: 55px;
    /* Matches the text header height of active cards */
}

.compare-placeholder-card .placeholder-inner-box {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    background-color: #F5F5F5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    padding: 20px;
    border: 1px dashed var(--bdr_clr);
}

.compare-placeholder-card .placeholder-inner-box p {
    font-family: var(--primary_font_family);
    font-size: 16px;
    font-weight: 500;
    color: var(--text_clr_light);
    margin: 0;
    line-height: 1.4;
}

/* Comparison Table */
.compare-table-container {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
    border-top: 1px solid var(--bdr_clr);
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border: none;
}

.compare-table tr {
    border: none;
}

.compare-table tr:nth-child(odd) td {
    background-color: #F6F6F6;
}

.compare-table tr:nth-child(odd) td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.compare-table tr:nth-child(odd) td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.compare-table td {
    padding: 18px 24px;
    font-family: var(--primary_font_family);
    font-size: 20px;
    line-height: 1.5;
    color: var(--text_clr);
    vertical-align: middle;
    width: 25%;
    min-width: 220px;
    border: none;
}

.compare-table td.feature-label {
    font-weight: 600;
    color: var(--text_clr_light);
    font-size: 24px;
    font-family: var(--secondary_font_family);
    width: 25%;
    min-width: 180px;
}

.compare-table td:not(.feature-label) {
    padding-left: 15px;
}

/* Bottom Actions Row styling */
.compare-bottom-row {
    border-top: 1px solid var(--bdr_clr);
    border-bottom: 1px solid var(--bdr_clr);
    padding: 50px 0;
}

.compare-bottom-row .bottom-actions {
    gap: 15px;
    justify-content: flex-start;
}

.compare-bottom-row .bottom-actions .btn-black,
.compare-bottom-row .bottom-actions .btn-outline {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* Global utility class to hide elements */
.d-none {
    display: none !important;
}

/* Upload Box */
.upload-box {
    position: relative;
    width: 100%;
    min-height: 100px;
    border: 2px dashed #d5d5d5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

/* Hide CF7 default file input */
.upload-box .wpcf7-form-control-wrap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Custom Upload Label */
.upload-label {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    color: #777;
    font-size: 16px;
    text-align: center;
    margin: 0;
}

/* Icon */
.upload-label i {
    font-size: 18px;
    color: #777;
}

/* Hover */
.upload-box:hover {
    border-color: #999;
}

.upload-box:hover .upload-label {
    color: #333;
}

/* Contact Form 7 Radio Styling */
.radiobox-block .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.wpcf7-form-control-wrap .wpcf7-radio,
.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 30px;
    margin: 0;
    padding: 0;
    width: 100%;
}
.full-width-radio .wpcf7-radio{
    gap: 28px 30px;
}
.wpcf7-radio .wpcf7-list-item {
    margin: 0 !important;
    padding: 0;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.wpcf7-radio .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    user-select: none;
}

.wpcf7-radio .wpcf7-list-item-label {
    font-family: var(--primary_font_family);
    font-size: 16px;
    line-height: normal;
    color: var(--text_clr_light);
    font-weight: 400;
    cursor: pointer;
    margin: 0;
}

/* Custom Radio Button */
.wpcf7-radio input[type="radio"],
.wpcf7-form input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2.5px solid var(--black_clr, #111);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    display: inline-grid;
    place-content: center;
    background: var(--white_clr);
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7-radio input[type="radio"]::before,
.wpcf7-form input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--black_clr, #111);
    transform: scale(0);
    transition: 0.15s transform ease-in-out;
}

.wpcf7-radio input[type="radio"]:checked::before,
.wpcf7-form input[type="radio"]:checked::before {
    transform: scale(1);
}

.wpcf7-radio input[type="radio"]:focus-visible,
.wpcf7-form input[type="radio"]:focus-visible {
    outline: 2px solid var(--black_clr, #111);
    outline-offset: 2px;
}

.form-checkbox .wpcf7-list-item-label {
    color: var(--text_clr_light);
}

.checkbox-gt-25 {
    margin-top: 25px;
}

.checkbox-gb-25 {
    margin-bottom: 25px;
}

/* CF7 Response Output in Right Column */
.model-form-section .wpcf7-response-output,
.registration-form-section .wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 12px 20px !important;
    border-radius: 6px;
    font-size: 14px;
    line-height: 22px;
    box-sizing: border-box;
}

.registration-form-section form.wpcf7-form>.wpcf7-response-output {
    width: calc(50% - 15px);
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Floating Compare Popup Bar */
.compare-floating-bar {
    position: fixed;
    bottom: 84px;
    right: 20px;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    padding: 20px;
    width: 440px;
    max-width: calc(100vw - 32px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.compare-floating-bar.d-none {
    display: none !important;
}

.compare-floating-inner {
    position: relative;
}

.compare-close-btn {
    position: absolute;
    top: -6px;
    right: -4px;
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #a0aec0;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.compare-close-btn:hover {
    color: #1a202c;
}

.compare-floating-header {
    padding-right: 24px;
    margin-bottom: 14px;
}

.compare-floating-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.compare-floating-header p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.compare-floating-body {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding: 6px 2px;
}

.compare-item-card {
    position: relative;
    flex: 1;
    min-width: 100px;
    max-width: 120px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 6px;
    text-align: center;
}

.compare-item-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #1e293b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, background 0.15s ease;
    z-index: 2;
}

.compare-item-remove:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.compare-item-img {
    height: 48px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 6px;
}

.compare-item-title {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-item-price {
    font-size: 11px;
    font-weight: 600;
    color: #dc2626;
    margin: 0;
}

.compare-floating-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.btn-compare-clear {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-compare-clear:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.btn-compare-submit {
    background: #dc2626;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-compare-submit:hover {
    background: #b91c1c;
}

#compare-bar-submit.disabled,
.btn-compare-submit.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: auto;
}

/* Toast Notice */
.compare-limit-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100000;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-weight: 600;
    animation: fadeInToast 0.3s ease;
}

@keyframes fadeInToast {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Thank You Msg Box*/
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #BDF5AC;
    background: #BDF5AC;
    position: relative;
}
.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 14px 30px;
    border: 0;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #141414;
    
}
.wpcf7 form.sent .wpcf7-response-output{
    padding-left: 80px;
}
.wpcf7 form.sent .wpcf7-response-output::before {
    content: "";
    display: block;
    position: absolute;
    width: 34px;
    height: 35px;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/success_icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 34px 35px;
    z-index: 2;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    background: #ffefc4;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #ffd9e2;
}
.wpcf7 form.spam .wpcf7-response-output {
    background: #ffc9ad;
}




/*==========================================
===============:: MEDIA CSS ::==============
============================================*/
@media screen and (max-width:1899px) {

    h2,
    .h2 {
        font-size: 44px;
        line-height: 1.1;
    }

    .block-title p {
        font-size: 18px;
    }

    .offer-ul-list ul li {
        padding: 12px 0;
        font-size: 18px;
    }

    .card-box h4,
    .card-whychoose h4,
    .card-journey h4,
    .card-values h4,
    .card-product h4 {
        font-size: 28px;
        line-height: 32px;
    }

    .addres-info-box p,
    .card-box p,
    .card-whychoose p,
    .card-values p {
        font-size: 16px;
        line-height: 1.4;
    }

    .post-feed-items img {
        max-width: 240px;
    }

    .card-textbox {
        padding: 40px;
    }

    .locate-block {
        padding: 40px;
    }

    .offer-ul-list ul {
        max-width: 340px;
    }

    .split-textarea p {
        font-size: 28px;
        line-height: 44px;
    }

    .card-journey p {
        font-size: 18px;
        line-height: 28px;
    }

    .fits-list .card-values {
        padding: 40px 30px;
    }

    .fits-list .card-values .imgbox {
        padding: 30px 0 0;
        margin: auto -30px -40px 0 !important;
    }

    .small-list ul {
        gap: 10px 0;
    }

    .small-list ul li {
        font-size: 14px;
    }

    .prod-price .price {
        font-size: 18px;
    }

    .head-sidebar {
        min-width: 20vw;
        max-width: 20vw;
    }

    .head-sidebar-menu li a {
        font-size: 28px;
        line-height: 34px;
    }

    .menu-product-card h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .menu-product-card .prod-price {
        font-size: 11px;
        gap: 5px;
    }

    .menu-product-card .prod-price .price {
        font-size: 14px;
    }

    .m-tl,
    .menu-right-list ul li {
        font-size: 18px;
    }

    .menu-right-list .btn {
        min-width: 240px;
    }

    .card-mm h5 {
        font-size: 24px;
    }

    .acc-arrow-list {
        max-width: 100%;
    }

    .whychoose-column-block .right-textbox p,
    .small-icon-card p,
    .offer-items ul li {
        font-size: 18px;
        line-height: 1.4;
    }

    .offer-items ul li:before {
        top: 8px;
    }

    .contact-info-items {
        padding: 40px 0;
    }

    .offer-items .col-left-block hr {
        margin: 20px 0;
    }

    .card-whychoose .textbox {
        max-width: 90%;
    }

    .card-product .textbox {
        padding: 20px;
    }

    .card-product .bottom-textbox {
        padding: 15px 20px;
    }

    .car-specs li {
        font-size: 16px;
    }

    .full-width-radio {
        width: 100%;
    }

    .testdrivepopup {
        width: 700px;
    }

    .service-appointment-msg {
        font-size: 14px;
    }

    .exclamation_icon {
        min-width: 26px;
        height: 26px;
        background-size: contain;
    }

    .registration-tabs .tab-item {
        padding: 6px 15px 6px;
        font-size: 13px;
    }

    .models-section-page .offer-list .offer-items .btnbox .btn {
        min-width: 130px;
    }

    .car-video video {
        min-height: 540px;
    }

    .play-btn {
        width: 68px;
        height: 68px;
    }

    .play-btn span {
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 20px solid #fff;
    }
    .custom-tabs .tab-btn {
        font-size: 16px;
        padding: 10px 20px;
        height: 40px;
        min-width: 80px;
    }


}

@media screen and (max-width:1499px) {
    .menu-product-items {
        width: 25%;
    }

    .head-sidebar-menu li a {
        font-size: 26px;
        line-height: 32px;
    }

    .radio-group .label {
        font-size: 14px;
        line-height: 24px;
    }

    .radio-group .checkbox,
    .radio-group .radiobox {
        padding-left: 30px;
        font-size: 14px;
        line-height: normal;
    }

    .location-content {
        min-width: 520px;
    }

    .radio-group .radiobox .checkmark {
        width: 20px;
        height: 20px;
        top: -1px;
    }

    .testdrivepopup {
        width: 600px;
    }

    .testdrivepopup-content {
        padding: 32px 40px;
    }

    .testdrivepopup-header {
        margin-bottom: 25px;
    }

    .compare-table td.feature-label {
        font-size: 18px;
    }

    .compare-table td {
        font-size: 18px;
    }

    .compare-bottom-row {
        padding: 40px 0;
    }

    .compare-bottom-row .bottom-actions {
        flex-wrap: wrap;
    }

    .compare-header-row .slick-arrow {
        top: 62%;
    }

    .summary-header .h3 {
        font-size: 36px;
    }

    .emi-calc-page .summary-header {
        margin-bottom: 30px;
    }

    .emi-calc-page .feature-list li span.label-name {
        font-size: 18px;
    }

    .emi-calc-page .feature-list li span.value-name {
        font-size: 18px;
    }

    .emi-calc-page .feature-list li.total-cost-row span.total-label {
        font-size: 18px;
    }

    .calculator-inn .left-block {
        padding-right: 15px;
    }

    .emi-calc-page .calc-field-header .label {
        font-size: 20px;
    }

    .spec-row .spec-col h4 {
        font-size: 26px;
    }

    .top-row {
        margin-bottom: 40px;
    }

    .bottom-row {
        gap: 40px;
    }

    .bottom-row {
        grid-template-columns: 1fr 1.2fr;
    }

    .top-row {
        grid-template-columns: 2fr 1fr;
    }

    .across-video-content ul li {
        padding: 20px 0;
    }

    .car-video video {
        min-height: 100%;
    }

    .model-list .model-items {
        width: 20%;
    }



}

/* iPad 1024px View */
@media screen and (max-width:1199px) {

    .max-container,
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 3vw;
    }

    .ptb-100,
    .ptb-90,
    .ptb-80,
    .ptb-60 {
        padding: 40px 0;
    }

    h1,
    .h1,
    h2,
    .h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 15px;
    }

    h1,
    .h1 {
        font-size: 2.56rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    h2,
    .h2 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.7rem;
    }

    h4 {
        font-size: 1.3rem;
    }

    p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    ul li,
    ol li {
        font-size: 16px;
        line-height: 24px;
    }

    .entry-content ul li:before {
        top: 10px;
    }

    .block-title p br {
        display: none;
    }

    .block-title p {
        font-size: 18px;
    }

    hr {
        margin: 20px 0;
    }

    /*Header and banner*/
    .nav-main {
        display: none !important;
    }

    .mobi-iconbox {
        margin-right: 20px;
    }

    .site-logo {
        width: 240px;
    }

    .header-inner {
        height: 80px;
    }

    .header-blank {
        height: 80px;
    }

    .m-menu-block {
        padding: 20px;
    }

    .hero-caption {
        min-width: 440px;
        max-width: 440px;
        left: 3vw;
        bottom: 60px;
    }

    .hero-caption .h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-caption p {
        font-size: 16px;
        line-height: 1.4;
        margin: 0 0 15px;
    }

    .hero-slider .slick-dots {
        bottom: 20px;
    }

    .sticky-button-block {
        bottom: 10px;
    }

    .prod-tabs .tab-item {
        padding: 6px 10px 4px;
        min-width: 100px;
    }

    .car-specs li {
        font-size: 16px;
    }

    .product-slide-inner {
        padding-bottom: 50px;
    }

    .slider-controls {
        bottom: 0;
        gap: 10px;
    }

    .car-actions {
        gap: 15px;
    }

    .product-info {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .product-visual {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .offer-ul-list ul li {
        padding: 8px 0;
        font-size: 16px;
    }

    .card-textbox {
        padding: 30px;
    }

    .card-box p {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .car-brand-logo {
        max-width: 180px;
    }

    .addres-info-box p,
    .card-box p,
    .card-whychoose p,
    .card-values p {
        font-size: 16px;
        line-height: 1.4;
    }

    .pause-btn,
    .hover-btn {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .locate-block {
        padding: 30px;
    }

    .filterbox .selectbox select {
        font-size: 16px;
        height: 50px;
    }

    .filterbox .selectbox:after {
        height: 50px;
        width: 50px;
        font-size: 18px;
    }

    .card-whychoose {
        max-width: 540px;
    }

    .card-whychoose .textbox {
        padding: 20px 0 0;
        max-width: 400px;
    }

    .suzuki-icon-logo {
        margin: -60px 0 0;
    }

    .suzuki-icon-logo img {
        max-width: 140px;
    }

    .scrollup.active {
        bottom: 15px;
    }

    .internal-caption {
        bottom: 40px;
    }

    .split-textarea p {
        font-size: 20px;
        line-height: 32px;
    }

    .text-container {
        max-width: 80vw;
    }

    .showroom-section .whychoose-list {
        padding-top: 0;
    }

    .card-box h4,
    .card-whychoose h4,
    .card-journey h4,
    .card-values h4,
    .card-product h4 {
        font-size: 28px;
        line-height: 1.2;
    }

    .card-journey p {
        font-size: 16px;
        line-height: 24px;
    }

    .card-journey .textbox {
        padding: 20px 20px 0;
    }

    .card-values {
        padding: 20px;
    }

    .values-block {
        padding: 20px 10px;
    }

    .abt-imgbox+.values-block {
        padding-top: 60px;
    }

    /*.card-product .imgbox {
    height: 180px;
}*/
    .card-product .textbox,
    .card-product .bottom-textbox {
        padding: 20px;
    }

    .small-list ul li {
        font-size: 14px;
        line-height: 1.2;
        padding: 0 10px 0 18px;
    }

    .small-list ul li:before {
        top: 3px;
    }

    .prod-price .price {
        font-size: 16px;
    }

    .card-box {
        height: 400px;
    }

    .chat_icon_block {
        right: 20px;
        bottom: 10px;
    }

    .chat_btn {
        width: 40px;
        height: 40px;
    }

    .chat_btn svg {
        max-width: 22px;
    }

    .sticky_menu_block:after {
        right: 30px;
    }

    .sticky-links li a {
        padding: 10px 0;
    }

    .head-sidebar {
        min-width: 200px;
        max-width: 200px;
    }

    .head-sidebar-menu li a {
        font-size: 24px;
        line-height: 28px;
    }

    .mega-prod-tab-content {
        margin: 0 -5px;
    }

    .menu-product-items {
        padding: 5px;
    }

    .menu-product-card .textbox {
        padding: 5px 0;
    }

    .m-tl,
    .menu-right-list ul li {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .menu-right-list .btn {
        min-width: 100%;
    }

    .card-mm h5 {
        font-size: 20px;
    }

    .mega-card-list {
        margin-left: -5px;
        margin-right: -5px;
    }

    .mega-card-list .mm-sub-item {
        padding-left: 5px;
        padding-right: 5px;
    }

    .menu-list-right {
        padding: 5px 0 5px 20px;
    }

    .abt-imgbox.ptb-20 {
        padding: 0;
    }

    .column-content-box {
        max-width: 100%;
    }

    .block-title+.bottom-btnbox {
        padding: 0;
    }

    .whychoose-column-block .right-textbox p {
        font-size: 18px;
        line-height: 26px;
    }

    .internal-banner p {
        font-size: 16px;
    }

    .practical-section .column-right-block {
        width: 45%;
    }

    .whychoose-column-block {
        padding: 0;
    }

    .whychoose-column-block .right-textbox {
        min-width: 40vw;
        max-width: 40vw;
        padding-left: 20px;
    }

    .whychoose-column-block .column-tabs-container {
        padding: 0 0 10px;
    }

    .abt-imgbox.ptb-30 {
        padding: 0;
    }

    .dark-content-block {
        padding: 60px 30px;
    }

    .dark-content-block h4 {
        font-size: 24px;
    }

    .acc-arrow-list .sub-items {
        padding: 20px 0;
        padding-left: 40px;
    }

    .acc-arrow-list .sub-items:before {
        left: 40px;
    }

    .dark-content-block h4:before {
        width: 16px;
        height: 14px;
        left: -40px;
        top: 6px;
    }

    .whychoose-column-block .right-textbox p,
    .small-icon-card p {
        font-size: 16px;
        line-height: 1.4;
    }

    .small-icon-card p {
        font-size: 14px;
    }

    .small-icon-card {
        gap: 10px 0;
    }

    .icon-list-block {
        gap: 20px 0;
        padding: 0;
    }

    .mt-180 {
        margin-top: -80px;
    }

    .fits-list .card-values {
        padding: 20px 20px;
    }

    .fits-list .card-values .imgbox {
        padding: 10px 0 0;
        margin: auto -20px -20px 0 !important;
    }

    .card-values h4 {
        margin-bottom: 20px;
    }

    .contact-box-space {
        padding: 0;
    }

    .contact-imgbox {
        margin-right: 0;
    }

    .form-inner {
        gap: 20px 0;
        margin: 0 -10px;
    }

    .input-field {
        padding: 0 10px;
    }

    .contact-info-items p {
        font-size: 18px;
        line-height: 1.4;
    }

    .c_info_btnbox {
        gap: 10px;
    }

    .offer-items .col-left-block {
        width: 45%;
    }

    .offer-items .col-right-block {
        width: 55%;
    }

    .offer-items ul li {
        font-size: 16px;
        line-height: 1.4;
    }

    .offer-items ul li:before {
        top: 6px;
    }

    .offer-items .prod-price {
        font-size: 14px;
    }

    .offer-items .prod-price .price {
        font-size: 20px;
    }

    .offer-items .btnbox {
        gap: 15px 10px;
    }

    .offer-items+.offer-items {
        margin-top: 40px;
    }

    .offer-list {
        padding: 20px 0 0;
    }

    .f-logo {
        max-width: 240px;
    }

    .checkbox-gt25 {
        margin-bottom: 15px;
    }

    .checkbox-gb-25 {
        margin-bottom: 15px;
    }

    .compare-col-item {
        width: 100%;
    }

    .compare-model-card .model-actions .btn-black,
    .compare-model-card .model-actions .btn-outline {
        min-width: 100px;
    }


}

/* iPad 768px view*/
@media screen and (max-width:991px) {
    .location-inn .items {
        width: 33.33%;
    }

    .location-inn .items.locate-item {
        width: 100%;
    }

    .post-feed-items img {
        max-width: 200px;
    }

    .offer-inn {
        flex-wrap: wrap;
        gap: 50px;
        padding: 0;
    }

    .offer-right-block {
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    .offer-left-block {
        max-width: 100%;
        padding: 0;
        order: 2;
    }

    .offer-right-block .sub-items {
        margin-top: 20px;
    }

    .offer-right-block .sub-items:nth-child(2) {
        margin-top: auto;
        margin-bottom: -20px;
    }

    .footer-inner {
        flex-wrap: wrap;
    }

    .footer-inner .f-col-items {
        width: 25%;
    }

    .footer-inner .f-col-items.f_col_1 {
        width: 100%;
        padding: 0 0 40px;
    }

    .f-logo {
        max-width: 220px;
        margin: 0 auto;
    }

    .f_col_1 .social-media {
        margin-top: 20px;
        justify-content: center;
    }

    .f-links ul li {
        margin: 0 0 14px;
    }

    .footer-bottom {
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .fb-links {
        min-width: 100%;
    }

    .fb-links ul {
        justify-content: center;
        gap: 15px;
    }

    .internal-hero-inner .hero-bgimg img,
    .internal-hero-inner .hero-bgimg video {
        min-height: 480px;
    }

    .internal-caption-inn {
        max-width: 430px;
    }

    .product-card-list {
        margin: 0 -7.5px;
        gap: 15px 0;
    }

    .product-card-list .items {
        min-width: 50%;
        padding: 0 7.5px;
    }

    .menu-product-items {
        width: 33.33%;
    }

    .mega-prod-tabs {
        gap: 5px;
    }

    .mega-prod-tabs .tab-item {
        padding: 6px 10px 4px;
        min-width: 100px;
    }

    .mega-menu-modals {
        padding: 0 0 0 20px;
    }

    .head-sidebar {
        min-width: 160px;
    }

    .head-sidebar-menu li a {
        font-size: 22px;
        line-height: 28px;
    }

    .head-social-media .social-media {
        gap: 5px;
    }

    .head-social-media .social-media .s-icon {
        min-width: 32px;
        max-width: 32px;
        height: 32px;
    }

    .head-social-media .social-media .s-icon i {
        background-size: 15px 15px !important;
    }

    .mobi-text-center .row {
        flex-direction: column;
        text-align: center;
        gap: 20px 0;
    }

    .mobi-text-center .row>div {
        min-width: 100%;
    }

    .mobi-text-center .right-text-block {
        width: 100%;
        max-width: 100%;
    }

    .mobi-text-center .btnbox {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .max-container .container {
        padding: 0;
    }

    .mt-180 {
        margin-top: -60px;
    }

    .contact-info-items .right-block {
        padding-left: 15px;
    }

    .contact-block-inn {
        padding: 0;
    }

    .plan-card .price {
        font-size: 22px;
    }

    .plan-card p {
        font-size: 22px;
        line-height: 30px;
    }

    .selcted-msg-box {
        margin: 30px 0;
        gap: 25px 0;
    }

    .selcted-msg-box .selected-msg {
        width: 50%;
    }

    .showroom-info p {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 26px;
    }

    .compare-table td.feature-label {
        padding-left: 10px;
    }

    .compare-table td.feature-label {
        font-size: 16px;
    }

    .compare-table td {
        font-size: 16px;
    }

    .summary-header .h3 {
        font-size: 32px;
    }

    .spec-row {
        padding: 40px 15px;
    }

    .spec-row .spec-col h4 {
        font-size: 24px;
    }

    .bottom-row {
        grid-template-columns: 1fr 1fr;
    }

    .comfort-section .block-title {
        padding-left: 0;
    }

    .across-video-content {
        width: 330px;
    }

    .car-images {
        padding: 40px 0;
    }

    .every-angle-gallery-section .block-title {
        padding: 0;
    }

    .content-box p {
        font-size: 20px;
        line-height: 30px;
    }

    .checkbox,
    .radiobox {
        line-height: 20px;
    }

    .model-list .model-items {
        width: 25%;
    }

    .model-card .textbox h5 {
        font-size: 24px;
    }

    .plan-card {
        padding: 30px;
    }

    .plan-card .price {
        font-size: 20px;
    }

    .plan-card p {
        font-size: 18px;
        line-height: 28px;
    }

    .option-box p {
        font-size: 18px !important;
    }

    .option-box {
        padding: 20px;
    }

    .feature-list li {
        padding: 14px 0;
        font-size: 16px;
        line-height: 24px;
    }

    .radio-group {
        gap: 20px;
        align-items: flex-start;
    }

    .radio-group .label {
        font-size: 14px;
    }

    .radio-group .radiobox .checkmark {
        width: 20px;
        height: 20px;
    }

    .radio-group .checkbox,
    .radio-group .radiobox {
        padding-left: 30px;
        font-size: 14px;
    }

    .damage-select-field {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .content-box p {
        font-size: 20px;
        line-height: 30px;
    }

    .values-repair-page .values-block.row {
        gap: 20px 0;
    }

    .values-repair-page .values-block.row>div {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .about-offer-page .block-title {
        margin-bottom: 40px;
    }

    .offer-detail-inn .left-block,
    .offer-detail-inn .right-block {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offer-detail-inn .left-block {
        margin-bottom: 40px;
        padding-right: 15px;
    }

    .offer-detail-inn .right-block {
        padding-left: 15px;
    }

    .right-block-btnbox .bottom-btnbox {
        gap: 15px;
    }

    .right-block-btnbox .bottom-btnbox .btn {
        font-size: 14px;
    }

    .offer-detail-block {
        padding: 50px;
    }

    .offer-detail-block .offer-ul-list ul li {
        padding: 18px 0;
        font-size: 18px;
    }

    .perior-notice {
        margin-top: 40px;
    }

    .filter-row {
        padding: 30px 0;
    }

    .custom-tabs .tab-btn {
        font-size: 14px;
        padding: 10px 20px;
        height: 38px;
    }

    .location-content {
        min-width: 380px;
    }

    .product-models .offer-list {
        padding: 0;
    }

    .models-section-page .prod-tabs-container {
        margin: 0 0 20px;
    }

    .middle-section .textbox h3 {
        margin: 40px 0 20px;
    }

    .news-sidebar {
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testdrivepopup {
        width: 410px;
    }

    .testdrivepopup .form-inner .input-field {
        min-width: 100%;
        max-width: 100%;
    }

    .testdrivepopup-header h2 {
        font-size: 2rem;
        margin: 0;
    }

    .emi-calc-page .calculator-section .col-7,
    .emi-calc-page .calculator-section .col-5 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .emi-calc-page .calculator-section .col-7 {
        margin-bottom: 30px;
    }

    .emi-calc-page .model-form-block .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .emi-calc-page .model-form-block .col-6:first-child {
        margin-bottom: 30px;
    }

    .emi-calc-page .faq-section .col-4,
    .emi-calc-page .faq-section .col-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .emi-calc-page .faq-section .col-4 {
        margin-bottom: 30px;
    }

    .compare-header-row,
    .compare-bottom-row {
        justify-content: flex-start;
    }

    .calculator-inn .left-block .form-inner .input-field {
        min-width: 100%;
        max-width: 100%;
    }

    .emi-calc-page .feature-list li span.label-name {
        font-size: 15px;
    }

    .emi-calc-page .feature-list li span.value-name {
        font-size: 15px;
    }

    .emi-calc-page .feature-list li.total-cost-row span.total-label {
        font-size: 15px;
    }

    .emi-calc-page .feature-list li.total-cost-row span.total-val {
        font-size: 18px;
        min-width: 100px;
    }

    .emi-calc-page .calc-price-row {
        margin-bottom: 20px;
        gap: 10px;
    }

    .emi-calc-page .calc-field-group {
        margin-bottom: 20px;
    }

    .emi-calc-page .calc-field-header .label {
        font-size: 16px;
    }

    .emi-calc-page #calc-down-payment-aed {
        width: 56px !important;
    }

    .emi-calc-page .dp-input-box .unit,
    .emi-calc-page .interest-input-box .unit {
        font-size: 13px;
    }

    .emi-calc-page .dp-input-box input {
        font-size: 13px !important;
    }

    .emi-calc-page .interest-input-box input {
        font-size: 13px !important;
        width: 36px !important;
    }

    .emi-calc-page .period-radio-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .calculator-inn .left-block .form-inner {
        padding: 20px 0;
    }

    .calculator-inn .right-block .plan-card {
        height: 100%;
    }

    .spec-row {
        padding: 20px 15px 40px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px;
    }

    .lifestyle-section .top-row {
        gap: 40px;
    }

    .card-content p>br,
    .comfort-content p>br {
        display: none;
    }

    .across-video-content {
        width: 300px;
        top: 40px;
        left: 40px;
    }

    .across-video-content ul li {
        font-size: 28px;
    }

    .checkbox-gt-50 {
        margin-top: 15px;
    }

    .checkbox-gb-50 {
        margin-bottom: 15px;
    }

    .compare-container {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }

    .compare-section .block-title {
        padding-bottom: 0;
        margin-bottom: 30px;
    }

    .compare-table-container {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }

    .compare-header-row,
    .compare-table-container,
    .compare-table,
    .compare-bottom-row {
        min-width: 100%;
        width: 100%;
    }

    .compare-header-row {
        justify-content: flex-start;
    }

    .compare-header-row .compare-col-item {
        width: 100%;
        min-width: 280px;
        padding: 0 15px;
    }

    .compare-bottom-row .compare-col-item {
        min-width: 220px;
    }

    .compare-table td.feature-label {
        min-width: 200px;
    }

    .compare-table td {
        min-width: 264px;
    }
    .mw_197 {
        min-width: 175px;
    }
    .mw_250 {
        min-width: 175px;
    }



}

@media screen and (min-width:768px) {
    .mobi-toggle-box {
        display: block !important;
    }
}

/* iPhone-6 plus 736 (Landscape) view */
@media screen and (max-width:767px) {
    body {
        -webkit-text-size-adjust: none;
    }

    .max-container,
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    h1,
    .h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    h2,
    .h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        margin: 0 0 15px;
    }

    .ptb-100,
    .ptb-80,
    .ptb-90,
    .ptb-60,
    .ptb-50 {
        padding: 40px 0;
    }

    img.alignleft,
    img.alignright,
    img.alignnone,
    iframe,
    iframe.alignleft,
    iframe.alignright,
    iframe.iframe-embed.alignright {
        float: none;
        max-width: 100%;
        margin: 0 0 20px;
    }

    .row>div {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .block-title .row {
        gap: 15px;
    }

    .block-title p br {
        display: none;
    }

    .block-title p {
        font-size: 16px;
    }

    .button,
    .btn {
        font-size: 14px;
    }

    /*Header and banner*/
    .header .max-container {
        padding: 0 15px;
    }

    .mobi-iconbox {
        min-width: 40px;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        left: auto;
    }

    .menuicon {
        margin-left: auto;
        margin-right: 0;
    }

    .mobi-iconbox:after {
        display: none;
    }

    .mobile-head-btns {
        display: flex;
    }

    .header-inner {
        padding: 0;
        height: 80px;
        align-items: center;
    }

    .header-right {
        padding: 0;
    }

    .site-logo {
        width: 240px;
    }

    .language-options,
    .head-icon-link {
        display: none;
    }

    .selected-language {
        padding: 7px 10px;
        font-size: 14px;
    }

    .header-left {
        margin: 0;
    }

    .head-btnbox {
        padding: 0;
        margin-left: auto;
    }

    .sticky-button-block {
        max-width: 240px;
    }

    .sticky-button-block .more-link,
    .sticky-button-block .btn.primary {
        padding: 6px 10px;
        font-size: 13px;
        line-height: 20px;
        min-width: inherit;
    }

    .home-banner {
        position: relative;
        top: 0;
    }

    .hero-slider .slick-dots {
        bottom: 20px;
    }

    .home-banner .items {
        height: 90vh;
    }

    .hero-caption {
        min-width: 320px;
        max-width: 320px;
        left: 20px;
        bottom: 60px;
    }

    .hero-caption .h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-caption p {
        font-size: 14px;
        line-height: 1.4;
    }

    .hero-caption .btnbox {
        gap: 5px;
        padding: 5px 0 0;
    }

    .hero-caption .btnbox .btn {
        padding: 9px 15px;
        min-width: 120px;
    }

    .prod-tabs-container {
        padding: 10px 0 20px;
    }

    .car-actions,
    .controls-inn {
        justify-content: center;
    }

    .car-brand-logo {
        margin: 0 auto 20px;
    }

    .product-slide-inner {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .product-info {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
        text-align: center;
    }

    .product-visual {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }

    .car-specs {
        margin: 0 0 20px;
    }

    .car-specs li {
        font-size: 14px;
        line-height: 1.2;
    }

    .slider-controls {
        left: 0;
        right: 0;
        bottom: -10px;
        justify-content: center;
    }

    .right-text-block {
        max-width: 100%;
        width: 100%;
    }

    .card-box {
        height: 340px;
    }

    .card-textbox {
        padding: 30px;
        min-width: 100%;
        max-width: 100%;
        left: 0;
    }

    .slick-active .card-textbox {
        opacity: 1;
    }

    .card-box h4,
    .card-whychoose h4,
    .card-journey h4,
    .card-values h4,
    .card-product h4 {
        font-size: 24px;
        line-height: 1.2;
    }

    .addres-info-box p,
    .card-box p,
    .card-whychoose p,
    .card-values p {
        font-size: 14px;
    }

    .contact-infobox {
        gap: 10px;
        margin-bottom: 20px;
    }

    .contact-infobox .info_icon {
        min-width: 24px;
        max-width: 24px;
        height: 24px;
    }

    .addres-info-box .btnbox {
        padding: 20px 0 0;
    }

    .location-inn .items.locate-img-item {
        display: none;
    }

    .locate-block {
        padding: 20px;
    }

    .filterbox .selectbox select {
        padding: 0 20px 0 10px;
        font-size: 14px;
        height: 34px;
    }

    .filterbox .selectbox:after {
        height: 34px;
        width: 30px;
        font-size: 14px;
    }

    .filterbox .selectbox select option {
        font-size: 13px;
    }

    .video-section {
        padding: 20px 0 0;
    }

    .post-feed-list {
        padding: 0;
    }

    .feed-section .block-title {
        text-align: center;
    }

    .feed-section .social-media {
        justify-content: center;
    }

    .whychoose-section .container {
        padding: 0;
    }

    .whychoose-section .block-title {
        padding: 0 20px;
    }

    .card-whychoose {
        max-width: 100%;
    }

    .card-whychoose .textbox {
        padding: 20px 10px 0;
        max-width: 100%;
    }

    .footer {
        text-align: center;
        padding: 0 0 40px;
    }

    .footer-inner {
        flex-wrap: wrap;
        margin: 0;
        gap: 40px 0;
    }

    .f-col-items.f_col_2,
    .f-col-items.f_col_3 {
        display: none;
    }

    .footer-inner .f-col-items {
        width: 50%;
        padding: 0 0 0 10px;
        text-align: left;
    }

    .f_col_1 {
        order: 1;
    }

    .f_col_2 {
        order: 2;
    }

    .f_col_3 {
        order: 3;
    }

    .f_col_4 {
        order: 5;
        max-width: 44%;
        margin-left: auto;
    }

    .f_col_5 {
        order: 4;
    }

    .f_col_6 {
        order: 6;
        display: block;
        min-width: 100%;
    }

    .footer-inner .f-col-items.f_col_1 {
        padding: 0;
    }

    .f_col_1 .f-logo {
        display: none;
    }

    .f-bottom-logo-block {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .f-logo {
        max-width: 280px;
        margin: 0 auto;
    }

    .suzuki-icon-logo {
        display: none;
    }

    .scrollup {
        position: relative;
        left: -50px;
        margin: 40px auto 0;
        font-size: 16px;
        line-height: 1.2;
        color: var(--primary_clr);
        font-weight: 700;
        font-family: var(--secondary_font_family);
    }

    .arrow-back-text {
        display: flex;
        align-items: center;
        white-space: nowrap;
        position: absolute;
        left: 100%;
        top: 0;
        bottom: 0;
        margin-left: 10px;
    }

    .scrollup.active {
        bottom: 0;
    }

    .f_col_1 .social-media {
        margin-top: 0;
    }

    .cards-section {
        overflow: hidden;
    }

    .cards-section .max-container {
        padding: 0;
    }

    .cards-inn {
        margin: 0;
    }

    .cards-inn .items {
        padding: 5px 1.5px;
        width: 100%;
        max-width: 100%;
    }

    .card-imgbox img {
        min-width: 100%;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .abt-imgbox.ptb-30 {
        padding: 0;
    }

    .journey-list {
        gap: 20px;
    }

    .values-block .items {
        padding: 5px 0;
    }

    .values-block {
        padding: 10px 10px;
    }

    .abt-imgbox+.values-block {
        padding-top: 50px;
    }

    .two-column-block,
    .two-column-block.reversed,
    .two-column-block:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }

    .column-left-block,
    .column-right-block {
        width: 100%;
        padding: 0 20px;
    }

    .column-left-block {
        order: 2;
    }

    .column-right-block {
        order: 1;
    }

    .column-right-block>img {
        border-radius: 20px 20px 0 0 !important;
    }

    .two-column-block .bottom-btnbox {
        padding: 10px 0 0;
    }

    .small-list ul {
        gap: 8px 0;
    }

    .card-product .textbox,
    .card-product .bottom-textbox {
        padding: 15px;
    }

    .text-container {
        max-width: 90vw;
    }

    .split-textarea p {
        font-size: 18px;
        line-height: 28px;
    }

    .desktop_view_cards {
        display: none;
    }

    .mobile_view_cards {
        display: block;
    }

    .chat_icon_block {
        right: 5px;
    }

    /*Mega Menu*/
    .m-scroll {
        max-height: calc(100vh - 80px);
    }

    .head-sidebar {
        display: none;
    }

    .head-menu-right {
        width: 100%;
        padding: 15px;
    }

    .mega-menu-modals {
        padding: 0;
    }

    .menu-product-items {
        width: 50%;
    }

    .m-menu-block {
        padding: 0;
    }

    .mega-mobi-link {
        padding: 10px 0;
        display: block;
        position: relative;
    }

    .mobi-toggle-box {
        padding: 10px 0;
        display: none;
    }

    .mega_items {
        display: block;
    }

    .mega-mobi-link h4 {
        margin: 0;
    }

    .toggle-mobi h4:before {
        display: block;
        content: "\f107";
        font-family: 'FontAwesome';
        font-size: 18px;
        font-weight: 400;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 0;
        top: 10px;
        z-index: 3;
        margin: 0 auto;
        -moz-transition: all 0.4s ease 0s;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
    }

    .toggle-mobi.active h4:before {
        content: "\f106";
    }

    .toggle-mobi.active+.mobi-toggle-box {
        display: block;
    }

    .menu-right-list .btnbox {
        padding: 0;
    }

    .menu-right-list {
        gap: 20px 0;
    }

    .mega-card-list {
        gap: 10px 0;
    }

    .mega-card-list {
        margin: 0 -1.5px;
    }

    .mega-card-list .mm-sub-item {
        padding: 0 1.5px;
        max-width: 33.33%;
    }

    .card-mm .imgbox {
        margin: 0 0 10px;
        border-radius: 5px;
    }

    .card-mm .imgbox img {
        border-radius: 5px;
    }

    .card-mm h5 {
        font-size: 16px;
    }

    .whychoose-column-block {
        flex-direction: column;
        gap: 20px 0;
        padding: 0;
    }

    .whychoose-column-block .right-textbox {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .practical-section .column-right-block {
        width: 100%;
    }

    .overlay-imgbox {
        left: 0;
    }

    .column-tab-content.ptb-20 {
        padding: 0;
    }

    .block-title+.btnbox {
        padding: 0;
    }

    .dark-inn {
        flex-direction: column;
    }

    .imgbox-left-cover {
        min-width: 100%;
        max-width: 100%;
    }

    .dark-content-block {
        padding: 40px 20px 30px;
    }

    .icon-list-block .sub-items {
        min-width: 50%;
        max-width: 50%;
    }

    .contact-left-block.only-img {
        display: none;
    }

    .contact-right-block {
        min-width: 100%;
    }

    .contact-block-inn {
        padding: 0;
    }

    .msg-box {
        padding: 15px 20px;
        border-radius: 10px;
        margin: 20px 0 0 !important;
    }

    .msg-box p {
        gap: 10px;
        font-size: 14px;
    }

    .input-field {
        min-width: 100%;
        max-width: 100%;
    }

    .internal-banner p br {
        display: none;
    }

    .contact-info-items {
        padding: 30px 0;
    }

    .contact-info-items .row {
        gap: 18px 0;
    }

    .contact-info-items p {
        font-size: 16px;
        line-height: 1.4;
    }

    .c_info_btnbox .btn {
        min-width: 140px;
    }

    .contact-info-items:first-child {
        padding-top: 10px;
    }

    .offer-items {
        flex-direction: column;
    }

    .offer-items .col-right-block {
        width: 100%;
        order: 1;
    }

    .offer-items .col-left-block {
        padding: 20px;
        width: 100%;
        order: 2;
    }

    .offer-items .prod-price .price {
        font-size: 18px;
    }

    .offer-items .btnbox .btn {
        min-width: inherit;
    }

    .offer-items .btnbox .more-link {
        font-size: 14px;
    }

    .offer-items+.offer-items {
        margin-top: 20px;
    }

    .video-box-block {
        background: none;
    }

    .video-effect-section .video-container {
        width: 100% !important;
        height: auto !important;
    }

    .video-effect-section .video-box video {
        aspect-ratio: 16 / 9;
    }

    .video-scroll-container,
    .video-effect-section .sticky-sc {
        height: auto !important;
    }

    .prod-tabs {
        display: none !important;
    }

    .prod-tabs-selectbox {
        display: block;
    }

    .service-faqs .prod-tabs,
    .location-section .prod-tabs {
        display: flex !important;
    }

    .custom-tabs {
        margin-top: 15px;
    }

    .model-form-block {
        gap: 30px;
    }

    .model-section .block-title {
        margin: 0;
    }

    .model-list .model-items {
        width: 50%;
    }

    .model-card .textbox h5 {
        font-size: 22px;
    }

    .model-form-block .block-title {
        margin-bottom: 30px;
    }

    .model-form-block+.model-form-block {
        margin-top: 30px;
        padding-top: 30px;
    }

    .faqs-list .faq-heading {
        margin-bottom: 30px;
    }

    .acc_title {
        font-size: 24px;
    }

    .content-box p {
        font-size: 18px;
        line-height: 30px;
    }

    .service-plans-list {
        gap: 30px;
    }

    .option-list .option-items {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .option-box p {
        font-size: 16px !important;
    }

    .values-repair-page .values-block.row {
        gap: 0;
    }

    .values-repair-page .values-block.row>div {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .faqs-tabs-container.fadeInDown {
        top: 80px;
    }

    .service-faqs-block .faqs-list+.faqs-list {
        padding-top: 50px;
    }

    .service-faqs-block .faqs-list {
        scroll-margin-top: 250px;
    }

    .offer-detail-block {
        padding: 30px;
    }

    .offer-detail-block .offer-ul-list ul li {
        padding: 14px 0;
        font-size: 16px;
    }

    .right-block-btnbox p {
        text-align: left;
    }

    .right-block-btnbox {
        margin-top: 20px;
    }

    .right-block-btnbox .bottom-btnbox {
        justify-content: flex-start;
    }

    .radio-group {
        flex-wrap: wrap;
    }

    .radio-group .label {
        width: 100%;
    }

    .radiobox-block {
        width: 100%;
    }

    .perior-notice p {
        font-size: 14px;
        line-height: 22px;
    }

    .selcted-msg-box .selected-msg span {
        font-size: 13px;
    }

    .selcted-msg-box .selected-msg strong {
        font-size: 14px;
    }

    .showroom-info p {
        font-size: 16px;
        line-height: 24px;
    }

    .models-section-page .prod-tabs {
        display: flex !important
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn span {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 14px solid #fff;
    }

    .custom-tabs .tab-btn {
        height: 30px;
    }

    .location-card {
        margin-top: 30px;
    }

    .location-map-box {
        flex-wrap: wrap;
    }

    .location-content {
        min-width: 100%;
        padding: 40px 20px;
    }

    .location-content ul li {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .map-box {
        height: 320px;
    }

    .product-models .offer-items ul li {
        font-size: 14px;
    }

    .middle-section .textbox h3 {
        margin: 30px 0 20px;
    }

    .model-form-block .block-title {
        margin-bottom: 0;
    }

    .model-form-block p>br {
        display: none;
    }

    .news-wrapper {
        grid-template-columns: 1fr;
    }

    .news-page .block-title {
        margin: 0;
    }

    .news-sidebar {
        flex-direction: row;
        overflow: auto;
    }

    .year-btn {
        padding: 6px 20px;
        font-size: 22px;
        line-height: 40px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-featured-image {
        margin-bottom: 30px;
    }

    .related-news {
        margin-top: 50px;
    }

    .testdrivepopup {
        width: 100%;
    }

    .emi-calc-page .form-inner .input-field {
        min-width: 100%;
        max-width: 100%;
    }

    .compare-table td.feature-label {
        font-size: 15px;
    }

    .compare-table td {
        padding: 14px 20px;
        font-size: 15px;
    }

    .emi-calc-page .model-form-block .col-6:first-child {
        margin-bottom: 0;
    }

    .emi-calc-page .model-form-block .block-title {
        margin-bottom: 0;
    }

    .across-form-banner .hero-caption {
        min-width: 320px;
        max-width: 320px;
    }

    .across-form-banner .hero-caption .car-brand-logo {
        margin: 0 0 20px;
    }

    .book-fab {
        right: 20px;
        bottom: 240px;
    }

    .about-across .text-container {
        margin-bottom: 20px;
    }

    .about-across .text-container h2>br {
        display: none;
    }

    .about-across .right-block {
        text-align: left;
    }

    .price-tag {
        font-size: 16px;
    }

    .spec-col .label {
        font-size: 16px;
    }

    .spec-row .spec-col h4 {
        font-size: 20px;
    }

    .car-images {
        padding: 20px 0 0;
    }

    .car-colors {
        gap: 10px;
    }

    .car-color {
        width: 30px;
        height: 30px;
    }

    .car-bottom-btn {
        gap: 10px;
    }

    .car-bottom-btn .btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    .top-row {
        grid-template-columns: 1fr;
        gap: 20px !important;
    }

    .bottom-row {
        grid-template-columns: 1fr;
    }

    .lifestyle-card .card-content {
        margin-top: 20px;
    }

    .comfort-section .block-title {
        padding: 0;
    }

    .comfort-content h4:before {
        width: 20px;
        height: 18px;
        left: -36px;
        top: 2px;
    }

    .across-video-block .video-box video {
        max-height: 100%;
        min-height: 320px;
    }

    .across-video-content {
        width: 200px;
        top: 15px;
        left: 15px;
    }

    .across-video-content ul li {
        font-size: 24px;
        padding: 10px 0;
    }

    .across-form-img {
        margin-bottom: 20px !important;
    }

    .gallery-group .every-angle-item {
        flex: 0 0 calc(50% - 2px) !important;
        aspect-ratio: 13 / 9 !important;
    }

    .support-section .two-column-block {
        padding-bottom: 0;
    }

    .offer-left-block {
        transform: translate(0, 0) !important;
        margin-top: 30px;
    }

    .offer-right-block .sub-items img {
        transform: translate(0, 0) !important;
    }

    .across-effect-video .video-box-block {
        min-height: auto;
    }



    .registration-form-section form.wpcf7-form>.wpcf7-response-output {
        width: 100%;
        margin-left: 0 !important;
    }

    .checkbox-gt-25 {
        margin-top: 10px;
    }

    .checkbox-gb-25 {
        margin-bottom: 10px;
    }


}

/*767 End*/

@media screen and (max-width: 575px) {
    .emi-calc-page .calculator-section .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .emi-calc-page .calculator-section .col-6:first-child {
        margin-bottom: 15px;
    }

    .emi-calc-page .calc-field-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/*575 End*/

/* ===== Hero Banner Section Show/Hide Toggle Utility Classes ===== */
/* Applied dynamically based on ACF hero_desktop_view / hero_mobile_view radio fields */
@media screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hide-on-desktop {
        display: none !important;
    }
}

/* ===================================================================================== */